
    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_492bf3f33a9b9da6848bf2be.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.044000;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_7f6b41447af5576cc2ae8b1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708000;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_9d22004916bc7c1ddaf9d6b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041000;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_0af72e8effdef9b2d6747d6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.036000;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_630e0a657455b94dac90be53.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.044000;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_c5ad709d33e9bb8e86b7cdca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003000;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_9deaad45e2144cfc52f3536f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040000;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_e57d8b402b47b206d8dc2786.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.041000;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_65175e1b0ef5738600fa03b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080000;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_9959d051c1b23af10f7a431f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.041000;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_6627903da3663f49d5e70129.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.036000;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_19a713ddabd80fae7a015ea5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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_2988eda3c2fed73743cb26aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.989000;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_112a0cd99b47f582a2c8fc08.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.944000;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_6584e375477391ed852e59d2.woff2')format("woff");}.fff{font-family:fff;line-height:1.040000;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_f4222ff4841c4098c6c89a7f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.041000;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.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.m3{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;}
.v1{vertical-align:19.980000px;}
.lsa{letter-spacing:-1.440000px;}
.ls31{letter-spacing:-1.260000px;}
.lsb{letter-spacing:-1.200000px;}
.ls4c{letter-spacing:-0.960000px;}
.ls39{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.864000px;}
.ls3f{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.810000px;}
.ls2b{letter-spacing:-0.780000px;}
.lse{letter-spacing:-0.756000px;}
.ls36{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.660000px;}
.ls30{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.486000px;}
.ls16{letter-spacing:-0.480000px;}
.ls35{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.378000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.324000px;}
.ls38{letter-spacing:-0.300000px;}
.ls21{letter-spacing:-0.240000px;}
.ls3e{letter-spacing:-0.192000px;}
.ls20{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.120000px;}
.ls22{letter-spacing:-0.060000px;}
.lsf{letter-spacing:-0.054000px;}
.ls9{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.030000px;}
.ls1a{letter-spacing:0.060000px;}
.ls2d{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.210000px;}
.ls6{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.240000px;}
.ls27{letter-spacing:0.300000px;}
.ls41{letter-spacing:0.330000px;}
.ls3c{letter-spacing:0.349560px;}
.ls1b{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378000px;}
.ls8{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.486000px;}
.ls3d{letter-spacing:0.510000px;}
.ls3{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.567000px;}
.ls17{letter-spacing:0.600000px;}
.ls26{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.750000px;}
.ls33{letter-spacing:0.780000px;}
.ls23{letter-spacing:0.840000px;}
.ls25{letter-spacing:0.900000px;}
.ls34{letter-spacing:0.930000px;}
.ls2e{letter-spacing:0.960000px;}
.ls3b{letter-spacing:1.020000px;}
.ls28{letter-spacing:1.080000px;}
.ls37{letter-spacing:1.110000px;}
.ls32{letter-spacing:1.140000px;}
.ls4b{letter-spacing:1.200000px;}
.ls51{letter-spacing:1.230000px;}
.ls40{letter-spacing:1.260000px;}
.ls52{letter-spacing:1.290000px;}
.ls42{letter-spacing:1.320000px;}
.ls4f{letter-spacing:1.380000px;}
.ls4d{letter-spacing:1.620000px;}
.ls49{letter-spacing:1.800000px;}
.ls2f{letter-spacing:1.860000px;}
.ls44{letter-spacing:2.100000px;}
.ls50{letter-spacing:2.160000px;}
.ls43{letter-spacing:2.400000px;}
.ls45{letter-spacing:2.970000px;}
.ls4a{letter-spacing:3.000000px;}
.ls7{letter-spacing:3.186000px;}
.ls4e{letter-spacing:3.300000px;}
.ls14{letter-spacing:3.456000px;}
.ls48{letter-spacing:3.840000px;}
.ls47{letter-spacing:5.580000px;}
.ls46{letter-spacing:8.940000px;}
.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;}
}
.ws4{word-spacing:-20.160000px;}
.ws5e{word-spacing:-17.520000px;}
.ws1f{word-spacing:-16.980000px;}
.ws60{word-spacing:-16.860000px;}
.ws21{word-spacing:-16.260000px;}
.ws4c{word-spacing:-16.200000px;}
.ws5{word-spacing:-16.140000px;}
.ws4b{word-spacing:-16.020000px;}
.ws54{word-spacing:-15.780000px;}
.ws6{word-spacing:-15.720000px;}
.ws48{word-spacing:-15.600000px;}
.ws59{word-spacing:-15.540000px;}
.ws6a{word-spacing:-15.480000px;}
.ws5f{word-spacing:-15.420000px;}
.ws6b{word-spacing:-15.180000px;}
.ws3{word-spacing:-14.148000px;}
.ws0{word-spacing:-13.584000px;}
.ws68{word-spacing:-13.392000px;}
.ws70{word-spacing:-13.104000px;}
.ws2{word-spacing:-12.576000px;}
.ws7{word-spacing:-12.096000px;}
.ws20{word-spacing:-9.164760px;}
.ws63{word-spacing:-5.580000px;}
.ws64{word-spacing:-3.840000px;}
.ws1a{word-spacing:-3.456000px;}
.ws6c{word-spacing:-3.300000px;}
.ws1b{word-spacing:-3.186000px;}
.ws61{word-spacing:-3.000000px;}
.ws5c{word-spacing:-2.400000px;}
.ws6d{word-spacing:-2.160000px;}
.ws5d{word-spacing:-2.100000px;}
.ws40{word-spacing:-1.860000px;}
.ws58{word-spacing:-1.680000px;}
.ws3b{word-spacing:-1.620000px;}
.wsc{word-spacing:-1.566000px;}
.ws22{word-spacing:-1.560000px;}
.ws15{word-spacing:-1.512000px;}
.ws35{word-spacing:-1.500000px;}
.ws55{word-spacing:-1.380000px;}
.ws5b{word-spacing:-1.320000px;}
.ws56{word-spacing:-1.260000px;}
.ws52{word-spacing:-1.200000px;}
.ws4a{word-spacing:-1.140000px;}
.ws3f{word-spacing:-1.080000px;}
.ws4e{word-spacing:-1.020000px;}
.ws3e{word-spacing:-0.960000px;}
.ws30{word-spacing:-0.900000px;}
.ws2e{word-spacing:-0.840000px;}
.ws2a{word-spacing:-0.780000px;}
.ws2f{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.600000px;}
.ws18{word-spacing:-0.594000px;}
.ws12{word-spacing:-0.540000px;}
.ws17{word-spacing:-0.486000px;}
.ws29{word-spacing:-0.480000px;}
.ws11{word-spacing:-0.432000px;}
.ws1d{word-spacing:-0.420000px;}
.wse{word-spacing:-0.378000px;}
.ws27{word-spacing:-0.360000px;}
.ws3d{word-spacing:-0.300000px;}
.ws28{word-spacing:-0.240000px;}
.ws19{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.180000px;}
.ws24{word-spacing:-0.120000px;}
.ws10{word-spacing:-0.108000px;}
.ws26{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:0.054000px;}
.ws2c{word-spacing:0.060000px;}
.ws1c{word-spacing:0.120000px;}
.ws3c{word-spacing:0.180000px;}
.ws50{word-spacing:0.192000px;}
.ws2b{word-spacing:0.240000px;}
.ws57{word-spacing:0.300000px;}
.ws16{word-spacing:0.324000px;}
.ws32{word-spacing:0.360000px;}
.ws14{word-spacing:0.378000px;}
.ws45{word-spacing:0.420000px;}
.ws1e{word-spacing:0.480000px;}
.ws13{word-spacing:0.486000px;}
.wsa{word-spacing:0.540000px;}
.ws49{word-spacing:0.600000px;}
.ws2d{word-spacing:0.660000px;}
.ws46{word-spacing:0.720000px;}
.wsd{word-spacing:0.756000px;}
.ws33{word-spacing:0.780000px;}
.ws4d{word-spacing:0.840000px;}
.wsb{word-spacing:0.864000px;}
.ws39{word-spacing:0.900000px;}
.ws66{word-spacing:0.960000px;}
.ws41{word-spacing:1.260000px;}
.ws67{word-spacing:1.320000px;}
.ws47{word-spacing:1.380000px;}
.ws9{word-spacing:1.440000px;}
.ws36{word-spacing:1.500000px;}
.ws34{word-spacing:1.560000px;}
.ws44{word-spacing:1.620000px;}
.ws37{word-spacing:1.740000px;}
.ws3a{word-spacing:1.860000px;}
.ws42{word-spacing:1.980000px;}
.ws69{word-spacing:2.040000px;}
.ws4f{word-spacing:2.100000px;}
.ws38{word-spacing:2.160000px;}
.ws51{word-spacing:2.220000px;}
.ws43{word-spacing:2.340000px;}
.ws5a{word-spacing:2.580000px;}
.ws6e{word-spacing:4.260000px;}
.ws62{word-spacing:5.940000px;}
.ws6f{word-spacing:6.420000px;}
.ws65{word-spacing:7.680000px;}
.ws53{word-spacing:76.320000px;}
._0{margin-left:-979.245000px;}
._4{margin-left:-4.224000px;}
._3{margin-left:-3.120000px;}
._6{margin-left:-2.116200px;}
._1{margin-left:-1.113600px;}
._2{width:1.488000px;}
._5{width:2.723400px;}
._8{width:3.754800px;}
._b{width:4.878000px;}
._a{width:6.390000px;}
._c{width:7.780200px;}
._d{width:8.940000px;}
._7{width:9.979800px;}
._10{width:11.407800px;}
._f{width:12.490200px;}
._e{width:16.776000px;}
._12{width:34.800000px;}
._13{width:36.436200px;}
._11{width:49.216200px;}
._9{width:89.520000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(87,87,86);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(112,111,111);}
.fs4{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:40.979550px;}
.y1{bottom:55.379550px;}
.y27{bottom:127.899150px;}
.y82{bottom:132.933000px;}
.y4f{bottom:132.933150px;}
.ya1{bottom:133.953150px;}
.y26{bottom:145.899150px;}
.y81{bottom:150.933000px;}
.y4e{bottom:150.933150px;}
.y25{bottom:163.899150px;}
.y80{bottom:168.933000px;}
.y4d{bottom:168.933150px;}
.y7f{bottom:186.933000px;}
.y4c{bottom:186.933150px;}
.y7e{bottom:204.933000px;}
.y4b{bottom:204.933150px;}
.ya0{bottom:210.198150px;}
.y7d{bottom:222.933000px;}
.y55{bottom:222.933150px;}
.y9f{bottom:228.198150px;}
.y83{bottom:240.933000px;}
.y4a{bottom:240.933150px;}
.y9e{bottom:246.198150px;}
.y7c{bottom:258.933000px;}
.y49{bottom:258.933150px;}
.y24{bottom:262.899150px;}
.y9d{bottom:264.198150px;}
.y7b{bottom:276.933000px;}
.y56{bottom:276.933150px;}
.y23{bottom:279.099150px;}
.y9c{bottom:282.198150px;}
.y7a{bottom:294.933000px;}
.y54{bottom:294.933150px;}
.y9b{bottom:300.198150px;}
.y22{bottom:311.499150px;}
.y79{bottom:312.933000px;}
.y48{bottom:312.933150px;}
.y9a{bottom:318.198150px;}
.y21{bottom:327.699150px;}
.y78{bottom:330.933000px;}
.y47{bottom:330.933150px;}
.y99{bottom:336.198150px;}
.y20{bottom:343.899150px;}
.y77{bottom:348.933000px;}
.y46{bottom:348.933150px;}
.y98{bottom:354.198150px;}
.y1f{bottom:360.099150px;}
.y76{bottom:366.933000px;}
.y45{bottom:366.933150px;}
.y97{bottom:372.198150px;}
.y1e{bottom:376.299150px;}
.y75{bottom:384.933000px;}
.y44{bottom:384.933150px;}
.y96{bottom:390.198150px;}
.y1d{bottom:392.499150px;}
.y74{bottom:402.933000px;}
.y43{bottom:402.933150px;}
.y1c{bottom:408.699150px;}
.y95{bottom:412.443150px;}
.y73{bottom:420.933000px;}
.y42{bottom:420.933150px;}
.y1b{bottom:424.899150px;}
.y94{bottom:430.443150px;}
.y72{bottom:438.933000px;}
.y41{bottom:438.933150px;}
.y1a{bottom:441.099150px;}
.y93{bottom:448.443150px;}
.y71{bottom:456.933000px;}
.y40{bottom:456.933150px;}
.y19{bottom:457.299150px;}
.y92{bottom:466.443150px;}
.y18{bottom:473.499150px;}
.y70{bottom:474.933000px;}
.y3f{bottom:474.933150px;}
.y91{bottom:484.443150px;}
.y6f{bottom:492.933000px;}
.y3e{bottom:492.933150px;}
.y90{bottom:502.443150px;}
.y17{bottom:510.151200px;}
.y6e{bottom:510.933000px;}
.y3d{bottom:510.933150px;}
.y8f{bottom:520.443150px;}
.y6d{bottom:528.933000px;}
.y3c{bottom:528.933150px;}
.y16{bottom:531.751200px;}
.y8e{bottom:538.443150px;}
.y6c{bottom:546.933000px;}
.y3b{bottom:546.933150px;}
.y8d{bottom:556.443150px;}
.y6b{bottom:564.933000px;}
.y3a{bottom:564.933150px;}
.y15{bottom:569.551200px;}
.y8c{bottom:574.443150px;}
.y6a{bottom:582.933000px;}
.y39{bottom:582.933150px;}
.y14{bottom:585.751200px;}
.y8b{bottom:592.443150px;}
.y69{bottom:600.933000px;}
.y38{bottom:600.933150px;}
.y8a{bottom:610.443150px;}
.y13{bottom:618.151200px;}
.y68{bottom:618.933000px;}
.y37{bottom:618.933150px;}
.y89{bottom:628.443150px;}
.y12{bottom:634.351200px;}
.y67{bottom:636.933000px;}
.y36{bottom:636.933150px;}
.y88{bottom:646.443150px;}
.y11{bottom:650.551200px;}
.y66{bottom:654.933000px;}
.y35{bottom:654.933150px;}
.y87{bottom:664.443150px;}
.y10{bottom:666.751200px;}
.y65{bottom:672.933000px;}
.y34{bottom:672.933150px;}
.yf{bottom:682.951200px;}
.y86{bottom:686.688150px;}
.y64{bottom:690.933000px;}
.y33{bottom:690.933150px;}
.ye{bottom:699.151200px;}
.y85{bottom:704.688150px;}
.y63{bottom:708.933000px;}
.y32{bottom:708.933150px;}
.yd{bottom:715.351200px;}
.y84{bottom:722.688150px;}
.y62{bottom:726.933000px;}
.y31{bottom:726.933150px;}
.yc{bottom:731.551200px;}
.y61{bottom:744.933000px;}
.y30{bottom:744.933150px;}
.yb{bottom:747.751200px;}
.y60{bottom:762.933000px;}
.y53{bottom:762.933150px;}
.ya{bottom:763.951200px;}
.y9{bottom:780.151200px;}
.y5f{bottom:780.933000px;}
.y2f{bottom:780.933150px;}
.y8{bottom:796.351200px;}
.y5e{bottom:798.933000px;}
.y2e{bottom:798.933150px;}
.y5d{bottom:816.933000px;}
.y52{bottom:816.933150px;}
.y7{bottom:828.751050px;}
.y5c{bottom:834.933000px;}
.y51{bottom:834.933150px;}
.y6{bottom:846.751050px;}
.y5b{bottom:852.933000px;}
.y2d{bottom:852.933150px;}
.y5{bottom:864.751050px;}
.y5a{bottom:870.933000px;}
.y50{bottom:870.933150px;}
.y59{bottom:888.933000px;}
.y2c{bottom:888.933150px;}
.y4{bottom:890.603100px;}
.y58{bottom:906.933000px;}
.y2b{bottom:906.933150px;}
.y3{bottom:912.203100px;}
.y57{bottom:924.933000px;}
.y2a{bottom:924.933150px;}
.y29{bottom:967.002750px;}
.y28{bottom:980.502750px;}
.h2{height:40.416000px;}
.h9{height:42.288000px;}
.ha{height:44.520000px;}
.hc{height:44.760000px;}
.h6{height:45.468000px;}
.hb{height:47.220000px;}
.h7{height:47.574000px;}
.h5{height:50.520000px;}
.h8{height:52.860000px;}
.h3{height:58.248000px;}
.h4{height:60.624000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x11{left:52.284750px;}
.x12{left:53.400600px;}
.x8{left:57.096600px;}
.xe{left:58.608600px;}
.xf{left:81.270750px;}
.x5{left:82.664250px;}
.x4{left:84.387150px;}
.x3{left:85.959450px;}
.xd{left:95.669250px;}
.x13{left:103.935150px;}
.xb{left:106.379100px;}
.x10{left:125.966100px;}
.x9{left:127.389900px;}
.x14{left:170.850150px;}
.xc{left:278.255700px;}
.x2{left:414.863850px;}
.xa{left:479.529900px;}
.x7{left:531.681150px;}
.x6{left:543.129150px;}
.x1{left:649.175100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls31{letter-spacing:-1.120000pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls4c{letter-spacing:-0.853333pt;}
.ls39{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.768000pt;}
.ls3f{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.720000pt;}
.ls2b{letter-spacing:-0.693333pt;}
.lse{letter-spacing:-0.672000pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls30{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.432000pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls35{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.336000pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls38{letter-spacing:-0.266667pt;}
.ls21{letter-spacing:-0.213333pt;}
.ls3e{letter-spacing:-0.170667pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.106667pt;}
.ls22{letter-spacing:-0.053333pt;}
.lsf{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.026667pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls2d{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.186667pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls27{letter-spacing:0.266667pt;}
.ls41{letter-spacing:0.293333pt;}
.ls3c{letter-spacing:0.310720pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336000pt;}
.ls8{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.432000pt;}
.ls3d{letter-spacing:0.453333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.504000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls26{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.666667pt;}
.ls33{letter-spacing:0.693333pt;}
.ls23{letter-spacing:0.746667pt;}
.ls25{letter-spacing:0.800000pt;}
.ls34{letter-spacing:0.826667pt;}
.ls2e{letter-spacing:0.853333pt;}
.ls3b{letter-spacing:0.906667pt;}
.ls28{letter-spacing:0.960000pt;}
.ls37{letter-spacing:0.986667pt;}
.ls32{letter-spacing:1.013333pt;}
.ls4b{letter-spacing:1.066667pt;}
.ls51{letter-spacing:1.093333pt;}
.ls40{letter-spacing:1.120000pt;}
.ls52{letter-spacing:1.146667pt;}
.ls42{letter-spacing:1.173333pt;}
.ls4f{letter-spacing:1.226667pt;}
.ls4d{letter-spacing:1.440000pt;}
.ls49{letter-spacing:1.600000pt;}
.ls2f{letter-spacing:1.653333pt;}
.ls44{letter-spacing:1.866667pt;}
.ls50{letter-spacing:1.920000pt;}
.ls43{letter-spacing:2.133333pt;}
.ls45{letter-spacing:2.640000pt;}
.ls4a{letter-spacing:2.666667pt;}
.ls7{letter-spacing:2.832000pt;}
.ls4e{letter-spacing:2.933333pt;}
.ls14{letter-spacing:3.072000pt;}
.ls48{letter-spacing:3.413333pt;}
.ls47{letter-spacing:4.960000pt;}
.ls46{letter-spacing:7.946667pt;}
.ws4{word-spacing:-17.920000pt;}
.ws5e{word-spacing:-15.573333pt;}
.ws1f{word-spacing:-15.093333pt;}
.ws60{word-spacing:-14.986667pt;}
.ws21{word-spacing:-14.453333pt;}
.ws4c{word-spacing:-14.400000pt;}
.ws5{word-spacing:-14.346667pt;}
.ws4b{word-spacing:-14.240000pt;}
.ws54{word-spacing:-14.026667pt;}
.ws6{word-spacing:-13.973333pt;}
.ws48{word-spacing:-13.866667pt;}
.ws59{word-spacing:-13.813333pt;}
.ws6a{word-spacing:-13.760000pt;}
.ws5f{word-spacing:-13.706667pt;}
.ws6b{word-spacing:-13.493333pt;}
.ws3{word-spacing:-12.576000pt;}
.ws0{word-spacing:-12.074667pt;}
.ws68{word-spacing:-11.904000pt;}
.ws70{word-spacing:-11.648000pt;}
.ws2{word-spacing:-11.178667pt;}
.ws7{word-spacing:-10.752000pt;}
.ws20{word-spacing:-8.146453pt;}
.ws63{word-spacing:-4.960000pt;}
.ws64{word-spacing:-3.413333pt;}
.ws1a{word-spacing:-3.072000pt;}
.ws6c{word-spacing:-2.933333pt;}
.ws1b{word-spacing:-2.832000pt;}
.ws61{word-spacing:-2.666667pt;}
.ws5c{word-spacing:-2.133333pt;}
.ws6d{word-spacing:-1.920000pt;}
.ws5d{word-spacing:-1.866667pt;}
.ws40{word-spacing:-1.653333pt;}
.ws58{word-spacing:-1.493333pt;}
.ws3b{word-spacing:-1.440000pt;}
.wsc{word-spacing:-1.392000pt;}
.ws22{word-spacing:-1.386667pt;}
.ws15{word-spacing:-1.344000pt;}
.ws35{word-spacing:-1.333333pt;}
.ws55{word-spacing:-1.226667pt;}
.ws5b{word-spacing:-1.173333pt;}
.ws56{word-spacing:-1.120000pt;}
.ws52{word-spacing:-1.066667pt;}
.ws4a{word-spacing:-1.013333pt;}
.ws3f{word-spacing:-0.960000pt;}
.ws4e{word-spacing:-0.906667pt;}
.ws3e{word-spacing:-0.853333pt;}
.ws30{word-spacing:-0.800000pt;}
.ws2e{word-spacing:-0.746667pt;}
.ws2a{word-spacing:-0.693333pt;}
.ws2f{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.533333pt;}
.ws18{word-spacing:-0.528000pt;}
.ws12{word-spacing:-0.480000pt;}
.ws17{word-spacing:-0.432000pt;}
.ws29{word-spacing:-0.426667pt;}
.ws11{word-spacing:-0.384000pt;}
.ws1d{word-spacing:-0.373333pt;}
.wse{word-spacing:-0.336000pt;}
.ws27{word-spacing:-0.320000pt;}
.ws3d{word-spacing:-0.266667pt;}
.ws28{word-spacing:-0.213333pt;}
.ws19{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.160000pt;}
.ws24{word-spacing:-0.106667pt;}
.ws10{word-spacing:-0.096000pt;}
.ws26{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:0.048000pt;}
.ws2c{word-spacing:0.053333pt;}
.ws1c{word-spacing:0.106667pt;}
.ws3c{word-spacing:0.160000pt;}
.ws50{word-spacing:0.170667pt;}
.ws2b{word-spacing:0.213333pt;}
.ws57{word-spacing:0.266667pt;}
.ws16{word-spacing:0.288000pt;}
.ws32{word-spacing:0.320000pt;}
.ws14{word-spacing:0.336000pt;}
.ws45{word-spacing:0.373333pt;}
.ws1e{word-spacing:0.426667pt;}
.ws13{word-spacing:0.432000pt;}
.wsa{word-spacing:0.480000pt;}
.ws49{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.586667pt;}
.ws46{word-spacing:0.640000pt;}
.wsd{word-spacing:0.672000pt;}
.ws33{word-spacing:0.693333pt;}
.ws4d{word-spacing:0.746667pt;}
.wsb{word-spacing:0.768000pt;}
.ws39{word-spacing:0.800000pt;}
.ws66{word-spacing:0.853333pt;}
.ws41{word-spacing:1.120000pt;}
.ws67{word-spacing:1.173333pt;}
.ws47{word-spacing:1.226667pt;}
.ws9{word-spacing:1.280000pt;}
.ws36{word-spacing:1.333333pt;}
.ws34{word-spacing:1.386667pt;}
.ws44{word-spacing:1.440000pt;}
.ws37{word-spacing:1.546667pt;}
.ws3a{word-spacing:1.653333pt;}
.ws42{word-spacing:1.760000pt;}
.ws69{word-spacing:1.813333pt;}
.ws4f{word-spacing:1.866667pt;}
.ws38{word-spacing:1.920000pt;}
.ws51{word-spacing:1.973333pt;}
.ws43{word-spacing:2.080000pt;}
.ws5a{word-spacing:2.293333pt;}
.ws6e{word-spacing:3.786667pt;}
.ws62{word-spacing:5.280000pt;}
.ws6f{word-spacing:5.706667pt;}
.ws65{word-spacing:6.826667pt;}
.ws53{word-spacing:67.840000pt;}
._0{margin-left:-870.440000pt;}
._4{margin-left:-3.754667pt;}
._3{margin-left:-2.773333pt;}
._6{margin-left:-1.881067pt;}
._1{margin-left:-0.989867pt;}
._2{width:1.322667pt;}
._5{width:2.420800pt;}
._8{width:3.337600pt;}
._b{width:4.336000pt;}
._a{width:5.680000pt;}
._c{width:6.915733pt;}
._d{width:7.946667pt;}
._7{width:8.870933pt;}
._10{width:10.140267pt;}
._f{width:11.102400pt;}
._e{width:14.912000pt;}
._12{width:30.933333pt;}
._13{width:32.387733pt;}
._11{width:43.747733pt;}
._9{width:79.573333pt;}
.fs4{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.426267pt;}
.y1{bottom:49.226267pt;}
.y27{bottom:113.688133pt;}
.y82{bottom:118.162667pt;}
.y4f{bottom:118.162800pt;}
.ya1{bottom:119.069467pt;}
.y26{bottom:129.688133pt;}
.y81{bottom:134.162667pt;}
.y4e{bottom:134.162800pt;}
.y25{bottom:145.688133pt;}
.y80{bottom:150.162667pt;}
.y4d{bottom:150.162800pt;}
.y7f{bottom:166.162667pt;}
.y4c{bottom:166.162800pt;}
.y7e{bottom:182.162667pt;}
.y4b{bottom:182.162800pt;}
.ya0{bottom:186.842800pt;}
.y7d{bottom:198.162667pt;}
.y55{bottom:198.162800pt;}
.y9f{bottom:202.842800pt;}
.y83{bottom:214.162667pt;}
.y4a{bottom:214.162800pt;}
.y9e{bottom:218.842800pt;}
.y7c{bottom:230.162667pt;}
.y49{bottom:230.162800pt;}
.y24{bottom:233.688133pt;}
.y9d{bottom:234.842800pt;}
.y7b{bottom:246.162667pt;}
.y56{bottom:246.162800pt;}
.y23{bottom:248.088133pt;}
.y9c{bottom:250.842800pt;}
.y7a{bottom:262.162667pt;}
.y54{bottom:262.162800pt;}
.y9b{bottom:266.842800pt;}
.y22{bottom:276.888133pt;}
.y79{bottom:278.162667pt;}
.y48{bottom:278.162800pt;}
.y9a{bottom:282.842800pt;}
.y21{bottom:291.288133pt;}
.y78{bottom:294.162667pt;}
.y47{bottom:294.162800pt;}
.y99{bottom:298.842800pt;}
.y20{bottom:305.688133pt;}
.y77{bottom:310.162667pt;}
.y46{bottom:310.162800pt;}
.y98{bottom:314.842800pt;}
.y1f{bottom:320.088133pt;}
.y76{bottom:326.162667pt;}
.y45{bottom:326.162800pt;}
.y97{bottom:330.842800pt;}
.y1e{bottom:334.488133pt;}
.y75{bottom:342.162667pt;}
.y44{bottom:342.162800pt;}
.y96{bottom:346.842800pt;}
.y1d{bottom:348.888133pt;}
.y74{bottom:358.162667pt;}
.y43{bottom:358.162800pt;}
.y1c{bottom:363.288133pt;}
.y95{bottom:366.616133pt;}
.y73{bottom:374.162667pt;}
.y42{bottom:374.162800pt;}
.y1b{bottom:377.688133pt;}
.y94{bottom:382.616133pt;}
.y72{bottom:390.162667pt;}
.y41{bottom:390.162800pt;}
.y1a{bottom:392.088133pt;}
.y93{bottom:398.616133pt;}
.y71{bottom:406.162667pt;}
.y40{bottom:406.162800pt;}
.y19{bottom:406.488133pt;}
.y92{bottom:414.616133pt;}
.y18{bottom:420.888133pt;}
.y70{bottom:422.162667pt;}
.y3f{bottom:422.162800pt;}
.y91{bottom:430.616133pt;}
.y6f{bottom:438.162667pt;}
.y3e{bottom:438.162800pt;}
.y90{bottom:446.616133pt;}
.y17{bottom:453.467733pt;}
.y6e{bottom:454.162667pt;}
.y3d{bottom:454.162800pt;}
.y8f{bottom:462.616133pt;}
.y6d{bottom:470.162667pt;}
.y3c{bottom:470.162800pt;}
.y16{bottom:472.667733pt;}
.y8e{bottom:478.616133pt;}
.y6c{bottom:486.162667pt;}
.y3b{bottom:486.162800pt;}
.y8d{bottom:494.616133pt;}
.y6b{bottom:502.162667pt;}
.y3a{bottom:502.162800pt;}
.y15{bottom:506.267733pt;}
.y8c{bottom:510.616133pt;}
.y6a{bottom:518.162667pt;}
.y39{bottom:518.162800pt;}
.y14{bottom:520.667733pt;}
.y8b{bottom:526.616133pt;}
.y69{bottom:534.162667pt;}
.y38{bottom:534.162800pt;}
.y8a{bottom:542.616133pt;}
.y13{bottom:549.467733pt;}
.y68{bottom:550.162667pt;}
.y37{bottom:550.162800pt;}
.y89{bottom:558.616133pt;}
.y12{bottom:563.867733pt;}
.y67{bottom:566.162667pt;}
.y36{bottom:566.162800pt;}
.y88{bottom:574.616133pt;}
.y11{bottom:578.267733pt;}
.y66{bottom:582.162667pt;}
.y35{bottom:582.162800pt;}
.y87{bottom:590.616133pt;}
.y10{bottom:592.667733pt;}
.y65{bottom:598.162667pt;}
.y34{bottom:598.162800pt;}
.yf{bottom:607.067733pt;}
.y86{bottom:610.389467pt;}
.y64{bottom:614.162667pt;}
.y33{bottom:614.162800pt;}
.ye{bottom:621.467733pt;}
.y85{bottom:626.389467pt;}
.y63{bottom:630.162667pt;}
.y32{bottom:630.162800pt;}
.yd{bottom:635.867733pt;}
.y84{bottom:642.389467pt;}
.y62{bottom:646.162667pt;}
.y31{bottom:646.162800pt;}
.yc{bottom:650.267733pt;}
.y61{bottom:662.162667pt;}
.y30{bottom:662.162800pt;}
.yb{bottom:664.667733pt;}
.y60{bottom:678.162667pt;}
.y53{bottom:678.162800pt;}
.ya{bottom:679.067733pt;}
.y9{bottom:693.467733pt;}
.y5f{bottom:694.162667pt;}
.y2f{bottom:694.162800pt;}
.y8{bottom:707.867733pt;}
.y5e{bottom:710.162667pt;}
.y2e{bottom:710.162800pt;}
.y5d{bottom:726.162667pt;}
.y52{bottom:726.162800pt;}
.y7{bottom:736.667600pt;}
.y5c{bottom:742.162667pt;}
.y51{bottom:742.162800pt;}
.y6{bottom:752.667600pt;}
.y5b{bottom:758.162667pt;}
.y2d{bottom:758.162800pt;}
.y5{bottom:768.667600pt;}
.y5a{bottom:774.162667pt;}
.y50{bottom:774.162800pt;}
.y59{bottom:790.162667pt;}
.y2c{bottom:790.162800pt;}
.y4{bottom:791.647200pt;}
.y58{bottom:806.162667pt;}
.y2b{bottom:806.162800pt;}
.y3{bottom:810.847200pt;}
.y57{bottom:822.162667pt;}
.y2a{bottom:822.162800pt;}
.y29{bottom:859.558000pt;}
.y28{bottom:871.558000pt;}
.h2{height:35.925333pt;}
.h9{height:37.589333pt;}
.ha{height:39.573333pt;}
.hc{height:39.786667pt;}
.h6{height:40.416000pt;}
.hb{height:41.973333pt;}
.h7{height:42.288000pt;}
.h5{height:44.906667pt;}
.h8{height:46.986667pt;}
.h3{height:51.776000pt;}
.h4{height:53.888000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x11{left:46.475333pt;}
.x12{left:47.467200pt;}
.x8{left:50.752533pt;}
.xe{left:52.096533pt;}
.xf{left:72.240667pt;}
.x5{left:73.479333pt;}
.x4{left:75.010800pt;}
.x3{left:76.408400pt;}
.xd{left:85.039333pt;}
.x13{left:92.386800pt;}
.xb{left:94.559200pt;}
.x10{left:111.969867pt;}
.x9{left:113.235467pt;}
.x14{left:151.866800pt;}
.xc{left:247.338400pt;}
.x2{left:368.767867pt;}
.xa{left:426.248800pt;}
.x7{left:472.605467pt;}
.x6{left:482.781467pt;}
.x1{left:577.044533pt;}
}




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