
    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_79c11a6ddcaa886f48a50cd4.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_59f902ef3fc42279bf0da919.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_364fa2e52962adc43a7dba23.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_76a8d709d4f1b8efb90e3dda.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_5cde5241260c44ef3bb0e627.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_87742a49c761cf0665a8abcf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_14ac99caa5574e36245e85d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_95fef28ea4ab384b6bd2905c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_43fb0edb355b42f5beabaa3c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_55ac36e068b15ed45b4d5111.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.771484;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_1806389e9a9f0c1d52e08cbc.woff2')format("woff");}.ffd{font-family:ffd;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;}
.mb{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254800,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255325,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.545450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545450,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.547300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547300,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls23{letter-spacing:-2.196000px;}
.ls24{letter-spacing:-1.800000px;}
.ls2c{letter-spacing:-1.458000px;}
.ls1a{letter-spacing:-0.690000px;}
.ls37{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.341400px;}
.ls1c{letter-spacing:-0.317400px;}
.ls43{letter-spacing:-0.310800px;}
.ls39{letter-spacing:-0.259800px;}
.ls41{letter-spacing:-0.248400px;}
.ls35{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.180000px;}
.ls42{letter-spacing:-0.109200px;}
.ls33{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.005456px;}
.ls1f{letter-spacing:0.007320px;}
.ls16{letter-spacing:0.028080px;}
.ls17{letter-spacing:0.037440px;}
.ls2e{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.061800px;}
.ls22{letter-spacing:0.069600px;}
.ls28{letter-spacing:0.124200px;}
.ls18{letter-spacing:0.143572px;}
.ls36{letter-spacing:0.153600px;}
.ls3c{letter-spacing:0.172800px;}
.ls1d{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.181440px;}
.ls31{letter-spacing:0.206640px;}
.ls21{letter-spacing:0.223785px;}
.ls1{letter-spacing:0.252720px;}
.ls2a{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.261911px;}
.ls46{letter-spacing:0.262841px;}
.ls40{letter-spacing:0.263400px;}
.ls26{letter-spacing:0.273000px;}
.ls3d{letter-spacing:0.284400px;}
.ls2b{letter-spacing:0.298800px;}
.ls34{letter-spacing:0.306600px;}
.ls8{letter-spacing:0.341400px;}
.ls1b{letter-spacing:0.345600px;}
.ls44{letter-spacing:0.346132px;}
.lsa{letter-spacing:0.350400px;}
.ls6{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.378600px;}
.ls3f{letter-spacing:0.379800px;}
.ls3e{letter-spacing:0.407400px;}
.ls2f{letter-spacing:0.478839px;}
.ls45{letter-spacing:0.480013px;}
.ls47{letter-spacing:0.485280px;}
.ls3{letter-spacing:0.504000px;}
.ls2d{letter-spacing:0.642000px;}
.ls30{letter-spacing:0.645896px;}
.ls1e{letter-spacing:0.696000px;}
.ls3b{letter-spacing:0.696037px;}
.ls32{letter-spacing:0.876000px;}
.ls25{letter-spacing:0.936000px;}
.ls27{letter-spacing:1.008000px;}
.ls13{letter-spacing:8.460000px;}
.ls4{letter-spacing:12.780000px;}
.ls12{letter-spacing:13.500000px;}
.ls11{letter-spacing:16.380000px;}
.lsb{letter-spacing:35.100000px;}
.ls14{letter-spacing:37.260000px;}
.ls48{letter-spacing:41.381280px;}
.lse{letter-spacing:41.580000px;}
.ls15{letter-spacing:93.420000px;}
.ls10{letter-spacing:104.940000px;}
.lsf{letter-spacing:149.724000px;}
.ls0{letter-spacing:303.060000px;}
.lsd{letter-spacing:1209.720000px;}
.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;}
}
.ws0{word-spacing:-24.300000px;}
.ws13{word-spacing:-22.068000px;}
.ws11{word-spacing:-21.996000px;}
.ws1a{word-spacing:-21.936000px;}
.wsb{word-spacing:-21.756000px;}
.ws17{word-spacing:-21.702000px;}
.ws23{word-spacing:-21.467400px;}
.ws24{word-spacing:-21.439800px;}
.ws15{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.410400px;}
.ws9{word-spacing:-21.405600px;}
.ws2a{word-spacing:-21.401400px;}
.ws22{word-spacing:-21.344400px;}
.ws12{word-spacing:-21.333000px;}
.ws25{word-spacing:-21.323400px;}
.ws3{word-spacing:-21.312720px;}
.ws14{word-spacing:-21.184200px;}
.wse{word-spacing:-21.129600px;}
.wsd{word-spacing:-21.121800px;}
.ws8{word-spacing:-21.097440px;}
.wsc{word-spacing:-21.067320px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws27{word-spacing:-20.950800px;}
.ws26{word-spacing:-20.811600px;}
.ws28{word-spacing:-20.749200px;}
.wsa{word-spacing:-20.742600px;}
.ws29{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.700000px;}
.ws16{word-spacing:-19.602000px;}
.ws10{word-spacing:-19.260000px;}
.wsf{word-spacing:-18.864000px;}
.ws1e{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.246600px;}
.ws1f{word-spacing:-15.093600px;}
.ws19{word-spacing:-14.993280px;}
.ws18{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.833200px;}
.ws1d{word-spacing:-14.733600px;}
.ws21{word-spacing:-14.680200px;}
.ws20{word-spacing:-14.580000px;}
.ws7{word-spacing:0.000000px;}
._30{margin-left:-7.801200px;}
._2b{margin-left:-5.954640px;}
._e{margin-left:-4.858560px;}
._7{margin-left:-3.639360px;}
._6{margin-left:-2.560320px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._2a{width:2.227855px;}
._2{width:3.334582px;}
._2f{width:4.335600px;}
._c{width:5.363760px;}
._b{width:6.634320px;}
._5{width:7.770720px;}
._4{width:9.077280px;}
._2c{width:10.114320px;}
._10{width:11.269200px;}
._f{width:12.720240px;}
._16{width:14.005200px;}
._18{width:15.501840px;}
._13{width:16.511040px;}
._24{width:17.551200px;}
._14{width:19.038480px;}
._52{width:20.049120px;}
._3f{width:21.394080px;}
._15{width:22.407840px;}
._a{width:24.161040px;}
._9{width:25.222080px;}
._20{width:26.704080px;}
._21{width:27.716640px;}
._8{width:28.725840px;}
._19{width:29.726640px;}
._1a{width:30.856080px;}
._4f{width:31.871520px;}
._1b{width:33.022080px;}
._17{width:34.875360px;}
._27{width:36.728640px;}
._28{width:38.308560px;}
._31{width:39.906539px;}
._1c{width:41.347920px;}
._1d{width:42.443520px;}
._25{width:43.973280px;}
._5b{width:45.054480px;}
._26{width:46.058640px;}
._1e{width:47.932560px;}
._1f{width:49.344000px;}
._11{width:50.628240px;}
._12{width:51.816720px;}
._53{width:53.660880px;}
._d{width:55.008720px;}
._2d{width:56.037600px;}
._51{width:58.210800px;}
._4a{width:60.173760px;}
._56{width:61.851600px;}
._2e{width:63.432720px;}
._32{width:65.028596px;}
._5a{width:67.230000px;}
._22{width:70.677360px;}
._37{width:72.783120px;}
._3e{width:74.102400px;}
._3d{width:80.018640px;}
._34{width:86.241120px;}
._33{width:87.790560px;}
._5c{width:89.396400px;}
._29{width:92.881200px;}
._35{width:94.420800px;}
._3{width:95.612400px;}
._4b{width:103.205520px;}
._23{width:105.047280px;}
._55{width:112.587840px;}
._61{width:120.053280px;}
._38{width:123.105600px;}
._60{width:124.659360px;}
._45{width:126.540000px;}
._42{width:130.635360px;}
._4d{width:134.754240px;}
._4c{width:138.344400px;}
._4e{width:140.436000px;}
._43{width:142.068960px;}
._5e{width:146.526960px;}
._48{width:147.961200px;}
._39{width:149.993040px;}
._3b{width:160.694640px;}
._46{width:161.889840px;}
._40{width:168.642720px;}
._41{width:170.012640px;}
._49{width:177.128640px;}
._3a{width:184.479120px;}
._36{width:187.347600px;}
._5d{width:202.581840px;}
._54{width:207.666000px;}
._5f{width:217.526400px;}
._3c{width:223.442640px;}
._44{width:244.772400px;}
._47{width:251.171280px;}
._57{width:254.219040px;}
._58{width:258.462000px;}
._59{width:263.131680px;}
._50{width:271.908000px;}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.yc2{bottom:5.760000px;}
.ybe{bottom:5.940000px;}
.y9{bottom:7.380000px;}
.y4{bottom:16.020000px;}
.yc{bottom:16.380000px;}
.y2{bottom:24.660000px;}
.yd2{bottom:25.554000px;}
.yc1{bottom:25.560000px;}
.yf3{bottom:25.605000px;}
.yed{bottom:25.734000px;}
.ybd{bottom:25.740000px;}
.y113{bottom:25.770000px;}
.yd1{bottom:45.354000px;}
.yc0{bottom:45.360000px;}
.yc6{bottom:45.390000px;}
.yec{bottom:45.534000px;}
.yc8{bottom:45.540000px;}
.y112{bottom:45.570000px;}
.y119{bottom:45.585000px;}
.yb{bottom:52.560000px;}
.yf6{bottom:59.580000px;}
.yd0{bottom:65.154000px;}
.ycb{bottom:65.340000px;}
.yc5{bottom:65.370000px;}
.ycc{bottom:65.385000px;}
.y8{bottom:80.856000px;}
.ycf{bottom:84.954000px;}
.ye8{bottom:85.140000px;}
.y121{bottom:122.976000px;}
.yeb{bottom:126.756000px;}
.yce{bottom:127.296000px;}
.y31{bottom:127.836000px;}
.y120{bottom:129.816000px;}
.y77{bottom:133.956000px;}
.y96{bottom:136.476000px;}
.y10c{bottom:136.836000px;}
.ybb{bottom:141.876000px;}
.yaa{bottom:146.376000px;}
.y56{bottom:148.356000px;}
.y88{bottom:150.870000px;}
.y30{bottom:151.950000px;}
.y11f{bottom:157.530000px;}
.y76{bottom:161.670000px;}
.y95{bottom:164.370000px;}
.y10b{bottom:164.550000px;}
.yba{bottom:169.590000px;}
.ya9{bottom:174.090000px;}
.y55{bottom:176.070000px;}
.y87{bottom:178.590000px;}
.y2f{bottom:179.850000px;}
.y136{bottom:182.190000px;}
.y11e{bottom:185.250000px;}
.yea{bottom:187.050000px;}
.y75{bottom:189.390000px;}
.y94{bottom:192.090000px;}
.y10a{bottom:192.450000px;}
.yb9{bottom:197.310000px;}
.ya8{bottom:201.810000px;}
.y54{bottom:203.970000px;}
.y86{bottom:206.310000px;}
.y2e{bottom:207.570000px;}
.y135{bottom:209.910000px;}
.y11d{bottom:213.150000px;}
.y74{bottom:217.110000px;}
.y93{bottom:219.810000px;}
.y109{bottom:220.170000px;}
.yb8{bottom:225.030000px;}
.ycd{bottom:227.190000px;}
.ya7{bottom:229.530000px;}
.y53{bottom:231.690000px;}
.y85{bottom:234.030000px;}
.y2d{bottom:235.290000px;}
.y134{bottom:237.630000px;}
.y11c{bottom:240.870000px;}
.y73{bottom:245.010000px;}
.y92{bottom:247.710000px;}
.y108{bottom:247.890000px;}
.yb7{bottom:252.930000px;}
.ya6{bottom:257.430000px;}
.y52{bottom:259.410000px;}
.y84{bottom:261.930000px;}
.y2c{bottom:263.010000px;}
.y133{bottom:265.530000px;}
.ye9{bottom:267.150000px;}
.y11b{bottom:268.590000px;}
.y72{bottom:272.730000px;}
.y91{bottom:275.430000px;}
.y107{bottom:275.790000px;}
.yb6{bottom:280.650000px;}
.ya5{bottom:285.150000px;}
.y51{bottom:287.310000px;}
.y11a{bottom:288.930000px;}
.y83{bottom:289.650000px;}
.y2b{bottom:290.910000px;}
.y132{bottom:293.250000px;}
.y71{bottom:300.450000px;}
.y90{bottom:303.150000px;}
.y106{bottom:303.510000px;}
.yb5{bottom:308.370000px;}
.ya4{bottom:312.870000px;}
.y50{bottom:315.030000px;}
.y82{bottom:317.370000px;}
.y2a{bottom:318.630000px;}
.y131{bottom:320.970000px;}
.y70{bottom:328.350000px;}
.y118{bottom:329.430000px;}
.y8f{bottom:330.870000px;}
.y105{bottom:331.230000px;}
.ya3{bottom:340.635000px;}
.y4f{bottom:342.795000px;}
.y81{bottom:345.135000px;}
.y29{bottom:346.395000px;}
.ye7{bottom:347.295000px;}
.y130{bottom:348.915000px;}
.y6f{bottom:356.115000px;}
.y8e{bottom:358.815000px;}
.y104{bottom:358.995000px;}
.yca{bottom:367.455000px;}
.ya2{bottom:368.535000px;}
.y4e{bottom:370.515000px;}
.y80{bottom:373.035000px;}
.y28{bottom:374.115000px;}
.y12f{bottom:376.635000px;}
.y6e{bottom:383.835000px;}
.y8d{bottom:386.535000px;}
.y103{bottom:386.895000px;}
.y117{bottom:389.775000px;}
.y4d{bottom:394.635000px;}
.ya1{bottom:396.255000px;}
.y7f{bottom:400.755000px;}
.y27{bottom:402.015000px;}
.y12e{bottom:404.355000px;}
.y6d{bottom:411.555000px;}
.y8c{bottom:414.255000px;}
.y102{bottom:414.615000px;}
.y4c{bottom:422.535000px;}
.ya0{bottom:423.975000px;}
.y7e{bottom:428.475000px;}
.y26{bottom:429.735000px;}
.y116{bottom:430.095000px;}
.y12d{bottom:432.075000px;}
.y6c{bottom:439.455000px;}
.y8b{bottom:441.975000px;}
.y101{bottom:442.335000px;}
.y4b{bottom:446.655000px;}
.ye6{bottom:447.195000px;}
.yc9{bottom:447.555000px;}
.y9f{bottom:451.875000px;}
.y7d{bottom:456.375000px;}
.y25{bottom:457.455000px;}
.y12c{bottom:459.975000px;}
.y8a{bottom:465.375000px;}
.y6b{bottom:467.175000px;}
.y100{bottom:470.055000px;}
.y9e{bottom:479.595000px;}
.y7c{bottom:484.095000px;}
.y24{bottom:485.355000px;}
.y12b{bottom:487.695000px;}
.y115{bottom:490.395000px;}
.y4a{bottom:494.895000px;}
.yff{bottom:497.955000px;}
.y9d{bottom:507.315000px;}
.yc7{bottom:507.855000px;}
.y7b{bottom:511.815000px;}
.y23{bottom:513.075000px;}
.y12a{bottom:515.415000px;}
.ye5{bottom:515.595000px;}
.y49{bottom:519.015000px;}
.y6a{bottom:522.795000px;}
.yfe{bottom:525.675000px;}
.y114{bottom:530.895000px;}
.y9c{bottom:535.035000px;}
.y7a{bottom:539.535000px;}
.y22{bottom:540.795000px;}
.y48{bottom:543.315000px;}
.y69{bottom:550.515000px;}
.yfd{bottom:553.395000px;}
.ye4{bottom:555.375000px;}
.y9b{bottom:562.935000px;}
.y47{bottom:567.435000px;}
.yc4{bottom:568.155000px;}
.y21{bottom:568.515000px;}
.y129{bottom:571.035000px;}
.y68{bottom:574.635000px;}
.yfc{bottom:581.295000px;}
.ye3{bottom:583.095000px;}
.y9a{bottom:590.655000px;}
.y111{bottom:591.015000px;}
.y46{bottom:591.555000px;}
.y79{bottom:595.155000px;}
.y20{bottom:596.415000px;}
.y128{bottom:598.755000px;}
.y67{bottom:602.355000px;}
.yfb{bottom:609.045000px;}
.ye2{bottom:611.025000px;}
.y45{bottom:615.705000px;}
.y99{bottom:618.405000px;}
.y78{bottom:622.905000px;}
.y1f{bottom:624.165000px;}
.y66{bottom:626.505000px;}
.yfa{bottom:636.765000px;}
.ye1{bottom:638.745000px;}
.y44{bottom:639.825000px;}
.y98{bottom:646.305000px;}
.yc3{bottom:648.285000px;}
.y65{bottom:650.805000px;}
.y110{bottom:651.345000px;}
.y1e{bottom:651.885000px;}
.y127{bottom:654.405000px;}
.y43{bottom:663.945000px;}
.yf9{bottom:664.485000px;}
.ye0{bottom:666.465000px;}
.y97{bottom:674.025000px;}
.y64{bottom:678.525000px;}
.y1d{bottom:679.785000px;}
.y126{bottom:682.125000px;}
.y42{bottom:688.065000px;}
.y10f{bottom:691.845000px;}
.yf8{bottom:692.385000px;}
.ydf{bottom:694.185000px;}
.yb4{bottom:701.745000px;}
.y63{bottom:706.245000px;}
.y1c{bottom:707.505000px;}
.ybf{bottom:708.585000px;}
.y125{bottom:709.845000px;}
.y41{bottom:712.365000px;}
.yf7{bottom:720.105000px;}
.yde{bottom:722.085000px;}
.yb3{bottom:729.465000px;}
.y62{bottom:733.965000px;}
.y1b{bottom:735.225000px;}
.y40{bottom:736.485000px;}
.y124{bottom:737.745000px;}
.yf5{bottom:740.445000px;}
.ydd{bottom:749.805000px;}
.y10e{bottom:751.965000px;}
.yb2{bottom:757.365000px;}
.y3f{bottom:760.605000px;}
.y61{bottom:761.865000px;}
.y1a{bottom:762.945000px;}
.y123{bottom:765.465000px;}
.ybc{bottom:768.705000px;}
.ydc{bottom:777.525000px;}
.y3e{bottom:784.725000px;}
.yb1{bottom:785.085000px;}
.y60{bottom:789.585000px;}
.y19{bottom:790.845000px;}
.y122{bottom:793.185000px;}
.yf4{bottom:800.745000px;}
.ydb{bottom:805.425000px;}
.y3d{bottom:808.845000px;}
.y10d{bottom:812.265000px;}
.yb0{bottom:812.805000px;}
.y5f{bottom:817.305000px;}
.y18{bottom:818.565000px;}
.y3c{bottom:832.965000px;}
.yda{bottom:833.145000px;}
.yaf{bottom:840.525000px;}
.y5e{bottom:845.025000px;}
.y17{bottom:846.285000px;}
.y3b{bottom:857.265000px;}
.yd9{bottom:860.865000px;}
.yf2{bottom:861.045000px;}
.yae{bottom:868.425000px;}
.y5d{bottom:872.970000px;}
.y16{bottom:874.050000px;}
.y3a{bottom:881.430000px;}
.yd8{bottom:888.630000px;}
.yad{bottom:896.190000px;}
.y15{bottom:898.350000px;}
.y5c{bottom:900.690000px;}
.yf1{bottom:901.410000px;}
.y39{bottom:905.550000px;}
.yd7{bottom:916.530000px;}
.y14{bottom:922.470000px;}
.yac{bottom:923.910000px;}
.y5b{bottom:928.410000px;}
.y38{bottom:929.670000px;}
.yd6{bottom:944.250000px;}
.y13{bottom:946.590000px;}
.yab{bottom:951.810000px;}
.y37{bottom:953.790000px;}
.y5a{bottom:956.310000px;}
.yf0{bottom:961.710000px;}
.y12{bottom:970.710000px;}
.yd5{bottom:971.970000px;}
.y36{bottom:977.910000px;}
.y59{bottom:984.030000px;}
.y11{bottom:994.830000px;}
.yd4{bottom:999.690000px;}
.y35{bottom:1002.210000px;}
.y58{bottom:1011.750000px;}
.y10{bottom:1018.950000px;}
.y34{bottom:1026.330000px;}
.yd3{bottom:1027.590000px;}
.y57{bottom:1039.470000px;}
.yef{bottom:1041.810000px;}
.y89{bottom:1050.450000px;}
.yf{bottom:1067.370000px;}
.y33{bottom:1074.570000px;}
.ye{bottom:1095.090000px;}
.y32{bottom:1098.690000px;}
.yee{bottom:1121.910000px;}
.yd{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h1e{height:19.836000px;}
.h7{height:27.540000px;}
.h23{height:39.600000px;}
.h1f{height:39.636000px;}
.h13{height:39.780000px;}
.h2{height:41.400000px;}
.h10{height:41.726953px;}
.h20{height:45.170156px;}
.h16{height:51.677227px;}
.h4{height:53.709961px;}
.h14{height:58.621992px;}
.h18{height:58.651172px;}
.he{height:58.819922px;}
.h17{height:59.400000px;}
.h1a{height:59.580000px;}
.h22{height:59.616000px;}
.h15{height:60.226875px;}
.h11{height:61.423863px;}
.h21{height:62.211094px;}
.h6{height:66.757500px;}
.hc{height:69.432187px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.h12{height:72.846211px;}
.h1b{height:79.380000px;}
.h19{height:79.416000px;}
.hd{height:82.635820px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.hf{height:86.585445px;}
.h9{height:96.508125px;}
.h1c{height:99.000000px;}
.h1d{height:99.180000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w7{width:98.136000px;}
.wc{width:115.200000px;}
.wb{width:117.216000px;}
.w15{width:118.296000px;}
.wa{width:121.176000px;}
.w8{width:121.716000px;}
.we{width:125.316000px;}
.w11{width:137.160000px;}
.w12{width:138.276000px;}
.wd{width:138.636000px;}
.w14{width:139.536000px;}
.w9{width:144.180000px;}
.w16{width:145.620000px;}
.wf{width:147.636000px;}
.w17{width:157.350000px;}
.w18{width:157.710000px;}
.w13{width:158.070000px;}
.w10{width:169.770000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x59{left:7.560000px;}
.x2{left:8.640000px;}
.x7{left:19.800000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x11{left:87.479987px;}
.x5c{left:117.035987px;}
.xb{left:124.955987px;}
.x66{left:126.395987px;}
.xf{left:127.475987px;}
.x5d{left:128.555987px;}
.x63{left:130.175987px;}
.x67{left:134.855987px;}
.x5e{left:136.115987px;}
.x24{left:138.995987px;}
.x64{left:141.695987px;}
.x14{left:143.135987px;}
.x53{left:146.555987px;}
.x18{left:148.535987px;}
.x4f{left:153.029987px;}
.x17{left:159.509987px;}
.x5f{left:165.989987px;}
.x15{left:167.789987px;}
.x10{left:171.929987px;}
.x69{left:174.989987px;}
.x54{left:176.249987px;}
.x50{left:177.689987px;}
.x39{left:182.909987px;}
.x48{left:184.710000px;}
.x6c{left:186.869987px;}
.x97{left:193.169987px;}
.x58{left:225.030000px;}
.x99{left:237.449987px;}
.x6a{left:238.709987px;}
.x72{left:244.290000px;}
.x26{left:249.329987px;}
.x8{left:252.929987px;}
.x16{left:258.329987px;}
.x94{left:268.049987px;}
.xa{left:269.849987px;}
.x85{left:273.449987px;}
.x38{left:280.514987px;}
.x93{left:282.134987px;}
.x34{left:283.934987px;}
.x2a{left:285.554987px;}
.xc{left:293.294987px;}
.x21{left:294.374987px;}
.x9a{left:295.994987px;}
.x2e{left:299.774987px;}
.x49{left:307.335000px;}
.x6b{left:309.494987px;}
.x6d{left:314.534987px;}
.x37{left:317.774987px;}
.x29{left:322.634987px;}
.x8f{left:327.854987px;}
.x28{left:333.974987px;}
.x32{left:335.234987px;}
.x3c{left:337.754987px;}
.x12{left:344.054987px;}
.x95{left:348.014987px;}
.x5a{left:351.075000px;}
.xe{left:352.874987px;}
.xd{left:354.494987px;}
.x41{left:363.494987px;}
.x68{left:364.574987px;}
.x13{left:378.434987px;}
.x73{left:384.555000px;}
.x46{left:386.714987px;}
.x1d{left:391.214987px;}
.x2c{left:399.134987px;}
.x89{left:401.474987px;}
.x83{left:403.274987px;}
.x1e{left:415.694987px;}
.x8d{left:423.794987px;}
.x98{left:425.054987px;}
.x84{left:427.934987px;}
.x3f{left:433.874987px;}
.x8a{left:440.174987px;}
.x9{left:446.474987px;}
.x8b{left:449.894987px;}
.x25{left:451.154987px;}
.x4a{left:452.235000px;}
.x78{left:456.374987px;}
.x7a{left:457.634987px;}
.x55{left:472.604987px;}
.x8e{left:478.544987px;}
.x81{left:485.744987px;}
.x4e{left:489.344987px;}
.x56{left:497.084987px;}
.x27{left:499.424987px;}
.x52{left:502.484987px;}
.x74{left:503.565000px;}
.x71{left:509.684987px;}
.x47{left:515.264987px;}
.x4c{left:517.064987px;}
.x35{left:525.704987px;}
.x96{left:527.144987px;}
.x86{left:528.944987px;}
.x7b{left:533.984987px;}
.x2b{left:551.084987px;}
.x87{left:553.604987px;}
.x1a{left:557.744987px;}
.x8c{left:564.044987px;}
.x88{left:566.924987px;}
.x45{left:571.064987px;}
.x4b{left:574.125000px;}
.x1b{left:582.404987px;}
.x1c{left:587.624987px;}
.x7c{left:591.044987px;}
.x79{left:593.564987px;}
.x44{left:594.824987px;}
.x2f{left:597.524987px;}
.x9b{left:608.864987px;}
.x3d{left:620.204987px;}
.x1f{left:621.464987px;}
.x51{left:622.904987px;}
.x31{left:629.744987px;}
.x80{left:632.624987px;}
.x90{left:636.404987px;}
.x20{left:646.124987px;}
.x75{left:649.905000px;}
.x60{left:652.244987px;}
.x30{left:659.849987px;}
.x91{left:661.109987px;}
.x6f{left:663.449987px;}
.x6e{left:665.249987px;}
.x5b{left:670.110000px;}
.x70{left:675.689987px;}
.x61{left:676.769987px;}
.x43{left:677.849987px;}
.x77{left:680.549987px;}
.x7f{left:684.689987px;}
.x62{left:687.749987px;}
.x82{left:690.449987px;}
.x7e{left:691.529987px;}
.x3a{left:692.609987px;}
.x92{left:698.189987px;}
.x7d{left:699.809987px;}
.x3b{left:701.609987px;}
.x76{left:702.869987px;}
.x42{left:709.889987px;}
.x33{left:716.909987px;}
.x4d{left:724.469987px;}
.x23{left:732.569987px;}
.x65{left:741.389987px;}
.x57{left:753.989987px;}
.x19{left:755.609987px;}
.x2d{left:762.089987px;}
.x36{left:769.469987px;}
.x3e{left:771.989987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
.x40{left:801.329987px;}
.x22{left:807.809987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-1.952000pt;}
.ls24{letter-spacing:-1.600000pt;}
.ls2c{letter-spacing:-1.296000pt;}
.ls1a{letter-spacing:-0.613333pt;}
.ls37{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.303467pt;}
.ls1c{letter-spacing:-0.282133pt;}
.ls43{letter-spacing:-0.276267pt;}
.ls39{letter-spacing:-0.230933pt;}
.ls41{letter-spacing:-0.220800pt;}
.ls35{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls42{letter-spacing:-0.097067pt;}
.ls33{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.004849pt;}
.ls1f{letter-spacing:0.006507pt;}
.ls16{letter-spacing:0.024960pt;}
.ls17{letter-spacing:0.033280pt;}
.ls2e{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.054933pt;}
.ls22{letter-spacing:0.061867pt;}
.ls28{letter-spacing:0.110400pt;}
.ls18{letter-spacing:0.127619pt;}
.ls36{letter-spacing:0.136533pt;}
.ls3c{letter-spacing:0.153600pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.161280pt;}
.ls31{letter-spacing:0.183680pt;}
.ls21{letter-spacing:0.198920pt;}
.ls1{letter-spacing:0.224640pt;}
.ls2a{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.232810pt;}
.ls46{letter-spacing:0.233636pt;}
.ls40{letter-spacing:0.234133pt;}
.ls26{letter-spacing:0.242667pt;}
.ls3d{letter-spacing:0.252800pt;}
.ls2b{letter-spacing:0.265600pt;}
.ls34{letter-spacing:0.272533pt;}
.ls8{letter-spacing:0.303467pt;}
.ls1b{letter-spacing:0.307200pt;}
.ls44{letter-spacing:0.307673pt;}
.lsa{letter-spacing:0.311467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.336533pt;}
.ls3f{letter-spacing:0.337600pt;}
.ls3e{letter-spacing:0.362133pt;}
.ls2f{letter-spacing:0.425635pt;}
.ls45{letter-spacing:0.426678pt;}
.ls47{letter-spacing:0.431360pt;}
.ls3{letter-spacing:0.448000pt;}
.ls2d{letter-spacing:0.570667pt;}
.ls30{letter-spacing:0.574130pt;}
.ls1e{letter-spacing:0.618667pt;}
.ls3b{letter-spacing:0.618699pt;}
.ls32{letter-spacing:0.778667pt;}
.ls25{letter-spacing:0.832000pt;}
.ls27{letter-spacing:0.896000pt;}
.ls13{letter-spacing:7.520000pt;}
.ls4{letter-spacing:11.360000pt;}
.ls12{letter-spacing:12.000000pt;}
.ls11{letter-spacing:14.560000pt;}
.lsb{letter-spacing:31.200000pt;}
.ls14{letter-spacing:33.120000pt;}
.ls48{letter-spacing:36.783360pt;}
.lse{letter-spacing:36.960000pt;}
.ls15{letter-spacing:83.040000pt;}
.ls10{letter-spacing:93.280000pt;}
.lsf{letter-spacing:133.088000pt;}
.ls0{letter-spacing:269.386667pt;}
.lsd{letter-spacing:1075.306667pt;}
.ws0{word-spacing:-21.600000pt;}
.ws13{word-spacing:-19.616000pt;}
.ws11{word-spacing:-19.552000pt;}
.ws1a{word-spacing:-19.498667pt;}
.wsb{word-spacing:-19.338667pt;}
.ws17{word-spacing:-19.290667pt;}
.ws23{word-spacing:-19.082133pt;}
.ws24{word-spacing:-19.057600pt;}
.ws15{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.031467pt;}
.ws9{word-spacing:-19.027200pt;}
.ws2a{word-spacing:-19.023467pt;}
.ws22{word-spacing:-18.972800pt;}
.ws12{word-spacing:-18.962667pt;}
.ws25{word-spacing:-18.954133pt;}
.ws3{word-spacing:-18.944640pt;}
.ws14{word-spacing:-18.830400pt;}
.wse{word-spacing:-18.781867pt;}
.wsd{word-spacing:-18.774933pt;}
.ws8{word-spacing:-18.753280pt;}
.wsc{word-spacing:-18.726507pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws27{word-spacing:-18.622933pt;}
.ws26{word-spacing:-18.499200pt;}
.ws28{word-spacing:-18.443733pt;}
.wsa{word-spacing:-18.437867pt;}
.ws29{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.400000pt;}
.ws16{word-spacing:-17.424000pt;}
.ws10{word-spacing:-17.120000pt;}
.wsf{word-spacing:-16.768000pt;}
.ws1e{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.552533pt;}
.ws1f{word-spacing:-13.416533pt;}
.ws19{word-spacing:-13.327360pt;}
.ws18{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.185067pt;}
.ws1d{word-spacing:-13.096533pt;}
.ws21{word-spacing:-13.049067pt;}
.ws20{word-spacing:-12.960000pt;}
.ws7{word-spacing:0.000000pt;}
._30{margin-left:-6.934400pt;}
._2b{margin-left:-5.293013pt;}
._e{margin-left:-4.318720pt;}
._7{margin-left:-3.234987pt;}
._6{margin-left:-2.275840pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._2a{width:1.980316pt;}
._2{width:2.964073pt;}
._2f{width:3.853867pt;}
._c{width:4.767787pt;}
._b{width:5.897173pt;}
._5{width:6.907307pt;}
._4{width:8.068693pt;}
._2c{width:8.990507pt;}
._10{width:10.017067pt;}
._f{width:11.306880pt;}
._16{width:12.449067pt;}
._18{width:13.779413pt;}
._13{width:14.676480pt;}
._24{width:15.601067pt;}
._14{width:16.923093pt;}
._52{width:17.821440pt;}
._3f{width:19.016960pt;}
._15{width:19.918080pt;}
._a{width:21.476480pt;}
._9{width:22.419627pt;}
._20{width:23.736960pt;}
._21{width:24.637013pt;}
._8{width:25.534080pt;}
._19{width:26.423680pt;}
._1a{width:27.427627pt;}
._4f{width:28.330240pt;}
._1b{width:29.352960pt;}
._17{width:31.000320pt;}
._27{width:32.647680pt;}
._28{width:34.052053pt;}
._31{width:35.472479pt;}
._1c{width:36.753707pt;}
._1d{width:37.727573pt;}
._25{width:39.087360pt;}
._5b{width:40.048427pt;}
._26{width:40.941013pt;}
._1e{width:42.606720pt;}
._1f{width:43.861333pt;}
._11{width:45.002880pt;}
._12{width:46.059307pt;}
._53{width:47.698560pt;}
._d{width:48.896640pt;}
._2d{width:49.811200pt;}
._51{width:51.742933pt;}
._4a{width:53.487787pt;}
._56{width:54.979200pt;}
._2e{width:56.384640pt;}
._32{width:57.803197pt;}
._5a{width:59.760000pt;}
._22{width:62.824320pt;}
._37{width:64.696107pt;}
._3e{width:65.868800pt;}
._3d{width:71.127680pt;}
._34{width:76.658773pt;}
._33{width:78.036053pt;}
._5c{width:79.463467pt;}
._29{width:82.561067pt;}
._35{width:83.929600pt;}
._3{width:84.988800pt;}
._4b{width:91.738240pt;}
._23{width:93.375360pt;}
._55{width:100.078080pt;}
._61{width:106.714027pt;}
._38{width:109.427200pt;}
._60{width:110.808320pt;}
._45{width:112.480000pt;}
._42{width:116.120320pt;}
._4d{width:119.781547pt;}
._4c{width:122.972800pt;}
._4e{width:124.832000pt;}
._43{width:126.283520pt;}
._5e{width:130.246187pt;}
._48{width:131.521067pt;}
._39{width:133.327147pt;}
._3b{width:142.839680pt;}
._46{width:143.902080pt;}
._40{width:149.904640pt;}
._41{width:151.122347pt;}
._49{width:157.447680pt;}
._3a{width:163.981440pt;}
._36{width:166.531200pt;}
._5d{width:180.072747pt;}
._54{width:184.592000pt;}
._5f{width:193.356800pt;}
._3c{width:198.615680pt;}
._44{width:217.575467pt;}
._47{width:223.263360pt;}
._57{width:225.972480pt;}
._58{width:229.744000pt;}
._59{width:233.894827pt;}
._50{width:241.696000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.yc2{bottom:5.120000pt;}
.ybe{bottom:5.280000pt;}
.y9{bottom:6.560000pt;}
.y4{bottom:14.240000pt;}
.yc{bottom:14.560000pt;}
.y2{bottom:21.920000pt;}
.yd2{bottom:22.714667pt;}
.yc1{bottom:22.720000pt;}
.yf3{bottom:22.760000pt;}
.yed{bottom:22.874667pt;}
.ybd{bottom:22.880000pt;}
.y113{bottom:22.906667pt;}
.yd1{bottom:40.314667pt;}
.yc0{bottom:40.320000pt;}
.yc6{bottom:40.346667pt;}
.yec{bottom:40.474667pt;}
.yc8{bottom:40.480000pt;}
.y112{bottom:40.506667pt;}
.y119{bottom:40.520000pt;}
.yb{bottom:46.720000pt;}
.yf6{bottom:52.960000pt;}
.yd0{bottom:57.914667pt;}
.ycb{bottom:58.080000pt;}
.yc5{bottom:58.106667pt;}
.ycc{bottom:58.120000pt;}
.y8{bottom:71.872000pt;}
.ycf{bottom:75.514667pt;}
.ye8{bottom:75.680000pt;}
.y121{bottom:109.312000pt;}
.yeb{bottom:112.672000pt;}
.yce{bottom:113.152000pt;}
.y31{bottom:113.632000pt;}
.y120{bottom:115.392000pt;}
.y77{bottom:119.072000pt;}
.y96{bottom:121.312000pt;}
.y10c{bottom:121.632000pt;}
.ybb{bottom:126.112000pt;}
.yaa{bottom:130.112000pt;}
.y56{bottom:131.872000pt;}
.y88{bottom:134.106667pt;}
.y30{bottom:135.066667pt;}
.y11f{bottom:140.026667pt;}
.y76{bottom:143.706667pt;}
.y95{bottom:146.106667pt;}
.y10b{bottom:146.266667pt;}
.yba{bottom:150.746667pt;}
.ya9{bottom:154.746667pt;}
.y55{bottom:156.506667pt;}
.y87{bottom:158.746667pt;}
.y2f{bottom:159.866667pt;}
.y136{bottom:161.946667pt;}
.y11e{bottom:164.666667pt;}
.yea{bottom:166.266667pt;}
.y75{bottom:168.346667pt;}
.y94{bottom:170.746667pt;}
.y10a{bottom:171.066667pt;}
.yb9{bottom:175.386667pt;}
.ya8{bottom:179.386667pt;}
.y54{bottom:181.306667pt;}
.y86{bottom:183.386667pt;}
.y2e{bottom:184.506667pt;}
.y135{bottom:186.586667pt;}
.y11d{bottom:189.466667pt;}
.y74{bottom:192.986667pt;}
.y93{bottom:195.386667pt;}
.y109{bottom:195.706667pt;}
.yb8{bottom:200.026667pt;}
.ycd{bottom:201.946667pt;}
.ya7{bottom:204.026667pt;}
.y53{bottom:205.946667pt;}
.y85{bottom:208.026667pt;}
.y2d{bottom:209.146667pt;}
.y134{bottom:211.226667pt;}
.y11c{bottom:214.106667pt;}
.y73{bottom:217.786667pt;}
.y92{bottom:220.186667pt;}
.y108{bottom:220.346667pt;}
.yb7{bottom:224.826667pt;}
.ya6{bottom:228.826667pt;}
.y52{bottom:230.586667pt;}
.y84{bottom:232.826667pt;}
.y2c{bottom:233.786667pt;}
.y133{bottom:236.026667pt;}
.ye9{bottom:237.466667pt;}
.y11b{bottom:238.746667pt;}
.y72{bottom:242.426667pt;}
.y91{bottom:244.826667pt;}
.y107{bottom:245.146667pt;}
.yb6{bottom:249.466667pt;}
.ya5{bottom:253.466667pt;}
.y51{bottom:255.386667pt;}
.y11a{bottom:256.826667pt;}
.y83{bottom:257.466667pt;}
.y2b{bottom:258.586667pt;}
.y132{bottom:260.666667pt;}
.y71{bottom:267.066667pt;}
.y90{bottom:269.466667pt;}
.y106{bottom:269.786667pt;}
.yb5{bottom:274.106667pt;}
.ya4{bottom:278.106667pt;}
.y50{bottom:280.026667pt;}
.y82{bottom:282.106667pt;}
.y2a{bottom:283.226667pt;}
.y131{bottom:285.306667pt;}
.y70{bottom:291.866667pt;}
.y118{bottom:292.826667pt;}
.y8f{bottom:294.106667pt;}
.y105{bottom:294.426667pt;}
.ya3{bottom:302.786667pt;}
.y4f{bottom:304.706667pt;}
.y81{bottom:306.786667pt;}
.y29{bottom:307.906667pt;}
.ye7{bottom:308.706667pt;}
.y130{bottom:310.146667pt;}
.y6f{bottom:316.546667pt;}
.y8e{bottom:318.946667pt;}
.y104{bottom:319.106667pt;}
.yca{bottom:326.626667pt;}
.ya2{bottom:327.586667pt;}
.y4e{bottom:329.346667pt;}
.y80{bottom:331.586667pt;}
.y28{bottom:332.546667pt;}
.y12f{bottom:334.786667pt;}
.y6e{bottom:341.186667pt;}
.y8d{bottom:343.586667pt;}
.y103{bottom:343.906667pt;}
.y117{bottom:346.466667pt;}
.y4d{bottom:350.786667pt;}
.ya1{bottom:352.226667pt;}
.y7f{bottom:356.226667pt;}
.y27{bottom:357.346667pt;}
.y12e{bottom:359.426667pt;}
.y6d{bottom:365.826667pt;}
.y8c{bottom:368.226667pt;}
.y102{bottom:368.546667pt;}
.y4c{bottom:375.586667pt;}
.ya0{bottom:376.866667pt;}
.y7e{bottom:380.866667pt;}
.y26{bottom:381.986667pt;}
.y116{bottom:382.306667pt;}
.y12d{bottom:384.066667pt;}
.y6c{bottom:390.626667pt;}
.y8b{bottom:392.866667pt;}
.y101{bottom:393.186667pt;}
.y4b{bottom:397.026667pt;}
.ye6{bottom:397.506667pt;}
.yc9{bottom:397.826667pt;}
.y9f{bottom:401.666667pt;}
.y7d{bottom:405.666667pt;}
.y25{bottom:406.626667pt;}
.y12c{bottom:408.866667pt;}
.y8a{bottom:413.666667pt;}
.y6b{bottom:415.266667pt;}
.y100{bottom:417.826667pt;}
.y9e{bottom:426.306667pt;}
.y7c{bottom:430.306667pt;}
.y24{bottom:431.426667pt;}
.y12b{bottom:433.506667pt;}
.y115{bottom:435.906667pt;}
.y4a{bottom:439.906667pt;}
.yff{bottom:442.626667pt;}
.y9d{bottom:450.946667pt;}
.yc7{bottom:451.426667pt;}
.y7b{bottom:454.946667pt;}
.y23{bottom:456.066667pt;}
.y12a{bottom:458.146667pt;}
.ye5{bottom:458.306667pt;}
.y49{bottom:461.346667pt;}
.y6a{bottom:464.706667pt;}
.yfe{bottom:467.266667pt;}
.y114{bottom:471.906667pt;}
.y9c{bottom:475.586667pt;}
.y7a{bottom:479.586667pt;}
.y22{bottom:480.706667pt;}
.y48{bottom:482.946667pt;}
.y69{bottom:489.346667pt;}
.yfd{bottom:491.906667pt;}
.ye4{bottom:493.666667pt;}
.y9b{bottom:500.386667pt;}
.y47{bottom:504.386667pt;}
.yc4{bottom:505.026667pt;}
.y21{bottom:505.346667pt;}
.y129{bottom:507.586667pt;}
.y68{bottom:510.786667pt;}
.yfc{bottom:516.706667pt;}
.ye3{bottom:518.306667pt;}
.y9a{bottom:525.026667pt;}
.y111{bottom:525.346667pt;}
.y46{bottom:525.826667pt;}
.y79{bottom:529.026667pt;}
.y20{bottom:530.146667pt;}
.y128{bottom:532.226667pt;}
.y67{bottom:535.426667pt;}
.yfb{bottom:541.373333pt;}
.ye2{bottom:543.133333pt;}
.y45{bottom:547.293333pt;}
.y99{bottom:549.693333pt;}
.y78{bottom:553.693333pt;}
.y1f{bottom:554.813333pt;}
.y66{bottom:556.893333pt;}
.yfa{bottom:566.013333pt;}
.ye1{bottom:567.773333pt;}
.y44{bottom:568.733333pt;}
.y98{bottom:574.493333pt;}
.yc3{bottom:576.253333pt;}
.y65{bottom:578.493333pt;}
.y110{bottom:578.973333pt;}
.y1e{bottom:579.453333pt;}
.y127{bottom:581.693333pt;}
.y43{bottom:590.173333pt;}
.yf9{bottom:590.653333pt;}
.ye0{bottom:592.413333pt;}
.y97{bottom:599.133333pt;}
.y64{bottom:603.133333pt;}
.y1d{bottom:604.253333pt;}
.y126{bottom:606.333333pt;}
.y42{bottom:611.613333pt;}
.y10f{bottom:614.973333pt;}
.yf8{bottom:615.453333pt;}
.ydf{bottom:617.053333pt;}
.yb4{bottom:623.773333pt;}
.y63{bottom:627.773333pt;}
.y1c{bottom:628.893333pt;}
.ybf{bottom:629.853333pt;}
.y125{bottom:630.973333pt;}
.y41{bottom:633.213333pt;}
.yf7{bottom:640.093333pt;}
.yde{bottom:641.853333pt;}
.yb3{bottom:648.413333pt;}
.y62{bottom:652.413333pt;}
.y1b{bottom:653.533333pt;}
.y40{bottom:654.653333pt;}
.y124{bottom:655.773333pt;}
.yf5{bottom:658.173333pt;}
.ydd{bottom:666.493333pt;}
.y10e{bottom:668.413333pt;}
.yb2{bottom:673.213333pt;}
.y3f{bottom:676.093333pt;}
.y61{bottom:677.213333pt;}
.y1a{bottom:678.173333pt;}
.y123{bottom:680.413333pt;}
.ybc{bottom:683.293333pt;}
.ydc{bottom:691.133333pt;}
.y3e{bottom:697.533333pt;}
.yb1{bottom:697.853333pt;}
.y60{bottom:701.853333pt;}
.y19{bottom:702.973333pt;}
.y122{bottom:705.053333pt;}
.yf4{bottom:711.773333pt;}
.ydb{bottom:715.933333pt;}
.y3d{bottom:718.973333pt;}
.y10d{bottom:722.013333pt;}
.yb0{bottom:722.493333pt;}
.y5f{bottom:726.493333pt;}
.y18{bottom:727.613333pt;}
.y3c{bottom:740.413333pt;}
.yda{bottom:740.573333pt;}
.yaf{bottom:747.133333pt;}
.y5e{bottom:751.133333pt;}
.y17{bottom:752.253333pt;}
.y3b{bottom:762.013333pt;}
.yd9{bottom:765.213333pt;}
.yf2{bottom:765.373333pt;}
.yae{bottom:771.933333pt;}
.y5d{bottom:775.973333pt;}
.y16{bottom:776.933333pt;}
.y3a{bottom:783.493333pt;}
.yd8{bottom:789.893333pt;}
.yad{bottom:796.613333pt;}
.y15{bottom:798.533333pt;}
.y5c{bottom:800.613333pt;}
.yf1{bottom:801.253333pt;}
.y39{bottom:804.933333pt;}
.yd7{bottom:814.693333pt;}
.y14{bottom:819.973333pt;}
.yac{bottom:821.253333pt;}
.y5b{bottom:825.253333pt;}
.y38{bottom:826.373333pt;}
.yd6{bottom:839.333333pt;}
.y13{bottom:841.413333pt;}
.yab{bottom:846.053333pt;}
.y37{bottom:847.813333pt;}
.y5a{bottom:850.053333pt;}
.yf0{bottom:854.853333pt;}
.y12{bottom:862.853333pt;}
.yd5{bottom:863.973333pt;}
.y36{bottom:869.253333pt;}
.y59{bottom:874.693333pt;}
.y11{bottom:884.293333pt;}
.yd4{bottom:888.613333pt;}
.y35{bottom:890.853333pt;}
.y58{bottom:899.333333pt;}
.y10{bottom:905.733333pt;}
.y34{bottom:912.293333pt;}
.yd3{bottom:913.413333pt;}
.y57{bottom:923.973333pt;}
.yef{bottom:926.053333pt;}
.y89{bottom:933.733333pt;}
.yf{bottom:948.773333pt;}
.y33{bottom:955.173333pt;}
.ye{bottom:973.413333pt;}
.y32{bottom:976.613333pt;}
.yee{bottom:997.253333pt;}
.yd{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h1e{height:17.632000pt;}
.h7{height:24.480000pt;}
.h23{height:35.200000pt;}
.h1f{height:35.232000pt;}
.h13{height:35.360000pt;}
.h2{height:36.800000pt;}
.h10{height:37.090625pt;}
.h20{height:40.151250pt;}
.h16{height:45.935313pt;}
.h4{height:47.742188pt;}
.h14{height:52.108438pt;}
.h18{height:52.134375pt;}
.he{height:52.284375pt;}
.h17{height:52.800000pt;}
.h1a{height:52.960000pt;}
.h22{height:52.992000pt;}
.h15{height:53.535000pt;}
.h11{height:54.598989pt;}
.h21{height:55.298750pt;}
.h6{height:59.340000pt;}
.hc{height:61.717500pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.h12{height:64.752187pt;}
.h1b{height:70.560000pt;}
.h19{height:70.592000pt;}
.hd{height:73.454062pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.hf{height:76.964840pt;}
.h9{height:85.785000pt;}
.h1c{height:88.000000pt;}
.h1d{height:88.160000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w7{width:87.232000pt;}
.wc{width:102.400000pt;}
.wb{width:104.192000pt;}
.w15{width:105.152000pt;}
.wa{width:107.712000pt;}
.w8{width:108.192000pt;}
.we{width:111.392000pt;}
.w11{width:121.920000pt;}
.w12{width:122.912000pt;}
.wd{width:123.232000pt;}
.w14{width:124.032000pt;}
.w9{width:128.160000pt;}
.w16{width:129.440000pt;}
.wf{width:131.232000pt;}
.w17{width:139.866667pt;}
.w18{width:140.186667pt;}
.w13{width:140.506667pt;}
.w10{width:150.906667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x59{left:6.720000pt;}
.x2{left:7.680000pt;}
.x7{left:17.600000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x11{left:77.759988pt;}
.x5c{left:104.031988pt;}
.xb{left:111.071988pt;}
.x66{left:112.351988pt;}
.xf{left:113.311988pt;}
.x5d{left:114.271988pt;}
.x63{left:115.711988pt;}
.x67{left:119.871988pt;}
.x5e{left:120.991988pt;}
.x24{left:123.551988pt;}
.x64{left:125.951988pt;}
.x14{left:127.231988pt;}
.x53{left:130.271988pt;}
.x18{left:132.031988pt;}
.x4f{left:136.026655pt;}
.x17{left:141.786655pt;}
.x5f{left:147.546655pt;}
.x15{left:149.146655pt;}
.x10{left:152.826655pt;}
.x69{left:155.546655pt;}
.x54{left:156.666655pt;}
.x50{left:157.946655pt;}
.x39{left:162.586655pt;}
.x48{left:164.186667pt;}
.x6c{left:166.106655pt;}
.x97{left:171.706655pt;}
.x58{left:200.026667pt;}
.x99{left:211.066655pt;}
.x6a{left:212.186655pt;}
.x72{left:217.146667pt;}
.x26{left:221.626655pt;}
.x8{left:224.826655pt;}
.x16{left:229.626655pt;}
.x94{left:238.266655pt;}
.xa{left:239.866655pt;}
.x85{left:243.066655pt;}
.x38{left:249.346655pt;}
.x93{left:250.786655pt;}
.x34{left:252.386655pt;}
.x2a{left:253.826655pt;}
.xc{left:260.706655pt;}
.x21{left:261.666655pt;}
.x9a{left:263.106655pt;}
.x2e{left:266.466655pt;}
.x49{left:273.186667pt;}
.x6b{left:275.106655pt;}
.x6d{left:279.586655pt;}
.x37{left:282.466655pt;}
.x29{left:286.786655pt;}
.x8f{left:291.426655pt;}
.x28{left:296.866655pt;}
.x32{left:297.986655pt;}
.x3c{left:300.226655pt;}
.x12{left:305.826655pt;}
.x95{left:309.346655pt;}
.x5a{left:312.066667pt;}
.xe{left:313.666655pt;}
.xd{left:315.106655pt;}
.x41{left:323.106655pt;}
.x68{left:324.066655pt;}
.x13{left:336.386655pt;}
.x73{left:341.826667pt;}
.x46{left:343.746655pt;}
.x1d{left:347.746655pt;}
.x2c{left:354.786655pt;}
.x89{left:356.866655pt;}
.x83{left:358.466655pt;}
.x1e{left:369.506655pt;}
.x8d{left:376.706655pt;}
.x98{left:377.826655pt;}
.x84{left:380.386655pt;}
.x3f{left:385.666655pt;}
.x8a{left:391.266655pt;}
.x9{left:396.866655pt;}
.x8b{left:399.906655pt;}
.x25{left:401.026655pt;}
.x4a{left:401.986667pt;}
.x78{left:405.666655pt;}
.x7a{left:406.786655pt;}
.x55{left:420.093322pt;}
.x8e{left:425.373322pt;}
.x81{left:431.773322pt;}
.x4e{left:434.973322pt;}
.x56{left:441.853322pt;}
.x27{left:443.933322pt;}
.x52{left:446.653322pt;}
.x74{left:447.613333pt;}
.x71{left:453.053322pt;}
.x47{left:458.013322pt;}
.x4c{left:459.613322pt;}
.x35{left:467.293322pt;}
.x96{left:468.573322pt;}
.x86{left:470.173322pt;}
.x7b{left:474.653322pt;}
.x2b{left:489.853322pt;}
.x87{left:492.093322pt;}
.x1a{left:495.773322pt;}
.x8c{left:501.373322pt;}
.x88{left:503.933322pt;}
.x45{left:507.613322pt;}
.x4b{left:510.333333pt;}
.x1b{left:517.693322pt;}
.x1c{left:522.333322pt;}
.x7c{left:525.373322pt;}
.x79{left:527.613322pt;}
.x44{left:528.733322pt;}
.x2f{left:531.133322pt;}
.x9b{left:541.213322pt;}
.x3d{left:551.293322pt;}
.x1f{left:552.413322pt;}
.x51{left:553.693322pt;}
.x31{left:559.773322pt;}
.x80{left:562.333322pt;}
.x90{left:565.693322pt;}
.x20{left:574.333322pt;}
.x75{left:577.693333pt;}
.x60{left:579.773322pt;}
.x30{left:586.533322pt;}
.x91{left:587.653322pt;}
.x6f{left:589.733322pt;}
.x6e{left:591.333322pt;}
.x5b{left:595.653333pt;}
.x70{left:600.613322pt;}
.x61{left:601.573322pt;}
.x43{left:602.533322pt;}
.x77{left:604.933322pt;}
.x7f{left:608.613322pt;}
.x62{left:611.333322pt;}
.x82{left:613.733322pt;}
.x7e{left:614.693322pt;}
.x3a{left:615.653322pt;}
.x92{left:620.613322pt;}
.x7d{left:622.053322pt;}
.x3b{left:623.653322pt;}
.x76{left:624.773322pt;}
.x42{left:631.013322pt;}
.x33{left:637.253322pt;}
.x4d{left:643.973322pt;}
.x23{left:651.173322pt;}
.x65{left:659.013322pt;}
.x57{left:670.213322pt;}
.x19{left:671.653322pt;}
.x2d{left:677.413322pt;}
.x36{left:683.973322pt;}
.x3e{left:686.213322pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
.x40{left:712.293322pt;}
.x22{left:718.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; }
  