
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_f7ab9263882b4a2bd139734a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_da567229efff407e1770baf1.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_a56c14cb58e6b0380765e15a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9731ea27bf471b1408312bc7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_01cda5f3efe908fcc9ae7897.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7fb013360b0feb8428971dbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ac83388ebc31a9a6d546dd73.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_8f9a2f61d6883623ff4d7bd2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_18fc942726d715d6c0b03c61.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940918;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_cafab6c853f88643b2da1cf2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.297363;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_63dc2abaac26c644b04f01ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.297363;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_1ad454ea2e511f908585bc29.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fb3dcbd9a188eff457511e94.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v9{vertical-align:-18.720000px;}
.v4{vertical-align:-17.280000px;}
.v5{vertical-align:-14.400000px;}
.vf{vertical-align:-10.800000px;}
.vc{vertical-align:-9.360000px;}
.v8{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.040000px;}
.ve{vertical-align:11.520000px;}
.va{vertical-align:16.560000px;}
.vb{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v10{vertical-align:25.200000px;}
.v6{vertical-align:28.080000px;}
.vd{vertical-align:30.240000px;}
.ls3a{letter-spacing:-2.706000px;}
.ls33{letter-spacing:-1.986000px;}
.ls10{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.463800px;}
.lsd{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.303000px;}
.lsc{letter-spacing:-0.272400px;}
.lse{letter-spacing:-0.247200px;}
.ls4d{letter-spacing:-0.214800px;}
.ls3b{letter-spacing:-0.172200px;}
.ls32{letter-spacing:-0.115200px;}
.ls41{letter-spacing:-0.109200px;}
.ls30{letter-spacing:-0.107400px;}
.ls47{letter-spacing:-0.078600px;}
.lsf{letter-spacing:-0.058320px;}
.ls39{letter-spacing:-0.044640px;}
.ls29{letter-spacing:-0.041040px;}
.lsa{letter-spacing:-0.020160px;}
.ls2a{letter-spacing:-0.015840px;}
.ls16{letter-spacing:-0.001440px;}
.ls8{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.060480px;}
.ls23{letter-spacing:0.060600px;}
.ls22{letter-spacing:0.066240px;}
.ls26{letter-spacing:0.126600px;}
.ls4{letter-spacing:0.140400px;}
.ls31{letter-spacing:0.169200px;}
.ls15{letter-spacing:0.174000px;}
.ls21{letter-spacing:0.174240px;}
.ls17{letter-spacing:0.175200px;}
.ls34{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.180600px;}
.ls19{letter-spacing:0.220200px;}
.ls25{letter-spacing:0.243600px;}
.ls46{letter-spacing:0.306000px;}
.ls5{letter-spacing:0.308880px;}
.ls18{letter-spacing:0.309000px;}
.ls3{letter-spacing:0.427680px;}
.ls2e{letter-spacing:0.544320px;}
.ls28{letter-spacing:0.660000px;}
.ls40{letter-spacing:0.678000px;}
.ls20{letter-spacing:0.780480px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls27{letter-spacing:1.614000px;}
.ls1{letter-spacing:2.016000px;}
.ls2c{letter-spacing:6.480000px;}
.ls1b{letter-spacing:7.920000px;}
.ls1e{letter-spacing:9.360000px;}
.ls49{letter-spacing:10.254240px;}
.ls4e{letter-spacing:12.186720px;}
.ls38{letter-spacing:13.134240px;}
.ls1a{letter-spacing:14.400000px;}
.ls2d{letter-spacing:14.574240px;}
.ls45{letter-spacing:15.180480px;}
.ls24{letter-spacing:19.440000px;}
.ls2b{letter-spacing:19.614240px;}
.ls48{letter-spacing:20.334240px;}
.ls1d{letter-spacing:23.040000px;}
.ls1c{letter-spacing:31.680000px;}
.ls3d{letter-spacing:35.454240px;}
.ls4b{letter-spacing:38.826720px;}
.ls12{letter-spacing:42.426720px;}
.ls13{letter-spacing:43.146720px;}
.ls43{letter-spacing:44.586720px;}
.ls6{letter-spacing:45.306720px;}
.ls4a{letter-spacing:46.002720px;}
.ls11{letter-spacing:46.026720px;}
.ls2f{letter-spacing:46.170720px;}
.ls42{letter-spacing:47.466720px;}
.ls14{letter-spacing:50.346720px;}
.ls44{letter-spacing:51.066720px;}
.ls3e{letter-spacing:97.374240px;}
.ls3f{letter-spacing:105.294240px;}
.ls3c{letter-spacing:129.054240px;}
.ls36{letter-spacing:131.934240px;}
.ls35{letter-spacing:138.414240px;}
.ls37{letter-spacing:147.774240px;}
.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;}
}
.ws9{word-spacing:-60.068880px;}
.ws8{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws1e{word-spacing:-14.183760px;}
.wsf{word-spacing:-13.814760px;}
.ws21{word-spacing:-13.811760px;}
.ws11{word-spacing:-13.749360px;}
.ws10{word-spacing:-13.725960px;}
.ws23{word-spacing:-13.686360px;}
.ws1d{word-spacing:-13.685040px;}
.wsd{word-spacing:-13.680960px;}
.ws1a{word-spacing:-13.674960px;}
.ws20{word-spacing:-13.646160px;}
.ws12{word-spacing:-13.632360px;}
.ws17{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.504320px;}
.ws16{word-spacing:-13.464720px;}
.wsa{word-spacing:-13.447440px;}
.ws22{word-spacing:-13.427160px;}
.ws1f{word-spacing:-13.396560px;}
.ws1b{word-spacing:-13.390560px;}
.ws1c{word-spacing:-13.333560px;}
.ws24{word-spacing:-13.290960px;}
.ws7{word-spacing:-13.258560px;}
.wse{word-spacing:-13.202760px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.426880px;}
.ws15{word-spacing:-3.408960px;}
.ws13{word-spacing:-2.748960px;}
.ws18{word-spacing:-2.733120px;}
.ws14{word-spacing:-2.690640px;}
.ws19{word-spacing:-2.641560px;}
.wsb{word-spacing:0.000000px;}
._1d{margin-left:-3153.743760px;}
._70{margin-left:-3139.278000px;}
._17{margin-left:-2928.318960px;}
._50{margin-left:-2737.312320px;}
._3c{margin-left:-2534.947200px;}
._5a{margin-left:-2430.662400px;}
._41{margin-left:-2111.711760px;}
._6d{margin-left:-1701.699120px;}
._4a{margin-left:-1681.077840px;}
._49{margin-left:-1662.779520px;}
._5f{margin-left:-1514.551440px;}
._4{margin-left:-1447.868880px;}
._2{margin-left:-1329.359040px;}
._3{margin-left:-1005.647520px;}
._4f{margin-left:-873.338880px;}
._57{margin-left:-850.842000px;}
._6b{margin-left:-832.737360px;}
._47{margin-left:-774.502560px;}
._1e{margin-left:-768.223200px;}
._55{margin-left:-759.983760px;}
._5c{margin-left:-751.504080px;}
._28{margin-left:-718.225920px;}
._59{margin-left:-705.510960px;}
._43{margin-left:-695.179920px;}
._51{margin-left:-690.471600px;}
._4c{margin-left:-655.448880px;}
._24{margin-left:-615.292080px;}
._22{margin-left:-587.027280px;}
._46{margin-left:-581.765760px;}
._5{margin-left:-578.729760px;}
._58{margin-left:-575.105760px;}
._4e{margin-left:-528.485760px;}
._72{margin-left:-514.955520px;}
._18{margin-left:-509.799840px;}
._54{margin-left:-505.898400px;}
._27{margin-left:-420.145200px;}
._52{margin-left:-409.685760px;}
._5d{margin-left:-385.001760px;}
._25{margin-left:-325.373040px;}
._44{margin-left:-300.720960px;}
._69{margin-left:-278.696880px;}
._1f{margin-left:-241.133040px;}
._48{margin-left:-235.737840px;}
._20{margin-left:-206.928720px;}
._4d{margin-left:-182.747040px;}
._32{margin-left:-181.271280px;}
._34{margin-left:-165.046320px;}
._2c{margin-left:-156.275280px;}
._2f{margin-left:-153.511920px;}
._6a{margin-left:-149.585760px;}
._3d{margin-left:-147.096000px;}
._4b{margin-left:-141.600960px;}
._45{margin-left:-134.789040px;}
._37{margin-left:-132.581760px;}
._35{margin-left:-131.473440px;}
._39{margin-left:-123.716160px;}
._38{margin-left:-121.905600px;}
._2a{margin-left:-109.265760px;}
._3a{margin-left:-106.194960px;}
._33{margin-left:-95.141760px;}
._30{margin-left:-93.596640px;}
._2d{margin-left:-92.160000px;}
._6e{margin-left:-82.798800px;}
._62{margin-left:-71.544960px;}
._2e{margin-left:-68.501760px;}
._67{margin-left:-63.732240px;}
._36{margin-left:-61.978320px;}
._31{margin-left:-59.243520px;}
._3f{margin-left:-57.350160px;}
._29{margin-left:-56.288880px;}
._3e{margin-left:-53.081760px;}
._63{margin-left:-50.866560px;}
._66{margin-left:-32.743680px;}
._21{margin-left:-31.505760px;}
._60{margin-left:-27.905760px;}
._56{margin-left:-21.453840px;}
._2b{margin-left:-11.175120px;}
._26{margin-left:-9.347520px;}
._15{margin-left:-8.286480px;}
._53{margin-left:-7.158240px;}
._13{margin-left:-5.821200px;}
._16{margin-left:-4.615680px;}
._6{margin-left:-3.312000px;}
._1{margin-left:-1.987200px;}
._0{width:1.394400px;}
._7{width:2.937840px;}
._8{width:3.944160px;}
._a{width:4.980960px;}
._9{width:5.985840px;}
._b{width:7.042080px;}
._c{width:8.058480px;}
._d{width:9.442080px;}
._f{width:10.766640px;}
._e{width:11.837760px;}
._5b{width:13.750080px;}
._23{width:14.814480px;}
._10{width:16.792560px;}
._11{width:17.928000px;}
._42{width:19.201680px;}
._14{width:20.378880px;}
._5e{width:21.405120px;}
._19{width:22.574160px;}
._40{width:24.036240px;}
._12{width:25.523520px;}
._1a{width:27.794400px;}
._1b{width:30.177600px;}
._6f{width:34.516080px;}
._3b{width:39.666960px;}
._1c{width:52.456320px;}
._73{width:110.454000px;}
._61{width:121.723920px;}
._64{width:143.704320px;}
._65{width:147.858960px;}
._6c{width:416.238960px;}
._71{width:516.820080px;}
._68{width:857.546640px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf7{bottom:7.020000px;}
.yf6{bottom:28.080000px;}
.yf3{bottom:35.640000px;}
.yf5{bottom:49.680000px;}
.y6{bottom:60.876000px;}
.yf4{bottom:70.734000px;}
.y74{bottom:88.416000px;}
.y39{bottom:88.776000px;}
.yf1{bottom:91.656000px;}
.y73{bottom:93.636000px;}
.yd4{bottom:93.996000px;}
.yf2{bottom:97.596000px;}
.yee{bottom:97.776000px;}
.yed{bottom:102.996000px;}
.y72{bottom:106.776000px;}
.y38{bottom:107.136000px;}
.y71{bottom:111.996000px;}
.y37{bottom:112.356000px;}
.yf0{bottom:112.716000px;}
.yec{bottom:115.416000px;}
.y70{bottom:125.136000px;}
.y36{bottom:125.496000px;}
.y6f{bottom:130.356000px;}
.y35{bottom:130.716000px;}
.yef{bottom:133.776000px;}
.y6e{bottom:142.776000px;}
.y34{bottom:143.676000px;}
.ya3{bottom:148.896000px;}
.yeb{bottom:154.830000px;}
.y33{bottom:162.030000px;}
.y6d{bottom:166.890000px;}
.y32{bottom:167.250000px;}
.yea{bottom:175.890000px;}
.y31{bottom:179.670000px;}
.ya2{bottom:180.390000px;}
.ya1{bottom:185.610000px;}
.y6c{bottom:187.950000px;}
.ye9{bottom:196.950000px;}
.ya0{bottom:198.750000px;}
.y9f{bottom:203.970000px;}
.y6b{bottom:209.010000px;}
.y2f{bottom:209.550000px;}
.y30{bottom:214.770000px;}
.y9e{bottom:216.210000px;}
.yca{bottom:216.930000px;}
.ye8{bottom:218.010000px;}
.yc9{bottom:222.150000px;}
.y69{bottom:230.070000px;}
.y2e{bottom:230.610000px;}
.y6a{bottom:235.290000px;}
.ye7{bottom:239.070000px;}
.yc8{bottom:240.510000px;}
.y68{bottom:251.130000px;}
.y2d{bottom:251.670000px;}
.yc7{bottom:253.650000px;}
.yc6{bottom:258.870000px;}
.y9c{bottom:260.130000px;}
.y9d{bottom:261.390000px;}
.yc5{bottom:271.830000px;}
.y67{bottom:272.190000px;}
.y2c{bottom:272.730000px;}
.yc4{bottom:277.050000px;}
.y9b{bottom:281.190000px;}
.ye2{bottom:289.515000px;}
.yc3{bottom:290.235000px;}
.y66{bottom:293.295000px;}
.y2b{bottom:293.835000px;}
.yc2{bottom:295.455000px;}
.y9a{bottom:302.295000px;}
.ye6{bottom:307.875000px;}
.yc1{bottom:308.595000px;}
.yc0{bottom:313.815000px;}
.y65{bottom:314.355000px;}
.y2a{bottom:314.895000px;}
.y99{bottom:323.355000px;}
.yd7{bottom:326.235000px;}
.ybf{bottom:326.955000px;}
.yd3{bottom:332.175000px;}
.y64{bottom:335.415000px;}
.y29{bottom:335.955000px;}
.y98{bottom:344.415000px;}
.ybe{bottom:345.135000px;}
.ybd{bottom:350.355000px;}
.y63{bottom:356.475000px;}
.y27{bottom:357.015000px;}
.y28{bottom:362.235000px;}
.yd2{bottom:362.775000px;}
.ybc{bottom:363.495000px;}
.y97{bottom:365.475000px;}
.ye0{bottom:366.735000px;}
.ybb{bottom:368.715000px;}
.ye1{bottom:370.695000px;}
.y62{bottom:377.535000px;}
.y26{bottom:378.075000px;}
.yba{bottom:381.855000px;}
.y96{bottom:386.535000px;}
.yb9{bottom:387.075000px;}
.y61{bottom:398.595000px;}
.y25{bottom:399.135000px;}
.yb8{bottom:400.215000px;}
.y93{bottom:407.595000px;}
.y94{bottom:408.855000px;}
.y95{bottom:412.815000px;}
.yb7{bottom:418.395000px;}
.y60{bottom:419.655000px;}
.y24{bottom:420.195000px;}
.yb6{bottom:423.615000px;}
.y92{bottom:428.655000px;}
.ye4{bottom:429.915000px;}
.ye5{bottom:433.875000px;}
.yb5{bottom:436.035000px;}
.y5f{bottom:440.715000px;}
.y23{bottom:441.255000px;}
.y91{bottom:449.715000px;}
.yde{bottom:450.975000px;}
.ydf{bottom:454.935000px;}
.y5e{bottom:461.775000px;}
.y21{bottom:462.315000px;}
.y22{bottom:467.535000px;}
.y90{bottom:470.775000px;}
.yb4{bottom:475.995000px;}
.y5d{bottom:482.835000px;}
.y20{bottom:483.375000px;}
.y8f{bottom:491.835000px;}
.yb3{bottom:497.055000px;}
.y5c{bottom:503.895000px;}
.y1f{bottom:504.435000px;}
.y8e{bottom:512.895000px;}
.yd1{bottom:518.115000px;}
.y5b{bottom:524.955000px;}
.y1e{bottom:525.495000px;}
.y8d{bottom:533.955000px;}
.ydc{bottom:535.215000px;}
.ydd{bottom:539.175000px;}
.y5a{bottom:546.015000px;}
.y1d{bottom:546.555000px;}
.y8c{bottom:555.015000px;}
.yd0{bottom:560.235000px;}
.y59{bottom:567.105000px;}
.y1c{bottom:567.645000px;}
.y8b{bottom:576.105000px;}
.yb2{bottom:581.325000px;}
.y58{bottom:588.165000px;}
.y1b{bottom:588.705000px;}
.y8a{bottom:597.165000px;}
.yda{bottom:598.425000px;}
.ydb{bottom:602.385000px;}
.y57{bottom:609.225000px;}
.y1a{bottom:609.765000px;}
.y89{bottom:618.225000px;}
.yb1{bottom:623.445000px;}
.y56{bottom:630.285000px;}
.y19{bottom:630.825000px;}
.y88{bottom:639.285000px;}
.yd9{bottom:640.545000px;}
.ycf{bottom:644.505000px;}
.y55{bottom:651.345000px;}
.y18{bottom:651.885000px;}
.y87{bottom:660.345000px;}
.ye3{bottom:665.565000px;}
.y54{bottom:672.405000px;}
.y17{bottom:675.285000px;}
.y84{bottom:681.405000px;}
.y85{bottom:682.665000px;}
.y86{bottom:686.625000px;}
.y53{bottom:693.465000px;}
.y16{bottom:696.165000px;}
.y83{bottom:702.465000px;}
.y52{bottom:714.525000px;}
.y15{bottom:717.225000px;}
.y82{bottom:723.525000px;}
.y51{bottom:735.585000px;}
.y14{bottom:738.285000px;}
.y81{bottom:744.585000px;}
.y50{bottom:756.645000px;}
.y13{bottom:759.345000px;}
.y80{bottom:765.645000px;}
.yce{bottom:770.865000px;}
.y4f{bottom:777.705000px;}
.y12{bottom:780.405000px;}
.y7f{bottom:786.705000px;}
.yaf{bottom:787.965000px;}
.yb0{bottom:791.925000px;}
.y4e{bottom:798.765000px;}
.y11{bottom:801.465000px;}
.y7d{bottom:807.765000px;}
.y7e{bottom:812.985000px;}
.y4d{bottom:819.825000px;}
.y10{bottom:822.525000px;}
.y7c{bottom:828.825000px;}
.yad{bottom:830.085000px;}
.yae{bottom:834.045000px;}
.y4c{bottom:840.885000px;}
.yf{bottom:843.585000px;}
.y7a{bottom:849.930000px;}
.y7b{bottom:855.150000px;}
.y4b{bottom:861.990000px;}
.ye{bottom:864.870000px;}
.y79{bottom:870.990000px;}
.yac{bottom:876.210000px;}
.y4a{bottom:883.050000px;}
.yd{bottom:888.090000px;}
.y78{bottom:892.050000px;}
.yd6{bottom:897.270000px;}
.y49{bottom:904.110000px;}
.y77{bottom:913.110000px;}
.yc{bottom:914.370000px;}
.yab{bottom:918.330000px;}
.y48{bottom:925.170000px;}
.y76{bottom:934.170000px;}
.yb{bottom:935.430000px;}
.ycd{bottom:939.390000px;}
.y47{bottom:946.230000px;}
.y75{bottom:955.230000px;}
.ya{bottom:956.490000px;}
.yaa{bottom:960.450000px;}
.y9{bottom:973.050000px;}
.y45{bottom:976.290000px;}
.y46{bottom:981.510000px;}
.y8{bottom:995.370000px;}
.y44{bottom:997.350000px;}
.y43{bottom:1018.410000px;}
.ya8{bottom:1019.670000px;}
.y7{bottom:1020.750000px;}
.ya9{bottom:1023.630000px;}
.y42{bottom:1039.470000px;}
.yd8{bottom:1044.690000px;}
.y41{bottom:1060.530000px;}
.y5{bottom:1060.710000px;}
.yd5{bottom:1065.750000px;}
.y40{bottom:1081.590000px;}
.ya7{bottom:1086.810000px;}
.y4{bottom:1092.930000px;}
.y3f{bottom:1102.650000px;}
.ycc{bottom:1107.870000px;}
.y3d{bottom:1123.710000px;}
.y3{bottom:1125.150000px;}
.y3e{bottom:1128.930000px;}
.y3c{bottom:1144.800000px;}
.ya5{bottom:1146.060000px;}
.ya6{bottom:1150.020000px;}
.y2{bottom:1157.400000px;}
.y3b{bottom:1165.860000px;}
.ya4{bottom:1167.120000px;}
.ycb{bottom:1171.080000px;}
.y1{bottom:1191.960000px;}
.y3a{bottom:1193.760000px;}
.h1a{height:2.864531px;}
.h15{height:34.001016px;}
.h7{height:38.671172px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h16{height:60.226875px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h11{height:62.653605px;}
.hc{height:64.479023px;}
.h3{height:65.884219px;}
.h10{height:66.229805px;}
.h6{height:67.824844px;}
.h14{height:70.959023px;}
.h12{height:72.399023px;}
.h18{height:73.119023px;}
.he{height:75.999023px;}
.hf{height:77.439023px;}
.hd{height:83.199023px;}
.h17{height:84.639023px;}
.h19{height:85.140000px;}
.hb{height:87.519023px;}
.h13{height:89.679023px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:210.810000px;}
.w5{width:580.965000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd0{left:7.740000px;}
.x10{left:52.019987px;}
.x1{left:53.999987px;}
.x2{left:59.039987px;}
.x44{left:63.719987px;}
.x83{left:69.479987px;}
.x94{left:75.239987px;}
.xf{left:80.999987px;}
.x8a{left:96.515987px;}
.x4f{left:103.895987px;}
.x3{left:104.975987px;}
.x11{left:108.035987px;}
.x3b{left:112.175987px;}
.x79{left:121.895987px;}
.x78{left:125.495973px;}
.x5e{left:128.735987px;}
.x93{left:133.775973px;}
.x5f{left:135.215987px;}
.x7a{left:136.475987px;}
.xd{left:138.275973px;}
.xe{left:143.135987px;}
.x25{left:149.039987px;}
.xa4{left:150.335987px;}
.x8b{left:157.529973px;}
.xcd{left:160.409987px;}
.x56{left:162.569987px;}
.xbd{left:164.189987px;}
.x8c{left:167.249987px;}
.xaa{left:171.029987px;}
.xc2{left:173.009987px;}
.x1f{left:174.629987px;}
.xbf{left:176.789987px;}
.x18{left:178.229987px;}
.x77{left:179.855987px;}
.x95{left:183.629973px;}
.x35{left:188.309987px;}
.xcf{left:191.370000px;}
.x96{left:193.349987px;}
.x36{left:196.049987px;}
.x19{left:202.169987px;}
.x43{left:214.775987px;}
.xa9{left:216.029987px;}
.x1a{left:217.829987px;}
.x67{left:222.695987px;}
.xc5{left:231.689973px;}
.x37{left:239.069987px;}
.xc6{left:241.409987px;}
.x33{left:246.809987px;}
.x32{left:250.409973px;}
.xb8{left:254.909973px;}
.xa5{left:257.789973px;}
.x31{left:260.309987px;}
.x7b{left:263.915987px;}
.xa6{left:267.509987px;}
.xa{left:270.029987px;}
.x34{left:273.989987px;}
.x42{left:277.949987px;}
.x50{left:281.375987px;}
.x1b{left:283.709987px;}
.x9a{left:302.654987px;}
.x60{left:305.135987px;}
.xb5{left:306.209987px;}
.x38{left:313.949987px;}
.x20{left:319.709987px;}
.x2a{left:322.814987px;}
.x29{left:326.234973px;}
.x28{left:331.274987px;}
.x72{left:339.329987px;}
.x86{left:341.714987px;}
.x76{left:361.649987px;}
.x3f{left:366.014987px;}
.x5d{left:375.194987px;}
.x5c{left:378.794973px;}
.x21{left:380.549987px;}
.x58{left:388.514987px;}
.x61{left:393.335987px;}
.x73{left:399.269987px;}
.xce{left:405.794973px;}
.x1c{left:407.369987px;}
.xab{left:413.714987px;}
.x74{left:416.234987px;}
.xac{left:417.674987px;}
.x9d{left:425.054987px;}
.x59{left:427.034987px;}
.x97{left:428.834973px;}
.x1d{left:431.849987px;}
.x71{left:436.754987px;}
.x98{left:438.554987px;}
.x70{left:440.354973px;}
.x16{left:442.694973px;}
.xa7{left:445.034973px;}
.x17{left:447.554987px;}
.x81{left:450.794973px;}
.x30{left:453.674987px;}
.xa8{left:454.754987px;}
.x8f{left:457.994973px;}
.x7e{left:460.514987px;}
.x48{left:462.449987px;}
.x90{left:467.714987px;}
.x6d{left:470.195987px;}
.x40{left:474.374987px;}
.x12{left:475.664973px;}
.x13{left:480.524987px;}
.xb{left:484.124973px;}
.x27{left:485.714987px;}
.xc{left:488.984987px;}
.x41{left:490.214987px;}
.xb4{left:495.464987px;}
.x87{left:498.164973px;}
.x88{left:507.884987px;}
.x39{left:510.329987px;}
.xb3{left:512.384973px;}
.x5a{left:513.434987px;}
.x6b{left:515.264987px;}
.x6f{left:516.704987px;}
.x6a{left:518.864973px;}
.xb1{left:522.284987px;}
.x7f{left:527.114987px;}
.x4e{left:530.024987px;}
.x4d{left:533.624973px;}
.x4b{left:543.344987px;}
.x2f{left:545.144987px;}
.x3c{left:551.624987px;}
.x66{left:554.324987px;}
.xc9{left:555.764973px;}
.x65{left:557.924973px;}
.xae{left:562.244987px;}
.x6c{left:564.944987px;}
.x63{left:567.644987px;}
.x62{left:568.655987px;}
.x3d{left:570.884987px;}
.x68{left:573.224987px;}
.x22{left:575.129987px;}
.x4{left:577.004973px;}
.x9b{left:578.984987px;}
.x89{left:580.244987px;}
.x5{left:581.864987px;}
.x8d{left:583.664973px;}
.x80{left:586.514987px;}
.x84{left:592.304973px;}
.x8e{left:593.384987px;}
.x85{left:602.024987px;}
.x55{left:607.604987px;}
.x54{left:611.204973px;}
.x64{left:612.284987px;}
.x1e{left:615.629987px;}
.xbe{left:620.384987px;}
.x75{left:622.874987px;}
.x4c{left:629.564987px;}
.xb6{left:632.009987px;}
.x7c{left:636.764987px;}
.xa2{left:646.484973px;}
.x2e{left:649.184987px;}
.xb7{left:653.789987px;}
.xa3{left:656.204987px;}
.x26{left:658.724987px;}
.x9c{left:660.929973px;}
.x51{left:662.189987px;}
.x69{left:664.124987px;}
.x52{left:665.609987px;}
.x2b{left:667.229987px;}
.x8{left:670.649973px;}
.xc3{left:672.629987px;}
.x9{left:675.509987px;}
.x91{left:677.309973px;}
.x14{left:679.109973px;}
.xcb{left:681.449987px;}
.x15{left:683.969987px;}
.xca{left:685.049973px;}
.x92{left:687.029987px;}
.xad{left:690.194987px;}
.x3a{left:694.469987px;}
.x2c{left:701.789987px;}
.xcc{left:703.589987px;}
.x47{left:709.304987px;}
.x49{left:717.989987px;}
.x4a{left:721.409987px;}
.xbc{left:726.989987px;}
.x3e{left:728.204987px;}
.xbb{left:730.589973px;}
.xa0{left:732.209973px;}
.xaf{left:736.484987px;}
.xba{left:740.489987px;}
.xa1{left:741.929987px;}
.xc0{left:743.909987px;}
.xb9{left:745.769987px;}
.x9e{left:750.929973px;}
.x53{left:754.889987px;}
.x9f{left:760.649987px;}
.x7d{left:761.684987px;}
.x46{left:764.069987px;}
.x57{left:766.829987px;}
.x23{left:779.429987px;}
.xc4{left:784.229973px;}
.xb0{left:787.244987px;}
.xc7{left:789.269973px;}
.x2d{left:791.069987px;}
.xb2{left:793.004987px;}
.x45{left:794.489987px;}
.xc1{left:795.749987px;}
.xc8{left:798.989987px;}
.x5b{left:799.994987px;}
.x24{left:802.829987px;}
.x6e{left:815.684987px;}
.x99{left:821.849987px;}
.x82{left:829.409973px;}
.x6{left:834.269973px;}
.x7{left:839.129987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v9{vertical-align:-16.640000pt;}
.v4{vertical-align:-15.360000pt;}
.v5{vertical-align:-12.800000pt;}
.vf{vertical-align:-9.600000pt;}
.vc{vertical-align:-8.320000pt;}
.v8{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.480000pt;}
.ve{vertical-align:10.240000pt;}
.va{vertical-align:14.720000pt;}
.vb{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v10{vertical-align:22.400000pt;}
.v6{vertical-align:24.960000pt;}
.vd{vertical-align:26.880000pt;}
.ls3a{letter-spacing:-2.405333pt;}
.ls33{letter-spacing:-1.765333pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.412267pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.269333pt;}
.lsc{letter-spacing:-0.242133pt;}
.lse{letter-spacing:-0.219733pt;}
.ls4d{letter-spacing:-0.190933pt;}
.ls3b{letter-spacing:-0.153067pt;}
.ls32{letter-spacing:-0.102400pt;}
.ls41{letter-spacing:-0.097067pt;}
.ls30{letter-spacing:-0.095467pt;}
.ls47{letter-spacing:-0.069867pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls39{letter-spacing:-0.039680pt;}
.ls29{letter-spacing:-0.036480pt;}
.lsa{letter-spacing:-0.017920pt;}
.ls2a{letter-spacing:-0.014080pt;}
.ls16{letter-spacing:-0.001280pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.053760pt;}
.ls23{letter-spacing:0.053867pt;}
.ls22{letter-spacing:0.058880pt;}
.ls26{letter-spacing:0.112533pt;}
.ls4{letter-spacing:0.124800pt;}
.ls31{letter-spacing:0.150400pt;}
.ls15{letter-spacing:0.154667pt;}
.ls21{letter-spacing:0.154880pt;}
.ls17{letter-spacing:0.155733pt;}
.ls34{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.160533pt;}
.ls19{letter-spacing:0.195733pt;}
.ls25{letter-spacing:0.216533pt;}
.ls46{letter-spacing:0.272000pt;}
.ls5{letter-spacing:0.274560pt;}
.ls18{letter-spacing:0.274667pt;}
.ls3{letter-spacing:0.380160pt;}
.ls2e{letter-spacing:0.483840pt;}
.ls28{letter-spacing:0.586667pt;}
.ls40{letter-spacing:0.602667pt;}
.ls20{letter-spacing:0.693760pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls27{letter-spacing:1.434667pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2c{letter-spacing:5.760000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:8.320000pt;}
.ls49{letter-spacing:9.114880pt;}
.ls4e{letter-spacing:10.832640pt;}
.ls38{letter-spacing:11.674880pt;}
.ls1a{letter-spacing:12.800000pt;}
.ls2d{letter-spacing:12.954880pt;}
.ls45{letter-spacing:13.493760pt;}
.ls24{letter-spacing:17.280000pt;}
.ls2b{letter-spacing:17.434880pt;}
.ls48{letter-spacing:18.074880pt;}
.ls1d{letter-spacing:20.480000pt;}
.ls1c{letter-spacing:28.160000pt;}
.ls3d{letter-spacing:31.514880pt;}
.ls4b{letter-spacing:34.512640pt;}
.ls12{letter-spacing:37.712640pt;}
.ls13{letter-spacing:38.352640pt;}
.ls43{letter-spacing:39.632640pt;}
.ls6{letter-spacing:40.272640pt;}
.ls4a{letter-spacing:40.891307pt;}
.ls11{letter-spacing:40.912640pt;}
.ls2f{letter-spacing:41.040640pt;}
.ls42{letter-spacing:42.192640pt;}
.ls14{letter-spacing:44.752640pt;}
.ls44{letter-spacing:45.392640pt;}
.ls3e{letter-spacing:86.554880pt;}
.ls3f{letter-spacing:93.594880pt;}
.ls3c{letter-spacing:114.714880pt;}
.ls36{letter-spacing:117.274880pt;}
.ls35{letter-spacing:123.034880pt;}
.ls37{letter-spacing:131.354880pt;}
.ws9{word-spacing:-53.394560pt;}
.ws8{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws1e{word-spacing:-12.607787pt;}
.wsf{word-spacing:-12.279787pt;}
.ws21{word-spacing:-12.277120pt;}
.ws11{word-spacing:-12.221653pt;}
.ws10{word-spacing:-12.200853pt;}
.ws23{word-spacing:-12.165653pt;}
.ws1d{word-spacing:-12.164480pt;}
.wsd{word-spacing:-12.160853pt;}
.ws1a{word-spacing:-12.155520pt;}
.ws20{word-spacing:-12.129920pt;}
.ws12{word-spacing:-12.117653pt;}
.ws17{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.wsc{word-spacing:-12.003840pt;}
.ws16{word-spacing:-11.968640pt;}
.wsa{word-spacing:-11.953280pt;}
.ws22{word-spacing:-11.935253pt;}
.ws1f{word-spacing:-11.908053pt;}
.ws1b{word-spacing:-11.902720pt;}
.ws1c{word-spacing:-11.852053pt;}
.ws24{word-spacing:-11.814187pt;}
.ws7{word-spacing:-11.785387pt;}
.wse{word-spacing:-11.735787pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.490560pt;}
.ws15{word-spacing:-3.030187pt;}
.ws13{word-spacing:-2.443520pt;}
.ws18{word-spacing:-2.429440pt;}
.ws14{word-spacing:-2.391680pt;}
.ws19{word-spacing:-2.348053pt;}
.wsb{word-spacing:0.000000pt;}
._1d{margin-left:-2803.327787pt;}
._70{margin-left:-2790.469333pt;}
._17{margin-left:-2602.950187pt;}
._50{margin-left:-2433.166507pt;}
._3c{margin-left:-2253.286400pt;}
._5a{margin-left:-2160.588800pt;}
._41{margin-left:-1877.077120pt;}
._6d{margin-left:-1512.621440pt;}
._4a{margin-left:-1494.291413pt;}
._49{margin-left:-1478.026240pt;}
._5f{margin-left:-1346.267947pt;}
._4{margin-left:-1286.994560pt;}
._2{margin-left:-1181.652480pt;}
._3{margin-left:-893.908907pt;}
._4f{margin-left:-776.301227pt;}
._57{margin-left:-756.304000pt;}
._6b{margin-left:-740.210987pt;}
._47{margin-left:-688.446720pt;}
._1e{margin-left:-682.865067pt;}
._55{margin-left:-675.541120pt;}
._5c{margin-left:-668.003627pt;}
._28{margin-left:-638.423040pt;}
._59{margin-left:-627.120853pt;}
._43{margin-left:-617.937707pt;}
._51{margin-left:-613.752533pt;}
._4c{margin-left:-582.621227pt;}
._24{margin-left:-546.926293pt;}
._22{margin-left:-521.802027pt;}
._46{margin-left:-517.125120pt;}
._5{margin-left:-514.426453pt;}
._58{margin-left:-511.205120pt;}
._4e{margin-left:-469.765120pt;}
._72{margin-left:-457.738240pt;}
._18{margin-left:-453.155413pt;}
._54{margin-left:-449.687467pt;}
._27{margin-left:-373.462400pt;}
._52{margin-left:-364.165120pt;}
._5d{margin-left:-342.223787pt;}
._25{margin-left:-289.220480pt;}
._44{margin-left:-267.307520pt;}
._69{margin-left:-247.730560pt;}
._1f{margin-left:-214.340480pt;}
._48{margin-left:-209.544747pt;}
._20{margin-left:-183.936640pt;}
._4d{margin-left:-162.441813pt;}
._32{margin-left:-161.130027pt;}
._34{margin-left:-146.707840pt;}
._2c{margin-left:-138.911360pt;}
._2f{margin-left:-136.455040pt;}
._6a{margin-left:-132.965120pt;}
._3d{margin-left:-130.752000pt;}
._4b{margin-left:-125.867520pt;}
._45{margin-left:-119.812480pt;}
._37{margin-left:-117.850453pt;}
._35{margin-left:-116.865280pt;}
._39{margin-left:-109.969920pt;}
._38{margin-left:-108.360533pt;}
._2a{margin-left:-97.125120pt;}
._3a{margin-left:-94.395520pt;}
._33{margin-left:-84.570453pt;}
._30{margin-left:-83.197013pt;}
._2d{margin-left:-81.920000pt;}
._6e{margin-left:-73.598933pt;}
._62{margin-left:-63.595520pt;}
._2e{margin-left:-60.890453pt;}
._67{margin-left:-56.650880pt;}
._36{margin-left:-55.091840pt;}
._31{margin-left:-52.660907pt;}
._3f{margin-left:-50.977920pt;}
._29{margin-left:-50.034560pt;}
._3e{margin-left:-47.183787pt;}
._63{margin-left:-45.214720pt;}
._66{margin-left:-29.105493pt;}
._21{margin-left:-28.005120pt;}
._60{margin-left:-24.805120pt;}
._56{margin-left:-19.070080pt;}
._2b{margin-left:-9.933440pt;}
._26{margin-left:-8.308907pt;}
._15{margin-left:-7.365760pt;}
._53{margin-left:-6.362880pt;}
._13{margin-left:-5.174400pt;}
._16{margin-left:-4.102827pt;}
._6{margin-left:-2.944000pt;}
._1{margin-left:-1.766400pt;}
._0{width:1.239467pt;}
._7{width:2.611413pt;}
._8{width:3.505920pt;}
._a{width:4.427520pt;}
._9{width:5.320747pt;}
._b{width:6.259627pt;}
._c{width:7.163093pt;}
._d{width:8.392960pt;}
._f{width:9.570347pt;}
._e{width:10.522453pt;}
._5b{width:12.222293pt;}
._23{width:13.168427pt;}
._10{width:14.926720pt;}
._11{width:15.936000pt;}
._42{width:17.068160pt;}
._14{width:18.114560pt;}
._5e{width:19.026773pt;}
._19{width:20.065920pt;}
._40{width:21.365547pt;}
._12{width:22.687573pt;}
._1a{width:24.706133pt;}
._1b{width:26.824533pt;}
._6f{width:30.680960pt;}
._3b{width:35.259520pt;}
._1c{width:46.627840pt;}
._73{width:98.181333pt;}
._61{width:108.199040pt;}
._64{width:127.737173pt;}
._65{width:131.430187pt;}
._6c{width:369.990187pt;}
._71{width:459.395627pt;}
._68{width:762.263680pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:6.240000pt;}
.yf6{bottom:24.960000pt;}
.yf3{bottom:31.680000pt;}
.yf5{bottom:44.160000pt;}
.y6{bottom:54.112000pt;}
.yf4{bottom:62.874667pt;}
.y74{bottom:78.592000pt;}
.y39{bottom:78.912000pt;}
.yf1{bottom:81.472000pt;}
.y73{bottom:83.232000pt;}
.yd4{bottom:83.552000pt;}
.yf2{bottom:86.752000pt;}
.yee{bottom:86.912000pt;}
.yed{bottom:91.552000pt;}
.y72{bottom:94.912000pt;}
.y38{bottom:95.232000pt;}
.y71{bottom:99.552000pt;}
.y37{bottom:99.872000pt;}
.yf0{bottom:100.192000pt;}
.yec{bottom:102.592000pt;}
.y70{bottom:111.232000pt;}
.y36{bottom:111.552000pt;}
.y6f{bottom:115.872000pt;}
.y35{bottom:116.192000pt;}
.yef{bottom:118.912000pt;}
.y6e{bottom:126.912000pt;}
.y34{bottom:127.712000pt;}
.ya3{bottom:132.352000pt;}
.yeb{bottom:137.626667pt;}
.y33{bottom:144.026667pt;}
.y6d{bottom:148.346667pt;}
.y32{bottom:148.666667pt;}
.yea{bottom:156.346667pt;}
.y31{bottom:159.706667pt;}
.ya2{bottom:160.346667pt;}
.ya1{bottom:164.986667pt;}
.y6c{bottom:167.066667pt;}
.ye9{bottom:175.066667pt;}
.ya0{bottom:176.666667pt;}
.y9f{bottom:181.306667pt;}
.y6b{bottom:185.786667pt;}
.y2f{bottom:186.266667pt;}
.y30{bottom:190.906667pt;}
.y9e{bottom:192.186667pt;}
.yca{bottom:192.826667pt;}
.ye8{bottom:193.786667pt;}
.yc9{bottom:197.466667pt;}
.y69{bottom:204.506667pt;}
.y2e{bottom:204.986667pt;}
.y6a{bottom:209.146667pt;}
.ye7{bottom:212.506667pt;}
.yc8{bottom:213.786667pt;}
.y68{bottom:223.226667pt;}
.y2d{bottom:223.706667pt;}
.yc7{bottom:225.466667pt;}
.yc6{bottom:230.106667pt;}
.y9c{bottom:231.226667pt;}
.y9d{bottom:232.346667pt;}
.yc5{bottom:241.626667pt;}
.y67{bottom:241.946667pt;}
.y2c{bottom:242.426667pt;}
.yc4{bottom:246.266667pt;}
.y9b{bottom:249.946667pt;}
.ye2{bottom:257.346667pt;}
.yc3{bottom:257.986667pt;}
.y66{bottom:260.706667pt;}
.y2b{bottom:261.186667pt;}
.yc2{bottom:262.626667pt;}
.y9a{bottom:268.706667pt;}
.ye6{bottom:273.666667pt;}
.yc1{bottom:274.306667pt;}
.yc0{bottom:278.946667pt;}
.y65{bottom:279.426667pt;}
.y2a{bottom:279.906667pt;}
.y99{bottom:287.426667pt;}
.yd7{bottom:289.986667pt;}
.ybf{bottom:290.626667pt;}
.yd3{bottom:295.266667pt;}
.y64{bottom:298.146667pt;}
.y29{bottom:298.626667pt;}
.y98{bottom:306.146667pt;}
.ybe{bottom:306.786667pt;}
.ybd{bottom:311.426667pt;}
.y63{bottom:316.866667pt;}
.y27{bottom:317.346667pt;}
.y28{bottom:321.986667pt;}
.yd2{bottom:322.466667pt;}
.ybc{bottom:323.106667pt;}
.y97{bottom:324.866667pt;}
.ye0{bottom:325.986667pt;}
.ybb{bottom:327.746667pt;}
.ye1{bottom:329.506667pt;}
.y62{bottom:335.586667pt;}
.y26{bottom:336.066667pt;}
.yba{bottom:339.426667pt;}
.y96{bottom:343.586667pt;}
.yb9{bottom:344.066667pt;}
.y61{bottom:354.306667pt;}
.y25{bottom:354.786667pt;}
.yb8{bottom:355.746667pt;}
.y93{bottom:362.306667pt;}
.y94{bottom:363.426667pt;}
.y95{bottom:366.946667pt;}
.yb7{bottom:371.906667pt;}
.y60{bottom:373.026667pt;}
.y24{bottom:373.506667pt;}
.yb6{bottom:376.546667pt;}
.y92{bottom:381.026667pt;}
.ye4{bottom:382.146667pt;}
.ye5{bottom:385.666667pt;}
.yb5{bottom:387.586667pt;}
.y5f{bottom:391.746667pt;}
.y23{bottom:392.226667pt;}
.y91{bottom:399.746667pt;}
.yde{bottom:400.866667pt;}
.ydf{bottom:404.386667pt;}
.y5e{bottom:410.466667pt;}
.y21{bottom:410.946667pt;}
.y22{bottom:415.586667pt;}
.y90{bottom:418.466667pt;}
.yb4{bottom:423.106667pt;}
.y5d{bottom:429.186667pt;}
.y20{bottom:429.666667pt;}
.y8f{bottom:437.186667pt;}
.yb3{bottom:441.826667pt;}
.y5c{bottom:447.906667pt;}
.y1f{bottom:448.386667pt;}
.y8e{bottom:455.906667pt;}
.yd1{bottom:460.546667pt;}
.y5b{bottom:466.626667pt;}
.y1e{bottom:467.106667pt;}
.y8d{bottom:474.626667pt;}
.ydc{bottom:475.746667pt;}
.ydd{bottom:479.266667pt;}
.y5a{bottom:485.346667pt;}
.y1d{bottom:485.826667pt;}
.y8c{bottom:493.346667pt;}
.yd0{bottom:497.986667pt;}
.y59{bottom:504.093333pt;}
.y1c{bottom:504.573333pt;}
.y8b{bottom:512.093333pt;}
.yb2{bottom:516.733333pt;}
.y58{bottom:522.813333pt;}
.y1b{bottom:523.293333pt;}
.y8a{bottom:530.813333pt;}
.yda{bottom:531.933333pt;}
.ydb{bottom:535.453333pt;}
.y57{bottom:541.533333pt;}
.y1a{bottom:542.013333pt;}
.y89{bottom:549.533333pt;}
.yb1{bottom:554.173333pt;}
.y56{bottom:560.253333pt;}
.y19{bottom:560.733333pt;}
.y88{bottom:568.253333pt;}
.yd9{bottom:569.373333pt;}
.ycf{bottom:572.893333pt;}
.y55{bottom:578.973333pt;}
.y18{bottom:579.453333pt;}
.y87{bottom:586.973333pt;}
.ye3{bottom:591.613333pt;}
.y54{bottom:597.693333pt;}
.y17{bottom:600.253333pt;}
.y84{bottom:605.693333pt;}
.y85{bottom:606.813333pt;}
.y86{bottom:610.333333pt;}
.y53{bottom:616.413333pt;}
.y16{bottom:618.813333pt;}
.y83{bottom:624.413333pt;}
.y52{bottom:635.133333pt;}
.y15{bottom:637.533333pt;}
.y82{bottom:643.133333pt;}
.y51{bottom:653.853333pt;}
.y14{bottom:656.253333pt;}
.y81{bottom:661.853333pt;}
.y50{bottom:672.573333pt;}
.y13{bottom:674.973333pt;}
.y80{bottom:680.573333pt;}
.yce{bottom:685.213333pt;}
.y4f{bottom:691.293333pt;}
.y12{bottom:693.693333pt;}
.y7f{bottom:699.293333pt;}
.yaf{bottom:700.413333pt;}
.yb0{bottom:703.933333pt;}
.y4e{bottom:710.013333pt;}
.y11{bottom:712.413333pt;}
.y7d{bottom:718.013333pt;}
.y7e{bottom:722.653333pt;}
.y4d{bottom:728.733333pt;}
.y10{bottom:731.133333pt;}
.y7c{bottom:736.733333pt;}
.yad{bottom:737.853333pt;}
.yae{bottom:741.373333pt;}
.y4c{bottom:747.453333pt;}
.yf{bottom:749.853333pt;}
.y7a{bottom:755.493333pt;}
.y7b{bottom:760.133333pt;}
.y4b{bottom:766.213333pt;}
.ye{bottom:768.773333pt;}
.y79{bottom:774.213333pt;}
.yac{bottom:778.853333pt;}
.y4a{bottom:784.933333pt;}
.yd{bottom:789.413333pt;}
.y78{bottom:792.933333pt;}
.yd6{bottom:797.573333pt;}
.y49{bottom:803.653333pt;}
.y77{bottom:811.653333pt;}
.yc{bottom:812.773333pt;}
.yab{bottom:816.293333pt;}
.y48{bottom:822.373333pt;}
.y76{bottom:830.373333pt;}
.yb{bottom:831.493333pt;}
.ycd{bottom:835.013333pt;}
.y47{bottom:841.093333pt;}
.y75{bottom:849.093333pt;}
.ya{bottom:850.213333pt;}
.yaa{bottom:853.733333pt;}
.y9{bottom:864.933333pt;}
.y45{bottom:867.813333pt;}
.y46{bottom:872.453333pt;}
.y8{bottom:884.773333pt;}
.y44{bottom:886.533333pt;}
.y43{bottom:905.253333pt;}
.ya8{bottom:906.373333pt;}
.y7{bottom:907.333333pt;}
.ya9{bottom:909.893333pt;}
.y42{bottom:923.973333pt;}
.yd8{bottom:928.613333pt;}
.y41{bottom:942.693333pt;}
.y5{bottom:942.853333pt;}
.yd5{bottom:947.333333pt;}
.y40{bottom:961.413333pt;}
.ya7{bottom:966.053333pt;}
.y4{bottom:971.493333pt;}
.y3f{bottom:980.133333pt;}
.ycc{bottom:984.773333pt;}
.y3d{bottom:998.853333pt;}
.y3{bottom:1000.133333pt;}
.y3e{bottom:1003.493333pt;}
.y3c{bottom:1017.600000pt;}
.ya5{bottom:1018.720000pt;}
.ya6{bottom:1022.240000pt;}
.y2{bottom:1028.800000pt;}
.y3b{bottom:1036.320000pt;}
.ya4{bottom:1037.440000pt;}
.ycb{bottom:1040.960000pt;}
.y1{bottom:1059.520000pt;}
.y3a{bottom:1061.120000pt;}
.h1a{height:2.546250pt;}
.h15{height:30.223125pt;}
.h7{height:34.374375pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h16{height:53.535000pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h11{height:55.692094pt;}
.hc{height:57.314687pt;}
.h3{height:58.563750pt;}
.h10{height:58.870937pt;}
.h6{height:60.288750pt;}
.h14{height:63.074687pt;}
.h12{height:64.354688pt;}
.h18{height:64.994688pt;}
.he{height:67.554687pt;}
.hf{height:68.834688pt;}
.hd{height:73.954688pt;}
.h17{height:75.234687pt;}
.h19{height:75.680000pt;}
.hb{height:77.794687pt;}
.h13{height:79.714687pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:187.386667pt;}
.w5{width:516.413333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd0{left:6.880000pt;}
.x10{left:46.239988pt;}
.x1{left:47.999988pt;}
.x2{left:52.479988pt;}
.x44{left:56.639988pt;}
.x83{left:61.759988pt;}
.x94{left:66.879988pt;}
.xf{left:71.999988pt;}
.x8a{left:85.791988pt;}
.x4f{left:92.351988pt;}
.x3{left:93.311988pt;}
.x11{left:96.031988pt;}
.x3b{left:99.711988pt;}
.x79{left:108.351988pt;}
.x78{left:111.551976pt;}
.x5e{left:114.431988pt;}
.x93{left:118.911976pt;}
.x5f{left:120.191988pt;}
.x7a{left:121.311988pt;}
.xd{left:122.911976pt;}
.xe{left:127.231988pt;}
.x25{left:132.479988pt;}
.xa4{left:133.631988pt;}
.x8b{left:140.026643pt;}
.xcd{left:142.586655pt;}
.x56{left:144.506655pt;}
.xbd{left:145.946655pt;}
.x8c{left:148.666655pt;}
.xaa{left:152.026655pt;}
.xc2{left:153.786655pt;}
.x1f{left:155.226655pt;}
.xbf{left:157.146655pt;}
.x18{left:158.426655pt;}
.x77{left:159.871988pt;}
.x95{left:163.226643pt;}
.x35{left:167.386655pt;}
.xcf{left:170.106667pt;}
.x96{left:171.866655pt;}
.x36{left:174.266655pt;}
.x19{left:179.706655pt;}
.x43{left:190.911988pt;}
.xa9{left:192.026655pt;}
.x1a{left:193.626655pt;}
.x67{left:197.951988pt;}
.xc5{left:205.946643pt;}
.x37{left:212.506655pt;}
.xc6{left:214.586655pt;}
.x33{left:219.386655pt;}
.x32{left:222.586643pt;}
.xb8{left:226.586643pt;}
.xa5{left:229.146643pt;}
.x31{left:231.386655pt;}
.x7b{left:234.591988pt;}
.xa6{left:237.786655pt;}
.xa{left:240.026655pt;}
.x34{left:243.546655pt;}
.x42{left:247.066655pt;}
.x50{left:250.111988pt;}
.x1b{left:252.186655pt;}
.x9a{left:269.026655pt;}
.x60{left:271.231988pt;}
.xb5{left:272.186655pt;}
.x38{left:279.066655pt;}
.x20{left:284.186655pt;}
.x2a{left:286.946655pt;}
.x29{left:289.986643pt;}
.x28{left:294.466655pt;}
.x72{left:301.626655pt;}
.x86{left:303.746655pt;}
.x76{left:321.466655pt;}
.x3f{left:325.346655pt;}
.x5d{left:333.506655pt;}
.x5c{left:336.706643pt;}
.x21{left:338.266655pt;}
.x58{left:345.346655pt;}
.x61{left:349.631988pt;}
.x73{left:354.906655pt;}
.xce{left:360.706643pt;}
.x1c{left:362.106655pt;}
.xab{left:367.746655pt;}
.x74{left:369.986655pt;}
.xac{left:371.266655pt;}
.x9d{left:377.826655pt;}
.x59{left:379.586655pt;}
.x97{left:381.186643pt;}
.x1d{left:383.866655pt;}
.x71{left:388.226655pt;}
.x98{left:389.826655pt;}
.x70{left:391.426643pt;}
.x16{left:393.506643pt;}
.xa7{left:395.586643pt;}
.x17{left:397.826655pt;}
.x81{left:400.706643pt;}
.x30{left:403.266655pt;}
.xa8{left:404.226655pt;}
.x8f{left:407.106643pt;}
.x7e{left:409.346655pt;}
.x48{left:411.066655pt;}
.x90{left:415.746655pt;}
.x6d{left:417.951988pt;}
.x40{left:421.666655pt;}
.x12{left:422.813310pt;}
.x13{left:427.133322pt;}
.xb{left:430.333310pt;}
.x27{left:431.746655pt;}
.xc{left:434.653322pt;}
.x41{left:435.746655pt;}
.xb4{left:440.413322pt;}
.x87{left:442.813310pt;}
.x88{left:451.453322pt;}
.x39{left:453.626655pt;}
.xb3{left:455.453310pt;}
.x5a{left:456.386655pt;}
.x6b{left:458.013322pt;}
.x6f{left:459.293322pt;}
.x6a{left:461.213310pt;}
.xb1{left:464.253322pt;}
.x7f{left:468.546655pt;}
.x4e{left:471.133322pt;}
.x4d{left:474.333310pt;}
.x4b{left:482.973322pt;}
.x2f{left:484.573322pt;}
.x3c{left:490.333322pt;}
.x66{left:492.733322pt;}
.xc9{left:494.013310pt;}
.x65{left:495.933310pt;}
.xae{left:499.773322pt;}
.x6c{left:502.173322pt;}
.x63{left:504.573322pt;}
.x62{left:505.471988pt;}
.x3d{left:507.453322pt;}
.x68{left:509.533322pt;}
.x22{left:511.226655pt;}
.x4{left:512.893310pt;}
.x9b{left:514.653322pt;}
.x89{left:515.773322pt;}
.x5{left:517.213322pt;}
.x8d{left:518.813310pt;}
.x80{left:521.346655pt;}
.x84{left:526.493310pt;}
.x8e{left:527.453322pt;}
.x85{left:535.133322pt;}
.x55{left:540.093322pt;}
.x54{left:543.293310pt;}
.x64{left:544.253322pt;}
.x1e{left:547.226655pt;}
.xbe{left:551.453322pt;}
.x75{left:553.666655pt;}
.x4c{left:559.613322pt;}
.xb6{left:561.786655pt;}
.x7c{left:566.013322pt;}
.xa2{left:574.653310pt;}
.x2e{left:577.053322pt;}
.xb7{left:581.146655pt;}
.xa3{left:583.293322pt;}
.x26{left:585.533322pt;}
.x9c{left:587.493310pt;}
.x51{left:588.613322pt;}
.x69{left:590.333322pt;}
.x52{left:591.653322pt;}
.x2b{left:593.093322pt;}
.x8{left:596.133310pt;}
.xc3{left:597.893322pt;}
.x9{left:600.453322pt;}
.x91{left:602.053310pt;}
.x14{left:603.653310pt;}
.xcb{left:605.733322pt;}
.x15{left:607.973322pt;}
.xca{left:608.933310pt;}
.x92{left:610.693322pt;}
.xad{left:613.506655pt;}
.x3a{left:617.306655pt;}
.x2c{left:623.813322pt;}
.xcc{left:625.413322pt;}
.x47{left:630.493322pt;}
.x49{left:638.213322pt;}
.x4a{left:641.253322pt;}
.xbc{left:646.213322pt;}
.x3e{left:647.293322pt;}
.xbb{left:649.413310pt;}
.xa0{left:650.853310pt;}
.xaf{left:654.653322pt;}
.xba{left:658.213322pt;}
.xa1{left:659.493322pt;}
.xc0{left:661.253322pt;}
.xb9{left:662.906655pt;}
.x9e{left:667.493310pt;}
.x53{left:671.013322pt;}
.x9f{left:676.133322pt;}
.x7d{left:677.053322pt;}
.x46{left:679.173322pt;}
.x57{left:681.626655pt;}
.x23{left:692.826655pt;}
.xc4{left:697.093310pt;}
.xb0{left:699.773322pt;}
.xc7{left:701.573310pt;}
.x2d{left:703.173322pt;}
.xb2{left:704.893322pt;}
.x45{left:706.213322pt;}
.xc1{left:707.333322pt;}
.xc8{left:710.213322pt;}
.x5b{left:711.106655pt;}
.x24{left:713.626655pt;}
.x6e{left:725.053322pt;}
.x99{left:730.533322pt;}
.x82{left:737.253310pt;}
.x6{left:741.573310pt;}
.x7{left:745.893322pt;}
}




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