
    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_6449c2ae6f025989620a88b6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_06ffe17e40f0e04e0fde27b2.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_e4b42f6c05feed8194176bcc.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_6e482b9cd630ea49fad0d639.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c5913e771a62d76f4be359a6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_43b044f52d4bcb9095eaaf08.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.196289;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_714ffab476c54f35244d6c62.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8b4bb951d3ba64cccce8baf3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.196289;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.320000px;}
.ls2b{letter-spacing:-16.380000px;}
.ls1b{letter-spacing:-14.940000px;}
.ls29{letter-spacing:-14.220000px;}
.ls12{letter-spacing:-12.780000px;}
.ls38{letter-spacing:-10.620000px;}
.lsb{letter-spacing:-1.032000px;}
.lsf{letter-spacing:-0.579600px;}
.lsa{letter-spacing:-0.463800px;}
.ls27{letter-spacing:-0.414000px;}
.ls26{letter-spacing:-0.326400px;}
.ls2c{letter-spacing:-0.240600px;}
.ls20{letter-spacing:-0.226800px;}
.ls11{letter-spacing:-0.175800px;}
.ls9{letter-spacing:-0.132600px;}
.ls2a{letter-spacing:-0.107400px;}
.ls31{letter-spacing:-0.078600px;}
.ls10{letter-spacing:-0.067200px;}
.ls19{letter-spacing:-0.058320px;}
.ls2e{letter-spacing:-0.052560px;}
.ls24{letter-spacing:-0.041040px;}
.ls7{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.023760px;}
.ls8{letter-spacing:0.038880px;}
.ls14{letter-spacing:0.060480px;}
.lsd{letter-spacing:0.066000px;}
.ls30{letter-spacing:0.074880px;}
.ls2d{letter-spacing:0.135600px;}
.ls21{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.lsc{letter-spacing:0.150000px;}
.ls25{letter-spacing:0.174000px;}
.ls15{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.269760px;}
.lse{letter-spacing:0.288600px;}
.ls1a{letter-spacing:0.306000px;}
.ls2f{letter-spacing:0.309000px;}
.ls13{letter-spacing:0.654000px;}
.ls39{letter-spacing:0.660000px;}
.ls37{letter-spacing:12.186720px;}
.ls36{letter-spacing:13.020480px;}
.ls32{letter-spacing:13.439520px;}
.ls6{letter-spacing:13.504320px;}
.ls4{letter-spacing:13.624320px;}
.ls28{letter-spacing:13.648320px;}
.ls18{letter-spacing:13.716480px;}
.ls3{letter-spacing:13.740480px;}
.ls1e{letter-spacing:13.746240px;}
.ls2{letter-spacing:13.860480px;}
.ls34{letter-spacing:16.452720px;}
.ls22{letter-spacing:31.740480px;}
.ls35{letter-spacing:42.426720px;}
.ls33{letter-spacing:45.306720px;}
.ls5{letter-spacing:64.026720px;}
.ls23{letter-spacing:75.424320px;}
.ls1d{letter-spacing:76.386240px;}
.ls16{letter-spacing:76.494240px;}
.ls1c{letter-spacing:122.466240px;}
.ls17{letter-spacing:122.574240px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws4{word-spacing:-13.938240px;}
.ws13{word-spacing:-13.814760px;}
.ws9{word-spacing:-13.811760px;}
.wsd{word-spacing:-13.646160px;}
.wsa{word-spacing:-13.529520px;}
.ws5{word-spacing:-13.505760px;}
.wse{word-spacing:-13.464720px;}
.ws12{word-spacing:-13.453200px;}
.ws8{word-spacing:-13.447440px;}
.ws14{word-spacing:-13.427160px;}
.wsf{word-spacing:-13.398360px;}
.wsb{word-spacing:-13.278960px;}
.ws10{word-spacing:-13.265160px;}
.ws7{word-spacing:0.000000px;}
.ws15{word-spacing:0.957600px;}
.wsc{word-spacing:1.713600px;}
.ws16{word-spacing:2.392560px;}
.ws17{word-spacing:2.512560px;}
.ws11{word-spacing:3.037680px;}
._83{margin-left:-1565.408160px;}
._ad{margin-left:-786.162960px;}
._aa{margin-left:-780.986160px;}
._a4{margin-left:-706.225680px;}
._81{margin-left:-674.470080px;}
._5a{margin-left:-655.320240px;}
._92{margin-left:-628.431120px;}
._a2{margin-left:-627.200640px;}
._a6{margin-left:-589.505040px;}
._94{margin-left:-560.590560px;}
._85{margin-left:-551.828160px;}
._8c{margin-left:-547.323840px;}
._67{margin-left:-534.010320px;}
._1d{margin-left:-532.918560px;}
._1e{margin-left:-528.059520px;}
._6f{margin-left:-517.406400px;}
._5d{margin-left:-503.871120px;}
._56{margin-left:-499.685040px;}
._a7{margin-left:-492.755760px;}
._1{margin-left:-487.878240px;}
._69{margin-left:-485.643600px;}
._71{margin-left:-481.177440px;}
._a8{margin-left:-478.084320px;}
._7a{margin-left:-475.156080px;}
._64{margin-left:-464.213520px;}
._6d{margin-left:-463.075200px;}
._5e{margin-left:-454.890720px;}
._57{margin-left:-450.827280px;}
._75{margin-left:-442.650240px;}
._54{margin-left:-440.136000px;}
._4f{margin-left:-430.254000px;}
._6{margin-left:-409.254240px;}
._65{margin-left:-398.962080px;}
._ac{margin-left:-389.318400px;}
._95{margin-left:-383.902560px;}
._7f{margin-left:-375.765840px;}
._8d{margin-left:-373.026240px;}
._a3{margin-left:-359.318880px;}
._99{margin-left:-353.402640px;}
._7d{margin-left:-350.547120px;}
._79{margin-left:-332.502480px;}
._7b{margin-left:-330.596640px;}
._a9{margin-left:-329.379120px;}
._5f{margin-left:-324.850320px;}
._84{margin-left:-307.768320px;}
._8{margin-left:-306.459120px;}
._7e{margin-left:-303.695280px;}
._93{margin-left:-300.119040px;}
._8e{margin-left:-295.338240px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._72{margin-left:-285.369120px;}
._a1{margin-left:-283.804560px;}
._0{margin-left:-274.978080px;}
._62{margin-left:-272.978640px;}
._4d{margin-left:-271.195200px;}
._9e{margin-left:-270.000000px;}
._97{margin-left:-256.494240px;}
._51{margin-left:-254.402640px;}
._6e{margin-left:-251.474400px;}
._ab{margin-left:-245.259360px;}
._b{margin-left:-240.510240px;}
._a5{margin-left:-239.223600px;}
._86{margin-left:-231.096240px;}
._4c{margin-left:-229.741920px;}
._98{margin-left:-226.733760px;}
._68{margin-left:-224.701920px;}
._16{margin-left:-222.774000px;}
._9b{margin-left:-220.581360px;}
._96{margin-left:-217.530720px;}
._89{margin-left:-214.722000px;}
._21{margin-left:-207.538560px;}
._4b{margin-left:-205.758000px;}
._a0{margin-left:-204.204240px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._87{margin-left:-197.391600px;}
._36{margin-left:-195.321600px;}
._50{margin-left:-193.865760px;}
._20{margin-left:-190.074240px;}
._60{margin-left:-188.034480px;}
._9f{margin-left:-186.515280px;}
._5c{margin-left:-183.600000px;}
._25{margin-left:-179.841600px;}
._9c{margin-left:-173.308320px;}
._80{margin-left:-172.085760px;}
._e{margin-left:-171.054720px;}
._8b{margin-left:-169.269960px;}
._7c{margin-left:-166.650960px;}
._d{margin-left:-165.322080px;}
._4e{margin-left:-161.535600px;}
._9d{margin-left:-158.009760px;}
._88{margin-left:-155.201040px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.558400px;}
._6a{margin-left:-151.211520px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-144.920880px;}
._5b{margin-left:-139.067280px;}
._61{margin-left:-137.452320px;}
._40{margin-left:-136.195200px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._78{margin-left:-130.221360px;}
._8a{margin-left:-126.038160px;}
._6b{margin-left:-122.930640px;}
._22{margin-left:-120.382560px;}
._11{margin-left:-115.522560px;}
._76{margin-left:-109.594800px;}
._45{margin-left:-106.617600px;}
._4a{margin-left:-105.176160px;}
._8f{margin-left:-103.870080px;}
._1c{margin-left:-102.529440px;}
._23{margin-left:-95.632320px;}
._7{margin-left:-91.124880px;}
._3f{margin-left:-90.057600px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._ae{margin-left:-61.055760px;}
._9a{margin-left:-55.740960px;}
._44{margin-left:-53.825760px;}
._82{margin-left:-52.675920px;}
._14{margin-left:-49.123920px;}
._39{margin-left:-47.345760px;}
._47{margin-left:-43.025760px;}
._58{margin-left:-37.545840px;}
._55{margin-left:-33.965280px;}
._19{margin-left:-31.530240px;}
._31{margin-left:-29.465760px;}
._42{margin-left:-28.364400px;}
._32{margin-left:-27.006240px;}
._af{margin-left:-23.394240px;}
._48{margin-left:-14.225760px;}
._3c{margin-left:-11.987040px;}
._b0{margin-left:-3.991680px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.053360px;}
._2c{width:2.272320px;}
._2b{width:3.353040px;}
._2a{width:4.411200px;}
._2e{width:6.095520px;}
._2d{width:7.111440px;}
._2f{width:8.187120px;}
._35{width:9.233280px;}
._34{width:10.806480px;}
._37{width:11.904480px;}
._33{width:12.932880px;}
._3a{width:13.945440px;}
._3d{width:15.081600px;}
._30{width:17.093760px;}
._41{width:18.290640px;}
._3b{width:20.303520px;}
._49{width:25.810560px;}
._74{width:28.037520px;}
._3e{width:29.508480px;}
._46{width:31.243440px;}
._6c{width:33.764400px;}
._38{width:35.381280px;}
._77{width:42.907680px;}
._43{width:43.988400px;}
._28{width:48.379680px;}
._27{width:49.595520px;}
._53{width:51.752160px;}
._59{width:53.425440px;}
._63{width:58.385520px;}
._70{width:60.132960px;}
._73{width:88.146000px;}
._90{width:117.667440px;}
._91{width:119.221200px;}
._66{width:127.169280px;}
._52{width:149.579280px;}
.fc3{color:transparent;}
.fc2{color:rgb(15,17,21);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y73{bottom:3.960000px;}
.y86{bottom:4.680000px;}
.y8c{bottom:5.040000px;}
.y82{bottom:5.400000px;}
.y77{bottom:5.580000px;}
.ye5{bottom:6.660000px;}
.yea{bottom:6.705000px;}
.y7d{bottom:13.140000px;}
.y84{bottom:13.905000px;}
.y8a{bottom:14.220000px;}
.y79{bottom:14.580000px;}
.yc5{bottom:18.180000px;}
.yc8{bottom:18.360000px;}
.yed{bottom:21.060000px;}
.yc6{bottom:22.140000px;}
.y72{bottom:22.320000px;}
.y85{bottom:23.085000px;}
.y88{bottom:23.400000px;}
.y7f{bottom:23.580000px;}
.y75{bottom:23.760000px;}
.y7c{bottom:31.500000px;}
.y89{bottom:32.580000px;}
.y80{bottom:32.760000px;}
.y78{bottom:32.940000px;}
.y71{bottom:40.500000px;}
.y7b{bottom:40.680000px;}
.y8b{bottom:41.760000px;}
.y81{bottom:41.940000px;}
.y76{bottom:42.120000px;}
.y6{bottom:60.660000px;}
.ye3{bottom:88.956000px;}
.y34{bottom:93.096000px;}
.y11a{bottom:93.276000px;}
.y35{bottom:94.176000px;}
.yb7{bottom:94.896000px;}
.ye2{bottom:110.016000px;}
.y119{bottom:110.736000px;}
.y33{bottom:114.156000px;}
.y114{bottom:115.236000px;}
.yb6{bottom:115.956000px;}
.y110{bottom:121.356000px;}
.ye1{bottom:131.076000px;}
.y32{bottom:135.216000px;}
.yb5{bottom:137.016000px;}
.y10f{bottom:142.416000px;}
.ye0{bottom:152.130000px;}
.y31{bottom:156.270000px;}
.y61{bottom:157.350000px;}
.yb3{bottom:158.070000px;}
.yb4{bottom:159.150000px;}
.y10e{bottom:163.470000px;}
.ydf{bottom:173.190000px;}
.y30{bottom:177.330000px;}
.y6f{bottom:178.410000px;}
.yb2{bottom:179.130000px;}
.y10d{bottom:184.530000px;}
.yde{bottom:194.250000px;}
.y2f{bottom:198.390000px;}
.yb1{bottom:200.190000px;}
.y10c{bottom:205.590000px;}
.ydd{bottom:215.310000px;}
.y2e{bottom:219.450000px;}
.y60{bottom:220.530000px;}
.yb0{bottom:221.250000px;}
.y10a{bottom:226.650000px;}
.y10b{bottom:227.730000px;}
.ydc{bottom:236.370000px;}
.y2d{bottom:240.510000px;}
.yae{bottom:242.310000px;}
.yaf{bottom:243.390000px;}
.y109{bottom:247.710000px;}
.ydb{bottom:257.430000px;}
.y2c{bottom:261.570000px;}
.y5f{bottom:262.650000px;}
.yac{bottom:263.370000px;}
.yad{bottom:264.450000px;}
.y108{bottom:268.770000px;}
.yda{bottom:278.490000px;}
.y2a{bottom:282.630000px;}
.y2b{bottom:283.710000px;}
.yaa{bottom:284.430000px;}
.yab{bottom:285.510000px;}
.y107{bottom:289.830000px;}
.yd9{bottom:299.550000px;}
.y29{bottom:303.690000px;}
.y5e{bottom:304.770000px;}
.ya9{bottom:305.490000px;}
.y106{bottom:310.890000px;}
.yd8{bottom:320.610000px;}
.y28{bottom:324.750000px;}
.ya7{bottom:326.550000px;}
.ya8{bottom:327.630000px;}
.y105{bottom:331.995000px;}
.yd7{bottom:341.715000px;}
.y27{bottom:345.855000px;}
.y5d{bottom:346.935000px;}
.ya5{bottom:347.655000px;}
.ya6{bottom:348.735000px;}
.y104{bottom:353.055000px;}
.yd6{bottom:356.835000px;}
.y26{bottom:366.915000px;}
.y6b{bottom:367.995000px;}
.ya3{bottom:368.715000px;}
.ya4{bottom:369.795000px;}
.y103{bottom:374.115000px;}
.yd5{bottom:375.915000px;}
.y25{bottom:387.975000px;}
.y5c{bottom:389.055000px;}
.ya2{bottom:389.775000px;}
.yd4{bottom:394.995000px;}
.y102{bottom:395.175000px;}
.y24{bottom:409.035000px;}
.y5b{bottom:410.115000px;}
.ya1{bottom:410.655000px;}
.yd3{bottom:413.895000px;}
.y101{bottom:416.235000px;}
.y23{bottom:430.095000px;}
.y5a{bottom:431.175000px;}
.y100{bottom:431.355000px;}
.ya0{bottom:431.715000px;}
.yd2{bottom:432.975000px;}
.yff{bottom:450.435000px;}
.y22{bottom:451.155000px;}
.yd1{bottom:452.055000px;}
.y59{bottom:452.235000px;}
.y9f{bottom:452.775000px;}
.yfe{bottom:469.515000px;}
.y21{bottom:472.215000px;}
.y6a{bottom:473.295000px;}
.y9e{bottom:473.835000px;}
.yd0{bottom:477.795000px;}
.y20{bottom:493.275000px;}
.y58{bottom:494.355000px;}
.y9d{bottom:494.895000px;}
.ycf{bottom:498.855000px;}
.yfd{bottom:506.775000px;}
.y1f{bottom:514.335000px;}
.y9c{bottom:515.955000px;}
.yce{bottom:519.915000px;}
.y1e{bottom:535.395000px;}
.y69{bottom:536.475000px;}
.y9a{bottom:537.015000px;}
.y9b{bottom:538.095000px;}
.ycd{bottom:540.975000px;}
.yfc{bottom:544.215000px;}
.y1d{bottom:556.455000px;}
.y99{bottom:558.075000px;}
.ycc{bottom:562.035000px;}
.yfb{bottom:569.955000px;}
.y57{bottom:577.515000px;}
.y68{bottom:578.595000px;}
.y98{bottom:579.135000px;}
.y1b{bottom:579.855000px;}
.y1c{bottom:580.935000px;}
.ycb{bottom:583.095000px;}
.yfa{bottom:591.015000px;}
.y56{bottom:598.605000px;}
.y113{bottom:599.685000px;}
.y96{bottom:600.225000px;}
.y97{bottom:601.305000px;}
.yca{bottom:604.185000px;}
.y19{bottom:609.765000px;}
.y1a{bottom:610.845000px;}
.yf9{bottom:612.105000px;}
.y55{bottom:619.665000px;}
.y95{bottom:621.285000px;}
.yc9{bottom:625.245000px;}
.y18{bottom:630.825000px;}
.yf8{bottom:633.165000px;}
.yc7{bottom:640.365000px;}
.y54{bottom:640.725000px;}
.y67{bottom:641.805000px;}
.y94{bottom:642.345000px;}
.y17{bottom:651.885000px;}
.yf7{bottom:654.225000px;}
.y53{bottom:661.785000px;}
.y66{bottom:662.865000px;}
.y93{bottom:663.405000px;}
.y16{bottom:672.945000px;}
.yf6{bottom:675.285000px;}
.yc4{bottom:677.805000px;}
.y52{bottom:682.845000px;}
.y92{bottom:684.465000px;}
.y15{bottom:694.005000px;}
.yf4{bottom:696.345000px;}
.yf5{bottom:697.425000px;}
.y50{bottom:703.905000px;}
.y51{bottom:704.985000px;}
.y91{bottom:705.525000px;}
.y14{bottom:715.065000px;}
.yf3{bottom:717.405000px;}
.y4f{bottom:724.965000px;}
.y8f{bottom:726.585000px;}
.y90{bottom:727.665000px;}
.y13{bottom:736.125000px;}
.yf2{bottom:738.465000px;}
.y4e{bottom:746.025000px;}
.y112{bottom:747.105000px;}
.y8e{bottom:747.645000px;}
.yc3{bottom:752.505000px;}
.y12{bottom:757.185000px;}
.yf1{bottom:759.525000px;}
.y4d{bottom:766.905000px;}
.y65{bottom:767.985000px;}
.y8d{bottom:777.705000px;}
.y11{bottom:778.245000px;}
.yef{bottom:780.585000px;}
.yf0{bottom:781.665000px;}
.y4c{bottom:787.965000px;}
.y87{bottom:792.825000px;}
.yee{bottom:795.705000px;}
.y10{bottom:799.305000px;}
.y4b{bottom:809.025000px;}
.yec{bottom:817.485000px;}
.yf{bottom:820.365000px;}
.y49{bottom:830.085000px;}
.y4a{bottom:831.165000px;}
.yeb{bottom:839.265000px;}
.ye{bottom:841.425000px;}
.y83{bottom:850.785000px;}
.y48{bottom:851.145000px;}
.ye9{bottom:861.045000px;}
.yd{bottom:862.530000px;}
.y47{bottom:872.250000px;}
.y6e{bottom:873.330000px;}
.ye8{bottom:883.050000px;}
.yc2{bottom:883.590000px;}
.yc{bottom:885.750000px;}
.y7e{bottom:889.890000px;}
.y46{bottom:893.310000px;}
.y118{bottom:894.390000px;}
.yc1{bottom:904.650000px;}
.ye7{bottom:904.830000px;}
.yb{bottom:906.810000px;}
.y45{bottom:914.370000px;}
.y6d{bottom:915.450000px;}
.yc0{bottom:925.710000px;}
.ye6{bottom:926.610000px;}
.ya{bottom:928.770000px;}
.y44{bottom:935.430000px;}
.y111{bottom:936.510000px;}
.ybf{bottom:946.770000px;}
.y7a{bottom:948.390000px;}
.y9{bottom:951.090000px;}
.y43{bottom:956.490000px;}
.y117{bottom:957.570000px;}
.ybe{bottom:967.830000px;}
.ye4{bottom:970.170000px;}
.y8{bottom:976.290000px;}
.y42{bottom:977.550000px;}
.y116{bottom:978.630000px;}
.ybd{bottom:982.950000px;}
.y41{bottom:998.610000px;}
.y64{bottom:999.690000px;}
.ybc{bottom:1002.030000px;}
.y74{bottom:1004.010000px;}
.y7{bottom:1009.950000px;}
.y40{bottom:1019.670000px;}
.ybb{bottom:1021.110000px;}
.yba{bottom:1040.190000px;}
.y3f{bottom:1040.730000px;}
.y115{bottom:1041.810000px;}
.y5{bottom:1050.090000px;}
.yb9{bottom:1059.090000px;}
.y3e{bottom:1061.790000px;}
.y70{bottom:1062.690000px;}
.y63{bottom:1062.870000px;}
.yb8{bottom:1078.170000px;}
.y4{bottom:1082.310000px;}
.y3d{bottom:1082.850000px;}
.y6c{bottom:1083.930000px;}
.y3b{bottom:1103.910000px;}
.y3c{bottom:1104.990000px;}
.y3{bottom:1114.530000px;}
.y3a{bottom:1124.970000px;}
.y62{bottom:1126.050000px;}
.y38{bottom:1146.060000px;}
.y2{bottom:1146.600000px;}
.y39{bottom:1147.140000px;}
.y37{bottom:1173.960000px;}
.y1{bottom:1180.620000px;}
.y36{bottom:1194.120000px;}
.h11{height:18.180000px;}
.h10{height:18.360000px;}
.h14{height:21.060000px;}
.h15{height:21.096000px;}
.h13{height:36.540000px;}
.h12{height:36.720000px;}
.he{height:38.376000px;}
.hb{height:54.900000px;}
.hf{height:57.060000px;}
.hd{height:57.780000px;}
.hc{height:57.960000px;}
.h6{height:59.439023px;}
.h8{height:61.189805px;}
.h9{height:63.759023px;}
.ha{height:65.509805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:62.280000px;}
.w19{width:75.456000px;}
.w18{width:75.600000px;}
.w9{width:84.960000px;}
.w3{width:87.660000px;}
.w11{width:96.120000px;}
.w16{width:96.156000px;}
.w17{width:96.300000px;}
.w1c{width:97.560000px;}
.w13{width:104.256000px;}
.wf{width:105.480000px;}
.wb{width:105.516000px;}
.w14{width:114.120000px;}
.we{width:124.056000px;}
.w15{width:126.936000px;}
.w4{width:128.196000px;}
.w6{width:137.016000px;}
.wd{width:138.996000px;}
.w1a{width:144.576000px;}
.w5{width:145.800000px;}
.wc{width:146.700000px;}
.w12{width:148.176000px;}
.w10{width:169.410000px;}
.wa{width:175.350000px;}
.w7{width:176.250000px;}
.w1e{width:184.710000px;}
.w8{width:231.510000px;}
.w1b{width:278.715000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:7.920000px;}
.x66{left:9.900000px;}
.x7e{left:11.160000px;}
.x4d{left:16.200000px;}
.x81{left:18.720000px;}
.x7c{left:21.060000px;}
.x4b{left:24.510000px;}
.x50{left:26.820000px;}
.x4a{left:28.260000px;}
.x69{left:30.780000px;}
.x46{left:31.860000px;}
.x80{left:33.660000px;}
.x3b{left:36.180000px;}
.x88{left:37.800000px;}
.x44{left:39.240000px;}
.x7d{left:40.860000px;}
.x8b{left:42.300000px;}
.x52{left:45.030000px;}
.x51{left:46.074000px;}
.x5f{left:47.925000px;}
.x4c{left:49.860000px;}
.x7f{left:52.920000px;}
.x6{left:53.999987px;}
.x49{left:55.620000px;}
.x13{left:57.419987px;}
.x15{left:59.399987px;}
.x23{left:61.559987px;}
.x4e{left:62.670000px;}
.xa{left:64.799987px;}
.x43{left:68.805000px;}
.x73{left:70.020000px;}
.x3c{left:72.000000px;}
.x61{left:74.205000px;}
.x76{left:75.420000px;}
.x3f{left:77.940000px;}
.x74{left:79.920000px;}
.xe{left:80.999987px;}
.x8a{left:82.125000px;}
.x89{left:83.205000px;}
.x58{left:84.419987px;}
.x16{left:86.399987px;}
.x48{left:90.585000px;}
.xb{left:91.799987px;}
.x6d{left:94.365000px;}
.x41{left:96.690000px;}
.x65{left:102.636000px;}
.x6e{left:105.525000px;}
.x3a{left:107.676000px;}
.x75{left:109.485000px;}
.x3d{left:111.645000px;}
.x6c{left:113.085000px;}
.x60{left:121.710000px;}
.x47{left:124.950000px;}
.x30{left:126.395987px;}
.x4f{left:144.585000px;}
.x5c{left:146.736000px;}
.x1e{left:148.535987px;}
.x6f{left:150.330000px;}
.x1b{left:163.649987px;}
.x5d{left:175.359000px;}
.x36{left:178.049987px;}
.x5{left:181.469987px;}
.x2f{left:184.529987px;}
.x9c{left:185.789987px;}
.x64{left:189.219000px;}
.x63{left:193.539000px;}
.x12{left:196.049987px;}
.x11{left:199.649987px;}
.x62{left:200.739000px;}
.x57{left:203.069987px;}
.x17{left:205.049987px;}
.x84{left:206.310000px;}
.x99{left:214.049987px;}
.x77{left:221.250000px;}
.x8e{left:224.489987px;}
.x2c{left:232.049987px;}
.xf{left:233.309987px;}
.x82{left:245.189987px;}
.x70{left:247.170000px;}
.x39{left:248.789987px;}
.x67{left:250.230000px;}
.x8f{left:253.649987px;}
.x90{left:269.129987px;}
.x56{left:284.474987px;}
.x3{left:286.814987px;}
.x37{left:298.514987px;}
.x2d{left:311.834987px;}
.xc{left:314.354987px;}
.x78{left:318.135000px;}
.x31{left:319.574987px;}
.x3e{left:324.975000px;}
.x2{left:350.714987px;}
.x29{left:358.094987px;}
.x33{left:375.914987px;}
.x5e{left:378.975000px;}
.x68{left:389.955000px;}
.x71{left:396.075000px;}
.x96{left:397.874987px;}
.x53{left:410.114987px;}
.x79{left:415.155000px;}
.x4{left:419.294987px;}
.x28{left:420.554987px;}
.x38{left:435.674987px;}
.x26{left:441.794987px;}
.x2b{left:456.914987px;}
.x9a{left:458.894987px;}
.x34{left:461.054987px;}
.x14{left:465.374987px;}
.x9{left:467.174987px;}
.x7{left:469.154987px;}
.x40{left:471.495000px;}
.x35{left:477.464987px;}
.x1{left:479.444987px;}
.x85{left:485.925000px;}
.x27{left:487.004987px;}
.x72{left:501.045000px;}
.x5a{left:506.084987px;}
.x91{left:507.344987px;}
.x8d{left:508.604987px;}
.x6a{left:514.905000px;}
.x9f{left:517.604987px;}
.x7a{left:520.125000px;}
.x92{left:527.144987px;}
.x55{left:535.244987px;}
.x9e{left:548.024987px;}
.x2a{left:551.264987px;}
.x18{left:552.524987px;}
.x54{left:556.124987px;}
.x94{left:570.704987px;}
.x86{left:584.205000px;}
.x9d{left:595.004987px;}
.x7b{left:596.445000px;}
.x8c{left:599.144987px;}
.x98{left:608.144987px;}
.x42{left:609.225000px;}
.x9b{left:613.544987px;}
.x5b{left:616.244987px;}
.x6b{left:621.105000px;}
.x19{left:636.764987px;}
.x59{left:639.824987px;}
.x1a{left:645.224987px;}
.x87{left:647.385000px;}
.xd{left:650.984987px;}
.x20{left:653.864987px;}
.x83{left:667.049987px;}
.x93{left:672.809987px;}
.x32{left:676.949987px;}
.x21{left:685.769987px;}
.x10{left:705.569987px;}
.x2e{left:724.649987px;}
.x25{left:739.589987px;}
.x8{left:749.489987px;}
.x1f{left:752.729987px;}
.x97{left:777.209987px;}
.x1c{left:781.889987px;}
.x1d{left:788.909987px;}
.x22{left:799.349987px;}
.x95{left:804.929987px;}
.x24{left:811.589987px;}
.xa1{left:830.309987px;}
.xa0{left:839.309987px;}
@media print{
.v1{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.840000pt;}
.ls2b{letter-spacing:-14.560000pt;}
.ls1b{letter-spacing:-13.280000pt;}
.ls29{letter-spacing:-12.640000pt;}
.ls12{letter-spacing:-11.360000pt;}
.ls38{letter-spacing:-9.440000pt;}
.lsb{letter-spacing:-0.917333pt;}
.lsf{letter-spacing:-0.515200pt;}
.lsa{letter-spacing:-0.412267pt;}
.ls27{letter-spacing:-0.368000pt;}
.ls26{letter-spacing:-0.290133pt;}
.ls2c{letter-spacing:-0.213867pt;}
.ls20{letter-spacing:-0.201600pt;}
.ls11{letter-spacing:-0.156267pt;}
.ls9{letter-spacing:-0.117867pt;}
.ls2a{letter-spacing:-0.095467pt;}
.ls31{letter-spacing:-0.069867pt;}
.ls10{letter-spacing:-0.059733pt;}
.ls19{letter-spacing:-0.051840pt;}
.ls2e{letter-spacing:-0.046720pt;}
.ls24{letter-spacing:-0.036480pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.021120pt;}
.ls8{letter-spacing:0.034560pt;}
.ls14{letter-spacing:0.053760pt;}
.lsd{letter-spacing:0.058667pt;}
.ls30{letter-spacing:0.066560pt;}
.ls2d{letter-spacing:0.120533pt;}
.ls21{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.lsc{letter-spacing:0.133333pt;}
.ls25{letter-spacing:0.154667pt;}
.ls15{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.239787pt;}
.lse{letter-spacing:0.256533pt;}
.ls1a{letter-spacing:0.272000pt;}
.ls2f{letter-spacing:0.274667pt;}
.ls13{letter-spacing:0.581333pt;}
.ls39{letter-spacing:0.586667pt;}
.ls37{letter-spacing:10.832640pt;}
.ls36{letter-spacing:11.573760pt;}
.ls32{letter-spacing:11.946240pt;}
.ls6{letter-spacing:12.003840pt;}
.ls4{letter-spacing:12.110507pt;}
.ls28{letter-spacing:12.131840pt;}
.ls18{letter-spacing:12.192427pt;}
.ls3{letter-spacing:12.213760pt;}
.ls1e{letter-spacing:12.218880pt;}
.ls2{letter-spacing:12.320427pt;}
.ls34{letter-spacing:14.624640pt;}
.ls22{letter-spacing:28.213760pt;}
.ls35{letter-spacing:37.712640pt;}
.ls33{letter-spacing:40.272640pt;}
.ls5{letter-spacing:56.912640pt;}
.ls23{letter-spacing:67.043840pt;}
.ls1d{letter-spacing:67.898880pt;}
.ls16{letter-spacing:67.994880pt;}
.ls1c{letter-spacing:108.858880pt;}
.ls17{letter-spacing:108.954880pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws4{word-spacing:-12.389547pt;}
.ws13{word-spacing:-12.279787pt;}
.ws9{word-spacing:-12.277120pt;}
.wsd{word-spacing:-12.129920pt;}
.wsa{word-spacing:-12.026240pt;}
.ws5{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.968640pt;}
.ws12{word-spacing:-11.958400pt;}
.ws8{word-spacing:-11.953280pt;}
.ws14{word-spacing:-11.935253pt;}
.wsf{word-spacing:-11.909653pt;}
.wsb{word-spacing:-11.803520pt;}
.ws10{word-spacing:-11.791253pt;}
.ws7{word-spacing:0.000000pt;}
.ws15{word-spacing:0.851200pt;}
.wsc{word-spacing:1.523200pt;}
.ws16{word-spacing:2.126720pt;}
.ws17{word-spacing:2.233387pt;}
.ws11{word-spacing:2.700160pt;}
._83{margin-left:-1391.473920pt;}
._ad{margin-left:-698.811520pt;}
._aa{margin-left:-694.209920pt;}
._a4{margin-left:-627.756160pt;}
._81{margin-left:-599.528960pt;}
._5a{margin-left:-582.506880pt;}
._92{margin-left:-558.605440pt;}
._a2{margin-left:-557.511680pt;}
._a6{margin-left:-524.004480pt;}
._94{margin-left:-498.302720pt;}
._85{margin-left:-490.513920pt;}
._8c{margin-left:-486.510080pt;}
._67{margin-left:-474.675840pt;}
._1d{margin-left:-473.705387pt;}
._1e{margin-left:-469.386240pt;}
._6f{margin-left:-459.916800pt;}
._5d{margin-left:-447.885440pt;}
._56{margin-left:-444.164480pt;}
._a7{margin-left:-438.005120pt;}
._1{margin-left:-433.669547pt;}
._69{margin-left:-431.683200pt;}
._71{margin-left:-427.713280pt;}
._a8{margin-left:-424.963840pt;}
._7a{margin-left:-422.360960pt;}
._64{margin-left:-412.634240pt;}
._6d{margin-left:-411.622400pt;}
._5e{margin-left:-404.347307pt;}
._57{margin-left:-400.735360pt;}
._75{margin-left:-393.466880pt;}
._54{margin-left:-391.232000pt;}
._4f{margin-left:-382.448000pt;}
._6{margin-left:-363.781547pt;}
._65{margin-left:-354.632960pt;}
._ac{margin-left:-346.060800pt;}
._95{margin-left:-341.246720pt;}
._7f{margin-left:-334.014080pt;}
._8d{margin-left:-331.578880pt;}
._a3{margin-left:-319.394560pt;}
._99{margin-left:-314.135680pt;}
._7d{margin-left:-311.597440pt;}
._79{margin-left:-295.557760pt;}
._7b{margin-left:-293.863680pt;}
._a9{margin-left:-292.781440pt;}
._5f{margin-left:-288.755840pt;}
._84{margin-left:-273.571840pt;}
._8{margin-left:-272.408107pt;}
._7e{margin-left:-269.951360pt;}
._93{margin-left:-266.772480pt;}
._8e{margin-left:-262.522880pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._72{margin-left:-253.661440pt;}
._a1{margin-left:-252.270720pt;}
._0{margin-left:-244.424960pt;}
._62{margin-left:-242.647680pt;}
._4d{margin-left:-241.062400pt;}
._9e{margin-left:-240.000000pt;}
._97{margin-left:-227.994880pt;}
._51{margin-left:-226.135680pt;}
._6e{margin-left:-223.532800pt;}
._ab{margin-left:-218.008320pt;}
._b{margin-left:-213.786880pt;}
._a5{margin-left:-212.643200pt;}
._86{margin-left:-205.418880pt;}
._4c{margin-left:-204.215040pt;}
._98{margin-left:-201.541120pt;}
._68{margin-left:-199.735040pt;}
._16{margin-left:-198.021333pt;}
._9b{margin-left:-196.072320pt;}
._96{margin-left:-193.360640pt;}
._89{margin-left:-190.864000pt;}
._21{margin-left:-184.478720pt;}
._4b{margin-left:-182.896000pt;}
._a0{margin-left:-181.514880pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._87{margin-left:-175.459200pt;}
._36{margin-left:-173.619200pt;}
._50{margin-left:-172.325120pt;}
._20{margin-left:-168.954880pt;}
._60{margin-left:-167.141760pt;}
._9f{margin-left:-165.791360pt;}
._5c{margin-left:-163.200000pt;}
._25{margin-left:-159.859200pt;}
._9c{margin-left:-154.051840pt;}
._80{margin-left:-152.965120pt;}
._e{margin-left:-152.048640pt;}
._8b{margin-left:-150.462187pt;}
._7c{margin-left:-148.134187pt;}
._d{margin-left:-146.952960pt;}
._4e{margin-left:-143.587200pt;}
._9d{margin-left:-140.453120pt;}
._88{margin-left:-137.956480pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.607467pt;}
._6a{margin-left:-134.410240pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.818560pt;}
._5b{margin-left:-123.615360pt;}
._61{margin-left:-122.179840pt;}
._40{margin-left:-121.062400pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._78{margin-left:-115.752320pt;}
._8a{margin-left:-112.033920pt;}
._6b{margin-left:-109.271680pt;}
._22{margin-left:-107.006720pt;}
._11{margin-left:-102.686720pt;}
._76{margin-left:-97.417600pt;}
._45{margin-left:-94.771200pt;}
._4a{margin-left:-93.489920pt;}
._8f{margin-left:-92.328960pt;}
._1c{margin-left:-91.137280pt;}
._23{margin-left:-85.006507pt;}
._7{margin-left:-80.999893pt;}
._3f{margin-left:-80.051200pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._ae{margin-left:-54.271787pt;}
._9a{margin-left:-49.547520pt;}
._44{margin-left:-47.845120pt;}
._82{margin-left:-46.823040pt;}
._14{margin-left:-43.665707pt;}
._39{margin-left:-42.085120pt;}
._47{margin-left:-38.245120pt;}
._58{margin-left:-33.374080pt;}
._55{margin-left:-30.191360pt;}
._19{margin-left:-28.026880pt;}
._31{margin-left:-26.191787pt;}
._42{margin-left:-25.212800pt;}
._32{margin-left:-24.005547pt;}
._af{margin-left:-20.794880pt;}
._48{margin-left:-12.645120pt;}
._3c{margin-left:-10.655147pt;}
._b0{margin-left:-3.548160pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:0.936320pt;}
._2c{width:2.019840pt;}
._2b{width:2.980480pt;}
._2a{width:3.921067pt;}
._2e{width:5.418240pt;}
._2d{width:6.321280pt;}
._2f{width:7.277440pt;}
._35{width:8.207360pt;}
._34{width:9.605760pt;}
._37{width:10.581760pt;}
._33{width:11.495893pt;}
._3a{width:12.395947pt;}
._3d{width:13.405867pt;}
._30{width:15.194453pt;}
._41{width:16.258347pt;}
._3b{width:18.047573pt;}
._49{width:22.942720pt;}
._74{width:24.922240pt;}
._3e{width:26.229760pt;}
._46{width:27.771947pt;}
._6c{width:30.012800pt;}
._38{width:31.450027pt;}
._77{width:38.140160pt;}
._43{width:39.100800pt;}
._28{width:43.004160pt;}
._27{width:44.084907pt;}
._53{width:46.001920pt;}
._59{width:47.489280pt;}
._63{width:51.898240pt;}
._70{width:53.451520pt;}
._73{width:78.352000pt;}
._90{width:104.593280pt;}
._91{width:105.974400pt;}
._66{width:113.039360pt;}
._52{width:132.959360pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:3.520000pt;}
.y86{bottom:4.160000pt;}
.y8c{bottom:4.480000pt;}
.y82{bottom:4.800000pt;}
.y77{bottom:4.960000pt;}
.ye5{bottom:5.920000pt;}
.yea{bottom:5.960000pt;}
.y7d{bottom:11.680000pt;}
.y84{bottom:12.360000pt;}
.y8a{bottom:12.640000pt;}
.y79{bottom:12.960000pt;}
.yc5{bottom:16.160000pt;}
.yc8{bottom:16.320000pt;}
.yed{bottom:18.720000pt;}
.yc6{bottom:19.680000pt;}
.y72{bottom:19.840000pt;}
.y85{bottom:20.520000pt;}
.y88{bottom:20.800000pt;}
.y7f{bottom:20.960000pt;}
.y75{bottom:21.120000pt;}
.y7c{bottom:28.000000pt;}
.y89{bottom:28.960000pt;}
.y80{bottom:29.120000pt;}
.y78{bottom:29.280000pt;}
.y71{bottom:36.000000pt;}
.y7b{bottom:36.160000pt;}
.y8b{bottom:37.120000pt;}
.y81{bottom:37.280000pt;}
.y76{bottom:37.440000pt;}
.y6{bottom:53.920000pt;}
.ye3{bottom:79.072000pt;}
.y34{bottom:82.752000pt;}
.y11a{bottom:82.912000pt;}
.y35{bottom:83.712000pt;}
.yb7{bottom:84.352000pt;}
.ye2{bottom:97.792000pt;}
.y119{bottom:98.432000pt;}
.y33{bottom:101.472000pt;}
.y114{bottom:102.432000pt;}
.yb6{bottom:103.072000pt;}
.y110{bottom:107.872000pt;}
.ye1{bottom:116.512000pt;}
.y32{bottom:120.192000pt;}
.yb5{bottom:121.792000pt;}
.y10f{bottom:126.592000pt;}
.ye0{bottom:135.226667pt;}
.y31{bottom:138.906667pt;}
.y61{bottom:139.866667pt;}
.yb3{bottom:140.506667pt;}
.yb4{bottom:141.466667pt;}
.y10e{bottom:145.306667pt;}
.ydf{bottom:153.946667pt;}
.y30{bottom:157.626667pt;}
.y6f{bottom:158.586667pt;}
.yb2{bottom:159.226667pt;}
.y10d{bottom:164.026667pt;}
.yde{bottom:172.666667pt;}
.y2f{bottom:176.346667pt;}
.yb1{bottom:177.946667pt;}
.y10c{bottom:182.746667pt;}
.ydd{bottom:191.386667pt;}
.y2e{bottom:195.066667pt;}
.y60{bottom:196.026667pt;}
.yb0{bottom:196.666667pt;}
.y10a{bottom:201.466667pt;}
.y10b{bottom:202.426667pt;}
.ydc{bottom:210.106667pt;}
.y2d{bottom:213.786667pt;}
.yae{bottom:215.386667pt;}
.yaf{bottom:216.346667pt;}
.y109{bottom:220.186667pt;}
.ydb{bottom:228.826667pt;}
.y2c{bottom:232.506667pt;}
.y5f{bottom:233.466667pt;}
.yac{bottom:234.106667pt;}
.yad{bottom:235.066667pt;}
.y108{bottom:238.906667pt;}
.yda{bottom:247.546667pt;}
.y2a{bottom:251.226667pt;}
.y2b{bottom:252.186667pt;}
.yaa{bottom:252.826667pt;}
.yab{bottom:253.786667pt;}
.y107{bottom:257.626667pt;}
.yd9{bottom:266.266667pt;}
.y29{bottom:269.946667pt;}
.y5e{bottom:270.906667pt;}
.ya9{bottom:271.546667pt;}
.y106{bottom:276.346667pt;}
.yd8{bottom:284.986667pt;}
.y28{bottom:288.666667pt;}
.ya7{bottom:290.266667pt;}
.ya8{bottom:291.226667pt;}
.y105{bottom:295.106667pt;}
.yd7{bottom:303.746667pt;}
.y27{bottom:307.426667pt;}
.y5d{bottom:308.386667pt;}
.ya5{bottom:309.026667pt;}
.ya6{bottom:309.986667pt;}
.y104{bottom:313.826667pt;}
.yd6{bottom:317.186667pt;}
.y26{bottom:326.146667pt;}
.y6b{bottom:327.106667pt;}
.ya3{bottom:327.746667pt;}
.ya4{bottom:328.706667pt;}
.y103{bottom:332.546667pt;}
.yd5{bottom:334.146667pt;}
.y25{bottom:344.866667pt;}
.y5c{bottom:345.826667pt;}
.ya2{bottom:346.466667pt;}
.yd4{bottom:351.106667pt;}
.y102{bottom:351.266667pt;}
.y24{bottom:363.586667pt;}
.y5b{bottom:364.546667pt;}
.ya1{bottom:365.026667pt;}
.yd3{bottom:367.906667pt;}
.y101{bottom:369.986667pt;}
.y23{bottom:382.306667pt;}
.y5a{bottom:383.266667pt;}
.y100{bottom:383.426667pt;}
.ya0{bottom:383.746667pt;}
.yd2{bottom:384.866667pt;}
.yff{bottom:400.386667pt;}
.y22{bottom:401.026667pt;}
.yd1{bottom:401.826667pt;}
.y59{bottom:401.986667pt;}
.y9f{bottom:402.466667pt;}
.yfe{bottom:417.346667pt;}
.y21{bottom:419.746667pt;}
.y6a{bottom:420.706667pt;}
.y9e{bottom:421.186667pt;}
.yd0{bottom:424.706667pt;}
.y20{bottom:438.466667pt;}
.y58{bottom:439.426667pt;}
.y9d{bottom:439.906667pt;}
.ycf{bottom:443.426667pt;}
.yfd{bottom:450.466667pt;}
.y1f{bottom:457.186667pt;}
.y9c{bottom:458.626667pt;}
.yce{bottom:462.146667pt;}
.y1e{bottom:475.906667pt;}
.y69{bottom:476.866667pt;}
.y9a{bottom:477.346667pt;}
.y9b{bottom:478.306667pt;}
.ycd{bottom:480.866667pt;}
.yfc{bottom:483.746667pt;}
.y1d{bottom:494.626667pt;}
.y99{bottom:496.066667pt;}
.ycc{bottom:499.586667pt;}
.yfb{bottom:506.626667pt;}
.y57{bottom:513.346667pt;}
.y68{bottom:514.306667pt;}
.y98{bottom:514.786667pt;}
.y1b{bottom:515.426667pt;}
.y1c{bottom:516.386667pt;}
.ycb{bottom:518.306667pt;}
.yfa{bottom:525.346667pt;}
.y56{bottom:532.093333pt;}
.y113{bottom:533.053333pt;}
.y96{bottom:533.533333pt;}
.y97{bottom:534.493333pt;}
.yca{bottom:537.053333pt;}
.y19{bottom:542.013333pt;}
.y1a{bottom:542.973333pt;}
.yf9{bottom:544.093333pt;}
.y55{bottom:550.813333pt;}
.y95{bottom:552.253333pt;}
.yc9{bottom:555.773333pt;}
.y18{bottom:560.733333pt;}
.yf8{bottom:562.813333pt;}
.yc7{bottom:569.213333pt;}
.y54{bottom:569.533333pt;}
.y67{bottom:570.493333pt;}
.y94{bottom:570.973333pt;}
.y17{bottom:579.453333pt;}
.yf7{bottom:581.533333pt;}
.y53{bottom:588.253333pt;}
.y66{bottom:589.213333pt;}
.y93{bottom:589.693333pt;}
.y16{bottom:598.173333pt;}
.yf6{bottom:600.253333pt;}
.yc4{bottom:602.493333pt;}
.y52{bottom:606.973333pt;}
.y92{bottom:608.413333pt;}
.y15{bottom:616.893333pt;}
.yf4{bottom:618.973333pt;}
.yf5{bottom:619.933333pt;}
.y50{bottom:625.693333pt;}
.y51{bottom:626.653333pt;}
.y91{bottom:627.133333pt;}
.y14{bottom:635.613333pt;}
.yf3{bottom:637.693333pt;}
.y4f{bottom:644.413333pt;}
.y8f{bottom:645.853333pt;}
.y90{bottom:646.813333pt;}
.y13{bottom:654.333333pt;}
.yf2{bottom:656.413333pt;}
.y4e{bottom:663.133333pt;}
.y112{bottom:664.093333pt;}
.y8e{bottom:664.573333pt;}
.yc3{bottom:668.893333pt;}
.y12{bottom:673.053333pt;}
.yf1{bottom:675.133333pt;}
.y4d{bottom:681.693333pt;}
.y65{bottom:682.653333pt;}
.y8d{bottom:691.293333pt;}
.y11{bottom:691.773333pt;}
.yef{bottom:693.853333pt;}
.yf0{bottom:694.813333pt;}
.y4c{bottom:700.413333pt;}
.y87{bottom:704.733333pt;}
.yee{bottom:707.293333pt;}
.y10{bottom:710.493333pt;}
.y4b{bottom:719.133333pt;}
.yec{bottom:726.653333pt;}
.yf{bottom:729.213333pt;}
.y49{bottom:737.853333pt;}
.y4a{bottom:738.813333pt;}
.yeb{bottom:746.013333pt;}
.ye{bottom:747.933333pt;}
.y83{bottom:756.253333pt;}
.y48{bottom:756.573333pt;}
.ye9{bottom:765.373333pt;}
.yd{bottom:766.693333pt;}
.y47{bottom:775.333333pt;}
.y6e{bottom:776.293333pt;}
.ye8{bottom:784.933333pt;}
.yc2{bottom:785.413333pt;}
.yc{bottom:787.333333pt;}
.y7e{bottom:791.013333pt;}
.y46{bottom:794.053333pt;}
.y118{bottom:795.013333pt;}
.yc1{bottom:804.133333pt;}
.ye7{bottom:804.293333pt;}
.yb{bottom:806.053333pt;}
.y45{bottom:812.773333pt;}
.y6d{bottom:813.733333pt;}
.yc0{bottom:822.853333pt;}
.ye6{bottom:823.653333pt;}
.ya{bottom:825.573333pt;}
.y44{bottom:831.493333pt;}
.y111{bottom:832.453333pt;}
.ybf{bottom:841.573333pt;}
.y7a{bottom:843.013333pt;}
.y9{bottom:845.413333pt;}
.y43{bottom:850.213333pt;}
.y117{bottom:851.173333pt;}
.ybe{bottom:860.293333pt;}
.ye4{bottom:862.373333pt;}
.y8{bottom:867.813333pt;}
.y42{bottom:868.933333pt;}
.y116{bottom:869.893333pt;}
.ybd{bottom:873.733333pt;}
.y41{bottom:887.653333pt;}
.y64{bottom:888.613333pt;}
.ybc{bottom:890.693333pt;}
.y74{bottom:892.453333pt;}
.y7{bottom:897.733333pt;}
.y40{bottom:906.373333pt;}
.ybb{bottom:907.653333pt;}
.yba{bottom:924.613333pt;}
.y3f{bottom:925.093333pt;}
.y115{bottom:926.053333pt;}
.y5{bottom:933.413333pt;}
.yb9{bottom:941.413333pt;}
.y3e{bottom:943.813333pt;}
.y70{bottom:944.613333pt;}
.y63{bottom:944.773333pt;}
.yb8{bottom:958.373333pt;}
.y4{bottom:962.053333pt;}
.y3d{bottom:962.533333pt;}
.y6c{bottom:963.493333pt;}
.y3b{bottom:981.253333pt;}
.y3c{bottom:982.213333pt;}
.y3{bottom:990.693333pt;}
.y3a{bottom:999.973333pt;}
.y62{bottom:1000.933333pt;}
.y38{bottom:1018.720000pt;}
.y2{bottom:1019.200000pt;}
.y39{bottom:1019.680000pt;}
.y37{bottom:1043.520000pt;}
.y1{bottom:1049.440000pt;}
.y36{bottom:1061.440000pt;}
.h11{height:16.160000pt;}
.h10{height:16.320000pt;}
.h14{height:18.720000pt;}
.h15{height:18.752000pt;}
.h13{height:32.480000pt;}
.h12{height:32.640000pt;}
.he{height:34.112000pt;}
.hb{height:48.800000pt;}
.hf{height:50.720000pt;}
.hd{height:51.360000pt;}
.hc{height:51.520000pt;}
.h6{height:52.834688pt;}
.h8{height:54.390938pt;}
.h9{height:56.674688pt;}
.ha{height:58.230938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:55.360000pt;}
.w19{width:67.072000pt;}
.w18{width:67.200000pt;}
.w9{width:75.520000pt;}
.w3{width:77.920000pt;}
.w11{width:85.440000pt;}
.w16{width:85.472000pt;}
.w17{width:85.600000pt;}
.w1c{width:86.720000pt;}
.w13{width:92.672000pt;}
.wf{width:93.760000pt;}
.wb{width:93.792000pt;}
.w14{width:101.440000pt;}
.we{width:110.272000pt;}
.w15{width:112.832000pt;}
.w4{width:113.952000pt;}
.w6{width:121.792000pt;}
.wd{width:123.552000pt;}
.w1a{width:128.512000pt;}
.w5{width:129.600000pt;}
.wc{width:130.400000pt;}
.w12{width:131.712000pt;}
.w10{width:150.586667pt;}
.wa{width:155.866667pt;}
.w7{width:156.666667pt;}
.w1e{width:164.186667pt;}
.w8{width:205.786667pt;}
.w1b{width:247.746667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:7.040000pt;}
.x66{left:8.800000pt;}
.x7e{left:9.920000pt;}
.x4d{left:14.400000pt;}
.x81{left:16.640000pt;}
.x7c{left:18.720000pt;}
.x4b{left:21.786667pt;}
.x50{left:23.840000pt;}
.x4a{left:25.120000pt;}
.x69{left:27.360000pt;}
.x46{left:28.320000pt;}
.x80{left:29.920000pt;}
.x3b{left:32.160000pt;}
.x88{left:33.600000pt;}
.x44{left:34.880000pt;}
.x7d{left:36.320000pt;}
.x8b{left:37.600000pt;}
.x52{left:40.026667pt;}
.x51{left:40.954667pt;}
.x5f{left:42.600000pt;}
.x4c{left:44.320000pt;}
.x7f{left:47.040000pt;}
.x6{left:47.999988pt;}
.x49{left:49.440000pt;}
.x13{left:51.039988pt;}
.x15{left:52.799988pt;}
.x23{left:54.719988pt;}
.x4e{left:55.706667pt;}
.xa{left:57.599988pt;}
.x43{left:61.160000pt;}
.x73{left:62.240000pt;}
.x3c{left:64.000000pt;}
.x61{left:65.960000pt;}
.x76{left:67.040000pt;}
.x3f{left:69.280000pt;}
.x74{left:71.040000pt;}
.xe{left:71.999988pt;}
.x8a{left:73.000000pt;}
.x89{left:73.960000pt;}
.x58{left:75.039988pt;}
.x16{left:76.799988pt;}
.x48{left:80.520000pt;}
.xb{left:81.599988pt;}
.x6d{left:83.880000pt;}
.x41{left:85.946667pt;}
.x65{left:91.232000pt;}
.x6e{left:93.800000pt;}
.x3a{left:95.712000pt;}
.x75{left:97.320000pt;}
.x3d{left:99.240000pt;}
.x6c{left:100.520000pt;}
.x60{left:108.186667pt;}
.x47{left:111.066667pt;}
.x30{left:112.351988pt;}
.x4f{left:128.520000pt;}
.x5c{left:130.432000pt;}
.x1e{left:132.031988pt;}
.x6f{left:133.626667pt;}
.x1b{left:145.466655pt;}
.x5d{left:155.874667pt;}
.x36{left:158.266655pt;}
.x5{left:161.306655pt;}
.x2f{left:164.026655pt;}
.x9c{left:165.146655pt;}
.x64{left:168.194667pt;}
.x63{left:172.034667pt;}
.x12{left:174.266655pt;}
.x11{left:177.466655pt;}
.x62{left:178.434667pt;}
.x57{left:180.506655pt;}
.x17{left:182.266655pt;}
.x84{left:183.386667pt;}
.x99{left:190.266655pt;}
.x77{left:196.666667pt;}
.x8e{left:199.546655pt;}
.x2c{left:206.266655pt;}
.xf{left:207.386655pt;}
.x82{left:217.946655pt;}
.x70{left:219.706667pt;}
.x39{left:221.146655pt;}
.x67{left:222.426667pt;}
.x8f{left:225.466655pt;}
.x90{left:239.226655pt;}
.x56{left:252.866655pt;}
.x3{left:254.946655pt;}
.x37{left:265.346655pt;}
.x2d{left:277.186655pt;}
.xc{left:279.426655pt;}
.x78{left:282.786667pt;}
.x31{left:284.066655pt;}
.x3e{left:288.866667pt;}
.x2{left:311.746655pt;}
.x29{left:318.306655pt;}
.x33{left:334.146655pt;}
.x5e{left:336.866667pt;}
.x68{left:346.626667pt;}
.x71{left:352.066667pt;}
.x96{left:353.666655pt;}
.x53{left:364.546655pt;}
.x79{left:369.026667pt;}
.x4{left:372.706655pt;}
.x28{left:373.826655pt;}
.x38{left:387.266655pt;}
.x26{left:392.706655pt;}
.x2b{left:406.146655pt;}
.x9a{left:407.906655pt;}
.x34{left:409.826655pt;}
.x14{left:413.666655pt;}
.x9{left:415.266655pt;}
.x7{left:417.026655pt;}
.x40{left:419.106667pt;}
.x35{left:424.413322pt;}
.x1{left:426.173322pt;}
.x85{left:431.933333pt;}
.x27{left:432.893322pt;}
.x72{left:445.373333pt;}
.x5a{left:449.853322pt;}
.x91{left:450.973322pt;}
.x8d{left:452.093322pt;}
.x6a{left:457.693333pt;}
.x9f{left:460.093322pt;}
.x7a{left:462.333333pt;}
.x92{left:468.573322pt;}
.x55{left:475.773322pt;}
.x9e{left:487.133322pt;}
.x2a{left:490.013322pt;}
.x18{left:491.133322pt;}
.x54{left:494.333322pt;}
.x94{left:507.293322pt;}
.x86{left:519.293333pt;}
.x9d{left:528.893322pt;}
.x7b{left:530.173333pt;}
.x8c{left:532.573322pt;}
.x98{left:540.573322pt;}
.x42{left:541.533333pt;}
.x9b{left:545.373322pt;}
.x5b{left:547.773322pt;}
.x6b{left:552.093333pt;}
.x19{left:566.013322pt;}
.x59{left:568.733322pt;}
.x1a{left:573.533322pt;}
.x87{left:575.453333pt;}
.xd{left:578.653322pt;}
.x20{left:581.213322pt;}
.x83{left:592.933322pt;}
.x93{left:598.053322pt;}
.x32{left:601.733322pt;}
.x21{left:609.573322pt;}
.x10{left:627.173322pt;}
.x2e{left:644.133322pt;}
.x25{left:657.413322pt;}
.x8{left:666.213322pt;}
.x1f{left:669.093322pt;}
.x97{left:690.853322pt;}
.x1c{left:695.013322pt;}
.x1d{left:701.253322pt;}
.x22{left:710.533322pt;}
.x95{left:715.493322pt;}
.x24{left:721.413322pt;}
.xa1{left:738.053322pt;}
.xa0{left:746.053322pt;}
}




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