
    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_c19578c14abcbf9ac962c155.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_334711aebc235f141f8da160.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_bc7b222f46511fc2b0e0f116.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_5908327a2c431c40b4dc84da.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_e318241f37900f63d90a88a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172363;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_4096c93ccc2cc6954bed27b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_3c7786d32a1a8706aa0a14eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.802734;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_d4acb92291e911ee65303372.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_fbd44f8dcb1e3171ed5da137.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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_a288ceef50370ebb4f37dbb9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_9756fe1d5fbb72264ff6ea00.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.766602;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_8662f7e99f06294a61699f04.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.868164;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7c0e95ec368686cb2338efee.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0c514f9cac9d2330a858c5e9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.786133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_31eebb87e2dcee27a7f894df.woff2')format("woff");}.fff{font-family:fff;line-height:0.802734;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:ff10;src:url('chunks/assets/font_85380bed87eaa0fffc2dad9c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.767578;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:ff11;src:url('chunks/assets/font_74d3ca5b2d5f98adc8510054.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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:ff12;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_2c3dfa79f013628f52171fa2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-14.400000px;}
.ls24{letter-spacing:-12.240000px;}
.ls2f{letter-spacing:-8.040000px;}
.ls15{letter-spacing:-7.920000px;}
.ls25{letter-spacing:-5.868000px;}
.ls8{letter-spacing:-2.808000px;}
.lse{letter-spacing:-1.728000px;}
.ls7{letter-spacing:-1.584000px;}
.lsf{letter-spacing:-1.440000px;}
.ls20{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.272400px;}
.ls21{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.132600px;}
.ls27{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.009840px;}
.ls1d{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.033840px;}
.ls18{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.072000px;}
.ls1f{letter-spacing:0.102000px;}
.ls2d{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.141120px;}
.ls19{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.149760px;}
.lsb{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.306000px;}
.lsd{letter-spacing:0.313920px;}
.ls11{letter-spacing:0.331200px;}
.ls23{letter-spacing:0.344160px;}
.ls5{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls2a{letter-spacing:3.600000px;}
.ls1c{letter-spacing:7.920000px;}
.ls13{letter-spacing:12.240000px;}
.ls2b{letter-spacing:36.000000px;}
.ls16{letter-spacing:141.984000px;}
.ls2c{letter-spacing:172.026720px;}
.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;}
}
.ws1e{word-spacing:-72.000000px;}
.ws1b{word-spacing:-59.760000px;}
.ws15{word-spacing:-54.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.360000px;}
.ws1f{word-spacing:-18.216000px;}
.wse{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.136000px;}
.ws1a{word-spacing:-17.064000px;}
.ws11{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.416000px;}
.wsa{word-spacing:-16.272000px;}
.wsb{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.192000px;}
.ws19{word-spacing:-14.970240px;}
.wsc{word-spacing:-14.940000px;}
.ws17{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.212000px;}
.ws18{word-spacing:-13.140000px;}
.ws1c{word-spacing:-12.420000px;}
.ws20{word-spacing:-9.960000px;}
.ws16{word-spacing:-7.632000px;}
.ws1d{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._2b{margin-left:-13.680000px;}
._3{margin-left:-11.014560px;}
._17{margin-left:-9.000000px;}
._4{margin-left:-7.848000px;}
._27{margin-left:-6.809040px;}
._6{margin-left:-5.616000px;}
._2{margin-left:-3.889440px;}
._1{margin-left:-2.568240px;}
._5{margin-left:-1.224000px;}
._0{width:1.513440px;}
._7{width:3.022560px;}
._8{width:4.380240px;}
._9{width:5.974560px;}
._a{width:7.202880px;}
._1c{width:8.830560px;}
._14{width:10.007280px;}
._11{width:11.208240px;}
._12{width:12.456000px;}
._13{width:14.099280px;}
._24{width:15.146160px;}
._19{width:16.162800px;}
._1d{width:19.918560px;}
._18{width:21.744000px;}
._c{width:23.040000px;}
._b{width:24.528000px;}
._1a{width:25.690560px;}
._e{width:26.854560px;}
._f{width:28.296000px;}
._1e{width:29.448240px;}
._10{width:30.456000px;}
._1b{width:31.694880px;}
._1f{width:33.307920px;}
._23{width:35.040240px;}
._22{width:36.360000px;}
._2e{width:37.449600px;}
._d{width:38.496240px;}
._25{width:39.744000px;}
._15{width:40.824000px;}
._16{width:42.408000px;}
._21{width:44.055120px;}
._20{width:45.072000px;}
._2c{width:46.800000px;}
._2d{width:48.132240px;}
._2a{width:49.536000px;}
._26{width:51.862800px;}
._29{width:56.994240px;}
._28{width:58.150800px;}
._30{width:63.752160px;}
._2f{width:65.376000px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:69.480000px;}
.y6f{bottom:92.160000px;}
.y42{bottom:92.340000px;}
.y58{bottom:92.700000px;}
.yad{bottom:93.060000px;}
.y38{bottom:93.600000px;}
.y62{bottom:93.780000px;}
.y4e{bottom:97.560000px;}
.y31{bottom:97.920000px;}
.y37{bottom:98.820000px;}
.y61{bottom:101.340000px;}
.y7a{bottom:107.820000px;}
.y6e{bottom:109.440000px;}
.y41{bottom:109.620000px;}
.y4d{bottom:109.800000px;}
.yac{bottom:111.960000px;}
.ya2{bottom:114.660000px;}
.y57{bottom:114.840000px;}
.ya9{bottom:116.100000px;}
.y36{bottom:116.280000px;}
.y6d{bottom:117.000000px;}
.yab{bottom:117.180000px;}
.y60{bottom:117.900000px;}
.ya8{bottom:121.320000px;}
.y30{bottom:121.680000px;}
.y9c{bottom:123.660000px;}
.y35{bottom:123.840000px;}
.y79{bottom:125.100000px;}
.y5f{bottom:125.460000px;}
.y40{bottom:127.080000px;}
.y4c{bottom:127.440000px;}
.y56{bottom:128.520000px;}
.ya1{bottom:130.140000px;}
.y4b{bottom:132.660000px;}
.y8b{bottom:133.560000px;}
.y6c{bottom:133.740000px;}
.yaa{bottom:134.640000px;}
.y55{bottom:136.080000px;}
.ya7{bottom:137.340000px;}
.y8a{bottom:138.780000px;}
.y34{bottom:140.400000px;}
.y9b{bottom:140.940000px;}
.y6b{bottom:141.300000px;}
.y5e{bottom:142.020000px;}
.y2f{bottom:145.440000px;}
.y3f{bottom:145.800000px;}
.y4a{bottom:146.160000px;}
.ya0{bottom:147.420000px;}
.y9a{bottom:148.500000px;}
.y78{bottom:149.040000px;}
.y5d{bottom:149.580000px;}
.y54{bottom:151.200000px;}
.y3e{bottom:153.390000px;}
.y49{bottom:153.750000px;}
.y77{bottom:154.290000px;}
.y89{bottom:154.650000px;}
.y9f{bottom:155.010000px;}
.y6a{bottom:157.710000px;}
.ya6{bottom:162.210000px;}
.y69{bottom:162.930000px;}
.y99{bottom:163.650000px;}
.yc6{bottom:164.370000px;}
.y5c{bottom:166.170000px;}
.y53{bottom:168.510000px;}
.y2e{bottom:169.410000px;}
.y3d{bottom:169.770000px;}
.y76{bottom:171.210000px;}
.y9e{bottom:171.570000px;}
.y88{bottom:171.750000px;}
.y3c{bottom:174.990000px;}
.y52{bottom:176.070000px;}
.y68{bottom:178.770000px;}
.ya5{bottom:178.950000px;}
.y87{bottom:179.310000px;}
.y98{bottom:179.490000px;}
.y48{bottom:188.670000px;}
.y3b{bottom:192.630000px;}
.y2d{bottom:193.170000px;}
.y86{bottom:194.430000px;}
.y97{bottom:195.330000px;}
.y67{bottom:196.050000px;}
.y47{bottom:196.230000px;}
.y5b{bottom:200.010000px;}
.y66{bottom:203.610000px;}
.y75{bottom:205.950000px;}
.y96{bottom:210.990000px;}
.y85{bottom:211.710000px;}
.y46{bottom:212.790000px;}
.y74{bottom:213.510000px;}
.y2c{bottom:216.930000px;}
.y84{bottom:219.270000px;}
.y65{bottom:220.170000px;}
.y95{bottom:228.090000px;}
.y73{bottom:230.070000px;}
.y83{bottom:234.390000px;}
.y94{bottom:235.650000px;}
.yc5{bottom:236.550000px;}
.y2b{bottom:240.690000px;}
.y9d{bottom:247.530000px;}
.y82{bottom:251.850000px;}
.y93{bottom:252.030000px;}
.y92{bottom:257.250000px;}
.y81{bottom:259.410000px;}
.yc4{bottom:260.490000px;}
.y2a{bottom:264.630000px;}
.y91{bottom:273.270000px;}
.y80{bottom:275.970000px;}
.yc3{bottom:284.610000px;}
.y29{bottom:288.390000px;}
.y90{bottom:290.370000px;}
.y3a{bottom:295.230000px;}
.y8f{bottom:297.930000px;}
.yc2{bottom:308.370000px;}
.y28{bottom:312.150000px;}
.y8e{bottom:314.490000px;}
.yc1{bottom:332.310000px;}
.y27{bottom:335.910000px;}
.y72{bottom:342.750000px;}
.yc0{bottom:356.430000px;}
.y26{bottom:359.670000px;}
.ya4{bottom:366.510000px;}
.ybf{bottom:380.370000px;}
.y25{bottom:383.610000px;}
.y5a{bottom:390.450000px;}
.ybe{bottom:404.175000px;}
.y24{bottom:407.415000px;}
.ybd{bottom:428.115000px;}
.y23{bottom:431.175000px;}
.ybc{bottom:452.235000px;}
.y22{bottom:454.935000px;}
.y7f{bottom:461.775000px;}
.ybb{bottom:476.175000px;}
.y21{bottom:478.875000px;}
.ya3{bottom:485.715000px;}
.yba{bottom:500.475000px;}
.y20{bottom:502.635000px;}
.y45{bottom:509.475000px;}
.yb9{bottom:524.595000px;}
.y1f{bottom:526.395000px;}
.yb8{bottom:548.895000px;}
.y1e{bottom:550.155000px;}
.y44{bottom:556.995000px;}
.yb7{bottom:572.655000px;}
.y1d{bottom:574.095000px;}
.y39{bottom:580.935000px;}
.yb6{bottom:596.955000px;}
.y1c{bottom:597.855000px;}
.y33{bottom:604.695000px;}
.yb5{bottom:620.715000px;}
.y1b{bottom:621.615000px;}
.y64{bottom:628.455000px;}
.yb4{bottom:644.475000px;}
.y1a{bottom:645.375000px;}
.yb3{bottom:668.445000px;}
.y19{bottom:669.345000px;}
.y43{bottom:676.185000px;}
.yb2{bottom:692.565000px;}
.y18{bottom:693.105000px;}
.yb1{bottom:716.325000px;}
.y17{bottom:716.865000px;}
.y71{bottom:723.705000px;}
.yb0{bottom:740.265000px;}
.y16{bottom:740.625000px;}
.y7e{bottom:747.465000px;}
.yaf{bottom:764.025000px;}
.y15{bottom:764.565000px;}
.y51{bottom:771.405000px;}
.yae{bottom:787.965000px;}
.y14{bottom:788.325000px;}
.y13{bottom:812.085000px;}
.y32{bottom:818.925000px;}
.y12{bottom:835.845000px;}
.y7d{bottom:842.685000px;}
.y11{bottom:859.605000px;}
.y10{bottom:883.545000px;}
.y50{bottom:890.385000px;}
.yf{bottom:907.350000px;}
.y8d{bottom:914.190000px;}
.ye{bottom:931.110000px;}
.y59{bottom:937.950000px;}
.yd{bottom:954.870000px;}
.yc{bottom:978.810000px;}
.y63{bottom:985.650000px;}
.yb{bottom:1002.570000px;}
.y7c{bottom:1009.410000px;}
.ya{bottom:1026.330000px;}
.y7b{bottom:1033.170000px;}
.y9{bottom:1050.090000px;}
.y70{bottom:1056.930000px;}
.y8{bottom:1074.030000px;}
.y4f{bottom:1080.870000px;}
.y7{bottom:1097.790000px;}
.y8c{bottom:1104.630000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.h11{height:38.158594px;}
.hc{height:38.671172px;}
.h16{height:47.321367px;}
.ha{height:47.344922px;}
.h15{height:47.592773px;}
.h2{height:51.677227px;}
.hf{height:52.669336px;}
.hb{height:52.998047px;}
.h14{height:53.709961px;}
.h12{height:58.651172px;}
.h10{height:59.439023px;}
.h3{height:62.211094px;}
.h6{height:62.261719px;}
.h9{height:63.457031px;}
.hd{height:65.884219px;}
.h17{height:70.628906px;}
.h8{height:70.664062px;}
.h13{height:74.004654px;}
.he{height:74.244727px;}
.h7{height:74.953125px;}
.h5{height:82.676953px;}
.h4{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:84.995987px;}
.x1b{left:90.395987px;}
.x1c{left:92.195987px;}
.x19{left:93.275987px;}
.x34{left:94.715987px;}
.x18{left:96.155987px;}
.x4e{left:97.235987px;}
.x33{left:98.675987px;}
.x28{left:100.115987px;}
.x17{left:102.635987px;}
.x6{left:104.075987px;}
.x1a{left:107.315987px;}
.x31{left:164.729973px;}
.x2f{left:170.669973px;}
.x32{left:176.969987px;}
.x5b{left:180.569973px;}
.x5f{left:181.649973px;}
.x30{left:182.909987px;}
.x53{left:188.669973px;}
.x5c{left:192.809987px;}
.x60{left:193.889987px;}
.x54{left:200.909987px;}
.x37{left:215.669973px;}
.x38{left:227.909987px;}
.x7{left:247.529987px;}
.xe{left:271.874987px;}
.x3f{left:277.814973px;}
.x46{left:279.254973px;}
.x40{left:290.054987px;}
.x47{left:291.494987px;}
.x11{left:297.434987px;}
.x21{left:301.034987px;}
.x42{left:305.534973px;}
.xc{left:308.594987px;}
.x2d{left:313.634973px;}
.x15{left:315.974987px;}
.x43{left:317.774987px;}
.x2e{left:319.754987px;}
.x61{left:321.554987px;}
.x55{left:335.954973px;}
.x9{left:337.034987px;}
.x10{left:348.374987px;}
.x4{left:350.714987px;}
.xf{left:354.854987px;}
.xb{left:356.474987px;}
.x12{left:358.994987px;}
.x48{left:361.154973px;}
.x29{left:365.834973px;}
.x2a{left:371.954987px;}
.x49{left:373.394987px;}
.x13{left:378.614987px;}
.x3b{left:379.694973px;}
.xa{left:380.774987px;}
.x14{left:389.054987px;}
.x3c{left:391.934987px;}
.x1f{left:393.374973px;}
.xd{left:396.794987px;}
.x20{left:399.494987px;}
.x16{left:412.994987px;}
.x5{left:430.634987px;}
.x35{left:442.514973px;}
.x8{left:446.504987px;}
.x36{left:454.784987px;}
.x2{left:457.124987px;}
.x24{left:506.444973px;}
.x1{left:510.404987px;}
.x25{left:512.564987px;}
.x44{left:573.224973px;}
.x39{left:574.304973px;}
.x59{left:578.984973px;}
.x45{left:585.464987px;}
.x3a{left:586.544987px;}
.x51{left:589.604973px;}
.x5a{left:591.224987px;}
.x58{left:597.524987px;}
.x3d{left:599.144973px;}
.x52{left:601.844987px;}
.x3e{left:611.384987px;}
.x22{left:639.689973px;}
.x23{left:645.809987px;}
.x4c{left:653.009973px;}
.x5d{left:656.969973px;}
.x4f{left:658.409973px;}
.x26{left:661.109973px;}
.x4a{left:663.269973px;}
.x4d{left:665.249987px;}
.x27{left:667.229987px;}
.x5e{left:669.209987px;}
.x50{left:670.649987px;}
.x4b{left:675.509987px;}
.x56{left:715.649973px;}
.x57{left:727.889987px;}
.x2b{left:752.549973px;}
.x2c{left:758.669987px;}
.x41{left:770.729987px;}
.x1d{left:799.169973px;}
.x1e{left:805.289987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-12.800000pt;}
.ls24{letter-spacing:-10.880000pt;}
.ls2f{letter-spacing:-7.146667pt;}
.ls15{letter-spacing:-7.040000pt;}
.ls25{letter-spacing:-5.216000pt;}
.ls8{letter-spacing:-2.496000pt;}
.lse{letter-spacing:-1.536000pt;}
.ls7{letter-spacing:-1.408000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls20{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.242133pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.117867pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.008747pt;}
.ls1d{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.030080pt;}
.ls18{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls1f{letter-spacing:0.090667pt;}
.ls2d{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.125440pt;}
.ls19{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.133120pt;}
.lsb{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.272000pt;}
.lsd{letter-spacing:0.279040pt;}
.ls11{letter-spacing:0.294400pt;}
.ls23{letter-spacing:0.305920pt;}
.ls5{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:3.200000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls13{letter-spacing:10.880000pt;}
.ls2b{letter-spacing:32.000000pt;}
.ls16{letter-spacing:126.208000pt;}
.ls2c{letter-spacing:152.912640pt;}
.ws1e{word-spacing:-64.000000pt;}
.ws1b{word-spacing:-53.120000pt;}
.ws15{word-spacing:-48.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.320000pt;}
.ws1f{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.232000pt;}
.ws1a{word-spacing:-15.168000pt;}
.ws11{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.592000pt;}
.wsa{word-spacing:-14.464000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.504000pt;}
.ws19{word-spacing:-13.306880pt;}
.wsc{word-spacing:-13.280000pt;}
.ws17{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.005120pt;}
.wsf{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.744000pt;}
.ws18{word-spacing:-11.680000pt;}
.ws1c{word-spacing:-11.040000pt;}
.ws20{word-spacing:-8.853333pt;}
.ws16{word-spacing:-6.784000pt;}
.ws1d{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._2b{margin-left:-12.160000pt;}
._3{margin-left:-9.790720pt;}
._17{margin-left:-8.000000pt;}
._4{margin-left:-6.976000pt;}
._27{margin-left:-6.052480pt;}
._6{margin-left:-4.992000pt;}
._2{margin-left:-3.457280pt;}
._1{margin-left:-2.282880pt;}
._5{margin-left:-1.088000pt;}
._0{width:1.345280pt;}
._7{width:2.686720pt;}
._8{width:3.893547pt;}
._9{width:5.310720pt;}
._a{width:6.402560pt;}
._1c{width:7.849387pt;}
._14{width:8.895360pt;}
._11{width:9.962880pt;}
._12{width:11.072000pt;}
._13{width:12.532693pt;}
._24{width:13.463253pt;}
._19{width:14.366933pt;}
._1d{width:17.705387pt;}
._18{width:19.328000pt;}
._c{width:20.480000pt;}
._b{width:21.802667pt;}
._1a{width:22.836053pt;}
._e{width:23.870720pt;}
._f{width:25.152000pt;}
._1e{width:26.176213pt;}
._10{width:27.072000pt;}
._1b{width:28.173227pt;}
._1f{width:29.607040pt;}
._23{width:31.146880pt;}
._22{width:32.320000pt;}
._2e{width:33.288533pt;}
._d{width:34.218880pt;}
._25{width:35.328000pt;}
._15{width:36.288000pt;}
._16{width:37.696000pt;}
._21{width:39.160107pt;}
._20{width:40.064000pt;}
._2c{width:41.600000pt;}
._2d{width:42.784213pt;}
._2a{width:44.032000pt;}
._26{width:46.100267pt;}
._29{width:50.661547pt;}
._28{width:51.689600pt;}
._30{width:56.668587pt;}
._2f{width:58.112000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:61.760000pt;}
.y6f{bottom:81.920000pt;}
.y42{bottom:82.080000pt;}
.y58{bottom:82.400000pt;}
.yad{bottom:82.720000pt;}
.y38{bottom:83.200000pt;}
.y62{bottom:83.360000pt;}
.y4e{bottom:86.720000pt;}
.y31{bottom:87.040000pt;}
.y37{bottom:87.840000pt;}
.y61{bottom:90.080000pt;}
.y7a{bottom:95.840000pt;}
.y6e{bottom:97.280000pt;}
.y41{bottom:97.440000pt;}
.y4d{bottom:97.600000pt;}
.yac{bottom:99.520000pt;}
.ya2{bottom:101.920000pt;}
.y57{bottom:102.080000pt;}
.ya9{bottom:103.200000pt;}
.y36{bottom:103.360000pt;}
.y6d{bottom:104.000000pt;}
.yab{bottom:104.160000pt;}
.y60{bottom:104.800000pt;}
.ya8{bottom:107.840000pt;}
.y30{bottom:108.160000pt;}
.y9c{bottom:109.920000pt;}
.y35{bottom:110.080000pt;}
.y79{bottom:111.200000pt;}
.y5f{bottom:111.520000pt;}
.y40{bottom:112.960000pt;}
.y4c{bottom:113.280000pt;}
.y56{bottom:114.240000pt;}
.ya1{bottom:115.680000pt;}
.y4b{bottom:117.920000pt;}
.y8b{bottom:118.720000pt;}
.y6c{bottom:118.880000pt;}
.yaa{bottom:119.680000pt;}
.y55{bottom:120.960000pt;}
.ya7{bottom:122.080000pt;}
.y8a{bottom:123.360000pt;}
.y34{bottom:124.800000pt;}
.y9b{bottom:125.280000pt;}
.y6b{bottom:125.600000pt;}
.y5e{bottom:126.240000pt;}
.y2f{bottom:129.280000pt;}
.y3f{bottom:129.600000pt;}
.y4a{bottom:129.920000pt;}
.ya0{bottom:131.040000pt;}
.y9a{bottom:132.000000pt;}
.y78{bottom:132.480000pt;}
.y5d{bottom:132.960000pt;}
.y54{bottom:134.400000pt;}
.y3e{bottom:136.346667pt;}
.y49{bottom:136.666667pt;}
.y77{bottom:137.146667pt;}
.y89{bottom:137.466667pt;}
.y9f{bottom:137.786667pt;}
.y6a{bottom:140.186667pt;}
.ya6{bottom:144.186667pt;}
.y69{bottom:144.826667pt;}
.y99{bottom:145.466667pt;}
.yc6{bottom:146.106667pt;}
.y5c{bottom:147.706667pt;}
.y53{bottom:149.786667pt;}
.y2e{bottom:150.586667pt;}
.y3d{bottom:150.906667pt;}
.y76{bottom:152.186667pt;}
.y9e{bottom:152.506667pt;}
.y88{bottom:152.666667pt;}
.y3c{bottom:155.546667pt;}
.y52{bottom:156.506667pt;}
.y68{bottom:158.906667pt;}
.ya5{bottom:159.066667pt;}
.y87{bottom:159.386667pt;}
.y98{bottom:159.546667pt;}
.y48{bottom:167.706667pt;}
.y3b{bottom:171.226667pt;}
.y2d{bottom:171.706667pt;}
.y86{bottom:172.826667pt;}
.y97{bottom:173.626667pt;}
.y67{bottom:174.266667pt;}
.y47{bottom:174.426667pt;}
.y5b{bottom:177.786667pt;}
.y66{bottom:180.986667pt;}
.y75{bottom:183.066667pt;}
.y96{bottom:187.546667pt;}
.y85{bottom:188.186667pt;}
.y46{bottom:189.146667pt;}
.y74{bottom:189.786667pt;}
.y2c{bottom:192.826667pt;}
.y84{bottom:194.906667pt;}
.y65{bottom:195.706667pt;}
.y95{bottom:202.746667pt;}
.y73{bottom:204.506667pt;}
.y83{bottom:208.346667pt;}
.y94{bottom:209.466667pt;}
.yc5{bottom:210.266667pt;}
.y2b{bottom:213.946667pt;}
.y9d{bottom:220.026667pt;}
.y82{bottom:223.866667pt;}
.y93{bottom:224.026667pt;}
.y92{bottom:228.666667pt;}
.y81{bottom:230.586667pt;}
.yc4{bottom:231.546667pt;}
.y2a{bottom:235.226667pt;}
.y91{bottom:242.906667pt;}
.y80{bottom:245.306667pt;}
.yc3{bottom:252.986667pt;}
.y29{bottom:256.346667pt;}
.y90{bottom:258.106667pt;}
.y3a{bottom:262.426667pt;}
.y8f{bottom:264.826667pt;}
.yc2{bottom:274.106667pt;}
.y28{bottom:277.466667pt;}
.y8e{bottom:279.546667pt;}
.yc1{bottom:295.386667pt;}
.y27{bottom:298.586667pt;}
.y72{bottom:304.666667pt;}
.yc0{bottom:316.826667pt;}
.y26{bottom:319.706667pt;}
.ya4{bottom:325.786667pt;}
.ybf{bottom:338.106667pt;}
.y25{bottom:340.986667pt;}
.y5a{bottom:347.066667pt;}
.ybe{bottom:359.266667pt;}
.y24{bottom:362.146667pt;}
.ybd{bottom:380.546667pt;}
.y23{bottom:383.266667pt;}
.ybc{bottom:401.986667pt;}
.y22{bottom:404.386667pt;}
.y7f{bottom:410.466667pt;}
.ybb{bottom:423.266667pt;}
.y21{bottom:425.666667pt;}
.ya3{bottom:431.746667pt;}
.yba{bottom:444.866667pt;}
.y20{bottom:446.786667pt;}
.y45{bottom:452.866667pt;}
.yb9{bottom:466.306667pt;}
.y1f{bottom:467.906667pt;}
.yb8{bottom:487.906667pt;}
.y1e{bottom:489.026667pt;}
.y44{bottom:495.106667pt;}
.yb7{bottom:509.026667pt;}
.y1d{bottom:510.306667pt;}
.y39{bottom:516.386667pt;}
.yb6{bottom:530.626667pt;}
.y1c{bottom:531.426667pt;}
.y33{bottom:537.506667pt;}
.yb5{bottom:551.746667pt;}
.y1b{bottom:552.546667pt;}
.y64{bottom:558.626667pt;}
.yb4{bottom:572.866667pt;}
.y1a{bottom:573.666667pt;}
.yb3{bottom:594.173333pt;}
.y19{bottom:594.973333pt;}
.y43{bottom:601.053333pt;}
.yb2{bottom:615.613333pt;}
.y18{bottom:616.093333pt;}
.yb1{bottom:636.733333pt;}
.y17{bottom:637.213333pt;}
.y71{bottom:643.293333pt;}
.yb0{bottom:658.013333pt;}
.y16{bottom:658.333333pt;}
.y7e{bottom:664.413333pt;}
.yaf{bottom:679.133333pt;}
.y15{bottom:679.613333pt;}
.y51{bottom:685.693333pt;}
.yae{bottom:700.413333pt;}
.y14{bottom:700.733333pt;}
.y13{bottom:721.853333pt;}
.y32{bottom:727.933333pt;}
.y12{bottom:742.973333pt;}
.y7d{bottom:749.053333pt;}
.y11{bottom:764.093333pt;}
.y10{bottom:785.373333pt;}
.y50{bottom:791.453333pt;}
.yf{bottom:806.533333pt;}
.y8d{bottom:812.613333pt;}
.ye{bottom:827.653333pt;}
.y59{bottom:833.733333pt;}
.yd{bottom:848.773333pt;}
.yc{bottom:870.053333pt;}
.y63{bottom:876.133333pt;}
.yb{bottom:891.173333pt;}
.y7c{bottom:897.253333pt;}
.ya{bottom:912.293333pt;}
.y7b{bottom:918.373333pt;}
.y9{bottom:933.413333pt;}
.y70{bottom:939.493333pt;}
.y8{bottom:954.693333pt;}
.y4f{bottom:960.773333pt;}
.y7{bottom:975.813333pt;}
.y8c{bottom:981.893333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.h11{height:33.918750pt;}
.hc{height:34.374375pt;}
.h16{height:42.063437pt;}
.ha{height:42.084375pt;}
.h15{height:42.304688pt;}
.h2{height:45.935313pt;}
.hf{height:46.817187pt;}
.hb{height:47.109375pt;}
.h14{height:47.742188pt;}
.h12{height:52.134375pt;}
.h10{height:52.834688pt;}
.h3{height:55.298750pt;}
.h6{height:55.343750pt;}
.h9{height:56.406250pt;}
.hd{height:58.563750pt;}
.h17{height:62.781250pt;}
.h8{height:62.812500pt;}
.h13{height:65.781915pt;}
.he{height:65.995312pt;}
.h7{height:66.625000pt;}
.h5{height:73.490625pt;}
.h4{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551988pt;}
.x1b{left:80.351988pt;}
.x1c{left:81.951988pt;}
.x19{left:82.911988pt;}
.x34{left:84.191988pt;}
.x18{left:85.471988pt;}
.x4e{left:86.431988pt;}
.x33{left:87.711988pt;}
.x28{left:88.991988pt;}
.x17{left:91.231988pt;}
.x6{left:92.511988pt;}
.x1a{left:95.391988pt;}
.x31{left:146.426643pt;}
.x2f{left:151.706643pt;}
.x32{left:157.306655pt;}
.x5b{left:160.506643pt;}
.x5f{left:161.466643pt;}
.x30{left:162.586655pt;}
.x53{left:167.706643pt;}
.x5c{left:171.386655pt;}
.x60{left:172.346655pt;}
.x54{left:178.586655pt;}
.x37{left:191.706643pt;}
.x38{left:202.586655pt;}
.x7{left:220.026655pt;}
.xe{left:241.666655pt;}
.x3f{left:246.946643pt;}
.x46{left:248.226643pt;}
.x40{left:257.826655pt;}
.x47{left:259.106655pt;}
.x11{left:264.386655pt;}
.x21{left:267.586655pt;}
.x42{left:271.586643pt;}
.xc{left:274.306655pt;}
.x2d{left:278.786643pt;}
.x15{left:280.866655pt;}
.x43{left:282.466655pt;}
.x2e{left:284.226655pt;}
.x61{left:285.826655pt;}
.x55{left:298.626643pt;}
.x9{left:299.586655pt;}
.x10{left:309.666655pt;}
.x4{left:311.746655pt;}
.xf{left:315.426655pt;}
.xb{left:316.866655pt;}
.x12{left:319.106655pt;}
.x48{left:321.026643pt;}
.x29{left:325.186643pt;}
.x2a{left:330.626655pt;}
.x49{left:331.906655pt;}
.x13{left:336.546655pt;}
.x3b{left:337.506643pt;}
.xa{left:338.466655pt;}
.x14{left:345.826655pt;}
.x3c{left:348.386655pt;}
.x1f{left:349.666643pt;}
.xd{left:352.706655pt;}
.x20{left:355.106655pt;}
.x16{left:367.106655pt;}
.x5{left:382.786655pt;}
.x35{left:393.346643pt;}
.x8{left:396.893322pt;}
.x36{left:404.253322pt;}
.x2{left:406.333322pt;}
.x24{left:450.173310pt;}
.x1{left:453.693322pt;}
.x25{left:455.613322pt;}
.x44{left:509.533310pt;}
.x39{left:510.493310pt;}
.x59{left:514.653310pt;}
.x45{left:520.413322pt;}
.x3a{left:521.373322pt;}
.x51{left:524.093310pt;}
.x5a{left:525.533322pt;}
.x58{left:531.133322pt;}
.x3d{left:532.573310pt;}
.x52{left:534.973322pt;}
.x3e{left:543.453322pt;}
.x22{left:568.613310pt;}
.x23{left:574.053322pt;}
.x4c{left:580.453310pt;}
.x5d{left:583.973310pt;}
.x4f{left:585.253310pt;}
.x26{left:587.653310pt;}
.x4a{left:589.573310pt;}
.x4d{left:591.333322pt;}
.x27{left:593.093322pt;}
.x5e{left:594.853322pt;}
.x50{left:596.133322pt;}
.x4b{left:600.453322pt;}
.x56{left:636.133310pt;}
.x57{left:647.013322pt;}
.x2b{left:668.933310pt;}
.x2c{left:674.373322pt;}
.x41{left:685.093322pt;}
.x1d{left:710.373310pt;}
.x1e{left:715.813322pt;}
}




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