
    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_af7b0ff7ac0fc49e1c750142.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_275a17f1c6003ca3b6bc2a16.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776000;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_3fa0d78f26044843be0705b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_ec6a0e33ca3d5cfce1938efd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_a5ac74b4c2d80ec99655b3f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_58c4928a7cbab9df20ec704b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899902;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_0a287660fc7c707df97b0944.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.788000;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_b415248cb9cfbfc057c94949.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.981000;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_84adf2206e8f21682fa51077.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.889000;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_9344a7f79b9cb21bd7b9a50a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853000;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_264aef38a6a03271557427f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690000;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_e1ea8c885e1f27282d33874c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.022000;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_6a099084a35d2ed8d3ffd540.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.230000;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_63433c0ba8e381012f4fca9f.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.269000;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_a64131ed2448ccbf2640f6f9.woff2')format("woff");}.fff{font-family:fff;line-height:0.881836;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_e58cf4919db6a6acf178ed7d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.883000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.200230,0.149692,-0.149692,0.200230,0,0);-ms-transform:matrix(0.200230,0.149692,-0.149692,0.200230,0,0);-webkit-transform:matrix(0.200230,0.149692,-0.149692,0.200230,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);}
.v15{vertical-align:-281.137800px;}
.v14{vertical-align:-165.375000px;}
.v18{vertical-align:-148.803000px;}
.v13{vertical-align:-115.762800px;}
.vf{vertical-align:-92.172900px;}
.v10{vertical-align:-73.001220px;}
.ve{vertical-align:-57.589800px;}
.v3{vertical-align:-41.271600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.723072px;}
.v2{vertical-align:11.790000px;}
.vd{vertical-align:14.825100px;}
.v11{vertical-align:19.171680px;}
.v1{vertical-align:52.668000px;}
.v8{vertical-align:87.995824px;}
.v17{vertical-align:99.900000px;}
.va{vertical-align:125.224856px;}
.v16{vertical-align:130.980000px;}
.vc{vertical-align:169.214700px;}
.vb{vertical-align:184.345800px;}
.v5{vertical-align:238.603691px;}
.v6{vertical-align:253.834057px;}
.v9{vertical-align:257.557129px;}
.v12{vertical-align:301.405620px;}
.v7{vertical-align:363.828547px;}
.ls8{letter-spacing:-14.700000px;}
.ls0{letter-spacing:-9.600000px;}
.ls3{letter-spacing:-8.400000px;}
.ls40{letter-spacing:-4.620000px;}
.ls7{letter-spacing:-0.840000px;}
.ls1{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000010px;}
.ls2b{letter-spacing:0.000030px;}
.lsa{letter-spacing:0.000052px;}
.lsd{letter-spacing:0.000089px;}
.ls23{letter-spacing:0.000097px;}
.ls10{letter-spacing:0.000119px;}
.ls46{letter-spacing:0.000120px;}
.ls27{letter-spacing:0.000300px;}
.ls17{letter-spacing:0.001102px;}
.ls48{letter-spacing:0.001200px;}
.ls4{letter-spacing:0.002340px;}
.ls5{letter-spacing:0.002400px;}
.ls45{letter-spacing:0.004320px;}
.ls42{letter-spacing:0.005520px;}
.ls6{letter-spacing:0.030000px;}
.ls38{letter-spacing:0.036000px;}
.ls41{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.431311px;}
.ls1b{letter-spacing:0.433514px;}
.ls3e{letter-spacing:1.818000px;}
.ls44{letter-spacing:2.280960px;}
.ls2c{letter-spacing:3.000000px;}
.ls15{letter-spacing:12.367285px;}
.ls30{letter-spacing:15.000000px;}
.ls31{letter-spacing:15.334200px;}
.ls47{letter-spacing:16.194816px;}
.ls34{letter-spacing:19.666440px;}
.ls39{letter-spacing:19.666680px;}
.ls3c{letter-spacing:19.666800px;}
.ls1d{letter-spacing:27.751582px;}
.ls13{letter-spacing:27.752133px;}
.ls9{letter-spacing:27.752519px;}
.lsc{letter-spacing:27.752684px;}
.ls2f{letter-spacing:30.000000px;}
.ls3a{letter-spacing:39.333300px;}
.ls33{letter-spacing:39.333360px;}
.ls3b{letter-spacing:39.333600px;}
.ls1c{letter-spacing:50.764213px;}
.ls16{letter-spacing:54.059673px;}
.ls26{letter-spacing:55.793317px;}
.ls43{letter-spacing:58.247424px;}
.ls2e{letter-spacing:59.999700px;}
.ls2d{letter-spacing:60.000000px;}
.ls12{letter-spacing:60.027746px;}
.lsb{letter-spacing:60.243100px;}
.ls3f{letter-spacing:67.801200px;}
.ls32{letter-spacing:75.000000px;}
.ls18{letter-spacing:75.207734px;}
.lse{letter-spacing:75.209937px;}
.ls1e{letter-spacing:75.213242px;}
.ls35{letter-spacing:78.666600px;}
.ls36{letter-spacing:78.667200px;}
.ls28{letter-spacing:81.931297px;}
.ls24{letter-spacing:81.931500px;}
.ls29{letter-spacing:81.931854px;}
.ls1f{letter-spacing:96.032025px;}
.ls14{letter-spacing:96.033126px;}
.ls22{letter-spacing:96.269700px;}
.ls37{letter-spacing:98.332800px;}
.ls3d{letter-spacing:98.333400px;}
.ls20{letter-spacing:102.414310px;}
.ls19{letter-spacing:107.829687px;}
.lsf{letter-spacing:107.830237px;}
.ls25{letter-spacing:112.164054px;}
.ls21{letter-spacing:139.283274px;}
.ls1a{letter-spacing:155.075411px;}
.ls2{letter-spacing:3265.036200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-324.054000px;}
.wsa{word-spacing:-180.030000px;}
.ws4{word-spacing:-92.400000px;}
.wsc{word-spacing:-88.620000px;}
.ws21{word-spacing:-83.160000px;}
.wsd{word-spacing:-82.320000px;}
.ws15{word-spacing:-72.300000px;}
.ws7{word-spacing:-72.000000px;}
.ws5{word-spacing:-69.300000px;}
.ws16{word-spacing:-66.528000px;}
.ws1{word-spacing:-52.668000px;}
.ws1f{word-spacing:-47.124000px;}
.ws8{word-spacing:-44.352000px;}
.ws2{word-spacing:-35.111995px;}
.wsb{word-spacing:-0.540000px;}
.ws0{word-spacing:-0.480000px;}
.ws1c{word-spacing:-0.420000px;}
.ws9{word-spacing:-0.372000px;}
.ws13{word-spacing:-0.368692px;}
.ws1a{word-spacing:-0.354000px;}
.ws10{word-spacing:-0.338445px;}
.ws6{word-spacing:-0.300000px;}
.wsf{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.270000px;}
.ws14{word-spacing:-0.261771px;}
.ws12{word-spacing:-0.240296px;}
.ws20{word-spacing:-0.207360px;}
.ws22{word-spacing:-0.201600px;}
.wse{word-spacing:-0.180000px;}
.ws3{word-spacing:0.000000px;}
.ws11{word-spacing:69.230907px;}
.ws19{word-spacing:74.730000px;}
.ws18{word-spacing:74.790000px;}
.ws1b{word-spacing:97.979400px;}
.ws1d{word-spacing:3220.158000px;}
._11{margin-left:-178.567606px;}
._f{margin-left:-145.322649px;}
._10{margin-left:-133.202122px;}
._24{margin-left:-48.057984px;}
._20{margin-left:-18.662400px;}
._9{margin-left:-16.500000px;}
._14{margin-left:-15.300000px;}
._c{margin-left:-12.695999px;}
._4{margin-left:-11.040000px;}
._2{margin-left:-9.600000px;}
._a{margin-left:-8.160000px;}
._3{margin-left:-6.720000px;}
._1{margin-left:-4.800000px;}
._5{margin-left:-3.192001px;}
._7{margin-left:-1.800000px;}
._15{width:1.168200px;}
._13{width:2.328001px;}
._8{width:3.492001px;}
._16{width:4.615801px;}
._0{width:5.760000px;}
._b{width:6.840000px;}
._19{width:8.326655px;}
._17{width:9.492001px;}
._22{width:16.102656px;}
._23{width:17.176392px;}
._1b{width:21.990912px;}
._1a{width:23.711232px;}
._1d{width:26.988288px;}
._1c{width:28.708608px;}
._18{width:31.864620px;}
._26{width:33.022080px;}
._1f{width:37.919615px;}
._1e{width:39.607296px;}
._28{width:51.123840px;}
._27{width:53.063040px;}
._21{width:58.247424px;}
._25{width:78.442560px;}
._d{width:184.644000px;}
._e{width:491.512800px;}
._12{width:1148.072999px;}
._6{width:5574.539759px;}
.fcf{color:rgb(243,144,25);}
.fcd{color:rgb(29,177,0);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fce{color:rgb(0,118,186);}
.fcb{color:rgb(94,94,94);}
.fc3{color:transparent;}
.fc6{color:rgb(255,38,0);}
.fc4{color:rgb(0,162,255);}
.fc8{color:rgb(0,162,255);}
.fc5{color:rgb(97,216,54);}
.fc9{color:rgb(254,174,0);}
.fca{color:rgb(253,252,255);}
.fc2{color:rgb(146,146,146);}
.fc7{color:rgb(146,146,146);}
.fcc{color:rgb(238,34,12);}
.fs5{font-size:132.000000px;}
.fs3{font-size:151.999980px;}
.fs4{font-size:180.000000px;}
.fs11{font-size:185.857440px;}
.fs14{font-size:191.700000px;}
.fsa{font-size:191.999997px;}
.fs9{font-size:192.000000px;}
.fs19{font-size:201.600000px;}
.fs8{font-size:204.000000px;}
.fs18{font-size:207.360000px;}
.fs2{font-size:228.000000px;}
.fsf{font-size:240.296119px;}
.fs17{font-size:251.340000px;}
.fs10{font-size:261.771000px;}
.fs13{font-size:270.000000px;}
.fsc{font-size:288.000000px;}
.fs1{font-size:300.000000px;}
.fse{font-size:338.445284px;}
.fs16{font-size:354.000000px;}
.fs15{font-size:360.000000px;}
.fsd{font-size:368.691600px;}
.fsb{font-size:372.000000px;}
.fs7{font-size:420.000000px;}
.fs0{font-size:480.000000px;}
.fs6{font-size:540.000000px;}
.fs12{font-size:600.000000px;}
.y98{bottom:-22.334715px;}
.yb2{bottom:-19.780920px;}
.y9c{bottom:-0.000135px;}
.y0{bottom:0.000000px;}
.y9b{bottom:1.013820px;}
.y9a{bottom:1.013865px;}
.y105{bottom:9.638760px;}
.ya2{bottom:11.109375px;}
.y30{bottom:11.138700px;}
.y107{bottom:11.138775px;}
.y2e{bottom:11.138850px;}
.y11a{bottom:16.229550px;}
.y9f{bottom:17.429856px;}
.ye6{bottom:26.990865px;}
.y104{bottom:30.637050px;}
.y10{bottom:30.992895px;}
.ya4{bottom:32.270655px;}
.y118{bottom:48.224610px;}
.ya1{bottom:53.320875px;}
.y97{bottom:63.165285px;}
.yff{bottom:64.149600px;}
.yb1{bottom:65.719080px;}
.y89{bottom:68.700630px;}
.ye5{bottom:74.366850px;}
.yd3{bottom:75.505530px;}
.y9e{bottom:80.888371px;}
.y3c{bottom:92.584095px;}
.yc8{bottom:102.653685px;}
.y106{bottom:115.495050px;}
.ya3{bottom:119.640225px;}
.yf{bottom:129.815895px;}
.y2c{bottom:149.474655px;}
.yb0{bottom:151.219050px;}
.y96{bottom:151.910850px;}
.y88{bottom:154.200600px;}
.y62{bottom:158.924700px;}
.yd2{bottom:167.605500px;}
.y100{bottom:173.366550px;}
.ye{bottom:177.191850px;}
.y3b{bottom:178.084050px;}
.yfa{bottom:185.332950px;}
.y117{bottom:193.724550px;}
.ya{bottom:200.879850px;}
.yfe{bottom:203.402550px;}
.y10d{bottom:213.872700px;}
.y48{bottom:215.018700px;}
.yd{bottom:224.567850px;}
.y2b{bottom:234.974700px;}
.y87{bottom:239.700600px;}
.y128{bottom:239.831100px;}
.y9{bottom:248.255850px;}
.y95{bottom:254.091300px;}
.yc7{bottom:268.700550px;}
.y77{bottom:269.281650px;}
.yc{bottom:271.943850px;}
.yf9{bottom:275.332950px;}
.y8b{bottom:282.060150px;}
.y8{bottom:295.631850px;}
.ydd{bottom:299.087550px;}
.y47{bottom:300.518700px;}
.y61{bottom:304.424700px;}
.y53{bottom:307.724700px;}
.y38{bottom:307.993800px;}
.y34{bottom:311.362200px;}
.y127{bottom:311.540700px;}
.y63{bottom:312.314550px;}
.yd1{bottom:315.423150px;}
.yb{bottom:319.319850px;}
.y1d{bottom:330.349650px;}
.y116{bottom:339.224550px;}
.yde{bottom:340.431300px;}
.y70{bottom:364.792500px;}
.y2d{bottom:366.233700px;}
.yf8{bottom:367.432950px;}
.y2a{bottom:380.474700px;}
.y60{bottom:389.924700px;}
.y52{bottom:393.224700px;}
.y73{bottom:394.939500px;}
.y126{bottom:395.130450px;}
.y101{bottom:401.382000px;}
.y10c{bottom:403.202700px;}
.yc6{bottom:414.200550px;}
.y1c{bottom:415.849650px;}
.ya8{bottom:429.139950px;}
.yaf{bottom:442.219050px;}
.y46{bottom:446.018700px;}
.y7a{bottom:449.373300px;}
.yd0{bottom:460.923150px;}
.y29{bottom:465.974700px;}
.y125{bottom:466.840200px;}
.y86{bottom:470.700600px;}
.y6f{bottom:473.086500px;}
.y5f{bottom:475.424700px;}
.y51{bottom:478.724700px;}
.y115{bottom:484.724550px;}
.y94{bottom:485.091300px;}
.ya6{bottom:486.365700px;}
.y79{bottom:501.873300px;}
.ya7{bottom:503.591550px;}
.yf7{bottom:515.250600px;}
.y45{bottom:531.518700px;}
.y56{bottom:542.461650px;}
.y124{bottom:550.429800px;}
.y28{bottom:551.474700px;}
.y78{bottom:554.373300px;}
.y85{bottom:556.200600px;}
.yc5{bottom:559.700550px;}
.y1b{bottom:561.349650px;}
.y93{bottom:570.591300px;}
.y10b{bottom:577.473600px;}
.y76{bottom:582.675450px;}
.y8c{bottom:584.364600px;}
.yae{bottom:587.719050px;}
.ybe{bottom:593.488950px;}
.y4{bottom:603.751200px;}
.ycf{bottom:606.423150px;}
.y44{bottom:617.018700px;}
.y5e{bottom:620.924700px;}
.y123{bottom:622.139550px;}
.y50{bottom:624.224700px;}
.y68{bottom:628.759650px;}
.y102{bottom:629.397300px;}
.y114{bottom:630.224550px;}
.y3e{bottom:631.951500px;}
.y10a{bottom:634.545600px;}
.yba{bottom:638.224650px;}
.y84{bottom:641.700600px;}
.ya0{bottom:643.207050px;}
.y2f{bottom:644.682750px;}
.y1a{bottom:646.849650px;}
.y55{bottom:650.755650px;}
.y6c{bottom:655.873500px;}
.yf6{bottom:660.750600px;}
.y3d{bottom:682.035900px;}
.y3{bottom:689.251200px;}
.ya5{bottom:691.365750px;}
.y109{bottom:691.617600px;}
.y122{bottom:693.849300px;}
.y92{bottom:696.527850px;}
.y27{bottom:696.974700px;}
.y43{bottom:702.518700px;}
.yc4{bottom:705.200550px;}
.y4f{bottom:709.724700px;}
.y8a{bottom:723.365700px;}
.y83{bottom:727.200600px;}
.y19{bottom:732.349650px;}
.yad{bottom:733.219050px;}
.yf5{bottom:746.250600px;}
.y108{bottom:748.689600px;}
.yce{bottom:751.923150px;}
.y54{bottom:759.049650px;}
.y6b{bottom:764.167500px;}
.y121{bottom:765.558900px;}
.y5d{bottom:766.424700px;}
.y113{bottom:775.724550px;}
.y26{bottom:782.474700px;}
.yb8{bottom:783.724650px;}
.y67{bottom:799.981650px;}
.y132{bottom:801.365700px;}
.y82{bottom:812.700600px;}
.y91{bottom:815.433300px;}
.y18{bottom:817.849650px;}
.yf4{bottom:831.750600px;}
.y42{bottom:848.018700px;}
.y120{bottom:849.148650px;}
.y12{bottom:849.592650px;}
.yc3{bottom:850.700550px;}
.y5c{bottom:851.924700px;}
.y131{bottom:852.806850px;}
.y4e{bottom:855.224700px;}
.yb6{bottom:856.474650px;}
.y103{bottom:857.412600px;}
.y25{bottom:867.974700px;}
.y6a{bottom:872.461500px;}
.yac{bottom:878.719050px;}
.yec{bottom:881.165100px;}
.y39{bottom:884.455500px;}
.ye4{bottom:889.279650px;}
.ycd{bottom:897.423150px;}
.y81{bottom:898.200600px;}
.yea{bottom:902.903400px;}
.y130{bottom:904.248000px;}
.y11f{bottom:920.858400px;}
.y112{bottom:921.224550px;}
.y31{bottom:923.131800px;}
.yb7{bottom:929.224650px;}
.ybf{bottom:929.998650px;}
.yc2{bottom:936.200550px;}
.y75{bottom:936.740100px;}
.y5b{bottom:937.424700px;}
.y4d{bottom:940.724700px;}
.y9d{bottom:947.943300px;}
.y2{bottom:951.851550px;}
.y12f{bottom:955.689150px;}
.y17{bottom:963.349650px;}
.y1f{bottom:970.461600px;}
.y66{bottom:971.203650px;}
.ye3{bottom:974.779650px;}
.yf3{bottom:977.250600px;}
.y69{bottom:980.755500px;}
.ycc{bottom:987.205500px;}
.y41{bottom:993.518700px;}
.yfd{bottom:1003.170750px;}
.y11e{bottom:1004.448000px;}
.y111{bottom:1006.724550px;}
.y24{bottom:1013.474700px;}
.y11{bottom:1020.814650px;}
.yab{bottom:1024.219050px;}
.y4c{bottom:1026.224700px;}
.y90{bottom:1028.831700px;}
.yef{bottom:1031.625600px;}
.ye9{bottom:1048.403400px;}
.y16{bottom:1048.849650px;}
.y12e{bottom:1054.380150px;}
.y37{bottom:1074.220500px;}
.yb9{bottom:1074.724650px;}
.y11d{bottom:1076.157750px;}
.y1e{bottom:1078.755600px;}
.y40{bottom:1079.018700px;}
.y5a{bottom:1082.924700px;}
.y23{bottom:1098.974700px;}
.y1{bottom:1103.315550px;}
.y12d{bottom:1105.821300px;}
.ye2{bottom:1120.279650px;}
.yf2{bottom:1122.750600px;}
.y80{bottom:1129.200600px;}
.ye8{bottom:1133.903400px;}
.ycb{bottom:1135.023150px;}
.y65{bottom:1142.425650px;}
.yfc{bottom:1148.670750px;}
.yc1{bottom:1150.418400px;}
.yd9{bottom:1151.460600px;}
.y110{bottom:1152.224550px;}
.y12c{bottom:1157.262450px;}
.y11c{bottom:1159.747500px;}
.yaa{bottom:1169.719050px;}
.y4b{bottom:1171.724700px;}
.yd5{bottom:1177.087500px;}
.y99{bottom:1180.089750px;}
.y8f{bottom:1181.103750px;}
.y22{bottom:1184.474700px;}
.y72{bottom:1191.226650px;}
.y6e{bottom:1193.792550px;}
.y15{bottom:1194.349650px;}
.y32{bottom:1201.580850px;}
.yee{bottom:1204.919400px;}
.ye1{bottom:1205.779650px;}
.y12b{bottom:1208.703600px;}
.y7f{bottom:1214.700600px;}
.yd6{bottom:1218.431250px;}
.y3f{bottom:1224.518700px;}
.y11b{bottom:1231.457100px;}
.y59{bottom:1232.707050px;}
.y36{bottom:1253.951550px;}
.y4a{bottom:1257.224700px;}
.ybb{bottom:1259.099700px;}
.y12a{bottom:1260.144600px;}
.yf1{bottom:1268.250600px;}
.yca{bottom:1280.523150px;}
.yd4{bottom:1284.651600px;}
.ye7{bottom:1288.113900px;}
.y14{bottom:1290.167550px;}
.ye0{bottom:1291.279650px;}
.y7c{bottom:1295.474700px;}
.y74{bottom:1296.474600px;}
.ydb{bottom:1297.288500px;}
.y10f{bottom:1297.724550px;}
.y71{bottom:1299.520650px;}
.y7e{bottom:1300.200600px;}
.y6d{bottom:1302.086550px;}
.y35{bottom:1304.035950px;}
.y64{bottom:1313.647650px;}
.ya9{bottom:1315.219050px;}
.ybd{bottom:1315.284750px;}
.yeb{bottom:1317.365700px;}
.y58{bottom:1320.524700px;}
.yc0{bottom:1321.640400px;}
.y21{bottom:1329.974700px;}
.y8e{bottom:1343.284050px;}
.y119{bottom:1357.720650px;}
.yb4{bottom:1368.667500px;}
.y49{bottom:1372.995750px;}
.yed{bottom:1376.141400px;}
.y129{bottom:1376.228550px;}
.yd8{bottom:1389.577650px;}
.yda{bottom:1397.008350px;}
.y7{bottom:1397.848500px;}
.y13{bottom:1398.461550px;}
.y3a{bottom:1398.618750px;}
.y57{bottom:1406.024700px;}
.yf0{bottom:1413.750600px;}
.y20{bottom:1415.474700px;}
.yc9{bottom:1419.914700px;}
.ybc{bottom:1423.578750px;}
.ydf{bottom:1424.113800px;}
.yfb{bottom:1436.613900px;}
.y6{bottom:1456.058100px;}
.y7d{bottom:1461.314550px;}
.y10e{bottom:1470.113850px;}
.y7b{bottom:1470.314550px;}
.ydc{bottom:1474.140900px;}
.yb3{bottom:1476.961500px;}
.yb5{bottom:1477.431750px;}
.y33{bottom:1480.029750px;}
.y8d{bottom:1488.784050px;}
.y5{bottom:1511.320500px;}
.yd7{bottom:1525.149000px;}
.h16{height:41.662155px;}
.h18{height:59.820210px;}
.ha{height:60.072000px;}
.h25{height:75.868440px;}
.h30{height:85.608015px;}
.h31{height:100.200000px;}
.h6{height:103.356000px;}
.h5{height:140.940000px;}
.hd{height:150.335997px;}
.hc{height:150.336000px;}
.h20{height:154.661250px;}
.h35{height:157.852800px;}
.hb{height:159.732000px;}
.h32{height:162.362880px;}
.h11{height:167.220000px;}
.h4{height:178.524000px;}
.h34{height:187.286400px;}
.h3{height:190.314000px;}
.h33{height:192.637440px;}
.h29{height:206.010000px;}
.h2e{height:211.523438px;}
.h1a{height:212.455650px;}
.h12{height:225.504000px;}
.h1b{height:232.512084px;}
.h10{height:232.800000px;}
.h9{height:234.900000px;}
.h19{height:249.235522px;}
.h17{height:251.816363px;}
.h2a{height:253.828125px;}
.h1f{height:258.233752px;}
.h14{height:267.552000px;}
.h2{height:278.700000px;}
.h23{height:281.311691px;}
.h2c{height:281.880000px;}
.h2b{height:300.885840px;}
.h8{height:328.860000px;}
.he{height:345.588000px;}
.h21{height:361.302996px;}
.h1{height:372.480000px;}
.h28{height:374.625000px;}
.h13{height:376.800000px;}
.h2d{height:390.180000px;}
.h24{height:405.361596px;}
.h7{height:422.820000px;}
.h22{height:450.526391px;}
.h26{height:469.800000px;}
.h1d{height:486.346141px;}
.h1c{height:496.837443px;}
.hf{height:501.660000px;}
.h1e{height:526.268723px;}
.h27{height:540.000000px;}
.h2f{height:684.046050px;}
.h15{height:1579.027500px;}
.h0{height:1620.000000px;}
.w1{width:33.264000px;}
.w4{width:39.910860px;}
.w5{width:46.086450px;}
.w2{width:62.028000px;}
.wa{width:74.574000px;}
.w9{width:85.608150px;}
.wc{width:90.792000px;}
.w8{width:118.722375px;}
.wd{width:119.556000px;}
.wb{width:1127.151150px;}
.w7{width:1248.140400px;}
.w6{width:2557.992000px;}
.we{width:2634.645000px;}
.w3{width:2657.764500px;}
.w0{width:2880.000000px;}
.x4f{left:-3.870000px;}
.x5f{left:-2.304300px;}
.x0{left:0.000000px;}
.x19{left:2.250000px;}
.x51{left:7.558178px;}
.x80{left:23.542020px;}
.x92{left:25.222545px;}
.x32{left:41.034450px;}
.x87{left:47.433300px;}
.x4{left:53.226570px;}
.x53{left:66.927575px;}
.x67{left:71.034450px;}
.x7e{left:84.556635px;}
.x4b{left:87.995520px;}
.x6a{left:91.034460px;}
.x10{left:94.861350px;}
.x33{left:96.534450px;}
.x91{left:102.677445px;}
.x93{left:118.007775px;}
.x95{left:122.677455px;}
.x64{left:123.988890px;}
.x7f{left:140.405385px;}
.x40{left:147.034440px;}
.x96{left:148.617180px;}
.x11{left:150.361350px;}
.x83{left:160.209450px;}
.x6d{left:162.209400px;}
.x1{left:166.140000px;}
.x94{left:172.007850px;}
.x15{left:180.822300px;}
.x70{left:194.589750px;}
.x5b{left:207.440250px;}
.x41{left:208.987500px;}
.x2b{left:210.245400px;}
.x62{left:213.988950px;}
.x49{left:215.988900px;}
.x52{left:219.542550px;}
.x3b{left:229.849950px;}
.x16{left:236.322300px;}
.x8f{left:239.124900px;}
.x45{left:244.488900px;}
.x29{left:272.397750px;}
.x2a{left:327.897750px;}
.x44{left:332.556600px;}
.x54{left:335.784720px;}
.x71{left:340.089750px;}
.x90{left:354.905400px;}
.x63{left:359.488950px;}
.x4a{left:361.488900px;}
.x5c{left:428.696250px;}
.x8a{left:451.681650px;}
.x6b{left:572.980200px;}
.x86{left:587.997450px;}
.x88{left:672.105450px;}
.x5d{left:703.781250px;}
.x55{left:710.982034px;}
.x2{left:736.500000px;}
.x89{left:782.015100px;}
.x56{left:831.691749px;}
.x3c{left:841.087500px;}
.x3e{left:926.129400px;}
.x8b{left:1004.024850px;}
.x7b{left:1060.527900px;}
.x37{left:1083.568050px;}
.x36{left:1096.190550px;}
.x3d{left:1113.970350px;}
.x7c{left:1141.489875px;}
.x61{left:1158.898050px;}
.x57{left:1206.350953px;}
.x35{left:1212.406050px;}
.x34{left:1244.978550px;}
.x8c{left:1285.812750px;}
.x46{left:1324.698000px;}
.x58{left:1358.589533px;}
.x28{left:1427.550000px;}
.x5e{left:1429.918200px;}
.x6f{left:1447.542000px;}
.x1a{left:1453.743900px;}
.x4d{left:1468.964700px;}
.x6c{left:1479.340500px;}
.x18{left:1482.507900px;}
.x12{left:1493.405400px;}
.x13{left:1494.905400px;}
.x6e{left:1506.589500px;}
.x22{left:1511.031000px;}
.xe{left:1515.355500px;}
.x26{left:1517.050500px;}
.x65{left:1520.082000px;}
.x1b{left:1533.726000px;}
.x24{left:1557.049500px;}
.x14{left:1566.906000px;}
.x42{left:1588.035000px;}
.x25{left:1591.897500px;}
.x84{left:1594.590000px;}
.x60{left:1607.898000px;}
.x69{left:1610.262000px;}
.x81{left:1629.898500px;}
.xb{left:1631.592000px;}
.x43{left:1635.987000px;}
.x17{left:1638.906000px;}
.x27{left:1661.050500px;}
.x2e{left:1666.195500px;}
.x4e{left:1697.434500px;}
.x85{left:1740.090000px;}
.x59{left:1761.509012px;}
.x5{left:1774.231500px;}
.x2c{left:1779.460500px;}
.x79{left:1786.917000px;}
.x2f{left:1803.895500px;}
.x7{left:1828.938000px;}
.x8d{left:1849.389000px;}
.x2d{left:1875.445500px;}
.x72{left:1891.542000px;}
.x1c{left:1915.729500px;}
.x78{left:1920.817500px;}
.x48{left:1925.397000px;}
.x3a{left:1944.709500px;}
.x23{left:1949.898000px;}
.x5a{left:1957.322933px;}
.x7a{left:1970.898000px;}
.x73{left:1974.702000px;}
.x76{left:1982.898000px;}
.x66{left:1998.567000px;}
.x68{left:2018.650500px;}
.x3{left:2019.898500px;}
.x21{left:2021.106000px;}
.x39{left:2028.187500px;}
.xf{left:2030.110500px;}
.x74{left:2055.663975px;}
.x3f{left:2063.970000px;}
.x38{left:2085.750000px;}
.x8e{left:2101.354500px;}
.x77{left:2107.242000px;}
.x30{left:2189.320500px;}
.x20{left:2192.554500px;}
.x7d{left:2199.497700px;}
.x1f{left:2248.897500px;}
.x47{left:2273.898000px;}
.x8{left:2286.768000px;}
.x1d{left:2297.733000px;}
.xc{left:2388.312000px;}
.x50{left:2441.575500px;}
.x75{left:2554.911150px;}
.x82{left:2564.898000px;}
.x6{left:2625.583500px;}
.x1e{left:2679.738000px;}
.x4c{left:2699.015880px;}
.x9{left:2800.713000px;}
.xa{left:2801.907000px;}
.x31{left:2818.650000px;}
.xd{left:2827.956000px;}
@media print{
.v15{vertical-align:-249.900267pt;}
.v14{vertical-align:-147.000000pt;}
.v18{vertical-align:-132.269333pt;}
.v13{vertical-align:-102.900267pt;}
.vf{vertical-align:-81.931467pt;}
.v10{vertical-align:-64.889973pt;}
.ve{vertical-align:-51.190933pt;}
.v3{vertical-align:-36.685867pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.309397pt;}
.v2{vertical-align:10.480000pt;}
.vd{vertical-align:13.177867pt;}
.v11{vertical-align:17.041493pt;}
.v1{vertical-align:46.816000pt;}
.v8{vertical-align:78.218511pt;}
.v17{vertical-align:88.800000pt;}
.va{vertical-align:111.310983pt;}
.v16{vertical-align:116.426667pt;}
.vc{vertical-align:150.413067pt;}
.vb{vertical-align:163.862933pt;}
.v5{vertical-align:212.092170pt;}
.v6{vertical-align:225.630273pt;}
.v9{vertical-align:228.939671pt;}
.v12{vertical-align:267.916107pt;}
.v7{vertical-align:323.403153pt;}
.ls8{letter-spacing:-13.066667pt;}
.ls0{letter-spacing:-8.533333pt;}
.ls3{letter-spacing:-7.466667pt;}
.ls40{letter-spacing:-4.106667pt;}
.ls7{letter-spacing:-0.746667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000009pt;}
.ls2b{letter-spacing:0.000027pt;}
.lsa{letter-spacing:0.000046pt;}
.lsd{letter-spacing:0.000079pt;}
.ls23{letter-spacing:0.000086pt;}
.ls10{letter-spacing:0.000106pt;}
.ls46{letter-spacing:0.000107pt;}
.ls27{letter-spacing:0.000267pt;}
.ls17{letter-spacing:0.000979pt;}
.ls48{letter-spacing:0.001067pt;}
.ls4{letter-spacing:0.002080pt;}
.ls5{letter-spacing:0.002133pt;}
.ls45{letter-spacing:0.003840pt;}
.ls42{letter-spacing:0.004907pt;}
.ls6{letter-spacing:0.026667pt;}
.ls38{letter-spacing:0.032000pt;}
.ls41{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.383387pt;}
.ls1b{letter-spacing:0.385346pt;}
.ls3e{letter-spacing:1.616000pt;}
.ls44{letter-spacing:2.027520pt;}
.ls2c{letter-spacing:2.666667pt;}
.ls15{letter-spacing:10.993142pt;}
.ls30{letter-spacing:13.333333pt;}
.ls31{letter-spacing:13.630400pt;}
.ls47{letter-spacing:14.395392pt;}
.ls34{letter-spacing:17.481280pt;}
.ls39{letter-spacing:17.481493pt;}
.ls3c{letter-spacing:17.481600pt;}
.ls1d{letter-spacing:24.668073pt;}
.ls13{letter-spacing:24.668563pt;}
.ls9{letter-spacing:24.668906pt;}
.lsc{letter-spacing:24.669052pt;}
.ls2f{letter-spacing:26.666667pt;}
.ls3a{letter-spacing:34.962933pt;}
.ls33{letter-spacing:34.962987pt;}
.ls3b{letter-spacing:34.963200pt;}
.ls1c{letter-spacing:45.123745pt;}
.ls16{letter-spacing:48.053043pt;}
.ls26{letter-spacing:49.594060pt;}
.ls43{letter-spacing:51.775488pt;}
.ls2e{letter-spacing:53.333067pt;}
.ls2d{letter-spacing:53.333333pt;}
.ls12{letter-spacing:53.357996pt;}
.lsb{letter-spacing:53.549422pt;}
.ls3f{letter-spacing:60.267733pt;}
.ls32{letter-spacing:66.666667pt;}
.ls18{letter-spacing:66.851319pt;}
.lse{letter-spacing:66.853278pt;}
.ls1e{letter-spacing:66.856215pt;}
.ls35{letter-spacing:69.925867pt;}
.ls36{letter-spacing:69.926400pt;}
.ls28{letter-spacing:72.827820pt;}
.ls24{letter-spacing:72.828000pt;}
.ls29{letter-spacing:72.828315pt;}
.ls1f{letter-spacing:85.361800pt;}
.ls14{letter-spacing:85.362779pt;}
.ls22{letter-spacing:85.573067pt;}
.ls37{letter-spacing:87.406933pt;}
.ls3d{letter-spacing:87.407467pt;}
.ls20{letter-spacing:91.034942pt;}
.ls19{letter-spacing:95.848610pt;}
.lsf{letter-spacing:95.849100pt;}
.ls25{letter-spacing:99.701381pt;}
.ls21{letter-spacing:123.807355pt;}
.ls1a{letter-spacing:137.844810pt;}
.ls2{letter-spacing:2902.254400pt;}
.ws1e{word-spacing:-288.048000pt;}
.wsa{word-spacing:-160.026667pt;}
.ws4{word-spacing:-82.133333pt;}
.wsc{word-spacing:-78.773333pt;}
.ws21{word-spacing:-73.920000pt;}
.wsd{word-spacing:-73.173333pt;}
.ws15{word-spacing:-64.266667pt;}
.ws7{word-spacing:-64.000000pt;}
.ws5{word-spacing:-61.600000pt;}
.ws16{word-spacing:-59.136000pt;}
.ws1{word-spacing:-46.816000pt;}
.ws1f{word-spacing:-41.888000pt;}
.ws8{word-spacing:-39.424000pt;}
.ws2{word-spacing:-31.210663pt;}
.wsb{word-spacing:-0.480000pt;}
.ws0{word-spacing:-0.426667pt;}
.ws1c{word-spacing:-0.373333pt;}
.ws9{word-spacing:-0.330667pt;}
.ws13{word-spacing:-0.327726pt;}
.ws1a{word-spacing:-0.314667pt;}
.ws10{word-spacing:-0.300840pt;}
.ws6{word-spacing:-0.266667pt;}
.wsf{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.240000pt;}
.ws14{word-spacing:-0.232685pt;}
.ws12{word-spacing:-0.213597pt;}
.ws20{word-spacing:-0.184320pt;}
.ws22{word-spacing:-0.179200pt;}
.wse{word-spacing:-0.160000pt;}
.ws3{word-spacing:0.000000pt;}
.ws11{word-spacing:61.538584pt;}
.ws19{word-spacing:66.426667pt;}
.ws18{word-spacing:66.480000pt;}
.ws1b{word-spacing:87.092800pt;}
.ws1d{word-spacing:2862.362667pt;}
._11{margin-left:-158.726761pt;}
._f{margin-left:-129.175688pt;}
._10{margin-left:-118.401886pt;}
._24{margin-left:-42.718208pt;}
._20{margin-left:-16.588800pt;}
._9{margin-left:-14.666667pt;}
._14{margin-left:-13.600000pt;}
._c{margin-left:-11.285332pt;}
._4{margin-left:-9.813333pt;}
._2{margin-left:-8.533333pt;}
._a{margin-left:-7.253333pt;}
._3{margin-left:-5.973333pt;}
._1{margin-left:-4.266667pt;}
._5{margin-left:-2.837334pt;}
._7{margin-left:-1.600000pt;}
._15{width:1.038400pt;}
._13{width:2.069334pt;}
._8{width:3.104000pt;}
._16{width:4.102934pt;}
._0{width:5.120000pt;}
._b{width:6.080000pt;}
._19{width:7.401471pt;}
._17{width:8.437334pt;}
._22{width:14.313472pt;}
._23{width:15.267904pt;}
._1b{width:19.547477pt;}
._1a{width:21.076651pt;}
._1d{width:23.989589pt;}
._1c{width:25.518763pt;}
._18{width:28.324107pt;}
._26{width:29.352960pt;}
._1f{width:33.706325pt;}
._1e{width:35.206485pt;}
._28{width:45.443413pt;}
._27{width:47.167147pt;}
._21{width:51.775488pt;}
._25{width:69.726720pt;}
._d{width:164.128000pt;}
._e{width:436.900267pt;}
._12{width:1020.509333pt;}
._6{width:4955.146453pt;}
.fs5{font-size:117.333333pt;}
.fs3{font-size:135.111093pt;}
.fs4{font-size:160.000000pt;}
.fs11{font-size:165.206613pt;}
.fs14{font-size:170.400000pt;}
.fsa{font-size:170.666664pt;}
.fs9{font-size:170.666667pt;}
.fs19{font-size:179.200000pt;}
.fs8{font-size:181.333333pt;}
.fs18{font-size:184.320000pt;}
.fs2{font-size:202.666667pt;}
.fsf{font-size:213.596550pt;}
.fs17{font-size:223.413333pt;}
.fs10{font-size:232.685333pt;}
.fs13{font-size:240.000000pt;}
.fsc{font-size:256.000000pt;}
.fs1{font-size:266.666667pt;}
.fse{font-size:300.840253pt;}
.fs16{font-size:314.666667pt;}
.fs15{font-size:320.000000pt;}
.fsd{font-size:327.725867pt;}
.fsb{font-size:330.666667pt;}
.fs7{font-size:373.333333pt;}
.fs0{font-size:426.666667pt;}
.fs6{font-size:480.000000pt;}
.fs12{font-size:533.333333pt;}
.y98{bottom:-19.853080pt;}
.yb2{bottom:-17.583040pt;}
.y9c{bottom:-0.000120pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:0.901173pt;}
.y9a{bottom:0.901213pt;}
.y105{bottom:8.567787pt;}
.ya2{bottom:9.875000pt;}
.y30{bottom:9.901067pt;}
.y107{bottom:9.901133pt;}
.y2e{bottom:9.901200pt;}
.y11a{bottom:14.426267pt;}
.y9f{bottom:15.493206pt;}
.ye6{bottom:23.991880pt;}
.y104{bottom:27.232933pt;}
.y10{bottom:27.549240pt;}
.ya4{bottom:28.685027pt;}
.y118{bottom:42.866320pt;}
.ya1{bottom:47.396333pt;}
.y97{bottom:56.146920pt;}
.yff{bottom:57.021867pt;}
.yb1{bottom:58.416960pt;}
.y89{bottom:61.067227pt;}
.ye5{bottom:66.103867pt;}
.yd3{bottom:67.116027pt;}
.y9e{bottom:71.900774pt;}
.y3c{bottom:82.296973pt;}
.yc8{bottom:91.247720pt;}
.y106{bottom:102.662267pt;}
.ya3{bottom:106.346867pt;}
.yf{bottom:115.391907pt;}
.y2c{bottom:132.866360pt;}
.yb0{bottom:134.416933pt;}
.y96{bottom:135.031867pt;}
.y88{bottom:137.067200pt;}
.y62{bottom:141.266400pt;}
.yd2{bottom:148.982667pt;}
.y100{bottom:154.103600pt;}
.ye{bottom:157.503867pt;}
.y3b{bottom:158.296933pt;}
.yfa{bottom:164.740400pt;}
.y117{bottom:172.199600pt;}
.ya{bottom:178.559867pt;}
.yfe{bottom:180.802267pt;}
.y10d{bottom:190.109067pt;}
.y48{bottom:191.127733pt;}
.yd{bottom:199.615867pt;}
.y2b{bottom:208.866400pt;}
.y87{bottom:213.067200pt;}
.y128{bottom:213.183200pt;}
.y9{bottom:220.671867pt;}
.y95{bottom:225.858933pt;}
.yc7{bottom:238.844933pt;}
.y77{bottom:239.361467pt;}
.yc{bottom:241.727867pt;}
.yf9{bottom:244.740400pt;}
.y8b{bottom:250.720133pt;}
.y8{bottom:262.783867pt;}
.ydd{bottom:265.855600pt;}
.y47{bottom:267.127733pt;}
.y61{bottom:270.599733pt;}
.y53{bottom:273.533067pt;}
.y38{bottom:273.772267pt;}
.y34{bottom:276.766400pt;}
.y127{bottom:276.925067pt;}
.y63{bottom:277.612933pt;}
.yd1{bottom:280.376133pt;}
.yb{bottom:283.839867pt;}
.y1d{bottom:293.644133pt;}
.y116{bottom:301.532933pt;}
.yde{bottom:302.605600pt;}
.y70{bottom:324.260000pt;}
.y2d{bottom:325.541067pt;}
.yf8{bottom:326.607067pt;}
.y2a{bottom:338.199733pt;}
.y60{bottom:346.599733pt;}
.y52{bottom:349.533067pt;}
.y73{bottom:351.057333pt;}
.y126{bottom:351.227067pt;}
.y101{bottom:356.784000pt;}
.y10c{bottom:358.402400pt;}
.yc6{bottom:368.178267pt;}
.y1c{bottom:369.644133pt;}
.ya8{bottom:381.457733pt;}
.yaf{bottom:393.083600pt;}
.y46{bottom:396.461067pt;}
.y7a{bottom:399.442933pt;}
.yd0{bottom:409.709467pt;}
.y29{bottom:414.199733pt;}
.y125{bottom:414.969067pt;}
.y86{bottom:418.400533pt;}
.y6f{bottom:420.521333pt;}
.y5f{bottom:422.599733pt;}
.y51{bottom:425.533067pt;}
.y115{bottom:430.866267pt;}
.y94{bottom:431.192267pt;}
.ya6{bottom:432.325067pt;}
.y79{bottom:446.109600pt;}
.ya7{bottom:447.636933pt;}
.yf7{bottom:458.000533pt;}
.y45{bottom:472.461067pt;}
.y56{bottom:482.188133pt;}
.y124{bottom:489.270933pt;}
.y28{bottom:490.199733pt;}
.y78{bottom:492.776267pt;}
.y85{bottom:494.400533pt;}
.yc5{bottom:497.511600pt;}
.y1b{bottom:498.977467pt;}
.y93{bottom:507.192267pt;}
.y10b{bottom:513.309867pt;}
.y76{bottom:517.933733pt;}
.y8c{bottom:519.435200pt;}
.yae{bottom:522.416933pt;}
.ybe{bottom:527.545733pt;}
.y4{bottom:536.667733pt;}
.ycf{bottom:539.042800pt;}
.y44{bottom:548.461067pt;}
.y5e{bottom:551.933067pt;}
.y123{bottom:553.012933pt;}
.y50{bottom:554.866400pt;}
.y68{bottom:558.897467pt;}
.y102{bottom:559.464267pt;}
.y114{bottom:560.199600pt;}
.y3e{bottom:561.734667pt;}
.y10a{bottom:564.040533pt;}
.yba{bottom:567.310800pt;}
.y84{bottom:570.400533pt;}
.ya0{bottom:571.739600pt;}
.y2f{bottom:573.051333pt;}
.y1a{bottom:574.977467pt;}
.y55{bottom:578.449467pt;}
.y6c{bottom:582.998667pt;}
.yf6{bottom:587.333867pt;}
.y3d{bottom:606.254133pt;}
.y3{bottom:612.667733pt;}
.ya5{bottom:614.547333pt;}
.y109{bottom:614.771200pt;}
.y122{bottom:616.754933pt;}
.y92{bottom:619.135867pt;}
.y27{bottom:619.533067pt;}
.y43{bottom:624.461067pt;}
.yc4{bottom:626.844933pt;}
.y4f{bottom:630.866400pt;}
.y8a{bottom:642.991733pt;}
.y83{bottom:646.400533pt;}
.y19{bottom:650.977467pt;}
.yad{bottom:651.750267pt;}
.yf5{bottom:663.333867pt;}
.y108{bottom:665.501867pt;}
.yce{bottom:668.376133pt;}
.y54{bottom:674.710800pt;}
.y6b{bottom:679.260000pt;}
.y121{bottom:680.496800pt;}
.y5d{bottom:681.266400pt;}
.y113{bottom:689.532933pt;}
.y26{bottom:695.533067pt;}
.yb8{bottom:696.644133pt;}
.y67{bottom:711.094800pt;}
.y132{bottom:712.325067pt;}
.y82{bottom:722.400533pt;}
.y91{bottom:724.829600pt;}
.y18{bottom:726.977467pt;}
.yf4{bottom:739.333867pt;}
.y42{bottom:753.794400pt;}
.y120{bottom:754.798800pt;}
.y12{bottom:755.193467pt;}
.yc3{bottom:756.178267pt;}
.y5c{bottom:757.266400pt;}
.y131{bottom:758.050533pt;}
.y4e{bottom:760.199733pt;}
.yb6{bottom:761.310800pt;}
.y103{bottom:762.144533pt;}
.y25{bottom:771.533067pt;}
.y6a{bottom:775.521333pt;}
.yac{bottom:781.083600pt;}
.yec{bottom:783.257867pt;}
.y39{bottom:786.182667pt;}
.ye4{bottom:790.470800pt;}
.ycd{bottom:797.709467pt;}
.y81{bottom:798.400533pt;}
.yea{bottom:802.580800pt;}
.y130{bottom:803.776000pt;}
.y11f{bottom:818.540800pt;}
.y112{bottom:818.866267pt;}
.y31{bottom:820.561600pt;}
.yb7{bottom:825.977467pt;}
.ybf{bottom:826.665467pt;}
.yc2{bottom:832.178267pt;}
.y75{bottom:832.657867pt;}
.y5b{bottom:833.266400pt;}
.y4d{bottom:836.199733pt;}
.y9d{bottom:842.616267pt;}
.y2{bottom:846.090267pt;}
.y12f{bottom:849.501467pt;}
.y17{bottom:856.310800pt;}
.y1f{bottom:862.632533pt;}
.y66{bottom:863.292133pt;}
.ye3{bottom:866.470800pt;}
.yf3{bottom:868.667200pt;}
.y69{bottom:871.782667pt;}
.ycc{bottom:877.516000pt;}
.y41{bottom:883.127733pt;}
.yfd{bottom:891.707333pt;}
.y11e{bottom:892.842667pt;}
.y111{bottom:894.866267pt;}
.y24{bottom:900.866400pt;}
.y11{bottom:907.390800pt;}
.yab{bottom:910.416933pt;}
.y4c{bottom:912.199733pt;}
.y90{bottom:914.517067pt;}
.yef{bottom:917.000533pt;}
.ye9{bottom:931.914133pt;}
.y16{bottom:932.310800pt;}
.y12e{bottom:937.226800pt;}
.y37{bottom:954.862667pt;}
.yb9{bottom:955.310800pt;}
.y11d{bottom:956.584667pt;}
.y1e{bottom:958.893867pt;}
.y40{bottom:959.127733pt;}
.y5a{bottom:962.599733pt;}
.y23{bottom:976.866400pt;}
.y1{bottom:980.724933pt;}
.y12d{bottom:982.952267pt;}
.ye2{bottom:995.804133pt;}
.yf2{bottom:998.000533pt;}
.y80{bottom:1003.733867pt;}
.ye8{bottom:1007.914133pt;}
.ycb{bottom:1008.909467pt;}
.y65{bottom:1015.489467pt;}
.yfc{bottom:1021.040667pt;}
.yc1{bottom:1022.594133pt;}
.yd9{bottom:1023.520533pt;}
.y110{bottom:1024.199600pt;}
.y12c{bottom:1028.677733pt;}
.y11c{bottom:1030.886667pt;}
.yaa{bottom:1039.750267pt;}
.y4b{bottom:1041.533067pt;}
.yd5{bottom:1046.300000pt;}
.y99{bottom:1048.968667pt;}
.y8f{bottom:1049.870000pt;}
.y22{bottom:1052.866400pt;}
.y72{bottom:1058.868133pt;}
.y6e{bottom:1061.148933pt;}
.y15{bottom:1061.644133pt;}
.y32{bottom:1068.071867pt;}
.yee{bottom:1071.039467pt;}
.ye1{bottom:1071.804133pt;}
.y12b{bottom:1074.403200pt;}
.y7f{bottom:1079.733867pt;}
.yd6{bottom:1083.050000pt;}
.y3f{bottom:1088.461067pt;}
.y11b{bottom:1094.628533pt;}
.y59{bottom:1095.739600pt;}
.y36{bottom:1114.623600pt;}
.y4a{bottom:1117.533067pt;}
.ybb{bottom:1119.199733pt;}
.y12a{bottom:1120.128533pt;}
.yf1{bottom:1127.333867pt;}
.yca{bottom:1138.242800pt;}
.yd4{bottom:1141.912533pt;}
.ye7{bottom:1144.990133pt;}
.y14{bottom:1146.815600pt;}
.ye0{bottom:1147.804133pt;}
.y7c{bottom:1151.533067pt;}
.y74{bottom:1152.421867pt;}
.ydb{bottom:1153.145333pt;}
.y10f{bottom:1153.532933pt;}
.y71{bottom:1155.129467pt;}
.y7e{bottom:1155.733867pt;}
.y6d{bottom:1157.410267pt;}
.y35{bottom:1159.143067pt;}
.y64{bottom:1167.686800pt;}
.ya9{bottom:1169.083600pt;}
.ybd{bottom:1169.142000pt;}
.yeb{bottom:1170.991733pt;}
.y58{bottom:1173.799733pt;}
.yc0{bottom:1174.791467pt;}
.y21{bottom:1182.199733pt;}
.y8e{bottom:1194.030267pt;}
.y119{bottom:1206.862800pt;}
.yb4{bottom:1216.593333pt;}
.y49{bottom:1220.440667pt;}
.yed{bottom:1223.236800pt;}
.y129{bottom:1223.314267pt;}
.yd8{bottom:1235.180133pt;}
.yda{bottom:1241.785200pt;}
.y7{bottom:1242.532000pt;}
.y13{bottom:1243.076933pt;}
.y3a{bottom:1243.216667pt;}
.y57{bottom:1249.799733pt;}
.yf0{bottom:1256.667200pt;}
.y20{bottom:1258.199733pt;}
.yc9{bottom:1262.146400pt;}
.ybc{bottom:1265.403333pt;}
.ydf{bottom:1265.878933pt;}
.yfb{bottom:1276.990133pt;}
.y6{bottom:1294.273867pt;}
.y7d{bottom:1298.946267pt;}
.y10e{bottom:1306.767867pt;}
.y7b{bottom:1306.946267pt;}
.ydc{bottom:1310.347467pt;}
.yb3{bottom:1312.854667pt;}
.yb5{bottom:1313.272667pt;}
.y33{bottom:1315.582000pt;}
.y8d{bottom:1323.363600pt;}
.y5{bottom:1343.396000pt;}
.yd7{bottom:1355.688000pt;}
.h16{height:37.033027pt;}
.h18{height:53.173520pt;}
.ha{height:53.397333pt;}
.h25{height:67.438613pt;}
.h30{height:76.096013pt;}
.h31{height:89.066667pt;}
.h6{height:91.872000pt;}
.h5{height:125.280000pt;}
.hd{height:133.631998pt;}
.hc{height:133.632000pt;}
.h20{height:137.476667pt;}
.h35{height:140.313600pt;}
.hb{height:141.984000pt;}
.h32{height:144.322560pt;}
.h11{height:148.640000pt;}
.h4{height:158.688000pt;}
.h34{height:166.476800pt;}
.h3{height:169.168000pt;}
.h33{height:171.233280pt;}
.h29{height:183.120000pt;}
.h2e{height:188.020833pt;}
.h1a{height:188.849467pt;}
.h12{height:200.448000pt;}
.h1b{height:206.677408pt;}
.h10{height:206.933333pt;}
.h9{height:208.800000pt;}
.h19{height:221.542686pt;}
.h17{height:223.836767pt;}
.h2a{height:225.625000pt;}
.h1f{height:229.541113pt;}
.h14{height:237.824000pt;}
.h2{height:247.733333pt;}
.h23{height:250.054836pt;}
.h2c{height:250.560000pt;}
.h2b{height:267.454080pt;}
.h8{height:292.320000pt;}
.he{height:307.189333pt;}
.h21{height:321.158219pt;}
.h1{height:331.093333pt;}
.h28{height:333.000000pt;}
.h13{height:334.933333pt;}
.h2d{height:346.826667pt;}
.h24{height:360.321419pt;}
.h7{height:375.840000pt;}
.h22{height:400.467903pt;}
.h26{height:417.600000pt;}
.h1d{height:432.307681pt;}
.h1c{height:441.633283pt;}
.hf{height:445.920000pt;}
.h1e{height:467.794421pt;}
.h27{height:480.000000pt;}
.h2f{height:608.040933pt;}
.h15{height:1403.580000pt;}
.h0{height:1440.000000pt;}
.w1{width:29.568000pt;}
.w4{width:35.476320pt;}
.w5{width:40.965733pt;}
.w2{width:55.136000pt;}
.wa{width:66.288000pt;}
.w9{width:76.096133pt;}
.wc{width:80.704000pt;}
.w8{width:105.531000pt;}
.wd{width:106.272000pt;}
.wb{width:1001.912133pt;}
.w7{width:1109.458133pt;}
.w6{width:2273.770667pt;}
.we{width:2341.906667pt;}
.w3{width:2362.457333pt;}
.w0{width:2560.000000pt;}
.x4f{left:-3.440000pt;}
.x5f{left:-2.048267pt;}
.x0{left:0.000000pt;}
.x19{left:2.000000pt;}
.x51{left:6.718380pt;}
.x80{left:20.926240pt;}
.x92{left:22.420040pt;}
.x32{left:36.475067pt;}
.x87{left:42.162933pt;}
.x4{left:47.312507pt;}
.x53{left:59.491178pt;}
.x67{left:63.141733pt;}
.x7e{left:75.161453pt;}
.x4b{left:78.218240pt;}
.x6a{left:80.919520pt;}
.x10{left:84.321200pt;}
.x33{left:85.808400pt;}
.x91{left:91.268840pt;}
.x93{left:104.895800pt;}
.x95{left:109.046627pt;}
.x64{left:110.212347pt;}
.x7f{left:124.804787pt;}
.x40{left:130.697280pt;}
.x96{left:132.104160pt;}
.x11{left:133.654533pt;}
.x83{left:142.408400pt;}
.x6d{left:144.186133pt;}
.x1{left:147.680000pt;}
.x94{left:152.895867pt;}
.x15{left:160.730933pt;}
.x70{left:172.968667pt;}
.x5b{left:184.391333pt;}
.x41{left:185.766667pt;}
.x2b{left:186.884800pt;}
.x62{left:190.212400pt;}
.x49{left:191.990133pt;}
.x52{left:195.148933pt;}
.x3b{left:204.311067pt;}
.x16{left:210.064267pt;}
.x8f{left:212.555467pt;}
.x45{left:217.323467pt;}
.x29{left:242.131333pt;}
.x2a{left:291.464667pt;}
.x44{left:295.605867pt;}
.x54{left:298.475307pt;}
.x71{left:302.302000pt;}
.x90{left:315.471467pt;}
.x63{left:319.545733pt;}
.x4a{left:321.323467pt;}
.x5c{left:381.063333pt;}
.x8a{left:401.494800pt;}
.x6b{left:509.315733pt;}
.x86{left:522.664400pt;}
.x88{left:597.427067pt;}
.x5d{left:625.583333pt;}
.x55{left:631.984030pt;}
.x2{left:654.666667pt;}
.x89{left:695.124533pt;}
.x56{left:739.281555pt;}
.x3c{left:747.633333pt;}
.x3e{left:823.226133pt;}
.x8b{left:892.466533pt;}
.x7b{left:942.691467pt;}
.x37{left:963.171600pt;}
.x36{left:974.391600pt;}
.x3d{left:990.195867pt;}
.x7c{left:1014.657667pt;}
.x61{left:1030.131600pt;}
.x57{left:1072.311958pt;}
.x35{left:1077.694267pt;}
.x34{left:1106.647600pt;}
.x8c{left:1142.944667pt;}
.x46{left:1177.509333pt;}
.x58{left:1207.635141pt;}
.x28{left:1268.933333pt;}
.x5e{left:1271.038400pt;}
.x6f{left:1286.704000pt;}
.x1a{left:1292.216800pt;}
.x4d{left:1305.746400pt;}
.x6c{left:1314.969333pt;}
.x18{left:1317.784800pt;}
.x12{left:1327.471467pt;}
.x13{left:1328.804800pt;}
.x6e{left:1339.190667pt;}
.x22{left:1343.138667pt;}
.xe{left:1346.982667pt;}
.x26{left:1348.489333pt;}
.x65{left:1351.184000pt;}
.x1b{left:1363.312000pt;}
.x24{left:1384.044000pt;}
.x14{left:1392.805333pt;}
.x42{left:1411.586667pt;}
.x25{left:1415.020000pt;}
.x84{left:1417.413333pt;}
.x60{left:1429.242667pt;}
.x69{left:1431.344000pt;}
.x81{left:1448.798667pt;}
.xb{left:1450.304000pt;}
.x43{left:1454.210667pt;}
.x17{left:1456.805333pt;}
.x27{left:1476.489333pt;}
.x2e{left:1481.062667pt;}
.x4e{left:1508.830667pt;}
.x85{left:1546.746667pt;}
.x59{left:1565.785788pt;}
.x5{left:1577.094667pt;}
.x2c{left:1581.742667pt;}
.x79{left:1588.370667pt;}
.x2f{left:1603.462667pt;}
.x7{left:1625.722667pt;}
.x8d{left:1643.901333pt;}
.x2d{left:1667.062667pt;}
.x72{left:1681.370667pt;}
.x1c{left:1702.870667pt;}
.x78{left:1707.393333pt;}
.x48{left:1711.464000pt;}
.x3a{left:1728.630667pt;}
.x23{left:1733.242667pt;}
.x5a{left:1739.842607pt;}
.x7a{left:1751.909333pt;}
.x73{left:1755.290667pt;}
.x76{left:1762.576000pt;}
.x66{left:1776.504000pt;}
.x68{left:1794.356000pt;}
.x3{left:1795.465333pt;}
.x21{left:1796.538667pt;}
.x39{left:1802.833333pt;}
.xf{left:1804.542667pt;}
.x74{left:1827.256867pt;}
.x3f{left:1834.640000pt;}
.x38{left:1854.000000pt;}
.x8e{left:1867.870667pt;}
.x77{left:1873.104000pt;}
.x30{left:1946.062667pt;}
.x20{left:1948.937333pt;}
.x7d{left:1955.109067pt;}
.x1f{left:1999.020000pt;}
.x47{left:2021.242667pt;}
.x8{left:2032.682667pt;}
.x1d{left:2042.429333pt;}
.xc{left:2122.944000pt;}
.x50{left:2170.289333pt;}
.x75{left:2271.032133pt;}
.x82{left:2279.909333pt;}
.x6{left:2333.852000pt;}
.x1e{left:2381.989333pt;}
.x4c{left:2399.125227pt;}
.x9{left:2489.522667pt;}
.xa{left:2490.584000pt;}
.x31{left:2505.466667pt;}
.xd{left:2513.738667pt;}
}




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