
    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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e7cb1dc2b0c9b695801006ae.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ead033d3061c7376a9204203.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4dabf42399daa1e6f8966cc3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_ae3e7de1e452a808c6c019d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_44b350d49f0817e034cedfef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_a14de16e8130754d082bb2bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_795de32df0bd78a91dac9385.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_0a729a46ef0865715811071a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_1425d9a2b7e610b42cb97b73.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_cea7ec46c22fd899f015dc9b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_113806e8631ce5ecca64be63.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c296c2b29fbc65af68bef7d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9de5754fd3ea9db59fe8b54a.woff2')format("woff");}.fff{font-family:fff;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9b88f36254808dfc3415ec04.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d86e3741be56f37a7d6e6e77.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_fbd66d1a96ccc49ffa5f6d43.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.747070;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:ff13;src:url('chunks/assets/font_5c41373c5d35e3a8ab4aef90.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_e7c0a17139fc1d240301adb8.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005859;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:ff15;src:url('chunks/assets/font_bbb3d6ed95b6920afe9172c7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.973145;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v5{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls20{letter-spacing:-0.972000px;}
.ls9{letter-spacing:-0.331200px;}
.ls2e{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.306000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.234000px;}
.ls1f{letter-spacing:-0.198000px;}
.ls7{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.091200px;}
.ls18{letter-spacing:-0.036000px;}
.ls2b{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.031680px;}
.lsf{letter-spacing:0.036000px;}
.ls2c{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.126000px;}
.ls12{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.234720px;}
.ls2f{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.331200px;}
.ls2d{letter-spacing:0.342000px;}
.ls32{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.378000px;}
.ls16{letter-spacing:0.414000px;}
.ls1{letter-spacing:0.414720px;}
.ls8{letter-spacing:0.684000px;}
.ls1a{letter-spacing:0.738000px;}
.ls1c{letter-spacing:0.810000px;}
.ls22{letter-spacing:0.828000px;}
.ls10{letter-spacing:4.986000px;}
.lse{letter-spacing:6.426000px;}
.lsd{letter-spacing:7.164000px;}
.ls21{letter-spacing:8.028000px;}
.ls29{letter-spacing:8.748000px;}
.ls33{letter-spacing:19.386000px;}
.ls3{letter-spacing:20.160000px;}
.ls28{letter-spacing:23.148000px;}
.ls25{letter-spacing:24.588000px;}
.ls24{letter-spacing:25.308000px;}
.ls26{letter-spacing:26.748000px;}
.ls27{letter-spacing:28.188000px;}
.ls23{letter-spacing:32.508000px;}
.ls31{letter-spacing:48.348000px;}
.ls30{letter-spacing:55.548000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-54.324000px;}
.ws19{word-spacing:-54.000000px;}
.ws0{word-spacing:-22.316640px;}
.ws5{word-spacing:-18.234000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.179040px;}
.ws21{word-spacing:-14.076000px;}
.ws7{word-spacing:-13.932000px;}
.ws13{word-spacing:-13.824000px;}
.ws10{word-spacing:-13.752000px;}
.ws4{word-spacing:-13.698000px;}
.wsc{word-spacing:-13.428000px;}
.ws1d{word-spacing:-13.356000px;}
.ws15{word-spacing:-13.302000px;}
.ws1f{word-spacing:-13.266000px;}
.ws20{word-spacing:-13.230000px;}
.wsa{word-spacing:-13.158000px;}
.ws14{word-spacing:-13.140000px;}
.ws8{word-spacing:-13.104000px;}
.ws1c{word-spacing:-13.068000px;}
.wsd{word-spacing:-13.032000px;}
.ws1{word-spacing:-13.014000px;}
.ws1b{word-spacing:-12.996000px;}
.wse{word-spacing:-12.978000px;}
.ws16{word-spacing:-12.906000px;}
.wsb{word-spacing:-12.870000px;}
.ws11{word-spacing:-12.834000px;}
.ws17{word-spacing:-12.816000px;}
.wsf{word-spacing:-12.744000px;}
.ws12{word-spacing:-12.726000px;}
.ws9{word-spacing:-12.708000px;}
.ws1e{word-spacing:-12.690000px;}
.ws18{word-spacing:-12.042000px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-3.373200px;}
._1d{margin-left:-2.268000px;}
._0{margin-left:-1.263600px;}
._1{width:1.056000px;}
._9{width:2.160000px;}
._8{width:4.008000px;}
._7{width:5.556000px;}
._a{width:7.230000px;}
._5{width:8.556000px;}
._6{width:9.648000px;}
._c{width:10.794000px;}
._b{width:11.994000px;}
._2f{width:14.040000px;}
._19{width:15.066000px;}
._3{width:16.087680px;}
._2{width:17.715600px;}
._32{width:18.727200px;}
._4{width:19.818000px;}
._18{width:21.192000px;}
._d{width:22.410000px;}
._e{width:23.652000px;}
._1c{width:24.732000px;}
._2d{width:26.352000px;}
._33{width:27.540000px;}
._17{width:29.160000px;}
._3c{width:30.207600px;}
._22{width:31.212000px;}
._1a{width:32.832000px;}
._1b{width:34.560000px;}
._2e{width:35.988000px;}
._21{width:37.314000px;}
._1f{width:38.469600px;}
._20{width:39.582000px;}
._13{width:41.634000px;}
._14{width:42.768000px;}
._31{width:44.517600px;}
._11{width:45.522000px;}
._12{width:46.710000px;}
._30{width:48.567600px;}
._2b{width:49.680000px;}
._29{width:51.624000px;}
._2a{width:53.028000px;}
._15{width:56.160000px;}
._16{width:57.348000px;}
._28{width:59.184000px;}
._3e{width:60.696000px;}
._24{width:63.048000px;}
._25{width:64.332000px;}
._2c{width:67.662000px;}
._3b{width:68.820000px;}
._f{width:69.876000px;}
._10{width:70.902000px;}
._3a{width:74.898000px;}
._26{width:78.840000px;}
._27{width:80.730000px;}
._39{width:82.404000px;}
._23{width:84.510000px;}
._38{width:85.851600px;}
._37{width:106.812000px;}
._3d{width:110.106000px;}
._3f{width:115.752000px;}
._36{width:119.223600px;}
._35{width:181.416000px;}
._34{width:203.106000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:9.360000px;}
.fs3{font-size:12.240000px;}
.fsa{font-size:23.760000px;}
.fs7{font-size:33.120000px;}
.fse{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsd{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y3f{bottom:-16.380000px;}
.y0{bottom:0.000000px;}
.y14{bottom:2.520000px;}
.y6{bottom:2.700000px;}
.yac{bottom:2.880000px;}
.yaf{bottom:3.060000px;}
.yde{bottom:3.240000px;}
.y10{bottom:3.420000px;}
.y3{bottom:3.960000px;}
.yc6{bottom:5.040000px;}
.ya2{bottom:7.380000px;}
.y9f{bottom:7.560000px;}
.y34{bottom:7.740000px;}
.y3e{bottom:9.180000px;}
.y90{bottom:10.440000px;}
.y32{bottom:10.620000px;}
.y12{bottom:14.940000px;}
.y1f{bottom:16.200000px;}
.yb6{bottom:18.180000px;}
.yad{bottom:18.360000px;}
.yaa{bottom:18.720000px;}
.y12f{bottom:19.080000px;}
.y1b{bottom:19.620000px;}
.ye{bottom:19.980000px;}
.y17{bottom:21.060000px;}
.y1d{bottom:23.760000px;}
.y3d{bottom:30.420000px;}
.y31{bottom:33.660000px;}
.y1a{bottom:42.660000px;}
.y16{bottom:51.660000px;}
.y3c{bottom:51.840000px;}
.y30{bottom:56.700000px;}
.y4{bottom:57.780000px;}
.yd{bottom:60.840000px;}
.y2{bottom:74.556000px;}
.y3b{bottom:75.630000px;}
.y2f{bottom:79.740000px;}
.y9{bottom:80.820000px;}
.y8{bottom:91.110000px;}
.y2e{bottom:102.825000px;}
.y109{bottom:110.736000px;}
.y6d{bottom:111.276000px;}
.y84{bottom:112.896000px;}
.y178{bottom:113.976000px;}
.yd4{bottom:114.336000px;}
.y8e{bottom:114.516000px;}
.ya8{bottom:115.776000px;}
.y117{bottom:119.196000px;}
.y14b{bottom:121.716000px;}
.y39{bottom:122.796000px;}
.yff{bottom:124.596000px;}
.y2d{bottom:125.685000px;}
.y108{bottom:133.776000px;}
.y6c{bottom:134.136000px;}
.y83{bottom:135.936000px;}
.yd3{bottom:137.376000px;}
.y8d{bottom:137.556000px;}
.y177{bottom:137.736000px;}
.ya7{bottom:138.816000px;}
.y116{bottom:141.516000px;}
.y14a{bottom:145.476000px;}
.y38{bottom:145.836000px;}
.yfe{bottom:148.356000px;}
.y2c{bottom:148.725000px;}
.y107{bottom:156.810000px;}
.y6b{bottom:157.170000px;}
.y82{bottom:158.970000px;}
.yd2{bottom:160.410000px;}
.y8c{bottom:160.590000px;}
.y176{bottom:161.310000px;}
.ya6{bottom:161.850000px;}
.y115{bottom:164.010000px;}
.y37{bottom:168.870000px;}
.y149{bottom:169.230000px;}
.y2b{bottom:171.765000px;}
.yfd{bottom:172.110000px;}
.y6a{bottom:173.190000px;}
.y14c{bottom:175.890000px;}
.y106{bottom:179.850000px;}
.y81{bottom:181.830000px;}
.yd1{bottom:183.450000px;}
.y8b{bottom:183.630000px;}
.y148{bottom:184.170000px;}
.ya5{bottom:184.890000px;}
.y114{bottom:186.330000px;}
.y36{bottom:191.910000px;}
.y2a{bottom:194.805000px;}
.y105{bottom:195.150000px;}
.yfc{bottom:195.870000px;}
.y69{bottom:198.930000px;}
.yd0{bottom:199.470000px;}
.ya4{bottom:200.190000px;}
.y80{bottom:204.870000px;}
.y8a{bottom:206.670000px;}
.y113{bottom:208.650000px;}
.y35{bottom:214.950000px;}
.y147{bottom:216.390000px;}
.y29{bottom:217.845000px;}
.y104{bottom:218.910000px;}
.yfb{bottom:219.630000px;}
.y68{bottom:221.970000px;}
.ycf{bottom:225.210000px;}
.y33{bottom:227.370000px;}
.y7f{bottom:227.910000px;}
.y89{bottom:229.710000px;}
.y112{bottom:230.970000px;}
.y175{bottom:231.150000px;}
.y146{bottom:232.410000px;}
.ya3{bottom:235.650000px;}
.y28{bottom:240.885000px;}
.y103{bottom:242.670000px;}
.yfa{bottom:243.390000px;}
.y20{bottom:244.650000px;}
.y67{bottom:245.010000px;}
.yce{bottom:248.250000px;}
.y145{bottom:248.610000px;}
.y7e{bottom:250.950000px;}
.y88{bottom:252.570000px;}
.y174{bottom:253.290000px;}
.y111{bottom:253.470000px;}
.ya1{bottom:256.350000px;}
.y27{bottom:263.745000px;}
.y144{bottom:264.630000px;}
.y102{bottom:266.430000px;}
.yf9{bottom:267.150000px;}
.y66{bottom:268.050000px;}
.ycd{bottom:271.110000px;}
.y7d{bottom:273.990000px;}
.y87{bottom:275.610000px;}
.y110{bottom:275.790000px;}
.ya0{bottom:276.870000px;}
.y143{bottom:280.650000px;}
.y26{bottom:286.785000px;}
.y101{bottom:290.190000px;}
.y65{bottom:290.910000px;}
.ycc{bottom:294.150000px;}
.y142{bottom:296.850000px;}
.y7c{bottom:297.030000px;}
.y10f{bottom:298.110000px;}
.y86{bottom:298.650000px;}
.y9e{bottom:299.190000px;}
.y173{bottom:300.630000px;}
.y25{bottom:309.825000px;}
.y141{bottom:312.870000px;}
.y64{bottom:313.950000px;}
.yf8{bottom:314.850000px;}
.ycb{bottom:317.190000px;}
.y7b{bottom:319.890000px;}
.y10e{bottom:320.430000px;}
.y160{bottom:321.690000px;}
.y9d{bottom:324.210000px;}
.y140{bottom:328.935000px;}
.y24{bottom:332.865000px;}
.y85{bottom:335.595000px;}
.y63{bottom:337.035000px;}
.y100{bottom:337.755000px;}
.yf7{bottom:338.655000px;}
.yca{bottom:340.275000px;}
.y7a{bottom:342.975000px;}
.y15f{bottom:344.775000px;}
.y13f{bottom:345.135000px;}
.y9c{bottom:347.295000px;}
.y172{bottom:347.835000px;}
.y23{bottom:355.935000px;}
.y62{bottom:360.075000px;}
.y13e{bottom:361.155000px;}
.yf6{bottom:361.515000px;}
.yc9{bottom:363.315000px;}
.y10d{bottom:365.295000px;}
.y79{bottom:366.015000px;}
.y15e{bottom:367.815000px;}
.y9b{bottom:370.335000px;}
.y171{bottom:371.595000px;}
.yf5{bottom:376.995000px;}
.y13d{bottom:377.355000px;}
.y22{bottom:378.975000px;}
.y10c{bottom:380.955000px;}
.y61{bottom:383.115000px;}
.yc8{bottom:386.355000px;}
.y78{bottom:389.055000px;}
.y15d{bottom:390.675000px;}
.y9a{bottom:393.375000px;}
.y170{bottom:395.175000px;}
.yf4{bottom:400.035000px;}
.y21{bottom:401.835000px;}
.y10b{bottom:405.435000px;}
.y60{bottom:406.155000px;}
.y99{bottom:407.955000px;}
.yc7{bottom:409.215000px;}
.y13c{bottom:409.395000px;}
.y77{bottom:412.095000px;}
.y15c{bottom:413.715000px;}
.y16f{bottom:418.935000px;}
.yf3{bottom:422.895000px;}
.y13b{bottom:425.595000px;}
.yd5{bottom:427.755000px;}
.y10a{bottom:428.655000px;}
.y5f{bottom:429.015000px;}
.y98{bottom:431.715000px;}
.yc5{bottom:432.975000px;}
.y76{bottom:435.135000px;}
.y15b{bottom:436.755000px;}
.y13a{bottom:441.615000px;}
.y16e{bottom:442.515000px;}
.yf2{bottom:445.935000px;}
.yc4{bottom:451.155000px;}
.y5e{bottom:452.055000px;}
.y97{bottom:455.475000px;}
.y139{bottom:457.815000px;}
.y75{bottom:457.995000px;}
.y15a{bottom:459.795000px;}
.y16d{bottom:466.095000px;}
.yc3{bottom:467.355000px;}
.yf1{bottom:468.975000px;}
.y138{bottom:473.835000px;}
.y5d{bottom:475.095000px;}
.y96{bottom:479.235000px;}
.y74{bottom:481.035000px;}
.y159{bottom:482.835000px;}
.yc2{bottom:483.375000px;}
.yf0{bottom:483.555000px;}
.y137{bottom:489.855000px;}
.y5c{bottom:498.135000px;}
.yc1{bottom:499.395000px;}
.yef{bottom:499.755000px;}
.y95{bottom:502.995000px;}
.y73{bottom:504.075000px;}
.y158{bottom:505.695000px;}
.y136{bottom:506.055000px;}
.y16c{bottom:513.435000px;}
.yc0{bottom:515.595000px;}
.yee{bottom:515.775000px;}
.y5b{bottom:521.175000px;}
.y135{bottom:522.075000px;}
.y94{bottom:526.755000px;}
.y72{bottom:527.115000px;}
.y157{bottom:528.735000px;}
.ybf{bottom:531.615000px;}
.yed{bottom:531.975000px;}
.y16b{bottom:537.015000px;}
.y134{bottom:538.095000px;}
.y5a{bottom:544.215000px;}
.ybe{bottom:547.635000px;}
.yec{bottom:547.995000px;}
.y71{bottom:550.155000px;}
.y93{bottom:550.515000px;}
.y156{bottom:551.775000px;}
.y133{bottom:554.295000px;}
.y16a{bottom:560.775000px;}
.ybd{bottom:563.835000px;}
.yeb{bottom:564.015000px;}
.y59{bottom:567.075000px;}
.y132{bottom:570.315000px;}
.y70{bottom:573.015000px;}
.y92{bottom:574.275000px;}
.y155{bottom:574.815000px;}
.ybc{bottom:579.855000px;}
.yea{bottom:580.215000px;}
.y169{bottom:584.355000px;}
.y131{bottom:586.515000px;}
.y58{bottom:590.115000px;}
.y6f{bottom:596.085000px;}
.ye9{bottom:596.265000px;}
.y154{bottom:597.885000px;}
.y91{bottom:598.065000px;}
.y12e{bottom:604.005000px;}
.y168{bottom:608.145000px;}
.y6e{bottom:611.745000px;}
.ybb{bottom:612.105000px;}
.ye8{bottom:612.465000px;}
.y57{bottom:613.185000px;}
.y130{bottom:620.205000px;}
.y153{bottom:620.925000px;}
.y8f{bottom:623.445000px;}
.yba{bottom:628.125000px;}
.ye7{bottom:628.485000px;}
.y167{bottom:631.725000px;}
.y56{bottom:636.225000px;}
.y152{bottom:643.785000px;}
.ye6{bottom:644.505000px;}
.y12d{bottom:648.285000px;}
.y166{bottom:655.305000px;}
.y1e{bottom:658.905000px;}
.y55{bottom:659.265000px;}
.yb9{bottom:659.625000px;}
.ye5{bottom:660.705000px;}
.y151{bottom:666.825000px;}
.y12c{bottom:671.325000px;}
.ye4{bottom:676.725000px;}
.y165{bottom:679.065000px;}
.y54{bottom:682.125000px;}
.y1c{bottom:688.965000px;}
.y150{bottom:689.865000px;}
.yb8{bottom:691.125000px;}
.ye3{bottom:692.745000px;}
.y12b{bottom:694.365000px;}
.y164{bottom:702.645000px;}
.y53{bottom:705.165000px;}
.yb7{bottom:707.145000px;}
.ye2{bottom:708.945000px;}
.y14f{bottom:712.905000px;}
.y12a{bottom:717.405000px;}
.ye1{bottom:724.965000px;}
.y163{bottom:726.225000px;}
.y52{bottom:728.205000px;}
.y14e{bottom:735.945000px;}
.y19{bottom:737.025000px;}
.yb5{bottom:738.645000px;}
.y129{bottom:739.725000px;}
.ye0{bottom:741.525000px;}
.y162{bottom:749.985000px;}
.y51{bottom:751.245000px;}
.ydf{bottom:758.085000px;}
.y14d{bottom:758.985000px;}
.y128{bottom:762.045000px;}
.yb4{bottom:769.965000px;}
.y161{bottom:773.565000px;}
.y50{bottom:774.285000px;}
.ydd{bottom:774.825000px;}
.y127{bottom:784.545000px;}
.ydc{bottom:791.385000px;}
.y18{bottom:792.105000px;}
.y4f{bottom:797.325000px;}
.yb3{bottom:801.465000px;}
.y126{bottom:806.865000px;}
.ydb{bottom:807.945000px;}
.y15{bottom:809.025000px;}
.yb2{bottom:817.485000px;}
.y4e{bottom:820.185000px;}
.yda{bottom:824.505000px;}
.y125{bottom:829.185000px;}
.yb1{bottom:833.685000px;}
.yd9{bottom:841.065000px;}
.y4d{bottom:843.225000px;}
.yb0{bottom:849.705000px;}
.y124{bottom:851.505000px;}
.yd8{bottom:857.625000px;}
.yae{bottom:865.770000px;}
.y4c{bottom:866.310000px;}
.y13{bottom:870.270000px;}
.y123{bottom:874.050000px;}
.yd7{bottom:874.230000px;}
.y11{bottom:884.850000px;}
.y4b{bottom:889.350000px;}
.yd6{bottom:891.870000px;}
.y122{bottom:896.370000px;}
.ya9{bottom:898.710000px;}
.y4a{bottom:912.390000px;}
.yf{bottom:915.450000px;}
.y121{bottom:918.690000px;}
.yc{bottom:929.130000px;}
.yab{bottom:930.210000px;}
.y49{bottom:935.430000px;}
.y120{bottom:941.190000px;}
.y48{bottom:958.290000px;}
.y11f{bottom:963.510000px;}
.y47{bottom:981.330000px;}
.y11e{bottom:985.830000px;}
.y46{bottom:1004.370000px;}
.y11d{bottom:1008.150000px;}
.yb{bottom:1013.010000px;}
.y45{bottom:1027.410000px;}
.ya{bottom:1030.110000px;}
.y11c{bottom:1030.650000px;}
.y7{bottom:1046.850000px;}
.y44{bottom:1050.450000px;}
.y11b{bottom:1052.970000px;}
.y3a{bottom:1073.130000px;}
.y43{bottom:1073.490000px;}
.y11a{bottom:1075.290000px;}
.y42{bottom:1096.350000px;}
.y119{bottom:1097.610000px;}
.y41{bottom:1119.390000px;}
.y118{bottom:1120.110000px;}
.y40{bottom:1142.460000px;}
.y1{bottom:1192.140000px;}
.y5{bottom:1195.740000px;}
.hc{height:8.289492px;}
.hf{height:13.680000px;}
.h13{height:14.580000px;}
.h2f{height:15.300000px;}
.h31{height:15.336000px;}
.h32{height:15.480000px;}
.h39{height:15.660000px;}
.h38{height:15.840000px;}
.h35{height:15.876000px;}
.h17{height:16.920000px;}
.h20{height:17.280000px;}
.h33{height:17.460000px;}
.h2d{height:19.800000px;}
.h2c{height:19.980000px;}
.h3{height:20.700000px;}
.h5{height:21.060000px;}
.h29{height:22.860000px;}
.h2a{height:23.040000px;}
.h2b{height:23.076000px;}
.h16{height:25.001719px;}
.h21{height:29.145586px;}
.h1d{height:30.060000px;}
.h11{height:30.600000px;}
.h30{height:30.780000px;}
.h3a{height:31.500000px;}
.h10{height:32.670352px;}
.h3b{height:36.509766px;}
.h14{height:36.886641px;}
.h18{height:40.472227px;}
.h22{height:40.842773px;}
.h1a{height:40.869141px;}
.h25{height:41.291016px;}
.h28{height:42.366094px;}
.h1e{height:45.199336px;}
.h27{height:45.228516px;}
.h37{height:45.509766px;}
.h2e{height:46.800000px;}
.h1b{height:48.060000px;}
.h12{height:48.761719px;}
.h34{height:50.100469px;}
.h1c{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h24{height:55.054688px;}
.h19{height:55.080000px;}
.h26{height:55.209375px;}
.h36{height:55.503491px;}
.h6{height:57.051211px;}
.h15{height:61.236000px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.540000px;}
.h7{height:84.898125px;}
.h23{height:93.816000px;}
.h8{height:108.036000px;}
.h1f{height:414.255000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:35.100000px;}
.w24{width:44.460000px;}
.w21{width:52.740000px;}
.w3{width:54.180000px;}
.wd{width:55.260000px;}
.w1c{width:64.800000px;}
.we{width:65.520000px;}
.w1e{width:67.500000px;}
.w1f{width:67.860000px;}
.w16{width:68.436000px;}
.w20{width:72.756000px;}
.w11{width:72.900000px;}
.w25{width:73.620000px;}
.w12{width:75.636000px;}
.w7{width:76.680000px;}
.w1d{width:77.436000px;}
.w17{width:88.740000px;}
.w23{width:118.080000px;}
.w6{width:122.940000px;}
.w1a{width:125.496000px;}
.w13{width:135.360000px;}
.w19{width:142.236000px;}
.w15{width:157.170000px;}
.w14{width:161.490000px;}
.wf{width:196.410000px;}
.w22{width:197.895000px;}
.w18{width:270.750000px;}
.w26{width:315.975000px;}
.wb{width:332.175000px;}
.wa{width:356.430000px;}
.wc{width:464.475000px;}
.w5{width:546.480000px;}
.w8{width:616.425000px;}
.w4{width:619.845000px;}
.w1b{width:673.845000px;}
.w9{width:688.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:1.620000px;}
.x38{left:2.700000px;}
.x25{left:4.860000px;}
.x4{left:6.480000px;}
.xa{left:8.100000px;}
.x24{left:9.714000px;}
.x6{left:10.836000px;}
.x2b{left:12.240000px;}
.x3a{left:13.320000px;}
.x21{left:14.400000px;}
.x39{left:15.660000px;}
.x11{left:16.740000px;}
.x1f{left:18.714000px;}
.x2{left:20.700000px;}
.x1c{left:21.960000px;}
.x33{left:23.265000px;}
.x1b{left:24.840000px;}
.x1a{left:26.100000px;}
.x34{left:27.390000px;}
.x18{left:28.620000px;}
.x19{left:29.880000px;}
.x23{left:34.740000px;}
.x27{left:36.360000px;}
.x8{left:39.210000px;}
.x2e{left:45.000000px;}
.x26{left:50.580000px;}
.xe{left:73.830000px;}
.x9{left:100.116000px;}
.xc{left:101.376000px;}
.x1{left:108.035987px;}
.x5{left:109.440000px;}
.x16{left:110.556000px;}
.x1e{left:144.756000px;}
.x3{left:165.450000px;}
.xb{left:176.790000px;}
.x13{left:211.170000px;}
.x20{left:217.650000px;}
.x15{left:228.089987px;}
.x17{left:231.330000px;}
.x12{left:263.910000px;}
.x22{left:293.295000px;}
.x10{left:325.875000px;}
.x2d{left:380.415000px;}
.x30{left:445.215000px;}
.x14{left:453.855000px;}
.xd{left:457.815000px;}
.xf{left:462.674987px;}
.x28{left:464.475000px;}
.x35{left:465.915000px;}
.x2c{left:514.724987px;}
.x2f{left:522.645000px;}
.x31{left:590.145000px;}
.x29{left:625.965000px;}
.x7{left:658.260000px;}
.x36{left:663.810000px;}
.x2a{left:694.410000px;}
.x37{left:708.270000px;}
.x32{left:730.770000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v5{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls20{letter-spacing:-0.864000pt;}
.ls9{letter-spacing:-0.294400pt;}
.ls2e{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.272000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.208000pt;}
.ls1f{letter-spacing:-0.176000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.081067pt;}
.ls18{letter-spacing:-0.032000pt;}
.ls2b{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.028160pt;}
.lsf{letter-spacing:0.032000pt;}
.ls2c{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.112000pt;}
.ls12{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.208640pt;}
.ls2f{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.294400pt;}
.ls2d{letter-spacing:0.304000pt;}
.ls32{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.336000pt;}
.ls16{letter-spacing:0.368000pt;}
.ls1{letter-spacing:0.368640pt;}
.ls8{letter-spacing:0.608000pt;}
.ls1a{letter-spacing:0.656000pt;}
.ls1c{letter-spacing:0.720000pt;}
.ls22{letter-spacing:0.736000pt;}
.ls10{letter-spacing:4.432000pt;}
.lse{letter-spacing:5.712000pt;}
.lsd{letter-spacing:6.368000pt;}
.ls21{letter-spacing:7.136000pt;}
.ls29{letter-spacing:7.776000pt;}
.ls33{letter-spacing:17.232000pt;}
.ls3{letter-spacing:17.920000pt;}
.ls28{letter-spacing:20.576000pt;}
.ls25{letter-spacing:21.856000pt;}
.ls24{letter-spacing:22.496000pt;}
.ls26{letter-spacing:23.776000pt;}
.ls27{letter-spacing:25.056000pt;}
.ls23{letter-spacing:28.896000pt;}
.ls31{letter-spacing:42.976000pt;}
.ls30{letter-spacing:49.376000pt;}
.ws1a{word-spacing:-48.288000pt;}
.ws19{word-spacing:-48.000000pt;}
.ws0{word-spacing:-19.837013pt;}
.ws5{word-spacing:-16.208000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.492480pt;}
.ws21{word-spacing:-12.512000pt;}
.ws7{word-spacing:-12.384000pt;}
.ws13{word-spacing:-12.288000pt;}
.ws10{word-spacing:-12.224000pt;}
.ws4{word-spacing:-12.176000pt;}
.wsc{word-spacing:-11.936000pt;}
.ws1d{word-spacing:-11.872000pt;}
.ws15{word-spacing:-11.824000pt;}
.ws1f{word-spacing:-11.792000pt;}
.ws20{word-spacing:-11.760000pt;}
.wsa{word-spacing:-11.696000pt;}
.ws14{word-spacing:-11.680000pt;}
.ws8{word-spacing:-11.648000pt;}
.ws1c{word-spacing:-11.616000pt;}
.wsd{word-spacing:-11.584000pt;}
.ws1{word-spacing:-11.568000pt;}
.ws1b{word-spacing:-11.552000pt;}
.wse{word-spacing:-11.536000pt;}
.ws16{word-spacing:-11.472000pt;}
.wsb{word-spacing:-11.440000pt;}
.ws11{word-spacing:-11.408000pt;}
.ws17{word-spacing:-11.392000pt;}
.wsf{word-spacing:-11.328000pt;}
.ws12{word-spacing:-11.312000pt;}
.ws9{word-spacing:-11.296000pt;}
.ws1e{word-spacing:-11.280000pt;}
.ws18{word-spacing:-10.704000pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-2.998400pt;}
._1d{margin-left:-2.016000pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.938667pt;}
._9{width:1.920000pt;}
._8{width:3.562667pt;}
._7{width:4.938667pt;}
._a{width:6.426667pt;}
._5{width:7.605333pt;}
._6{width:8.576000pt;}
._c{width:9.594667pt;}
._b{width:10.661333pt;}
._2f{width:12.480000pt;}
._19{width:13.392000pt;}
._3{width:14.300160pt;}
._2{width:15.747200pt;}
._32{width:16.646400pt;}
._4{width:17.616000pt;}
._18{width:18.837333pt;}
._d{width:19.920000pt;}
._e{width:21.024000pt;}
._1c{width:21.984000pt;}
._2d{width:23.424000pt;}
._33{width:24.480000pt;}
._17{width:25.920000pt;}
._3c{width:26.851200pt;}
._22{width:27.744000pt;}
._1a{width:29.184000pt;}
._1b{width:30.720000pt;}
._2e{width:31.989333pt;}
._21{width:33.168000pt;}
._1f{width:34.195200pt;}
._20{width:35.184000pt;}
._13{width:37.008000pt;}
._14{width:38.016000pt;}
._31{width:39.571200pt;}
._11{width:40.464000pt;}
._12{width:41.520000pt;}
._30{width:43.171200pt;}
._2b{width:44.160000pt;}
._29{width:45.888000pt;}
._2a{width:47.136000pt;}
._15{width:49.920000pt;}
._16{width:50.976000pt;}
._28{width:52.608000pt;}
._3e{width:53.952000pt;}
._24{width:56.042667pt;}
._25{width:57.184000pt;}
._2c{width:60.144000pt;}
._3b{width:61.173333pt;}
._f{width:62.112000pt;}
._10{width:63.024000pt;}
._3a{width:66.576000pt;}
._26{width:70.080000pt;}
._27{width:71.760000pt;}
._39{width:73.248000pt;}
._23{width:75.120000pt;}
._38{width:76.312533pt;}
._37{width:94.944000pt;}
._3d{width:97.872000pt;}
._3f{width:102.890667pt;}
._36{width:105.976533pt;}
._35{width:161.258667pt;}
._34{width:180.538667pt;}
.fsb{font-size:8.320000pt;}
.fs3{font-size:10.880000pt;}
.fsa{font-size:21.120000pt;}
.fs7{font-size:29.440000pt;}
.fse{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsd{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y3f{bottom:-14.560000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.240000pt;}
.y6{bottom:2.400000pt;}
.yac{bottom:2.560000pt;}
.yaf{bottom:2.720000pt;}
.yde{bottom:2.880000pt;}
.y10{bottom:3.040000pt;}
.y3{bottom:3.520000pt;}
.yc6{bottom:4.480000pt;}
.ya2{bottom:6.560000pt;}
.y9f{bottom:6.720000pt;}
.y34{bottom:6.880000pt;}
.y3e{bottom:8.160000pt;}
.y90{bottom:9.280000pt;}
.y32{bottom:9.440000pt;}
.y12{bottom:13.280000pt;}
.y1f{bottom:14.400000pt;}
.yb6{bottom:16.160000pt;}
.yad{bottom:16.320000pt;}
.yaa{bottom:16.640000pt;}
.y12f{bottom:16.960000pt;}
.y1b{bottom:17.440000pt;}
.ye{bottom:17.760000pt;}
.y17{bottom:18.720000pt;}
.y1d{bottom:21.120000pt;}
.y3d{bottom:27.040000pt;}
.y31{bottom:29.920000pt;}
.y1a{bottom:37.920000pt;}
.y16{bottom:45.920000pt;}
.y3c{bottom:46.080000pt;}
.y30{bottom:50.400000pt;}
.y4{bottom:51.360000pt;}
.yd{bottom:54.080000pt;}
.y2{bottom:66.272000pt;}
.y3b{bottom:67.226667pt;}
.y2f{bottom:70.880000pt;}
.y9{bottom:71.840000pt;}
.y8{bottom:80.986667pt;}
.y2e{bottom:91.400000pt;}
.y109{bottom:98.432000pt;}
.y6d{bottom:98.912000pt;}
.y84{bottom:100.352000pt;}
.y178{bottom:101.312000pt;}
.yd4{bottom:101.632000pt;}
.y8e{bottom:101.792000pt;}
.ya8{bottom:102.912000pt;}
.y117{bottom:105.952000pt;}
.y14b{bottom:108.192000pt;}
.y39{bottom:109.152000pt;}
.yff{bottom:110.752000pt;}
.y2d{bottom:111.720000pt;}
.y108{bottom:118.912000pt;}
.y6c{bottom:119.232000pt;}
.y83{bottom:120.832000pt;}
.yd3{bottom:122.112000pt;}
.y8d{bottom:122.272000pt;}
.y177{bottom:122.432000pt;}
.ya7{bottom:123.392000pt;}
.y116{bottom:125.792000pt;}
.y14a{bottom:129.312000pt;}
.y38{bottom:129.632000pt;}
.yfe{bottom:131.872000pt;}
.y2c{bottom:132.200000pt;}
.y107{bottom:139.386667pt;}
.y6b{bottom:139.706667pt;}
.y82{bottom:141.306667pt;}
.yd2{bottom:142.586667pt;}
.y8c{bottom:142.746667pt;}
.y176{bottom:143.386667pt;}
.ya6{bottom:143.866667pt;}
.y115{bottom:145.786667pt;}
.y37{bottom:150.106667pt;}
.y149{bottom:150.426667pt;}
.y2b{bottom:152.680000pt;}
.yfd{bottom:152.986667pt;}
.y6a{bottom:153.946667pt;}
.y14c{bottom:156.346667pt;}
.y106{bottom:159.866667pt;}
.y81{bottom:161.626667pt;}
.yd1{bottom:163.066667pt;}
.y8b{bottom:163.226667pt;}
.y148{bottom:163.706667pt;}
.ya5{bottom:164.346667pt;}
.y114{bottom:165.626667pt;}
.y36{bottom:170.586667pt;}
.y2a{bottom:173.160000pt;}
.y105{bottom:173.466667pt;}
.yfc{bottom:174.106667pt;}
.y69{bottom:176.826667pt;}
.yd0{bottom:177.306667pt;}
.ya4{bottom:177.946667pt;}
.y80{bottom:182.106667pt;}
.y8a{bottom:183.706667pt;}
.y113{bottom:185.466667pt;}
.y35{bottom:191.066667pt;}
.y147{bottom:192.346667pt;}
.y29{bottom:193.640000pt;}
.y104{bottom:194.586667pt;}
.yfb{bottom:195.226667pt;}
.y68{bottom:197.306667pt;}
.ycf{bottom:200.186667pt;}
.y33{bottom:202.106667pt;}
.y7f{bottom:202.586667pt;}
.y89{bottom:204.186667pt;}
.y112{bottom:205.306667pt;}
.y175{bottom:205.466667pt;}
.y146{bottom:206.586667pt;}
.ya3{bottom:209.466667pt;}
.y28{bottom:214.120000pt;}
.y103{bottom:215.706667pt;}
.yfa{bottom:216.346667pt;}
.y20{bottom:217.466667pt;}
.y67{bottom:217.786667pt;}
.yce{bottom:220.666667pt;}
.y145{bottom:220.986667pt;}
.y7e{bottom:223.066667pt;}
.y88{bottom:224.506667pt;}
.y174{bottom:225.146667pt;}
.y111{bottom:225.306667pt;}
.ya1{bottom:227.866667pt;}
.y27{bottom:234.440000pt;}
.y144{bottom:235.226667pt;}
.y102{bottom:236.826667pt;}
.yf9{bottom:237.466667pt;}
.y66{bottom:238.266667pt;}
.ycd{bottom:240.986667pt;}
.y7d{bottom:243.546667pt;}
.y87{bottom:244.986667pt;}
.y110{bottom:245.146667pt;}
.ya0{bottom:246.106667pt;}
.y143{bottom:249.466667pt;}
.y26{bottom:254.920000pt;}
.y101{bottom:257.946667pt;}
.y65{bottom:258.586667pt;}
.ycc{bottom:261.466667pt;}
.y142{bottom:263.866667pt;}
.y7c{bottom:264.026667pt;}
.y10f{bottom:264.986667pt;}
.y86{bottom:265.466667pt;}
.y9e{bottom:265.946667pt;}
.y173{bottom:267.226667pt;}
.y25{bottom:275.400000pt;}
.y141{bottom:278.106667pt;}
.y64{bottom:279.066667pt;}
.yf8{bottom:279.866667pt;}
.ycb{bottom:281.946667pt;}
.y7b{bottom:284.346667pt;}
.y10e{bottom:284.826667pt;}
.y160{bottom:285.946667pt;}
.y9d{bottom:288.186667pt;}
.y140{bottom:292.386667pt;}
.y24{bottom:295.880000pt;}
.y85{bottom:298.306667pt;}
.y63{bottom:299.586667pt;}
.y100{bottom:300.226667pt;}
.yf7{bottom:301.026667pt;}
.yca{bottom:302.466667pt;}
.y7a{bottom:304.866667pt;}
.y15f{bottom:306.466667pt;}
.y13f{bottom:306.786667pt;}
.y9c{bottom:308.706667pt;}
.y172{bottom:309.186667pt;}
.y23{bottom:316.386667pt;}
.y62{bottom:320.066667pt;}
.y13e{bottom:321.026667pt;}
.yf6{bottom:321.346667pt;}
.yc9{bottom:322.946667pt;}
.y10d{bottom:324.706667pt;}
.y79{bottom:325.346667pt;}
.y15e{bottom:326.946667pt;}
.y9b{bottom:329.186667pt;}
.y171{bottom:330.306667pt;}
.yf5{bottom:335.106667pt;}
.y13d{bottom:335.426667pt;}
.y22{bottom:336.866667pt;}
.y10c{bottom:338.626667pt;}
.y61{bottom:340.546667pt;}
.yc8{bottom:343.426667pt;}
.y78{bottom:345.826667pt;}
.y15d{bottom:347.266667pt;}
.y9a{bottom:349.666667pt;}
.y170{bottom:351.266667pt;}
.yf4{bottom:355.586667pt;}
.y21{bottom:357.186667pt;}
.y10b{bottom:360.386667pt;}
.y60{bottom:361.026667pt;}
.y99{bottom:362.626667pt;}
.yc7{bottom:363.746667pt;}
.y13c{bottom:363.906667pt;}
.y77{bottom:366.306667pt;}
.y15c{bottom:367.746667pt;}
.y16f{bottom:372.386667pt;}
.yf3{bottom:375.906667pt;}
.y13b{bottom:378.306667pt;}
.yd5{bottom:380.226667pt;}
.y10a{bottom:381.026667pt;}
.y5f{bottom:381.346667pt;}
.y98{bottom:383.746667pt;}
.yc5{bottom:384.866667pt;}
.y76{bottom:386.786667pt;}
.y15b{bottom:388.226667pt;}
.y13a{bottom:392.546667pt;}
.y16e{bottom:393.346667pt;}
.yf2{bottom:396.386667pt;}
.yc4{bottom:401.026667pt;}
.y5e{bottom:401.826667pt;}
.y97{bottom:404.866667pt;}
.y139{bottom:406.946667pt;}
.y75{bottom:407.106667pt;}
.y15a{bottom:408.706667pt;}
.y16d{bottom:414.306667pt;}
.yc3{bottom:415.426667pt;}
.yf1{bottom:416.866667pt;}
.y138{bottom:421.186667pt;}
.y5d{bottom:422.306667pt;}
.y96{bottom:425.986667pt;}
.y74{bottom:427.586667pt;}
.y159{bottom:429.186667pt;}
.yc2{bottom:429.666667pt;}
.yf0{bottom:429.826667pt;}
.y137{bottom:435.426667pt;}
.y5c{bottom:442.786667pt;}
.yc1{bottom:443.906667pt;}
.yef{bottom:444.226667pt;}
.y95{bottom:447.106667pt;}
.y73{bottom:448.066667pt;}
.y158{bottom:449.506667pt;}
.y136{bottom:449.826667pt;}
.y16c{bottom:456.386667pt;}
.yc0{bottom:458.306667pt;}
.yee{bottom:458.466667pt;}
.y5b{bottom:463.266667pt;}
.y135{bottom:464.066667pt;}
.y94{bottom:468.226667pt;}
.y72{bottom:468.546667pt;}
.y157{bottom:469.986667pt;}
.ybf{bottom:472.546667pt;}
.yed{bottom:472.866667pt;}
.y16b{bottom:477.346667pt;}
.y134{bottom:478.306667pt;}
.y5a{bottom:483.746667pt;}
.ybe{bottom:486.786667pt;}
.yec{bottom:487.106667pt;}
.y71{bottom:489.026667pt;}
.y93{bottom:489.346667pt;}
.y156{bottom:490.466667pt;}
.y133{bottom:492.706667pt;}
.y16a{bottom:498.466667pt;}
.ybd{bottom:501.186667pt;}
.yeb{bottom:501.346667pt;}
.y59{bottom:504.066667pt;}
.y132{bottom:506.946667pt;}
.y70{bottom:509.346667pt;}
.y92{bottom:510.466667pt;}
.y155{bottom:510.946667pt;}
.ybc{bottom:515.426667pt;}
.yea{bottom:515.746667pt;}
.y169{bottom:519.426667pt;}
.y131{bottom:521.346667pt;}
.y58{bottom:524.546667pt;}
.y6f{bottom:529.853333pt;}
.ye9{bottom:530.013333pt;}
.y154{bottom:531.453333pt;}
.y91{bottom:531.613333pt;}
.y12e{bottom:536.893333pt;}
.y168{bottom:540.573333pt;}
.y6e{bottom:543.773333pt;}
.ybb{bottom:544.093333pt;}
.ye8{bottom:544.413333pt;}
.y57{bottom:545.053333pt;}
.y130{bottom:551.293333pt;}
.y153{bottom:551.933333pt;}
.y8f{bottom:554.173333pt;}
.yba{bottom:558.333333pt;}
.ye7{bottom:558.653333pt;}
.y167{bottom:561.533333pt;}
.y56{bottom:565.533333pt;}
.y152{bottom:572.253333pt;}
.ye6{bottom:572.893333pt;}
.y12d{bottom:576.253333pt;}
.y166{bottom:582.493333pt;}
.y1e{bottom:585.693333pt;}
.y55{bottom:586.013333pt;}
.yb9{bottom:586.333333pt;}
.ye5{bottom:587.293333pt;}
.y151{bottom:592.733333pt;}
.y12c{bottom:596.733333pt;}
.ye4{bottom:601.533333pt;}
.y165{bottom:603.613333pt;}
.y54{bottom:606.333333pt;}
.y1c{bottom:612.413333pt;}
.y150{bottom:613.213333pt;}
.yb8{bottom:614.333333pt;}
.ye3{bottom:615.773333pt;}
.y12b{bottom:617.213333pt;}
.y164{bottom:624.573333pt;}
.y53{bottom:626.813333pt;}
.yb7{bottom:628.573333pt;}
.ye2{bottom:630.173333pt;}
.y14f{bottom:633.693333pt;}
.y12a{bottom:637.693333pt;}
.ye1{bottom:644.413333pt;}
.y163{bottom:645.533333pt;}
.y52{bottom:647.293333pt;}
.y14e{bottom:654.173333pt;}
.y19{bottom:655.133333pt;}
.yb5{bottom:656.573333pt;}
.y129{bottom:657.533333pt;}
.ye0{bottom:659.133333pt;}
.y162{bottom:666.653333pt;}
.y51{bottom:667.773333pt;}
.ydf{bottom:673.853333pt;}
.y14d{bottom:674.653333pt;}
.y128{bottom:677.373333pt;}
.yb4{bottom:684.413333pt;}
.y161{bottom:687.613333pt;}
.y50{bottom:688.253333pt;}
.ydd{bottom:688.733333pt;}
.y127{bottom:697.373333pt;}
.ydc{bottom:703.453333pt;}
.y18{bottom:704.093333pt;}
.y4f{bottom:708.733333pt;}
.yb3{bottom:712.413333pt;}
.y126{bottom:717.213333pt;}
.ydb{bottom:718.173333pt;}
.y15{bottom:719.133333pt;}
.yb2{bottom:726.653333pt;}
.y4e{bottom:729.053333pt;}
.yda{bottom:732.893333pt;}
.y125{bottom:737.053333pt;}
.yb1{bottom:741.053333pt;}
.yd9{bottom:747.613333pt;}
.y4d{bottom:749.533333pt;}
.yb0{bottom:755.293333pt;}
.y124{bottom:756.893333pt;}
.yd8{bottom:762.333333pt;}
.yae{bottom:769.573333pt;}
.y4c{bottom:770.053333pt;}
.y13{bottom:773.573333pt;}
.y123{bottom:776.933333pt;}
.yd7{bottom:777.093333pt;}
.y11{bottom:786.533333pt;}
.y4b{bottom:790.533333pt;}
.yd6{bottom:792.773333pt;}
.y122{bottom:796.773333pt;}
.ya9{bottom:798.853333pt;}
.y4a{bottom:811.013333pt;}
.yf{bottom:813.733333pt;}
.y121{bottom:816.613333pt;}
.yc{bottom:825.893333pt;}
.yab{bottom:826.853333pt;}
.y49{bottom:831.493333pt;}
.y120{bottom:836.613333pt;}
.y48{bottom:851.813333pt;}
.y11f{bottom:856.453333pt;}
.y47{bottom:872.293333pt;}
.y11e{bottom:876.293333pt;}
.y46{bottom:892.773333pt;}
.y11d{bottom:896.133333pt;}
.yb{bottom:900.453333pt;}
.y45{bottom:913.253333pt;}
.ya{bottom:915.653333pt;}
.y11c{bottom:916.133333pt;}
.y7{bottom:930.533333pt;}
.y44{bottom:933.733333pt;}
.y11b{bottom:935.973333pt;}
.y3a{bottom:953.893333pt;}
.y43{bottom:954.213333pt;}
.y11a{bottom:955.813333pt;}
.y42{bottom:974.533333pt;}
.y119{bottom:975.653333pt;}
.y41{bottom:995.013333pt;}
.y118{bottom:995.653333pt;}
.y40{bottom:1015.520000pt;}
.y1{bottom:1059.680000pt;}
.y5{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.hf{height:12.160000pt;}
.h13{height:12.960000pt;}
.h2f{height:13.600000pt;}
.h31{height:13.632000pt;}
.h32{height:13.760000pt;}
.h39{height:13.920000pt;}
.h38{height:14.080000pt;}
.h35{height:14.112000pt;}
.h17{height:15.040000pt;}
.h20{height:15.360000pt;}
.h33{height:15.520000pt;}
.h2d{height:17.600000pt;}
.h2c{height:17.760000pt;}
.h3{height:18.400000pt;}
.h5{height:18.720000pt;}
.h29{height:20.320000pt;}
.h2a{height:20.480000pt;}
.h2b{height:20.512000pt;}
.h16{height:22.223750pt;}
.h21{height:25.907188pt;}
.h1d{height:26.720000pt;}
.h11{height:27.200000pt;}
.h30{height:27.360000pt;}
.h3a{height:28.000000pt;}
.h10{height:29.040312pt;}
.h3b{height:32.453125pt;}
.h14{height:32.788125pt;}
.h18{height:35.975313pt;}
.h22{height:36.304688pt;}
.h1a{height:36.328125pt;}
.h25{height:36.703125pt;}
.h28{height:37.658750pt;}
.h1e{height:40.177188pt;}
.h27{height:40.203125pt;}
.h37{height:40.453125pt;}
.h2e{height:41.600000pt;}
.h1b{height:42.720000pt;}
.h12{height:43.343750pt;}
.h34{height:44.533750pt;}
.h1c{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h24{height:48.937500pt;}
.h19{height:48.960000pt;}
.h26{height:49.075000pt;}
.h36{height:49.336436pt;}
.h6{height:50.712187pt;}
.h15{height:54.432000pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.480000pt;}
.h7{height:75.465000pt;}
.h23{height:83.392000pt;}
.h8{height:96.032000pt;}
.h1f{height:368.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:31.200000pt;}
.w24{width:39.520000pt;}
.w21{width:46.880000pt;}
.w3{width:48.160000pt;}
.wd{width:49.120000pt;}
.w1c{width:57.600000pt;}
.we{width:58.240000pt;}
.w1e{width:60.000000pt;}
.w1f{width:60.320000pt;}
.w16{width:60.832000pt;}
.w20{width:64.672000pt;}
.w11{width:64.800000pt;}
.w25{width:65.440000pt;}
.w12{width:67.232000pt;}
.w7{width:68.160000pt;}
.w1d{width:68.832000pt;}
.w17{width:78.880000pt;}
.w23{width:104.960000pt;}
.w6{width:109.280000pt;}
.w1a{width:111.552000pt;}
.w13{width:120.320000pt;}
.w19{width:126.432000pt;}
.w15{width:139.706667pt;}
.w14{width:143.546667pt;}
.wf{width:174.586667pt;}
.w22{width:175.906667pt;}
.w18{width:240.666667pt;}
.w26{width:280.866667pt;}
.wb{width:295.266667pt;}
.wa{width:316.826667pt;}
.wc{width:412.866667pt;}
.w5{width:485.760000pt;}
.w8{width:547.933333pt;}
.w4{width:550.973333pt;}
.w1b{width:598.973333pt;}
.w9{width:612.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:1.440000pt;}
.x38{left:2.400000pt;}
.x25{left:4.320000pt;}
.x4{left:5.760000pt;}
.xa{left:7.200000pt;}
.x24{left:8.634667pt;}
.x6{left:9.632000pt;}
.x2b{left:10.880000pt;}
.x3a{left:11.840000pt;}
.x21{left:12.800000pt;}
.x39{left:13.920000pt;}
.x11{left:14.880000pt;}
.x1f{left:16.634667pt;}
.x2{left:18.400000pt;}
.x1c{left:19.520000pt;}
.x33{left:20.680000pt;}
.x1b{left:22.080000pt;}
.x1a{left:23.200000pt;}
.x34{left:24.346667pt;}
.x18{left:25.440000pt;}
.x19{left:26.560000pt;}
.x23{left:30.880000pt;}
.x27{left:32.320000pt;}
.x8{left:34.853333pt;}
.x2e{left:40.000000pt;}
.x26{left:44.960000pt;}
.xe{left:65.626667pt;}
.x9{left:88.992000pt;}
.xc{left:90.112000pt;}
.x1{left:96.031988pt;}
.x5{left:97.280000pt;}
.x16{left:98.272000pt;}
.x1e{left:128.672000pt;}
.x3{left:147.066667pt;}
.xb{left:157.146667pt;}
.x13{left:187.706667pt;}
.x20{left:193.466667pt;}
.x15{left:202.746655pt;}
.x17{left:205.626667pt;}
.x12{left:234.586667pt;}
.x22{left:260.706667pt;}
.x10{left:289.666667pt;}
.x2d{left:338.146667pt;}
.x30{left:395.746667pt;}
.x14{left:403.426667pt;}
.xd{left:406.946667pt;}
.xf{left:411.266655pt;}
.x28{left:412.866667pt;}
.x35{left:414.146667pt;}
.x2c{left:457.533322pt;}
.x2f{left:464.573333pt;}
.x31{left:524.573333pt;}
.x29{left:556.413333pt;}
.x7{left:585.120000pt;}
.x36{left:590.053333pt;}
.x2a{left:617.253333pt;}
.x37{left:629.573333pt;}
.x32{left:649.573333pt;}
}




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