
    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_c4d0451b236f479067f54df0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_cd6869b812e33c4142e401bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_36de76b085983413bc9a5453.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_7d1345cd5822fb2b15bbb389.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_75839b20b259b0e81b5e94c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_a6ced4ce37de77e52bebf6f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_9d9f5aaf277856437a780cfc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_e1b219de9794c8251298d480.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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_3eae27a9179bde96741cb2b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_2b1021cf94eb76d70c0a42b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_f08c3facfa3dbfba42263ff0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v13{vertical-align:-68.976000px;}
.v2{vertical-align:-32.520000px;}
.v3{vertical-align:-28.560000px;}
.v5{vertical-align:-25.320000px;}
.vd{vertical-align:-18.180000px;}
.v9{vertical-align:-16.860000px;}
.v7{vertical-align:-14.400000px;}
.v6{vertical-align:-7.740000px;}
.vc{vertical-align:-3.480000px;}
.v8{vertical-align:-2.460000px;}
.va{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:1.740000px;}
.vf{vertical-align:4.620000px;}
.v12{vertical-align:11.640000px;}
.v1{vertical-align:20.160000px;}
.vb{vertical-align:34.260000px;}
.v11{vertical-align:75.180000px;}
.v10{vertical-align:105.360000px;}
.v4{vertical-align:365.160000px;}
.lsa{letter-spacing:-2.448000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.504000px;}
.ls2c{letter-spacing:-0.470400px;}
.ls2b{letter-spacing:-0.396000px;}
.ls5{letter-spacing:-0.256200px;}
.ls9{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.129000px;}
.ls27{letter-spacing:-0.060600px;}
.ls4{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.007920px;}
.ls1e{letter-spacing:0.028080px;}
.ls23{letter-spacing:0.036000px;}
.ls18{letter-spacing:0.064080px;}
.ls8{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.184080px;}
.ls13{letter-spacing:0.193536px;}
.ls3{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:17.424000px;}
.ls28{letter-spacing:17.873280px;}
.ls0{letter-spacing:18.144000px;}
.ls11{letter-spacing:18.226800px;}
.ls2e{letter-spacing:40.716000px;}
.ls2f{letter-spacing:49.233600px;}
.lsb{letter-spacing:49.284000px;}
.ls19{letter-spacing:52.157760px;}
.ls21{letter-spacing:52.817760px;}
.ls14{letter-spacing:52.997760px;}
.lse{letter-spacing:53.265600px;}
.lsf{letter-spacing:53.316000px;}
.ls24{letter-spacing:53.496000px;}
.ls1a{letter-spacing:54.737760px;}
.ls15{letter-spacing:55.457760px;}
.lsd{letter-spacing:57.537600px;}
.lsc{letter-spacing:57.588000px;}
.ls26{letter-spacing:59.856768px;}
.ls1c{letter-spacing:106.277760px;}
.ls16{letter-spacing:110.897760px;}
.ls1d{letter-spacing:120.251040px;}
.ls17{letter-spacing:121.790640px;}
.ls29{letter-spacing:271.800000px;}
.ls2a{letter-spacing:271.820640px;}
.ls25{letter-spacing:344.268000px;}
.ls22{letter-spacing:348.708000px;}
.ls1f{letter-spacing:624.420288px;}
.ls10{letter-spacing:1159.728768px;}
.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;}
}
.ws54{word-spacing:-59.750784px;}
.ws3d{word-spacing:-37.946304px;}
.ws2c{word-spacing:-37.913760px;}
.ws4f{word-spacing:-37.784760px;}
.ws29{word-spacing:-34.840080px;}
.ws3e{word-spacing:-33.426720px;}
.ws4e{word-spacing:-32.544000px;}
.ws39{word-spacing:-30.064032px;}
.ws3f{word-spacing:-30.024000px;}
.ws47{word-spacing:-29.482560px;}
.ws53{word-spacing:-27.206784px;}
.ws2d{word-spacing:-27.174240px;}
.ws26{word-spacing:-24.440544px;}
.ws23{word-spacing:-24.408000px;}
.ws41{word-spacing:-21.674304px;}
.ws22{word-spacing:-21.641760px;}
.ws42{word-spacing:-19.070784px;}
.ws0{word-spacing:-19.038240px;}
.ws2{word-spacing:-16.632000px;}
.ws1b{word-spacing:-16.488000px;}
.ws1a{word-spacing:-16.272000px;}
.ws51{word-spacing:-14.970240px;}
.ws2f{word-spacing:-14.319360px;}
.ws32{word-spacing:-13.505760px;}
.ws2e{word-spacing:-13.410720px;}
.ws50{word-spacing:-11.609280px;}
.ws2b{word-spacing:-8.136000px;}
.ws21{word-spacing:-6.798240px;}
.ws1c{word-spacing:-2.448000px;}
.ws16{word-spacing:-2.088000px;}
.ws15{word-spacing:-1.872000px;}
.ws18{word-spacing:-1.800000px;}
.ws12{word-spacing:-1.656000px;}
.ws14{word-spacing:-1.608000px;}
.ws10{word-spacing:-1.008000px;}
.ws13{word-spacing:-0.504000px;}
.ws19{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.216000px;}
.ws4c{word-spacing:-0.095760px;}
.ws20{word-spacing:0.000000px;}
.ws34{word-spacing:0.312960px;}
.ws1d{word-spacing:0.504000px;}
.wsd{word-spacing:1.008000px;}
.ws28{word-spacing:1.075680px;}
.wse{word-spacing:1.152000px;}
.wsf{word-spacing:1.584000px;}
.ws2a{word-spacing:1.613520px;}
.ws17{word-spacing:1.656000px;}
.ws1{word-spacing:2.448000px;}
.wsa{word-spacing:2.880000px;}
.ws7{word-spacing:3.096000px;}
.ws3{word-spacing:3.528000px;}
.ws5{word-spacing:3.600000px;}
.wsb{word-spacing:3.672000px;}
.wsc{word-spacing:4.032000px;}
.ws8{word-spacing:4.104000px;}
.ws4{word-spacing:4.536000px;}
.ws9{word-spacing:4.968000px;}
.ws6{word-spacing:5.088000px;}
.ws1e{word-spacing:5.400000px;}
.ws46{word-spacing:6.264000px;}
.ws45{word-spacing:6.556320px;}
.ws4b{word-spacing:103.411200px;}
.ws49{word-spacing:103.488000px;}
.ws30{word-spacing:244.396320px;}
.ws3b{word-spacing:318.228000px;}
.ws37{word-spacing:323.388000px;}
.ws44{word-spacing:345.432480px;}
.ws24{word-spacing:617.316000px;}
.ws1f{word-spacing:794.630160px;}
.ws36{word-spacing:860.863920px;}
.ws31{word-spacing:860.983920px;}
.ws52{word-spacing:900.791520px;}
.ws33{word-spacing:931.540080px;}
.ws25{word-spacing:1060.848000px;}
.ws4d{word-spacing:1168.092000px;}
.ws27{word-spacing:1196.904000px;}
.ws3c{word-spacing:1537.020000px;}
.ws3a{word-spacing:1671.348000px;}
.ws38{word-spacing:1680.768000px;}
.ws40{word-spacing:1693.860000px;}
.ws4a{word-spacing:1716.707520px;}
.ws48{word-spacing:1716.767520px;}
.ws43{word-spacing:3449.150400px;}
.ws35{word-spacing:3453.036000px;}
._10{margin-left:-18.764640px;}
._11{margin-left:-17.569440px;}
._15{margin-left:-15.996000px;}
._2{margin-left:-12.246480px;}
._e{margin-left:-7.918560px;}
._4{margin-left:-6.264000px;}
._7{margin-left:-5.112000px;}
._5{margin-left:-3.213984px;}
._1{margin-left:-2.180880px;}
._0{margin-left:-1.174320px;}
._3{width:1.302480px;}
._6{width:3.244560px;}
._8{width:15.026304px;}
._b{width:16.150320px;}
._d{width:17.374320px;}
._c{width:18.816720px;}
._9{width:20.160000px;}
._a{width:21.260880px;}
._14{width:255.660000px;}
._13{width:346.608000px;}
._12{width:351.648000px;}
._17{width:1198.145520px;}
._f{width:1210.008240px;}
._16{width:2769.300720px;}
.fc12{color:rgb(165,165,165);}
.fc11{color:rgb(155,155,155);}
.fc10{color:rgb(31,194,167);}
.fcd{color:rgb(16,97,83);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc5{color:rgb(154,154,154);}
.fc0{color:rgb(0,75,156);}
.fc4{color:rgb(89,89,89);}
.fc7{color:rgb(147,147,147);}
.fce{color:rgb(45,62,80);}
.fc8{color:rgb(189,189,189);}
.fc9{color:rgb(172,172,172);}
.fc3{color:rgb(11,181,221);}
.fca{color:transparent;}
.fcf{color:rgb(188,188,188);}
.fc6{color:rgb(118,113,113);}
.fcb{color:rgb(180,206,130);}
.fcc{color:rgb(58,56,56);}
.fs4{font-size:36.000000px;}
.fs1b{font-size:40.320000px;}
.fs1f{font-size:41.760000px;}
.fs16{font-size:48.240000px;}
.fs18{font-size:48.384000px;}
.fs14{font-size:59.760000px;}
.fs19{font-size:63.360000px;}
.fs1a{font-size:63.504000px;}
.fs21{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs1{font-size:84.240000px;}
.fs1e{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fs1d{font-size:95.904000px;}
.fs8{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fs15{font-size:120.240000px;}
.fs17{font-size:120.384000px;}
.fsb{font-size:144.000000px;}
.fsc{font-size:144.144000px;}
.fs10{font-size:156.240000px;}
.fsf{font-size:156.384000px;}
.fs0{font-size:167.760000px;}
.fse{font-size:167.904000px;}
.fs6{font-size:192.240000px;}
.fs20{font-size:192.384000px;}
.fs12{font-size:216.000000px;}
.fs1c{font-size:216.144000px;}
.fsa{font-size:264.240000px;}
.fs9{font-size:264.384000px;}
.fs23{font-size:444.240000px;}
.fs22{font-size:444.384000px;}
.fs5{font-size:480.240000px;}
.fs13{font-size:480.384000px;}
.fs11{font-size:576.144000px;}
.y0{bottom:0.000000px;}
.y82{bottom:30.240000px;}
.y20{bottom:31.392000px;}
.y4a{bottom:31.572000px;}
.yc8{bottom:34.128000px;}
.y2b{bottom:37.512000px;}
.yad{bottom:39.132000px;}
.yb1{bottom:39.492000px;}
.y11b{bottom:41.940000px;}
.y4b{bottom:43.056000px;}
.y59{bottom:45.324000px;}
.y121{bottom:48.636000px;}
.y41{bottom:48.672000px;}
.yf7{bottom:54.540000px;}
.y118{bottom:55.260000px;}
.yc7{bottom:57.168000px;}
.yc9{bottom:57.276000px;}
.yf9{bottom:62.496000px;}
.yfe{bottom:65.268000px;}
.y109{bottom:71.712000px;}
.y9b{bottom:71.820000px;}
.y1e{bottom:73.908000px;}
.ya3{bottom:76.500000px;}
.y117{bottom:78.300000px;}
.y52{bottom:81.468000px;}
.y58{bottom:83.124000px;}
.y11d{bottom:87.228000px;}
.y36{bottom:88.812000px;}
.y2a{bottom:98.028000px;}
.ybb{bottom:98.316000px;}
.y11c{bottom:99.828000px;}
.y7f{bottom:102.960000px;}
.yf4{bottom:108.288000px;}
.yf3{bottom:109.152000px;}
.y33{bottom:109.584000px;}
.y15{bottom:111.456000px;}
.y19{bottom:112.068000px;}
.y120{bottom:115.452000px;}
.y108{bottom:117.108000px;}
.y64{bottom:120.636000px;}
.yf8{bottom:123.012000px;}
.y83{bottom:127.224000px;}
.y9a{bottom:128.880000px;}
.ya2{bottom:133.560000px;}
.y80{bottom:134.820000px;}
.yc6{bottom:139.428000px;}
.y18{bottom:140.868000px;}
.y29{bottom:143.388000px;}
.y32{bottom:147.024000px;}
.y73{bottom:152.610000px;}
.y1f{bottom:157.395000px;}
.y116{bottom:158.685000px;}
.yec{bottom:159.510000px;}
.ye{bottom:161.820000px;}
.yf1{bottom:162.000000px;}
.y81{bottom:165.210000px;}
.y25{bottom:166.890000px;}
.y128{bottom:168.840000px;}
.yf0{bottom:170.670000px;}
.y7c{bottom:174.390000px;}
.y60{bottom:174.750000px;}
.ye9{bottom:177.090000px;}
.yef{bottom:179.100000px;}
.y6d{bottom:179.535000px;}
.y49{bottom:180.255000px;}
.y1a{bottom:181.110000px;}
.yeb{bottom:183.810000px;}
.yee{bottom:187.530000px;}
.y57{bottom:188.025000px;}
.ye7{bottom:195.450000px;}
.yed{bottom:195.480000px;}
.yd{bottom:201.420000px;}
.y5f{bottom:202.965000px;}
.y11a{bottom:204.015000px;}
.yf2{bottom:206.820000px;}
.yea{bottom:206.850000px;}
.ye1{bottom:207.690000px;}
.y61{bottom:208.515000px;}
.yd9{bottom:209.055000px;}
.y12e{bottom:209.730000px;}
.yd2{bottom:211.245000px;}
.y7d{bottom:212.940000px;}
.ye8{bottom:216.645000px;}
.y48{bottom:216.795000px;}
.y10a{bottom:221.010000px;}
.y96{bottom:221.580000px;}
.yb7{bottom:222.375000px;}
.yc{bottom:223.020000px;}
.y54{bottom:228.450000px;}
.y127{bottom:229.140000px;}
.yd8{bottom:237.855000px;}
.yd1{bottom:240.045000px;}
.ycc{bottom:243.180000px;}
.y8d{bottom:243.570000px;}
.yc4{bottom:243.750000px;}
.yb{bottom:244.620000px;}
.ybd{bottom:245.955000px;}
.y7e{bottom:246.990000px;}
.y8b{bottom:248.940000px;}
.y12d{bottom:249.915000px;}
.y31{bottom:252.000000px;}
.y88{bottom:253.470000px;}
.y17{bottom:254.085000px;}
.y103{bottom:256.830000px;}
.y114{bottom:263.055000px;}
.y53{bottom:264.990000px;}
.y10d{bottom:265.245000px;}
.y6a{bottom:267.090000px;}
.yf6{bottom:267.195000px;}
.yf5{bottom:268.050000px;}
.y71{bottom:269.100000px;}
.ya4{bottom:270.180000px;}
.y100{bottom:271.110000px;}
.yc3{bottom:272.550000px;}
.y11e{bottom:272.880000px;}
.yda{bottom:274.500000px;}
.ybc{bottom:274.755000px;}
.y35{bottom:276.990000px;}
.y10b{bottom:277.485000px;}
.y56{bottom:277.995000px;}
.y6c{bottom:278.715000px;}
.ya{bottom:280.440000px;}
.y8c{bottom:283.470000px;}
.y7b{bottom:284.370000px;}
.y85{bottom:289.110000px;}
.y30{bottom:289.440000px;}
.y69{bottom:291.810000px;}
.y113{bottom:291.855000px;}
.y5d{bottom:292.755000px;}
.y10c{bottom:294.045000px;}
.yb5{bottom:295.920000px;}
.ycb{bottom:297.075000px;}
.y119{bottom:297.285000px;}
.y122{bottom:298.185000px;}
.y131{bottom:298.590000px;}
.ye0{bottom:301.470000px;}
.y6b{bottom:307.545000px;}
.ye5{bottom:307.800000px;}
.yff{bottom:307.950000px;}
.yc5{bottom:309.210000px;}
.y8a{bottom:314.565000px;}
.y87{bottom:319.110000px;}
.y115{bottom:328.470000px;}
.y40{bottom:329.325000px;}
.y12c{bottom:330.375000px;}
.yfd{bottom:331.665000px;}
.y9f{bottom:334.260000px;}
.yd0{bottom:338.040000px;}
.yb0{bottom:338.790000px;}
.y9{bottom:339.150000px;}
.y89{bottom:339.765000px;}
.y86{bottom:344.310000px;}
.y37{bottom:347.370000px;}
.y42{bottom:357.270000px;}
.y47{bottom:359.895000px;}
.y4c{bottom:360.465000px;}
.y8{bottom:360.750000px;}
.y51{bottom:363.090000px;}
.y12b{bottom:370.515000px;}
.yaf{bottom:373.890000px;}
.y55{bottom:374.250000px;}
.ydf{bottom:378.360000px;}
.yb8{bottom:380.550000px;}
.yab{bottom:381.750000px;}
.y7{bottom:382.350000px;}
.yce{bottom:383.325000px;}
.yca{bottom:385.455000px;}
.y9e{bottom:385.590000px;}
.y5c{bottom:389.910000px;}
.y34{bottom:390.135000px;}
.y68{bottom:390.675000px;}
.y66{bottom:390.960000px;}
.y106{bottom:391.170000px;}
.y130{bottom:391.860000px;}
.y2f{bottom:394.200000px;}
.y3b{bottom:394.305000px;}
.y78{bottom:395.070000px;}
.y126{bottom:395.310000px;}
.y70{bottom:399.675000px;}
.y6{bottom:403.950000px;}
.yfc{bottom:405.570000px;}
.y3a{bottom:405.750000px;}
.y39{bottom:416.880000px;}
.yde{bottom:423.720000px;}
.y65{bottom:425.595000px;}
.y77{bottom:427.680000px;}
.y38{bottom:428.040000px;}
.y67{bottom:430.410000px;}
.y2e{bottom:431.670000px;}
.yaa{bottom:435.060000px;}
.y84{bottom:435.525000px;}
.y3d{bottom:435.600000px;}
.y9d{bottom:436.935000px;}
.y104{bottom:439.275000px;}
.y125{bottom:440.715000px;}
.y5{bottom:447.150000px;}
.y7a{bottom:449.640000px;}
.y12a{bottom:451.005000px;}
.y24{bottom:451.080000px;}
.ycd{bottom:452.730000px;}
.y3c{bottom:453.630000px;}
.y44{bottom:454.065000px;}
.y46{bottom:455.610000px;}
.y101{bottom:457.200000px;}
.y4e{bottom:457.275000px;}
.y16{bottom:457.380000px;}
.y50{bottom:458.820000px;}
.y107{bottom:467.280000px;}
.y43{bottom:468.465000px;}
.y4{bottom:468.795000px;}
.ydd{bottom:469.080000px;}
.y4d{bottom:471.705000px;}
.ye4{bottom:473.115000px;}
.y79{bottom:474.195000px;}
.y5a{bottom:476.130000px;}
.y5b{bottom:478.365000px;}
.y11f{bottom:482.655000px;}
.ye6{bottom:485.385000px;}
.y3f{bottom:486.930000px;}
.ya9{bottom:488.415000px;}
.y9c{bottom:489.420000px;}
.y3{bottom:490.395000px;}
.y129{bottom:491.145000px;}
.yd7{bottom:497.985000px;}
.yd4{bottom:502.095000px;}
.y12f{bottom:504.105000px;}
.y5e{bottom:504.510000px;}
.y90{bottom:508.065000px;}
.y23{bottom:509.505000px;}
.ydc{bottom:514.470000px;}
.yb6{bottom:517.065000px;}
.y6f{bottom:518.190000px;}
.yd6{bottom:521.070000px;}
.yd3{bottom:530.895000px;}
.y63{bottom:532.590000px;}
.yc2{bottom:532.725000px;}
.y2d{bottom:536.610000px;}
.ybf{bottom:536.790000px;}
.y2{bottom:541.515000px;}
.ya8{bottom:541.725000px;}
.y105{bottom:543.390000px;}
.y72{bottom:543.810000px;}
.y99{bottom:544.170000px;}
.y91{bottom:550.155000px;}
.y45{bottom:551.310000px;}
.y112{bottom:551.985000px;}
.ye3{bottom:552.450000px;}
.y102{bottom:553.575000px;}
.y74{bottom:554.325000px;}
.y4f{bottom:554.505000px;}
.yc1{bottom:555.765000px;}
.y22{bottom:555.945000px;}
.y10f{bottom:556.095000px;}
.y62{bottom:556.635000px;}
.y1d{bottom:558.645000px;}
.ydb{bottom:559.830000px;}
.y6e{bottom:559.980000px;}
.y124{bottom:561.495000px;}
.ybe{bottom:565.635000px;}
.y27{bottom:568.260000px;}
.y28{bottom:572.010000px;}
.y8f{bottom:573.690000px;}
.y2c{bottom:574.095000px;}
.y111{bottom:575.025000px;}
.ycf{bottom:581.220000px;}
.y10e{bottom:584.895000px;}
.yba{bottom:590.505000px;}
.ya7{bottom:595.080000px;}
.yd5{bottom:595.620000px;}
.y98{bottom:597.345000px;}
.y97{bottom:597.600000px;}
.yb9{bottom:597.675000px;}
.ya1{bottom:597.705000px;}
.ya0{bottom:598.830000px;}
.y8e{bottom:598.890000px;}
.y12{bottom:603.180000px;}
.y93{bottom:603.825000px;}
.y1c{bottom:604.005000px;}
.y123{bottom:606.885000px;}
.y76{bottom:608.010000px;}
.y3e{bottom:610.560000px;}
.y14{bottom:614.010000px;}
.yae{bottom:618.810000px;}
.y10{bottom:624.810000px;}
.y92{bottom:628.950000px;}
.yc0{bottom:630.330000px;}
.y75{bottom:633.135000px;}
.y13{bottom:635.610000px;}
.ya5{bottom:645.120000px;}
.y11{bottom:646.410000px;}
.ya6{bottom:647.070000px;}
.y110{bottom:649.620000px;}
.yb3{bottom:661.575000px;}
.yb4{bottom:665.205000px;}
.yfb{bottom:667.545000px;}
.y95{bottom:676.725000px;}
.yf{bottom:679.530000px;}
.yb2{bottom:693.975000px;}
.yfa{bottom:695.730000px;}
.y1b{bottom:711.795000px;}
.y26{bottom:712.410000px;}
.y21{bottom:712.725000px;}
.ye2{bottom:713.445000px;}
.yac{bottom:737.640000px;}
.y1{bottom:739.545000px;}
.y94{bottom:748.050000px;}
.h5{height:35.806641px;}
.h32{height:43.554375px;}
.h19{height:50.312812px;}
.h1b{height:50.463000px;}
.h22{height:59.749805px;}
.h24{height:61.395937px;}
.h15{height:62.327813px;}
.h1f{height:63.019687px;}
.h21{height:63.162914px;}
.h20{height:64.875938px;}
.h37{height:65.884219px;}
.h31{height:70.395937px;}
.h3{height:71.613281px;}
.h4{height:71.756508px;}
.h33{height:73.129219px;}
.h17{height:83.787539px;}
.h2f{height:83.930766px;}
.h2{height:86.255508px;}
.h26{height:87.859687px;}
.h8{height:95.245664px;}
.h2e{height:95.388891px;}
.h30{height:98.051133px;}
.h9{height:107.419922px;}
.h25{height:107.563148px;}
.h28{height:109.159922px;}
.h2b{height:112.039922px;}
.h39{height:112.459922px;}
.h2d{height:112.603148px;}
.h29{height:112.640625px;}
.h2a{height:112.790813px;}
.h23{height:118.047539px;}
.h18{height:119.594180px;}
.h1a{height:119.737406px;}
.h2c{height:125.406562px;}
.hb{height:127.579922px;}
.hd{height:143.226562px;}
.he{height:143.369789px;}
.h36{height:146.793281px;}
.h1d{height:150.187500px;}
.h34{height:154.996875px;}
.h11{height:155.400820px;}
.h10{height:155.544047px;}
.h1{height:166.858945px;}
.hf{height:167.002172px;}
.h16{height:171.773789px;}
.h1c{height:171.921234px;}
.h38{height:183.413789px;}
.h7{height:191.207461px;}
.h13{height:214.839844px;}
.h27{height:214.983070px;}
.hc{height:251.595703px;}
.ha{height:251.732813px;}
.h1e{height:262.820742px;}
.h35{height:277.133789px;}
.h3b{height:441.853945px;}
.h3a{height:441.997172px;}
.h14{height:491.877563px;}
.h6{height:500.875313px;}
.h12{height:573.049477px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xc6{left:23.651979px;}
.x35{left:45.575979px;}
.x9a{left:50.939979px;}
.x1{left:71.279979px;}
.xc3{left:88.307979px;}
.xe{left:90.827979px;}
.x8d{left:96.119979px;}
.x16{left:109.799979px;}
.x3{left:111.059979px;}
.xf{left:117.827979px;}
.x30{left:125.963979px;}
.x11{left:134.387979px;}
.x1b{left:136.799979px;}
.x39{left:138.383979px;}
.x72{left:140.219979px;}
.x13{left:144.827979px;}
.x15{left:150.584979px;}
.xab{left:151.664979px;}
.xb5{left:155.594979px;}
.x73{left:163.004979px;}
.x2{left:164.339979px;}
.xac{left:169.664979px;}
.x6a{left:178.304979px;}
.x7c{left:188.714979px;}
.xae{left:202.469979px;}
.x5f{left:206.609979px;}
.xc8{left:214.124979px;}
.x82{left:217.904979px;}
.xb{left:230.009979px;}
.x4e{left:239.759979px;}
.x4d{left:251.714979px;}
.x4f{left:261.209979px;}
.x74{left:265.319979px;}
.x6c{left:272.729979px;}
.x6f{left:276.044979px;}
.x18{left:279.029979px;}
.x3f{left:280.469979px;}
.x19{left:285.374979px;}
.x6b{left:286.739979px;}
.x3e{left:290.624979px;}
.x40{left:294.944979px;}
.x8c{left:296.384979px;}
.x41{left:299.339979px;}
.x94{left:305.429979px;}
.x1a{left:312.374979px;}
.x5{left:313.559979px;}
.x93{left:316.409979px;}
.x1e{left:320.684979px;}
.x75{left:331.304979px;}
.x6{left:340.199979px;}
.x7d{left:345.209979px;}
.xaf{left:346.889979px;}
.x92{left:349.769979px;}
.xb6{left:372.164979px;}
.x48{left:380.804979px;}
.xa{left:383.939979px;}
.x4{left:386.279979px;}
.x6d{left:396.689979px;}
.x46{left:401.114979px;}
.x42{left:403.844979px;}
.x1d{left:405.209979px;}
.x49{left:407.849979px;}
.x8a{left:413.204979px;}
.x3a{left:415.979979px;}
.x80{left:421.559979px;}
.x44{left:423.284979px;}
.xc7{left:431.429979px;}
.x45{left:446.684979px;}
.xa4{left:469.649979px;}
.x60{left:473.909979px;}
.x62{left:478.439979px;}
.xc5{left:483.374979px;}
.x61{left:485.069979px;}
.xc4{left:492.869979px;}
.x43{left:494.459979px;}
.x5c{left:497.009979px;}
.x53{left:502.169979px;}
.xad{left:504.509979px;}
.xc9{left:506.849979px;}
.x33{left:509.069979px;}
.x36{left:510.944979px;}
.x47{left:514.769979px;}
.x4c{left:519.689979px;}
.x70{left:522.104979px;}
.x79{left:528.194979px;}
.x56{left:530.999979px;}
.x57{left:533.339979px;}
.x4a{left:534.959979px;}
.x4b{left:536.609979px;}
.x2c{left:539.459979px;}
.x7a{left:543.449979px;}
.x2d{left:547.094979px;}
.x1f{left:552.779979px;}
.x9b{left:566.969979px;}
.x85{left:568.724979px;}
.x78{left:571.424979px;}
.x96{left:572.684979px;}
.xa5{left:574.454979px;}
.x84{left:579.704979px;}
.x97{left:586.004979px;}
.xd{left:588.239979px;}
.x71{left:589.889979px;}
.x1c{left:600.944979px;}
.x83{left:607.649979px;}
.x9f{left:609.509979px;}
.x55{left:613.184979px;}
.x51{left:614.909979px;}
.x66{left:616.829979px;}
.x9d{left:625.349979px;}
.xa6{left:627.044979px;}
.x50{left:628.919979px;}
.x6e{left:630.074979px;}
.x59{left:631.184979px;}
.x98{left:634.859979px;}
.x76{left:637.634979px;}
.x99{left:639.359979px;}
.x9e{left:646.529979px;}
.x5d{left:652.934979px;}
.x54{left:654.449979px;}
.xa0{left:661.424979px;}
.x8{left:667.769979px;}
.xb2{left:678.929979px;}
.xbf{left:687.854979px;}
.xa9{left:692.849979px;}
.x95{left:695.009979px;}
.xb4{left:705.089979px;}
.x58{left:708.149979px;}
.x10{left:711.569979px;}
.x67{left:713.774979px;}
.xb3{left:720.974979px;}
.xca{left:725.939979px;}
.x7{left:727.019979px;}
.x7f{left:734.474979px;}
.x37{left:737.309979px;}
.x5a{left:752.294979px;}
.x2e{left:773.459979px;}
.x68{left:781.019979px;}
.x69{left:785.519979px;}
.x7e{left:791.174979px;}
.x5b{left:793.229979px;}
.x8b{left:795.419979px;}
.xa1{left:799.484979px;}
.x3b{left:801.464979px;}
.x38{left:807.629979px;}
.x9c{left:809.639979px;}
.xa2{left:812.669979px;}
.xb0{left:816.194979px;}
.xa8{left:819.929979px;}
.x26{left:821.669979px;}
.xa3{left:825.869979px;}
.x8e{left:828.749979px;}
.x87{left:835.994979px;}
.xba{left:843.329979px;}
.x88{left:849.314979px;}
.x5e{left:850.964979px;}
.xb9{left:854.309979px;}
.x65{left:859.829979px;}
.x63{left:867.389979px;}
.x25{left:876.389979px;}
.xb7{left:882.284979px;}
.x64{left:886.649979px;}
.xb8{left:887.684979px;}
.x89{left:898.169979px;}
.x24{left:902.519979px;}
.x52{left:904.529979px;}
.x20{left:915.404979px;}
.x21{left:928.439979px;}
.xaa{left:938.669979px;}
.x22{left:941.654979px;}
.x29{left:946.979979px;}
.x23{left:954.824979px;}
.x86{left:958.319979px;}
.x27{left:963.749979px;}
.x28{left:975.989979px;}
.x3d{left:1003.649979px;}
.x7b{left:1006.454979px;}
.x91{left:1044.149979px;}
.x81{left:1050.089979px;}
.xc2{left:1068.989979px;}
.xc1{left:1070.969979px;}
.x31{left:1074.674979px;}
.x8f{left:1077.869979px;}
.xc{left:1085.399979px;}
.xb1{left:1090.949979px;}
.xa7{left:1093.679979px;}
.x90{left:1100.699979px;}
.x2a{left:1105.049979px;}
.xbc{left:1110.629979px;}
.xbd{left:1123.949979px;}
.x14{left:1136.849979px;}
.x32{left:1163.129979px;}
.xbe{left:1172.804979px;}
.x77{left:1177.049979px;}
.x2b{left:1193.504979px;}
.x17{left:1213.169979px;}
.xc0{left:1229.549979px;}
.xbb{left:1232.969979px;}
.x9{left:1308.239979px;}
.x3c{left:1311.809979px;}
.x12{left:1321.019979px;}
.x34{left:1333.619979px;}
.x2f{left:1342.799979px;}
@media print{
.v13{vertical-align:-61.312000pt;}
.v2{vertical-align:-28.906667pt;}
.v3{vertical-align:-25.386667pt;}
.v5{vertical-align:-22.506667pt;}
.vd{vertical-align:-16.160000pt;}
.v9{vertical-align:-14.986667pt;}
.v7{vertical-align:-12.800000pt;}
.v6{vertical-align:-6.880000pt;}
.vc{vertical-align:-3.093333pt;}
.v8{vertical-align:-2.186667pt;}
.va{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.546667pt;}
.vf{vertical-align:4.106667pt;}
.v12{vertical-align:10.346667pt;}
.v1{vertical-align:17.920000pt;}
.vb{vertical-align:30.453333pt;}
.v11{vertical-align:66.826667pt;}
.v10{vertical-align:93.653333pt;}
.v4{vertical-align:324.586667pt;}
.lsa{letter-spacing:-2.176000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls2c{letter-spacing:-0.418133pt;}
.ls2b{letter-spacing:-0.352000pt;}
.ls5{letter-spacing:-0.227733pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.114667pt;}
.ls27{letter-spacing:-0.053867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.007040pt;}
.ls1e{letter-spacing:0.024960pt;}
.ls23{letter-spacing:0.032000pt;}
.ls18{letter-spacing:0.056960pt;}
.ls8{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.163627pt;}
.ls13{letter-spacing:0.172032pt;}
.ls3{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:15.488000pt;}
.ls28{letter-spacing:15.887360pt;}
.ls0{letter-spacing:16.128000pt;}
.ls11{letter-spacing:16.201600pt;}
.ls2e{letter-spacing:36.192000pt;}
.ls2f{letter-spacing:43.763200pt;}
.lsb{letter-spacing:43.808000pt;}
.ls19{letter-spacing:46.362453pt;}
.ls21{letter-spacing:46.949120pt;}
.ls14{letter-spacing:47.109120pt;}
.lse{letter-spacing:47.347200pt;}
.lsf{letter-spacing:47.392000pt;}
.ls24{letter-spacing:47.552000pt;}
.ls1a{letter-spacing:48.655787pt;}
.ls15{letter-spacing:49.295787pt;}
.lsd{letter-spacing:51.144533pt;}
.lsc{letter-spacing:51.189333pt;}
.ls26{letter-spacing:53.206016pt;}
.ls1c{letter-spacing:94.469120pt;}
.ls16{letter-spacing:98.575787pt;}
.ls1d{letter-spacing:106.889813pt;}
.ls17{letter-spacing:108.258347pt;}
.ls29{letter-spacing:241.600000pt;}
.ls2a{letter-spacing:241.618347pt;}
.ls25{letter-spacing:306.016000pt;}
.ls22{letter-spacing:309.962667pt;}
.ls1f{letter-spacing:555.040256pt;}
.ls10{letter-spacing:1030.870016pt;}
.ws54{word-spacing:-53.111808pt;}
.ws3d{word-spacing:-33.730048pt;}
.ws2c{word-spacing:-33.701120pt;}
.ws4f{word-spacing:-33.586453pt;}
.ws29{word-spacing:-30.968960pt;}
.ws3e{word-spacing:-29.712640pt;}
.ws4e{word-spacing:-28.928000pt;}
.ws39{word-spacing:-26.723584pt;}
.ws3f{word-spacing:-26.688000pt;}
.ws47{word-spacing:-26.206720pt;}
.ws53{word-spacing:-24.183808pt;}
.ws2d{word-spacing:-24.154880pt;}
.ws26{word-spacing:-21.724928pt;}
.ws23{word-spacing:-21.696000pt;}
.ws41{word-spacing:-19.266048pt;}
.ws22{word-spacing:-19.237120pt;}
.ws42{word-spacing:-16.951808pt;}
.ws0{word-spacing:-16.922880pt;}
.ws2{word-spacing:-14.784000pt;}
.ws1b{word-spacing:-14.656000pt;}
.ws1a{word-spacing:-14.464000pt;}
.ws51{word-spacing:-13.306880pt;}
.ws2f{word-spacing:-12.728320pt;}
.ws32{word-spacing:-12.005120pt;}
.ws2e{word-spacing:-11.920640pt;}
.ws50{word-spacing:-10.319360pt;}
.ws2b{word-spacing:-7.232000pt;}
.ws21{word-spacing:-6.042880pt;}
.ws1c{word-spacing:-2.176000pt;}
.ws16{word-spacing:-1.856000pt;}
.ws15{word-spacing:-1.664000pt;}
.ws18{word-spacing:-1.600000pt;}
.ws12{word-spacing:-1.472000pt;}
.ws14{word-spacing:-1.429333pt;}
.ws10{word-spacing:-0.896000pt;}
.ws13{word-spacing:-0.448000pt;}
.ws19{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.192000pt;}
.ws4c{word-spacing:-0.085120pt;}
.ws20{word-spacing:0.000000pt;}
.ws34{word-spacing:0.278187pt;}
.ws1d{word-spacing:0.448000pt;}
.wsd{word-spacing:0.896000pt;}
.ws28{word-spacing:0.956160pt;}
.wse{word-spacing:1.024000pt;}
.wsf{word-spacing:1.408000pt;}
.ws2a{word-spacing:1.434240pt;}
.ws17{word-spacing:1.472000pt;}
.ws1{word-spacing:2.176000pt;}
.wsa{word-spacing:2.560000pt;}
.ws7{word-spacing:2.752000pt;}
.ws3{word-spacing:3.136000pt;}
.ws5{word-spacing:3.200000pt;}
.wsb{word-spacing:3.264000pt;}
.wsc{word-spacing:3.584000pt;}
.ws8{word-spacing:3.648000pt;}
.ws4{word-spacing:4.032000pt;}
.ws9{word-spacing:4.416000pt;}
.ws6{word-spacing:4.522667pt;}
.ws1e{word-spacing:4.800000pt;}
.ws46{word-spacing:5.568000pt;}
.ws45{word-spacing:5.827840pt;}
.ws4b{word-spacing:91.921067pt;}
.ws49{word-spacing:91.989333pt;}
.ws30{word-spacing:217.241173pt;}
.ws3b{word-spacing:282.869333pt;}
.ws37{word-spacing:287.456000pt;}
.ws44{word-spacing:307.051093pt;}
.ws24{word-spacing:548.725333pt;}
.ws1f{word-spacing:706.337920pt;}
.ws36{word-spacing:765.212373pt;}
.ws31{word-spacing:765.319040pt;}
.ws52{word-spacing:800.703573pt;}
.ws33{word-spacing:828.035627pt;}
.ws25{word-spacing:942.976000pt;}
.ws4d{word-spacing:1038.304000pt;}
.ws27{word-spacing:1063.914667pt;}
.ws3c{word-spacing:1366.240000pt;}
.ws3a{word-spacing:1485.642667pt;}
.ws38{word-spacing:1494.016000pt;}
.ws40{word-spacing:1505.653333pt;}
.ws4a{word-spacing:1525.962240pt;}
.ws48{word-spacing:1526.015573pt;}
.ws43{word-spacing:3065.911467pt;}
.ws35{word-spacing:3069.365333pt;}
._10{margin-left:-16.679680pt;}
._11{margin-left:-15.617280pt;}
._15{margin-left:-14.218667pt;}
._2{margin-left:-10.885760pt;}
._e{margin-left:-7.038720pt;}
._4{margin-left:-5.568000pt;}
._7{margin-left:-4.544000pt;}
._5{margin-left:-2.856875pt;}
._1{margin-left:-1.938560pt;}
._0{margin-left:-1.043840pt;}
._3{width:1.157760pt;}
._6{width:2.884053pt;}
._8{width:13.356715pt;}
._b{width:14.355840pt;}
._d{width:15.443840pt;}
._c{width:16.725973pt;}
._9{width:17.920000pt;}
._a{width:18.898560pt;}
._14{width:227.253333pt;}
._13{width:308.096000pt;}
._12{width:312.576000pt;}
._17{width:1065.018240pt;}
._f{width:1075.562880pt;}
._16{width:2461.600640pt;}
.fs4{font-size:32.000000pt;}
.fs1b{font-size:35.840000pt;}
.fs1f{font-size:37.120000pt;}
.fs16{font-size:42.880000pt;}
.fs18{font-size:43.008000pt;}
.fs14{font-size:53.120000pt;}
.fs19{font-size:56.320000pt;}
.fs1a{font-size:56.448000pt;}
.fs21{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs1{font-size:74.880000pt;}
.fs1e{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fs1d{font-size:85.248000pt;}
.fs8{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fs15{font-size:106.880000pt;}
.fs17{font-size:107.008000pt;}
.fsb{font-size:128.000000pt;}
.fsc{font-size:128.128000pt;}
.fs10{font-size:138.880000pt;}
.fsf{font-size:139.008000pt;}
.fs0{font-size:149.120000pt;}
.fse{font-size:149.248000pt;}
.fs6{font-size:170.880000pt;}
.fs20{font-size:171.008000pt;}
.fs12{font-size:192.000000pt;}
.fs1c{font-size:192.128000pt;}
.fsa{font-size:234.880000pt;}
.fs9{font-size:235.008000pt;}
.fs23{font-size:394.880000pt;}
.fs22{font-size:395.008000pt;}
.fs5{font-size:426.880000pt;}
.fs13{font-size:427.008000pt;}
.fs11{font-size:512.128000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:26.880000pt;}
.y20{bottom:27.904000pt;}
.y4a{bottom:28.064000pt;}
.yc8{bottom:30.336000pt;}
.y2b{bottom:33.344000pt;}
.yad{bottom:34.784000pt;}
.yb1{bottom:35.104000pt;}
.y11b{bottom:37.280000pt;}
.y4b{bottom:38.272000pt;}
.y59{bottom:40.288000pt;}
.y121{bottom:43.232000pt;}
.y41{bottom:43.264000pt;}
.yf7{bottom:48.480000pt;}
.y118{bottom:49.120000pt;}
.yc7{bottom:50.816000pt;}
.yc9{bottom:50.912000pt;}
.yf9{bottom:55.552000pt;}
.yfe{bottom:58.016000pt;}
.y109{bottom:63.744000pt;}
.y9b{bottom:63.840000pt;}
.y1e{bottom:65.696000pt;}
.ya3{bottom:68.000000pt;}
.y117{bottom:69.600000pt;}
.y52{bottom:72.416000pt;}
.y58{bottom:73.888000pt;}
.y11d{bottom:77.536000pt;}
.y36{bottom:78.944000pt;}
.y2a{bottom:87.136000pt;}
.ybb{bottom:87.392000pt;}
.y11c{bottom:88.736000pt;}
.y7f{bottom:91.520000pt;}
.yf4{bottom:96.256000pt;}
.yf3{bottom:97.024000pt;}
.y33{bottom:97.408000pt;}
.y15{bottom:99.072000pt;}
.y19{bottom:99.616000pt;}
.y120{bottom:102.624000pt;}
.y108{bottom:104.096000pt;}
.y64{bottom:107.232000pt;}
.yf8{bottom:109.344000pt;}
.y83{bottom:113.088000pt;}
.y9a{bottom:114.560000pt;}
.ya2{bottom:118.720000pt;}
.y80{bottom:119.840000pt;}
.yc6{bottom:123.936000pt;}
.y18{bottom:125.216000pt;}
.y29{bottom:127.456000pt;}
.y32{bottom:130.688000pt;}
.y73{bottom:135.653333pt;}
.y1f{bottom:139.906667pt;}
.y116{bottom:141.053333pt;}
.yec{bottom:141.786667pt;}
.ye{bottom:143.840000pt;}
.yf1{bottom:144.000000pt;}
.y81{bottom:146.853333pt;}
.y25{bottom:148.346667pt;}
.y128{bottom:150.080000pt;}
.yf0{bottom:151.706667pt;}
.y7c{bottom:155.013333pt;}
.y60{bottom:155.333333pt;}
.ye9{bottom:157.413333pt;}
.yef{bottom:159.200000pt;}
.y6d{bottom:159.586667pt;}
.y49{bottom:160.226667pt;}
.y1a{bottom:160.986667pt;}
.yeb{bottom:163.386667pt;}
.yee{bottom:166.693333pt;}
.y57{bottom:167.133333pt;}
.ye7{bottom:173.733333pt;}
.yed{bottom:173.760000pt;}
.yd{bottom:179.040000pt;}
.y5f{bottom:180.413333pt;}
.y11a{bottom:181.346667pt;}
.yf2{bottom:183.840000pt;}
.yea{bottom:183.866667pt;}
.ye1{bottom:184.613333pt;}
.y61{bottom:185.346667pt;}
.yd9{bottom:185.826667pt;}
.y12e{bottom:186.426667pt;}
.yd2{bottom:187.773333pt;}
.y7d{bottom:189.280000pt;}
.ye8{bottom:192.573333pt;}
.y48{bottom:192.706667pt;}
.y10a{bottom:196.453333pt;}
.y96{bottom:196.960000pt;}
.yb7{bottom:197.666667pt;}
.yc{bottom:198.240000pt;}
.y54{bottom:203.066667pt;}
.y127{bottom:203.680000pt;}
.yd8{bottom:211.426667pt;}
.yd1{bottom:213.373333pt;}
.ycc{bottom:216.160000pt;}
.y8d{bottom:216.506667pt;}
.yc4{bottom:216.666667pt;}
.yb{bottom:217.440000pt;}
.ybd{bottom:218.626667pt;}
.y7e{bottom:219.546667pt;}
.y8b{bottom:221.280000pt;}
.y12d{bottom:222.146667pt;}
.y31{bottom:224.000000pt;}
.y88{bottom:225.306667pt;}
.y17{bottom:225.853333pt;}
.y103{bottom:228.293333pt;}
.y114{bottom:233.826667pt;}
.y53{bottom:235.546667pt;}
.y10d{bottom:235.773333pt;}
.y6a{bottom:237.413333pt;}
.yf6{bottom:237.506667pt;}
.yf5{bottom:238.266667pt;}
.y71{bottom:239.200000pt;}
.ya4{bottom:240.160000pt;}
.y100{bottom:240.986667pt;}
.yc3{bottom:242.266667pt;}
.y11e{bottom:242.560000pt;}
.yda{bottom:244.000000pt;}
.ybc{bottom:244.226667pt;}
.y35{bottom:246.213333pt;}
.y10b{bottom:246.653333pt;}
.y56{bottom:247.106667pt;}
.y6c{bottom:247.746667pt;}
.ya{bottom:249.280000pt;}
.y8c{bottom:251.973333pt;}
.y7b{bottom:252.773333pt;}
.y85{bottom:256.986667pt;}
.y30{bottom:257.280000pt;}
.y69{bottom:259.386667pt;}
.y113{bottom:259.426667pt;}
.y5d{bottom:260.226667pt;}
.y10c{bottom:261.373333pt;}
.yb5{bottom:263.040000pt;}
.ycb{bottom:264.066667pt;}
.y119{bottom:264.253333pt;}
.y122{bottom:265.053333pt;}
.y131{bottom:265.413333pt;}
.ye0{bottom:267.973333pt;}
.y6b{bottom:273.373333pt;}
.ye5{bottom:273.600000pt;}
.yff{bottom:273.733333pt;}
.yc5{bottom:274.853333pt;}
.y8a{bottom:279.613333pt;}
.y87{bottom:283.653333pt;}
.y115{bottom:291.973333pt;}
.y40{bottom:292.733333pt;}
.y12c{bottom:293.666667pt;}
.yfd{bottom:294.813333pt;}
.y9f{bottom:297.120000pt;}
.yd0{bottom:300.480000pt;}
.yb0{bottom:301.146667pt;}
.y9{bottom:301.466667pt;}
.y89{bottom:302.013333pt;}
.y86{bottom:306.053333pt;}
.y37{bottom:308.773333pt;}
.y42{bottom:317.573333pt;}
.y47{bottom:319.906667pt;}
.y4c{bottom:320.413333pt;}
.y8{bottom:320.666667pt;}
.y51{bottom:322.746667pt;}
.y12b{bottom:329.346667pt;}
.yaf{bottom:332.346667pt;}
.y55{bottom:332.666667pt;}
.ydf{bottom:336.320000pt;}
.yb8{bottom:338.266667pt;}
.yab{bottom:339.333333pt;}
.y7{bottom:339.866667pt;}
.yce{bottom:340.733333pt;}
.yca{bottom:342.626667pt;}
.y9e{bottom:342.746667pt;}
.y5c{bottom:346.586667pt;}
.y34{bottom:346.786667pt;}
.y68{bottom:347.266667pt;}
.y66{bottom:347.520000pt;}
.y106{bottom:347.706667pt;}
.y130{bottom:348.320000pt;}
.y2f{bottom:350.400000pt;}
.y3b{bottom:350.493333pt;}
.y78{bottom:351.173333pt;}
.y126{bottom:351.386667pt;}
.y70{bottom:355.266667pt;}
.y6{bottom:359.066667pt;}
.yfc{bottom:360.506667pt;}
.y3a{bottom:360.666667pt;}
.y39{bottom:370.560000pt;}
.yde{bottom:376.640000pt;}
.y65{bottom:378.306667pt;}
.y77{bottom:380.160000pt;}
.y38{bottom:380.480000pt;}
.y67{bottom:382.586667pt;}
.y2e{bottom:383.706667pt;}
.yaa{bottom:386.720000pt;}
.y84{bottom:387.133333pt;}
.y3d{bottom:387.200000pt;}
.y9d{bottom:388.386667pt;}
.y104{bottom:390.466667pt;}
.y125{bottom:391.746667pt;}
.y5{bottom:397.466667pt;}
.y7a{bottom:399.680000pt;}
.y12a{bottom:400.893333pt;}
.y24{bottom:400.960000pt;}
.ycd{bottom:402.426667pt;}
.y3c{bottom:403.226667pt;}
.y44{bottom:403.613333pt;}
.y46{bottom:404.986667pt;}
.y101{bottom:406.400000pt;}
.y4e{bottom:406.466667pt;}
.y16{bottom:406.560000pt;}
.y50{bottom:407.840000pt;}
.y107{bottom:415.360000pt;}
.y43{bottom:416.413333pt;}
.y4{bottom:416.706667pt;}
.ydd{bottom:416.960000pt;}
.y4d{bottom:419.293333pt;}
.ye4{bottom:420.546667pt;}
.y79{bottom:421.506667pt;}
.y5a{bottom:423.226667pt;}
.y5b{bottom:425.213333pt;}
.y11f{bottom:429.026667pt;}
.ye6{bottom:431.453333pt;}
.y3f{bottom:432.826667pt;}
.ya9{bottom:434.146667pt;}
.y9c{bottom:435.040000pt;}
.y3{bottom:435.906667pt;}
.y129{bottom:436.573333pt;}
.yd7{bottom:442.653333pt;}
.yd4{bottom:446.306667pt;}
.y12f{bottom:448.093333pt;}
.y5e{bottom:448.453333pt;}
.y90{bottom:451.613333pt;}
.y23{bottom:452.893333pt;}
.ydc{bottom:457.306667pt;}
.yb6{bottom:459.613333pt;}
.y6f{bottom:460.613333pt;}
.yd6{bottom:463.173333pt;}
.yd3{bottom:471.906667pt;}
.y63{bottom:473.413333pt;}
.yc2{bottom:473.533333pt;}
.y2d{bottom:476.986667pt;}
.ybf{bottom:477.146667pt;}
.y2{bottom:481.346667pt;}
.ya8{bottom:481.533333pt;}
.y105{bottom:483.013333pt;}
.y72{bottom:483.386667pt;}
.y99{bottom:483.706667pt;}
.y91{bottom:489.026667pt;}
.y45{bottom:490.053333pt;}
.y112{bottom:490.653333pt;}
.ye3{bottom:491.066667pt;}
.y102{bottom:492.066667pt;}
.y74{bottom:492.733333pt;}
.y4f{bottom:492.893333pt;}
.yc1{bottom:494.013333pt;}
.y22{bottom:494.173333pt;}
.y10f{bottom:494.306667pt;}
.y62{bottom:494.786667pt;}
.y1d{bottom:496.573333pt;}
.ydb{bottom:497.626667pt;}
.y6e{bottom:497.760000pt;}
.y124{bottom:499.106667pt;}
.ybe{bottom:502.786667pt;}
.y27{bottom:505.120000pt;}
.y28{bottom:508.453333pt;}
.y8f{bottom:509.946667pt;}
.y2c{bottom:510.306667pt;}
.y111{bottom:511.133333pt;}
.ycf{bottom:516.640000pt;}
.y10e{bottom:519.906667pt;}
.yba{bottom:524.893333pt;}
.ya7{bottom:528.960000pt;}
.yd5{bottom:529.440000pt;}
.y98{bottom:530.973333pt;}
.y97{bottom:531.200000pt;}
.yb9{bottom:531.266667pt;}
.ya1{bottom:531.293333pt;}
.ya0{bottom:532.293333pt;}
.y8e{bottom:532.346667pt;}
.y12{bottom:536.160000pt;}
.y93{bottom:536.733333pt;}
.y1c{bottom:536.893333pt;}
.y123{bottom:539.453333pt;}
.y76{bottom:540.453333pt;}
.y3e{bottom:542.720000pt;}
.y14{bottom:545.786667pt;}
.yae{bottom:550.053333pt;}
.y10{bottom:555.386667pt;}
.y92{bottom:559.066667pt;}
.yc0{bottom:560.293333pt;}
.y75{bottom:562.786667pt;}
.y13{bottom:564.986667pt;}
.ya5{bottom:573.440000pt;}
.y11{bottom:574.586667pt;}
.ya6{bottom:575.173333pt;}
.y110{bottom:577.440000pt;}
.yb3{bottom:588.066667pt;}
.yb4{bottom:591.293333pt;}
.yfb{bottom:593.373333pt;}
.y95{bottom:601.533333pt;}
.yf{bottom:604.026667pt;}
.yb2{bottom:616.866667pt;}
.yfa{bottom:618.426667pt;}
.y1b{bottom:632.706667pt;}
.y26{bottom:633.253333pt;}
.y21{bottom:633.533333pt;}
.ye2{bottom:634.173333pt;}
.yac{bottom:655.680000pt;}
.y1{bottom:657.373333pt;}
.y94{bottom:664.933333pt;}
.h5{height:31.828125pt;}
.h32{height:38.715000pt;}
.h19{height:44.722500pt;}
.h1b{height:44.856000pt;}
.h22{height:53.110938pt;}
.h24{height:54.574167pt;}
.h15{height:55.402500pt;}
.h1f{height:56.017500pt;}
.h21{height:56.144813pt;}
.h20{height:57.667500pt;}
.h37{height:58.563750pt;}
.h31{height:62.574167pt;}
.h3{height:63.656250pt;}
.h4{height:63.783562pt;}
.h33{height:65.003750pt;}
.h17{height:74.477812pt;}
.h2f{height:74.605125pt;}
.h2{height:76.671562pt;}
.h26{height:78.097500pt;}
.h8{height:84.662813pt;}
.h2e{height:84.790125pt;}
.h30{height:87.156562pt;}
.h9{height:95.484375pt;}
.h25{height:95.611688pt;}
.h28{height:97.031042pt;}
.h2b{height:99.591042pt;}
.h39{height:99.964375pt;}
.h2d{height:100.091687pt;}
.h29{height:100.125000pt;}
.h2a{height:100.258500pt;}
.h23{height:104.931146pt;}
.h18{height:106.305937pt;}
.h1a{height:106.433250pt;}
.h2c{height:111.472500pt;}
.hb{height:113.404375pt;}
.hd{height:127.312500pt;}
.he{height:127.439813pt;}
.h36{height:130.482917pt;}
.h1d{height:133.500000pt;}
.h34{height:137.775000pt;}
.h11{height:138.134062pt;}
.h10{height:138.261375pt;}
.h1{height:148.319063pt;}
.hf{height:148.446375pt;}
.h16{height:152.687812pt;}
.h1c{height:152.818875pt;}
.h38{height:163.034479pt;}
.h7{height:169.962187pt;}
.h13{height:190.968750pt;}
.h27{height:191.096063pt;}
.hc{height:223.640625pt;}
.ha{height:223.762500pt;}
.h1e{height:233.618437pt;}
.h35{height:246.341146pt;}
.h3b{height:392.759062pt;}
.h3a{height:392.886375pt;}
.h14{height:437.224500pt;}
.h6{height:445.222500pt;}
.h12{height:509.377312pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xc6{left:21.023981pt;}
.x35{left:40.511981pt;}
.x9a{left:45.279981pt;}
.x1{left:63.359981pt;}
.xc3{left:78.495981pt;}
.xe{left:80.735981pt;}
.x8d{left:85.439981pt;}
.x16{left:97.599981pt;}
.x3{left:98.719981pt;}
.xf{left:104.735981pt;}
.x30{left:111.967981pt;}
.x11{left:119.455981pt;}
.x1b{left:121.599981pt;}
.x39{left:123.007981pt;}
.x72{left:124.639981pt;}
.x13{left:128.735981pt;}
.x15{left:133.853314pt;}
.xab{left:134.813314pt;}
.xb5{left:138.306648pt;}
.x73{left:144.893314pt;}
.x2{left:146.079981pt;}
.xac{left:150.813314pt;}
.x6a{left:158.493314pt;}
.x7c{left:167.746648pt;}
.xae{left:179.973314pt;}
.x5f{left:183.653314pt;}
.xc8{left:190.333314pt;}
.x82{left:193.693314pt;}
.xb{left:204.453314pt;}
.x4e{left:213.119981pt;}
.x4d{left:223.746648pt;}
.x4f{left:232.186648pt;}
.x74{left:235.839981pt;}
.x6c{left:242.426648pt;}
.x6f{left:245.373314pt;}
.x18{left:248.026648pt;}
.x3f{left:249.306648pt;}
.x19{left:253.666648pt;}
.x6b{left:254.879981pt;}
.x3e{left:258.333314pt;}
.x40{left:262.173314pt;}
.x8c{left:263.453314pt;}
.x41{left:266.079981pt;}
.x94{left:271.493314pt;}
.x1a{left:277.666648pt;}
.x5{left:278.719981pt;}
.x93{left:281.253314pt;}
.x1e{left:285.053314pt;}
.x75{left:294.493314pt;}
.x6{left:302.399981pt;}
.x7d{left:306.853314pt;}
.xaf{left:308.346648pt;}
.x92{left:310.906648pt;}
.xb6{left:330.813314pt;}
.x48{left:338.493314pt;}
.xa{left:341.279981pt;}
.x4{left:343.359981pt;}
.x6d{left:352.613314pt;}
.x46{left:356.546648pt;}
.x42{left:358.973314pt;}
.x1d{left:360.186648pt;}
.x49{left:362.533314pt;}
.x8a{left:367.293314pt;}
.x3a{left:369.759981pt;}
.x80{left:374.719981pt;}
.x44{left:376.253314pt;}
.xc7{left:383.493314pt;}
.x45{left:397.053314pt;}
.xa4{left:417.466648pt;}
.x60{left:421.253314pt;}
.x62{left:425.279981pt;}
.xc5{left:429.666648pt;}
.x61{left:431.173314pt;}
.xc4{left:438.106648pt;}
.x43{left:439.519981pt;}
.x5c{left:441.786648pt;}
.x53{left:446.373314pt;}
.xad{left:448.453314pt;}
.xc9{left:450.533314pt;}
.x33{left:452.506648pt;}
.x36{left:454.173314pt;}
.x47{left:457.573314pt;}
.x4c{left:461.946648pt;}
.x70{left:464.093314pt;}
.x79{left:469.506648pt;}
.x56{left:471.999981pt;}
.x57{left:474.079981pt;}
.x4a{left:475.519981pt;}
.x4b{left:476.986648pt;}
.x2c{left:479.519981pt;}
.x7a{left:483.066648pt;}
.x2d{left:486.306648pt;}
.x1f{left:491.359981pt;}
.x9b{left:503.973314pt;}
.x85{left:505.533314pt;}
.x78{left:507.933314pt;}
.x96{left:509.053314pt;}
.xa5{left:510.626648pt;}
.x84{left:515.293314pt;}
.x97{left:520.893314pt;}
.xd{left:522.879981pt;}
.x71{left:524.346648pt;}
.x1c{left:534.173314pt;}
.x83{left:540.133314pt;}
.x9f{left:541.786648pt;}
.x55{left:545.053314pt;}
.x51{left:546.586648pt;}
.x66{left:548.293314pt;}
.x9d{left:555.866648pt;}
.xa6{left:557.373314pt;}
.x50{left:559.039981pt;}
.x6e{left:560.066648pt;}
.x59{left:561.053314pt;}
.x98{left:564.319981pt;}
.x76{left:566.786648pt;}
.x99{left:568.319981pt;}
.x9e{left:574.693314pt;}
.x5d{left:580.386648pt;}
.x54{left:581.733314pt;}
.xa0{left:587.933314pt;}
.x8{left:593.573314pt;}
.xb2{left:603.493314pt;}
.xbf{left:611.426648pt;}
.xa9{left:615.866648pt;}
.x95{left:617.786648pt;}
.xb4{left:626.746648pt;}
.x58{left:629.466648pt;}
.x10{left:632.506648pt;}
.x67{left:634.466648pt;}
.xb3{left:640.866648pt;}
.xca{left:645.279981pt;}
.x7{left:646.239981pt;}
.x7f{left:652.866648pt;}
.x37{left:655.386648pt;}
.x5a{left:668.706648pt;}
.x2e{left:687.519981pt;}
.x68{left:694.239981pt;}
.x69{left:698.239981pt;}
.x7e{left:703.266648pt;}
.x5b{left:705.093314pt;}
.x8b{left:707.039981pt;}
.xa1{left:710.653314pt;}
.x3b{left:712.413314pt;}
.x38{left:717.893314pt;}
.x9c{left:719.679981pt;}
.xa2{left:722.373314pt;}
.xb0{left:725.506648pt;}
.xa8{left:728.826648pt;}
.x26{left:730.373314pt;}
.xa3{left:734.106648pt;}
.x8e{left:736.666648pt;}
.x87{left:743.106648pt;}
.xba{left:749.626648pt;}
.x88{left:754.946648pt;}
.x5e{left:756.413314pt;}
.xb9{left:759.386648pt;}
.x65{left:764.293314pt;}
.x63{left:771.013314pt;}
.x25{left:779.013314pt;}
.xb7{left:784.253314pt;}
.x64{left:788.133314pt;}
.xb8{left:789.053314pt;}
.x89{left:798.373314pt;}
.x24{left:802.239981pt;}
.x52{left:804.026648pt;}
.x20{left:813.693314pt;}
.x21{left:825.279981pt;}
.xaa{left:834.373314pt;}
.x22{left:837.026648pt;}
.x29{left:841.759981pt;}
.x23{left:848.733314pt;}
.x86{left:851.839981pt;}
.x27{left:856.666648pt;}
.x28{left:867.546648pt;}
.x3d{left:892.133314pt;}
.x7b{left:894.626648pt;}
.x91{left:928.133314pt;}
.x81{left:933.413314pt;}
.xc2{left:950.213314pt;}
.xc1{left:951.973314pt;}
.x31{left:955.266648pt;}
.x8f{left:958.106648pt;}
.xc{left:964.799981pt;}
.xb1{left:969.733314pt;}
.xa7{left:972.159981pt;}
.x90{left:978.399981pt;}
.x2a{left:982.266648pt;}
.xbc{left:987.226648pt;}
.xbd{left:999.066648pt;}
.x14{left:1010.533314pt;}
.x32{left:1033.893314pt;}
.xbe{left:1042.493314pt;}
.x77{left:1046.266648pt;}
.x2b{left:1060.893314pt;}
.x17{left:1078.373314pt;}
.xc0{left:1092.933314pt;}
.xbb{left:1095.973314pt;}
.x9{left:1162.879981pt;}
.x3c{left:1166.053314pt;}
.x12{left:1174.239981pt;}
.x34{left:1185.439981pt;}
.x2f{left:1193.599981pt;}
}




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