
    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_0025fbf9af42c3c35262245d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.732000;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_1a63bce2cd65c023d64db411.woff')format("woff");}.ff2{font-family:ff2;line-height:0.724000;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_beaed45f8f47c8f17a0adf52.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_2c6f949400e53e42f7f24404.woff')format("woff");}.ff4{font-family:ff4;line-height:1.200000;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_a44b417fa3b12da85343c4c6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_4bfc6ca4a0486a6ed0d2908c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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_3f2b59189846010e95b8acdc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.732000;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_ba596736ee89dfcc1d2607d7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.724000;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_4f98f8422e15ac24c806ff47.woff')format("woff");}.ff9{font-family:ff9;line-height:0.724000;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_d01905842a005f78e32b5217.woff')format("woff");}.ffa{font-family:ffa;line-height:1.130000;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_f8d4161749c138897618cfa1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.890000;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;}
.m1{transform:matrix(0.055174,-0.243836,0.243836,0.055174,0,0);-ms-transform:matrix(0.055174,-0.243836,0.243836,0.055174,0,0);-webkit-transform:matrix(0.055174,-0.243836,0.243836,0.055174,0,0);}
.m2{transform:matrix(0.055174,-0.243836,0.243836,0.055174,0,0);-ms-transform:matrix(0.055174,-0.243836,0.243836,0.055174,0,0);-webkit-transform:matrix(0.055174,-0.243836,0.243836,0.055174,0,0);}
.m3{transform:matrix(0.055175,-0.243836,0.243836,0.055175,0,0);-ms-transform:matrix(0.055175,-0.243836,0.243836,0.055175,0,0);-webkit-transform:matrix(0.055175,-0.243836,0.243836,0.055175,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-25.109999px;}
.ls1c{letter-spacing:-7.380000px;}
.ls1e{letter-spacing:-7.290000px;}
.ls26{letter-spacing:-6.431996px;}
.ls23{letter-spacing:-6.420000px;}
.ls14{letter-spacing:-5.225997px;}
.ls32{letter-spacing:-4.920000px;}
.ls3{letter-spacing:-4.823997px;}
.lsc{letter-spacing:-4.200000px;}
.ls12{letter-spacing:-4.032000px;}
.ls2b{letter-spacing:-3.120000px;}
.ls33{letter-spacing:-2.639999px;}
.ls9{letter-spacing:-2.520000px;}
.ls13{letter-spacing:-2.400000px;}
.ls30{letter-spacing:-2.280000px;}
.ls8{letter-spacing:-2.250000px;}
.ls27{letter-spacing:-1.890000px;}
.ls10{letter-spacing:-1.584000px;}
.ls31{letter-spacing:-1.500000px;}
.lsa{letter-spacing:-0.900000px;}
.ls1{letter-spacing:-0.804000px;}
.ls2e{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.090000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.090000px;}
.ls1b{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.180000px;}
.lse{letter-spacing:0.198000px;}
.ls28{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.420000px;}
.ls2a{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.600000px;}
.ls1a{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.780000px;}
.ls34{letter-spacing:0.792000px;}
.ls1f{letter-spacing:0.840000px;}
.lsb{letter-spacing:0.882000px;}
.ls1d{letter-spacing:0.900000px;}
.ls2c{letter-spacing:0.960000px;}
.ls22{letter-spacing:1.020000px;}
.ls20{letter-spacing:1.080000px;}
.ls21{letter-spacing:1.140000px;}
.ls6{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.100000px;}
.ls2d{letter-spacing:2.639999px;}
.ls2f{letter-spacing:88.500000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-81.605950px;}
.ws3{word-spacing:-77.585953px;}
.ws18{word-spacing:-77.183953px;}
.ws32{word-spacing:-75.977954px;}
.ws3c{word-spacing:-70.289977px;}
.ws48{word-spacing:-65.009979px;}
.ws0{word-spacing:-29.520000px;}
.ws39{word-spacing:-20.340000px;}
.ws2b{word-spacing:-20.280000px;}
.ws3f{word-spacing:-20.220000px;}
.ws2c{word-spacing:-20.160000px;}
.ws29{word-spacing:-20.040000px;}
.ws2a{word-spacing:-19.920000px;}
.ws7{word-spacing:-19.890000px;}
.ws1a{word-spacing:-19.860000px;}
.ws42{word-spacing:-19.680000px;}
.wsb{word-spacing:-19.500000px;}
.ws4{word-spacing:-18.990000px;}
.ws6{word-spacing:-18.630000px;}
.ws8{word-spacing:-18.540000px;}
.ws5{word-spacing:-18.450000px;}
.ws19{word-spacing:-18.360000px;}
.ws40{word-spacing:-18.000000px;}
.ws27{word-spacing:-17.550000px;}
.ws3e{word-spacing:-17.220000px;}
.ws33{word-spacing:-16.560000px;}
.ws36{word-spacing:-16.380000px;}
.ws41{word-spacing:-14.580000px;}
.wse{word-spacing:-13.596000px;}
.ws28{word-spacing:-13.080000px;}
.ws16{word-spacing:-2.100000px;}
.ws12{word-spacing:-1.440000px;}
.ws22{word-spacing:-1.260000px;}
.ws30{word-spacing:-1.140000px;}
.ws2f{word-spacing:-1.080000px;}
.ws31{word-spacing:-1.020000px;}
.ws3b{word-spacing:-0.960000px;}
.ws25{word-spacing:-0.900000px;}
.ws13{word-spacing:-0.882000px;}
.ws2d{word-spacing:-0.840000px;}
.ws4b{word-spacing:-0.792000px;}
.ws38{word-spacing:-0.780000px;}
.ws1f{word-spacing:-0.720000px;}
.ws20{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.600000px;}
.ws2e{word-spacing:-0.540000px;}
.ws37{word-spacing:-0.480000px;}
.ws3a{word-spacing:-0.420000px;}
.ws1d{word-spacing:-0.360000px;}
.ws43{word-spacing:-0.300000px;}
.ws1c{word-spacing:-0.270000px;}
.ws34{word-spacing:-0.240000px;}
.ws15{word-spacing:-0.198000px;}
.ws21{word-spacing:-0.120000px;}
.ws1b{word-spacing:-0.090000px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.072000px;}
.ws23{word-spacing:0.090000px;}
.ws47{word-spacing:0.144000px;}
.ws35{word-spacing:0.180000px;}
.wsc{word-spacing:0.288000px;}
.ws4a{word-spacing:0.360000px;}
.ws3d{word-spacing:0.720000px;}
.ws11{word-spacing:0.900000px;}
.ws49{word-spacing:1.500000px;}
.wsa{word-spacing:2.250000px;}
.ws17{word-spacing:2.400000px;}
.ws10{word-spacing:2.520000px;}
.wsf{word-spacing:3.960000px;}
.ws14{word-spacing:4.200000px;}
.ws26{word-spacing:7.290000px;}
.ws24{word-spacing:7.380000px;}
.ws9{word-spacing:25.109999px;}
.ws46{word-spacing:87.660000px;}
.ws44{word-spacing:87.840000px;}
.ws45{word-spacing:88.500000px;}
._15{margin-left:-89.296800px;}
._16{margin-left:-87.801600px;}
._3{margin-left:-18.720000px;}
._0{margin-left:-12.249600px;}
._14{margin-left:-10.518000px;}
._4{margin-left:-7.859389px;}
._2{margin-left:-6.480000px;}
._10{margin-left:-5.008800px;}
._f{margin-left:-3.984000px;}
._1{margin-left:-2.176800px;}
._c{margin-left:-1.102200px;}
._b{width:1.105800px;}
._5{width:2.176800px;}
._a{width:3.537598px;}
._d{width:4.901412px;}
._9{width:5.989796px;}
._e{width:7.037980px;}
._11{width:8.257243px;}
._12{width:9.719422px;}
._6{width:20.196000px;}
._7{width:23.625000px;}
._8{width:24.705000px;}
._13{width:88.500000px;}
.fc6{color:transparent;}
.fc4{color:rgb(133,110,122);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(232,105,163);}
.fc5{color:rgb(217,5,102);}
.fc1{color:rgb(217,5,102);}
.fc7{color:rgb(143,20,107);}
.fc0{color:rgb(143,20,107);}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs8{font-size:126.000000px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:180.000000px;}
.fs4{font-size:269.999995px;}
.fs9{font-size:300.000000px;}
.fsa{font-size:329.999893px;}
.fs2{font-size:401.999755px;}
.y0{bottom:0.000000px;}
.y20{bottom:29.763750px;}
.yde{bottom:37.265850px;}
.y92{bottom:38.902650px;}
.y38{bottom:42.906600px;}
.yeb{bottom:43.402650px;}
.y77{bottom:45.277800px;}
.yc9{bottom:45.915600px;}
.y8{bottom:47.051100px;}
.ydd{bottom:55.265850px;}
.y91{bottom:56.902650px;}
.y7{bottom:59.095650px;}
.y37{bottom:60.906600px;}
.yea{bottom:61.402650px;}
.y76{bottom:63.277800px;}
.yc8{bottom:63.915600px;}
.y90{bottom:74.902650px;}
.ydf{bottom:78.061650px;}
.y36{bottom:78.906600px;}
.y9a{bottom:79.402650px;}
.y19{bottom:81.008250px;}
.y75{bottom:81.277800px;}
.yc7{bottom:81.915600px;}
.ycc{bottom:84.915600px;}
.yb0{bottom:89.415600px;}
.y8f{bottom:92.902650px;}
.y35{bottom:96.906600px;}
.y99{bottom:97.402650px;}
.y74{bottom:99.277800px;}
.ydc{bottom:99.701250px;}
.yc6{bottom:99.915600px;}
.y6{bottom:102.295650px;}
.yec{bottom:106.108650px;}
.yaf{bottom:107.415600px;}
.y44{bottom:108.225150px;}
.y9b{bottom:109.758750px;}
.y8e{bottom:110.902650px;}
.y34{bottom:114.906600px;}
.y98{bottom:115.402650px;}
.y73{bottom:117.277800px;}
.yc5{bottom:117.915600px;}
.ycb{bottom:120.915600px;}
.yb5{bottom:123.246900px;}
.yae{bottom:125.415600px;}
.y43{bottom:132.225150px;}
.y33{bottom:132.906600px;}
.y97{bottom:133.402650px;}
.y57{bottom:134.698950px;}
.y72{bottom:135.277800px;}
.yc4{bottom:135.915600px;}
.yad{bottom:143.415600px;}
.y5{bottom:145.495650px;}
.y8d{bottom:146.902650px;}
.y17{bottom:148.106850px;}
.y32{bottom:150.906600px;}
.y45{bottom:151.254300px;}
.y96{bottom:151.402650px;}
.y56{bottom:152.698950px;}
.y71{bottom:153.277800px;}
.yc3{bottom:153.915600px;}
.ydb{bottom:154.014000px;}
.ye9{bottom:154.553400px;}
.yac{bottom:161.415600px;}
.y16{bottom:167.906850px;}
.y31{bottom:168.906600px;}
.y95{bottom:169.402650px;}
.y55{bottom:170.698950px;}
.y70{bottom:171.277800px;}
.yc2{bottom:171.915600px;}
.y8c{bottom:172.402650px;}
.ye8{bottom:172.553400px;}
.y5b{bottom:173.698950px;}
.y1f{bottom:174.770850px;}
.yab{bottom:179.415600px;}
.yca{bottom:182.415600px;}
.y30{bottom:186.906600px;}
.ycd{bottom:187.402650px;}
.y15{bottom:187.706850px;}
.y4{bottom:188.695650px;}
.y54{bottom:188.698950px;}
.y6f{bottom:189.277800px;}
.yc1{bottom:189.915600px;}
.ye7{bottom:190.553400px;}
.y18{bottom:192.771750px;}
.yaa{bottom:197.415600px;}
.yda{bottom:198.888000px;}
.y2f{bottom:204.906600px;}
.y94{bottom:205.402650px;}
.y53{bottom:206.698950px;}
.y6e{bottom:207.277800px;}
.y14{bottom:207.506850px;}
.yc0{bottom:207.915600px;}
.ye6{bottom:208.553400px;}
.y5a{bottom:209.698950px;}
.y42{bottom:212.044050px;}
.ya9{bottom:215.415600px;}
.yd9{bottom:216.888000px;}
.yb4{bottom:218.415600px;}
.y2e{bottom:222.906600px;}
.y8b{bottom:223.402650px;}
.y52{bottom:224.698950px;}
.y6d{bottom:225.277800px;}
.y1e{bottom:225.770850px;}
.ybf{bottom:225.915600px;}
.ye5{bottom:226.553400px;}
.y13{bottom:227.306850px;}
.y3{bottom:231.895650px;}
.ya8{bottom:233.415600px;}
.y41{bottom:236.044050px;}
.y39{bottom:236.406600px;}
.yee{bottom:236.415600px;}
.y2d{bottom:240.906600px;}
.y8a{bottom:241.402650px;}
.y51{bottom:242.698950px;}
.y6c{bottom:243.277800px;}
.ybe{bottom:243.915600px;}
.ya7{bottom:251.415600px;}
.yd8{bottom:252.762000px;}
.yb3{bottom:254.415600px;}
.y89{bottom:259.402650px;}
.y50{bottom:260.698950px;}
.y6b{bottom:261.277800px;}
.ybd{bottom:261.915600px;}
.ye4{bottom:262.553400px;}
.y12{bottom:266.906850px;}
.ya6{bottom:269.415600px;}
.yd7{bottom:270.762000px;}
.y59{bottom:271.198950px;}
.yed{bottom:272.415600px;}
.y2{bottom:275.095650px;}
.y1d{bottom:276.770850px;}
.y88{bottom:277.402650px;}
.y4f{bottom:278.698950px;}
.y6a{bottom:279.277800px;}
.ybc{bottom:279.915600px;}
.y11{bottom:286.706850px;}
.ya5{bottom:287.415600px;}
.y2c{bottom:294.906600px;}
.y93{bottom:295.402650px;}
.y4e{bottom:296.698950px;}
.y69{bottom:297.277800px;}
.ybb{bottom:297.915600px;}
.ya4{bottom:305.415600px;}
.y10{bottom:306.506850px;}
.yd6{bottom:306.636000px;}
.y58{bottom:307.198950px;}
.y2b{bottom:312.906600px;}
.y87{bottom:313.402650px;}
.y40{bottom:313.807800px;}
.y4d{bottom:314.698950px;}
.y68{bottom:315.277800px;}
.yb2{bottom:315.915600px;}
.y1{bottom:318.295650px;}
.ya3{bottom:323.415600px;}
.ye3{bottom:324.053400px;}
.yd5{bottom:324.636000px;}
.y1c{bottom:327.770850px;}
.y2a{bottom:330.906600px;}
.y86{bottom:331.402650px;}
.y3f{bottom:331.807800px;}
.y4c{bottom:332.698950px;}
.y67{bottom:333.277800px;}
.yba{bottom:333.915600px;}
.ya2{bottom:341.415600px;}
.yf{bottom:346.106850px;}
.y29{bottom:348.906600px;}
.y85{bottom:349.402650px;}
.y4b{bottom:350.698950px;}
.y66{bottom:351.277800px;}
.yb1{bottom:351.915600px;}
.y3e{bottom:355.807800px;}
.ya1{bottom:359.415600px;}
.ye2{bottom:360.053400px;}
.ye{bottom:365.906850px;}
.y28{bottom:366.906600px;}
.y84{bottom:367.402650px;}
.y4a{bottom:368.698950px;}
.y65{bottom:369.277800px;}
.yd4{bottom:369.510000px;}
.yb9{bottom:369.915600px;}
.ya0{bottom:377.415600px;}
.y1b{bottom:378.770850px;}
.y27{bottom:384.906600px;}
.y83{bottom:385.402650px;}
.yd{bottom:385.706850px;}
.y64{bottom:387.277800px;}
.yb8{bottom:387.915600px;}
.y9f{bottom:395.415600px;}
.y26{bottom:402.906600px;}
.y82{bottom:403.402650px;}
.y49{bottom:404.698950px;}
.y63{bottom:405.277800px;}
.yc{bottom:405.507000px;}
.yb7{bottom:405.915600px;}
.y9e{bottom:413.415600px;}
.yd3{bottom:414.384000px;}
.y25{bottom:420.906600px;}
.y81{bottom:421.402650px;}
.y62{bottom:423.277800px;}
.yb{bottom:425.306850px;}
.y1a{bottom:429.770850px;}
.y3d{bottom:430.382550px;}
.y9d{bottom:431.415600px;}
.yd2{bottom:432.384000px;}
.y24{bottom:438.906600px;}
.y80{bottom:439.402650px;}
.y61{bottom:441.277800px;}
.yb6{bottom:441.915600px;}
.y3c{bottom:448.382550px;}
.y23{bottom:456.906600px;}
.y7f{bottom:457.402650px;}
.y60{bottom:459.277800px;}
.ya{bottom:464.906850px;}
.ye1{bottom:466.777800px;}
.y9c{bottom:467.415600px;}
.yd1{bottom:468.258000px;}
.y3b{bottom:472.382550px;}
.y7e{bottom:475.402650px;}
.y5f{bottom:477.277800px;}
.y9{bottom:484.706850px;}
.yd0{bottom:486.258000px;}
.y7d{bottom:493.402650px;}
.ye0{bottom:493.777800px;}
.y5e{bottom:495.277800px;}
.y7c{bottom:511.402650px;}
.y22{bottom:512.149650px;}
.y5d{bottom:513.277800px;}
.y48{bottom:520.777800px;}
.y7b{bottom:529.402650px;}
.ycf{bottom:531.132000px;}
.y7a{bottom:547.402650px;}
.y47{bottom:547.777800px;}
.y5c{bottom:549.277800px;}
.y3a{bottom:551.554650px;}
.y21{bottom:552.649650px;}
.y79{bottom:565.402650px;}
.y46{bottom:574.777800px;}
.yce{bottom:580.092750px;}
.y78{bottom:583.402650px;}
.hd{height:47.124000px;}
.hf{height:47.160000px;}
.h9{height:51.408000px;}
.he{height:51.600000px;}
.h6{height:51.876000px;}
.ha{height:55.800000px;}
.h5{height:61.380000px;}
.h8{height:64.260000px;}
.hb{height:89.964000px;}
.h3{height:102.816000px;}
.h2{height:128.520000px;}
.h7{height:192.779996px;}
.hc{height:214.200000px;}
.h10{height:235.619923px;}
.h4{height:287.027825px;}
.h1{height:629.250000px;}
.h0{height:629.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:29.763750px;}
.xc{left:63.779550px;}
.x18{left:90.779550px;}
.x4{left:112.248300px;}
.x21{left:117.430950px;}
.x23{left:121.283700px;}
.x1c{left:123.276150px;}
.x1e{left:126.695850px;}
.x15{left:133.247550px;}
.x5{left:168.468750px;}
.x2{left:196.107300px;}
.x16{left:293.220450px;}
.x1f{left:302.220450px;}
.x3{left:336.236250px;}
.x19{left:363.236250px;}
.x6{left:367.464600px;}
.x1{left:550.629900px;}
.x17{left:565.677150px;}
.x1a{left:608.692950px;}
.x1b{left:635.692950px;}
.xf{left:656.469000px;}
.x20{left:668.409450px;}
.xd{left:671.420850px;}
.x13{left:703.503450px;}
.x12{left:706.744200px;}
.x11{left:708.750300px;}
.xe{left:715.150050px;}
.x8{left:717.569550px;}
.x7{left:718.811550px;}
.x9{left:723.266850px;}
.xa{left:726.972600px;}
.x10{left:731.265900px;}
.x22{left:848.101950px;}
.x1d{left:852.835650px;}
.x14{left:853.879650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-22.320000pt;}
.ls1c{letter-spacing:-6.560000pt;}
.ls1e{letter-spacing:-6.480000pt;}
.ls26{letter-spacing:-5.717330pt;}
.ls23{letter-spacing:-5.706667pt;}
.ls14{letter-spacing:-4.645331pt;}
.ls32{letter-spacing:-4.373333pt;}
.ls3{letter-spacing:-4.287997pt;}
.lsc{letter-spacing:-3.733333pt;}
.ls12{letter-spacing:-3.584000pt;}
.ls2b{letter-spacing:-2.773333pt;}
.ls33{letter-spacing:-2.346666pt;}
.ls9{letter-spacing:-2.240000pt;}
.ls13{letter-spacing:-2.133333pt;}
.ls30{letter-spacing:-2.026667pt;}
.ls8{letter-spacing:-2.000000pt;}
.ls27{letter-spacing:-1.680000pt;}
.ls10{letter-spacing:-1.408000pt;}
.ls31{letter-spacing:-1.333333pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls1{letter-spacing:-0.714666pt;}
.ls2e{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.080000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.080000pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.176000pt;}
.ls28{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.373333pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.693333pt;}
.ls34{letter-spacing:0.704000pt;}
.ls1f{letter-spacing:0.746667pt;}
.lsb{letter-spacing:0.784000pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls2c{letter-spacing:0.853333pt;}
.ls22{letter-spacing:0.906667pt;}
.ls20{letter-spacing:0.960000pt;}
.ls21{letter-spacing:1.013333pt;}
.ls6{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.866667pt;}
.ls2d{letter-spacing:2.346666pt;}
.ls2f{letter-spacing:78.666667pt;}
.ws2{word-spacing:-72.538622pt;}
.ws3{word-spacing:-68.965291pt;}
.ws18{word-spacing:-68.607958pt;}
.ws32{word-spacing:-67.535959pt;}
.ws3c{word-spacing:-62.479980pt;}
.ws48{word-spacing:-57.786648pt;}
.ws0{word-spacing:-26.240000pt;}
.ws39{word-spacing:-18.080000pt;}
.ws2b{word-spacing:-18.026667pt;}
.ws3f{word-spacing:-17.973333pt;}
.ws2c{word-spacing:-17.920000pt;}
.ws29{word-spacing:-17.813333pt;}
.ws2a{word-spacing:-17.706667pt;}
.ws7{word-spacing:-17.680000pt;}
.ws1a{word-spacing:-17.653333pt;}
.ws42{word-spacing:-17.493333pt;}
.wsb{word-spacing:-17.333333pt;}
.ws4{word-spacing:-16.880000pt;}
.ws6{word-spacing:-16.560000pt;}
.ws8{word-spacing:-16.480000pt;}
.ws5{word-spacing:-16.400000pt;}
.ws19{word-spacing:-16.320000pt;}
.ws40{word-spacing:-16.000000pt;}
.ws27{word-spacing:-15.600000pt;}
.ws3e{word-spacing:-15.306667pt;}
.ws33{word-spacing:-14.720000pt;}
.ws36{word-spacing:-14.560000pt;}
.ws41{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.085333pt;}
.ws28{word-spacing:-11.626667pt;}
.ws16{word-spacing:-1.866667pt;}
.ws12{word-spacing:-1.280000pt;}
.ws22{word-spacing:-1.120000pt;}
.ws30{word-spacing:-1.013333pt;}
.ws2f{word-spacing:-0.960000pt;}
.ws31{word-spacing:-0.906667pt;}
.ws3b{word-spacing:-0.853333pt;}
.ws25{word-spacing:-0.800000pt;}
.ws13{word-spacing:-0.784000pt;}
.ws2d{word-spacing:-0.746667pt;}
.ws4b{word-spacing:-0.704000pt;}
.ws38{word-spacing:-0.693333pt;}
.ws1f{word-spacing:-0.640000pt;}
.ws20{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.533333pt;}
.ws2e{word-spacing:-0.480000pt;}
.ws37{word-spacing:-0.426667pt;}
.ws3a{word-spacing:-0.373333pt;}
.ws1d{word-spacing:-0.320000pt;}
.ws43{word-spacing:-0.266667pt;}
.ws1c{word-spacing:-0.240000pt;}
.ws34{word-spacing:-0.213333pt;}
.ws15{word-spacing:-0.176000pt;}
.ws21{word-spacing:-0.106667pt;}
.ws1b{word-spacing:-0.080000pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.064000pt;}
.ws23{word-spacing:0.080000pt;}
.ws47{word-spacing:0.128000pt;}
.ws35{word-spacing:0.160000pt;}
.wsc{word-spacing:0.256000pt;}
.ws4a{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.640000pt;}
.ws11{word-spacing:0.800000pt;}
.ws49{word-spacing:1.333333pt;}
.wsa{word-spacing:2.000000pt;}
.ws17{word-spacing:2.133333pt;}
.ws10{word-spacing:2.240000pt;}
.wsf{word-spacing:3.520000pt;}
.ws14{word-spacing:3.733333pt;}
.ws26{word-spacing:6.480000pt;}
.ws24{word-spacing:6.560000pt;}
.ws9{word-spacing:22.320000pt;}
.ws46{word-spacing:77.920000pt;}
.ws44{word-spacing:78.080000pt;}
.ws45{word-spacing:78.666667pt;}
._15{margin-left:-79.374933pt;}
._16{margin-left:-78.045867pt;}
._3{margin-left:-16.640000pt;}
._0{margin-left:-10.888533pt;}
._14{margin-left:-9.349333pt;}
._4{margin-left:-6.986123pt;}
._2{margin-left:-5.760000pt;}
._10{margin-left:-4.452267pt;}
._f{margin-left:-3.541333pt;}
._1{margin-left:-1.934933pt;}
._c{margin-left:-0.979733pt;}
._b{width:0.982933pt;}
._5{width:1.934933pt;}
._a{width:3.144531pt;}
._d{width:4.356811pt;}
._9{width:5.324263pt;}
._e{width:6.255983pt;}
._11{width:7.339771pt;}
._12{width:8.639486pt;}
._6{width:17.952000pt;}
._7{width:21.000000pt;}
._8{width:21.960000pt;}
._13{width:78.666667pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs8{font-size:112.000000pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:160.000000pt;}
.fs4{font-size:239.999995pt;}
.fs9{font-size:266.666667pt;}
.fsa{font-size:293.333238pt;}
.fs2{font-size:357.333116pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:26.456667pt;}
.yde{bottom:33.125200pt;}
.y92{bottom:34.580133pt;}
.y38{bottom:38.139200pt;}
.yeb{bottom:38.580133pt;}
.y77{bottom:40.246933pt;}
.yc9{bottom:40.813867pt;}
.y8{bottom:41.823200pt;}
.ydd{bottom:49.125200pt;}
.y91{bottom:50.580133pt;}
.y7{bottom:52.529467pt;}
.y37{bottom:54.139200pt;}
.yea{bottom:54.580133pt;}
.y76{bottom:56.246933pt;}
.yc8{bottom:56.813867pt;}
.y90{bottom:66.580133pt;}
.ydf{bottom:69.388133pt;}
.y36{bottom:70.139200pt;}
.y9a{bottom:70.580133pt;}
.y19{bottom:72.007333pt;}
.y75{bottom:72.246933pt;}
.yc7{bottom:72.813867pt;}
.ycc{bottom:75.480533pt;}
.yb0{bottom:79.480533pt;}
.y8f{bottom:82.580133pt;}
.y35{bottom:86.139200pt;}
.y99{bottom:86.580133pt;}
.y74{bottom:88.246933pt;}
.ydc{bottom:88.623333pt;}
.yc6{bottom:88.813867pt;}
.y6{bottom:90.929467pt;}
.yec{bottom:94.318800pt;}
.yaf{bottom:95.480533pt;}
.y44{bottom:96.200133pt;}
.y9b{bottom:97.563333pt;}
.y8e{bottom:98.580133pt;}
.y34{bottom:102.139200pt;}
.y98{bottom:102.580133pt;}
.y73{bottom:104.246933pt;}
.yc5{bottom:104.813867pt;}
.ycb{bottom:107.480533pt;}
.yb5{bottom:109.552800pt;}
.yae{bottom:111.480533pt;}
.y43{bottom:117.533467pt;}
.y33{bottom:118.139200pt;}
.y97{bottom:118.580133pt;}
.y57{bottom:119.732400pt;}
.y72{bottom:120.246933pt;}
.yc4{bottom:120.813867pt;}
.yad{bottom:127.480533pt;}
.y5{bottom:129.329467pt;}
.y8d{bottom:130.580133pt;}
.y17{bottom:131.650533pt;}
.y32{bottom:134.139200pt;}
.y45{bottom:134.448267pt;}
.y96{bottom:134.580133pt;}
.y56{bottom:135.732400pt;}
.y71{bottom:136.246933pt;}
.yc3{bottom:136.813867pt;}
.ydb{bottom:136.901333pt;}
.ye9{bottom:137.380800pt;}
.yac{bottom:143.480533pt;}
.y16{bottom:149.250533pt;}
.y31{bottom:150.139200pt;}
.y95{bottom:150.580133pt;}
.y55{bottom:151.732400pt;}
.y70{bottom:152.246933pt;}
.yc2{bottom:152.813867pt;}
.y8c{bottom:153.246800pt;}
.ye8{bottom:153.380800pt;}
.y5b{bottom:154.399067pt;}
.y1f{bottom:155.351867pt;}
.yab{bottom:159.480533pt;}
.yca{bottom:162.147200pt;}
.y30{bottom:166.139200pt;}
.ycd{bottom:166.580133pt;}
.y15{bottom:166.850533pt;}
.y4{bottom:167.729467pt;}
.y54{bottom:167.732400pt;}
.y6f{bottom:168.246933pt;}
.yc1{bottom:168.813867pt;}
.ye7{bottom:169.380800pt;}
.y18{bottom:171.352667pt;}
.yaa{bottom:175.480533pt;}
.yda{bottom:176.789333pt;}
.y2f{bottom:182.139200pt;}
.y94{bottom:182.580133pt;}
.y53{bottom:183.732400pt;}
.y6e{bottom:184.246933pt;}
.y14{bottom:184.450533pt;}
.yc0{bottom:184.813867pt;}
.ye6{bottom:185.380800pt;}
.y5a{bottom:186.399067pt;}
.y42{bottom:188.483600pt;}
.ya9{bottom:191.480533pt;}
.yd9{bottom:192.789333pt;}
.yb4{bottom:194.147200pt;}
.y2e{bottom:198.139200pt;}
.y8b{bottom:198.580133pt;}
.y52{bottom:199.732400pt;}
.y6d{bottom:200.246933pt;}
.y1e{bottom:200.685200pt;}
.ybf{bottom:200.813867pt;}
.ye5{bottom:201.380800pt;}
.y13{bottom:202.050533pt;}
.y3{bottom:206.129467pt;}
.ya8{bottom:207.480533pt;}
.y41{bottom:209.816933pt;}
.y39{bottom:210.139200pt;}
.yee{bottom:210.147200pt;}
.y2d{bottom:214.139200pt;}
.y8a{bottom:214.580133pt;}
.y51{bottom:215.732400pt;}
.y6c{bottom:216.246933pt;}
.ybe{bottom:216.813867pt;}
.ya7{bottom:223.480533pt;}
.yd8{bottom:224.677333pt;}
.yb3{bottom:226.147200pt;}
.y89{bottom:230.580133pt;}
.y50{bottom:231.732400pt;}
.y6b{bottom:232.246933pt;}
.ybd{bottom:232.813867pt;}
.ye4{bottom:233.380800pt;}
.y12{bottom:237.250533pt;}
.ya6{bottom:239.480533pt;}
.yd7{bottom:240.677333pt;}
.y59{bottom:241.065733pt;}
.yed{bottom:242.147200pt;}
.y2{bottom:244.529467pt;}
.y1d{bottom:246.018533pt;}
.y88{bottom:246.580133pt;}
.y4f{bottom:247.732400pt;}
.y6a{bottom:248.246933pt;}
.ybc{bottom:248.813867pt;}
.y11{bottom:254.850533pt;}
.ya5{bottom:255.480533pt;}
.y2c{bottom:262.139200pt;}
.y93{bottom:262.580133pt;}
.y4e{bottom:263.732400pt;}
.y69{bottom:264.246933pt;}
.ybb{bottom:264.813867pt;}
.ya4{bottom:271.480533pt;}
.y10{bottom:272.450533pt;}
.yd6{bottom:272.565333pt;}
.y58{bottom:273.065733pt;}
.y2b{bottom:278.139200pt;}
.y87{bottom:278.580133pt;}
.y40{bottom:278.940267pt;}
.y4d{bottom:279.732400pt;}
.y68{bottom:280.246933pt;}
.yb2{bottom:280.813867pt;}
.y1{bottom:282.929467pt;}
.ya3{bottom:287.480533pt;}
.ye3{bottom:288.047467pt;}
.yd5{bottom:288.565333pt;}
.y1c{bottom:291.351867pt;}
.y2a{bottom:294.139200pt;}
.y86{bottom:294.580133pt;}
.y3f{bottom:294.940267pt;}
.y4c{bottom:295.732400pt;}
.y67{bottom:296.246933pt;}
.yba{bottom:296.813867pt;}
.ya2{bottom:303.480533pt;}
.yf{bottom:307.650533pt;}
.y29{bottom:310.139200pt;}
.y85{bottom:310.580133pt;}
.y4b{bottom:311.732400pt;}
.y66{bottom:312.246933pt;}
.yb1{bottom:312.813867pt;}
.y3e{bottom:316.273600pt;}
.ya1{bottom:319.480533pt;}
.ye2{bottom:320.047467pt;}
.ye{bottom:325.250533pt;}
.y28{bottom:326.139200pt;}
.y84{bottom:326.580133pt;}
.y4a{bottom:327.732400pt;}
.y65{bottom:328.246933pt;}
.yd4{bottom:328.453333pt;}
.yb9{bottom:328.813867pt;}
.ya0{bottom:335.480533pt;}
.y1b{bottom:336.685200pt;}
.y27{bottom:342.139200pt;}
.y83{bottom:342.580133pt;}
.yd{bottom:342.850533pt;}
.y64{bottom:344.246933pt;}
.yb8{bottom:344.813867pt;}
.y9f{bottom:351.480533pt;}
.y26{bottom:358.139200pt;}
.y82{bottom:358.580133pt;}
.y49{bottom:359.732400pt;}
.y63{bottom:360.246933pt;}
.yc{bottom:360.450667pt;}
.yb7{bottom:360.813867pt;}
.y9e{bottom:367.480533pt;}
.yd3{bottom:368.341333pt;}
.y25{bottom:374.139200pt;}
.y81{bottom:374.580133pt;}
.y62{bottom:376.246933pt;}
.yb{bottom:378.050533pt;}
.y1a{bottom:382.018533pt;}
.y3d{bottom:382.562267pt;}
.y9d{bottom:383.480533pt;}
.yd2{bottom:384.341333pt;}
.y24{bottom:390.139200pt;}
.y80{bottom:390.580133pt;}
.y61{bottom:392.246933pt;}
.yb6{bottom:392.813867pt;}
.y3c{bottom:398.562267pt;}
.y23{bottom:406.139200pt;}
.y7f{bottom:406.580133pt;}
.y60{bottom:408.246933pt;}
.ya{bottom:413.250533pt;}
.ye1{bottom:414.913600pt;}
.y9c{bottom:415.480533pt;}
.yd1{bottom:416.229333pt;}
.y3b{bottom:419.895600pt;}
.y7e{bottom:422.580133pt;}
.y5f{bottom:424.246933pt;}
.y9{bottom:430.850533pt;}
.yd0{bottom:432.229333pt;}
.y7d{bottom:438.580133pt;}
.ye0{bottom:438.913600pt;}
.y5e{bottom:440.246933pt;}
.y7c{bottom:454.580133pt;}
.y22{bottom:455.244133pt;}
.y5d{bottom:456.246933pt;}
.y48{bottom:462.913600pt;}
.y7b{bottom:470.580133pt;}
.ycf{bottom:472.117333pt;}
.y7a{bottom:486.580133pt;}
.y47{bottom:486.913600pt;}
.y5c{bottom:488.246933pt;}
.y3a{bottom:490.270800pt;}
.y21{bottom:491.244133pt;}
.y79{bottom:502.580133pt;}
.y46{bottom:510.913600pt;}
.yce{bottom:515.638000pt;}
.y78{bottom:518.580133pt;}
.hd{height:41.888000pt;}
.hf{height:41.920000pt;}
.h9{height:45.696000pt;}
.he{height:45.866667pt;}
.h6{height:46.112000pt;}
.ha{height:49.600000pt;}
.h5{height:54.560000pt;}
.h8{height:57.120000pt;}
.hb{height:79.968000pt;}
.h3{height:91.392000pt;}
.h2{height:114.240000pt;}
.h7{height:171.359997pt;}
.hc{height:190.400000pt;}
.h10{height:209.439932pt;}
.h4{height:255.135845pt;}
.h1{height:559.333333pt;}
.h0{height:559.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:26.456667pt;}
.xc{left:56.692933pt;}
.x18{left:80.692933pt;}
.x4{left:99.776267pt;}
.x21{left:104.383067pt;}
.x23{left:107.807733pt;}
.x1c{left:109.578800pt;}
.x1e{left:112.618533pt;}
.x15{left:118.442267pt;}
.x5{left:149.750000pt;}
.x2{left:174.317600pt;}
.x16{left:260.640400pt;}
.x1f{left:268.640400pt;}
.x3{left:298.876667pt;}
.x19{left:322.876667pt;}
.x6{left:326.635200pt;}
.x1{left:489.448800pt;}
.x17{left:502.824133pt;}
.x1a{left:541.060400pt;}
.x1b{left:565.060400pt;}
.xf{left:583.528000pt;}
.x20{left:594.141733pt;}
.xd{left:596.818533pt;}
.x13{left:625.336400pt;}
.x12{left:628.217067pt;}
.x11{left:630.000267pt;}
.xe{left:635.688933pt;}
.x8{left:637.839600pt;}
.x7{left:638.943600pt;}
.x9{left:642.903867pt;}
.xa{left:646.197867pt;}
.x10{left:650.014133pt;}
.x22{left:753.868400pt;}
.x1d{left:758.076133pt;}
.x14{left:759.004133pt;}
}




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