
    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_9cd37966d05563dc0f6b6a23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_522b224e07b138585a0ca931.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_e7742b18eaa766aecfe05811.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970703;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_d2e9efd9d03aed044cf52929.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_a5b98569bd82b29f67e44cbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_1d33a5df9fe55c66626bbf98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;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_a4286c3c91431a72977f72ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.207031;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_659d2da8a200565108cf9491.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_c102219453a47ca45f1eaf30.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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_3c502e3fd64b211c686234ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_d2c0448d7b3a3b0474afdf6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_af6ed04d98cc21863ff3d3e5.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3a8fc00e505aefdf3b0f3414.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4260ef41dcac1d4b617849e4.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;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_54be42a53580d2f1ca92ee96.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c5966cd5ce06491f5864c77a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.688477;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_bcce7d7776adb8c79d64fbc5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.850586;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_fb9b4280635dfa11305cd668.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.108000;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_466bcef748fe4702a18c120f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.919000;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:ff16;src:url('chunks/assets/font_629e2fe18171326606247a1d.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.239258;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:ff17;src:url('chunks/assets/font_da425ff57e37b4e9a4051911.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.027000;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:ff18;src:url('chunks/assets/font_0d2ee8d25a60863b3eef2d5f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.475000;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:ff19;src:url('chunks/assets/font_5c13390fc77f1cdec4251e07.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.847168;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:ff1a;src:url('chunks/assets/font_39879e5b5850deebabb3d3fa.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.856934;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,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);}
.v1{vertical-align:-47.520000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.020880px;}
.ls15{letter-spacing:0.021240px;}
.ls5{letter-spacing:0.026496px;}
.lsd{letter-spacing:0.034560px;}
.lsa{letter-spacing:0.088560px;}
.ls1e{letter-spacing:0.088577px;}
.ls8{letter-spacing:0.095760px;}
.lsf{letter-spacing:0.096000px;}
.ls20{letter-spacing:0.155922px;}
.ls10{letter-spacing:0.178800px;}
.lsb{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.189257px;}
.ls1a{letter-spacing:0.189300px;}
.ls1d{letter-spacing:0.189301px;}
.ls4{letter-spacing:0.215760px;}
.ls11{letter-spacing:0.244200px;}
.ls9{letter-spacing:0.265680px;}
.lse{letter-spacing:0.265800px;}
.ls1c{letter-spacing:0.378514px;}
.ls17{letter-spacing:0.378600px;}
.ls18{letter-spacing:0.378602px;}
.ls6{letter-spacing:0.445680px;}
.ls3{letter-spacing:0.488880px;}
.ls2{letter-spacing:0.503280px;}
.ls12{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.815760px;}
.ls1b{letter-spacing:2.350619px;}
.ls1f{letter-spacing:3.071039px;}
.ls19{letter-spacing:3.791518px;}
.ls7{letter-spacing:497.245680px;}
.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;}
}
.wsf{word-spacing:-46.433501px;}
.ws13{word-spacing:-18.155914px;}
.ws9{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.999993px;}
.wsa{word-spacing:-17.712000px;}
.ws7{word-spacing:-15.915711px;}
.ws8{word-spacing:-15.343320px;}
.ws12{word-spacing:-15.318596px;}
.ws10{word-spacing:-15.318508px;}
.ws5{word-spacing:-15.277920px;}
.ws3{word-spacing:-15.144192px;}
.ws4{word-spacing:-15.133680px;}
.ws2{word-spacing:-15.099120px;}
.wsd{word-spacing:-14.939994px;}
.wsc{word-spacing:-14.219994px;}
.ws6{word-spacing:-14.176512px;}
.ws1{word-spacing:-14.134320px;}
.wse{word-spacing:-12.059995px;}
.ws11{word-spacing:-9.719996px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-5.554297px;}
._14{margin-left:-4.322840px;}
._2{margin-left:-3.051312px;}
._1{margin-left:-1.302480px;}
._0{width:1.229481px;}
._4{width:3.124224px;}
._3{width:4.181760px;}
._5{width:5.208615px;}
._6{width:6.987303px;}
._c{width:7.996176px;}
._a{width:9.216000px;}
._b{width:11.154519px;}
._16{width:12.698490px;}
._10{width:14.341228px;}
._f{width:15.920338px;}
._19{width:17.052491px;}
._11{width:18.957578px;}
._20{width:20.460124px;}
._1a{width:21.595029px;}
._1c{width:22.985186px;}
._1b{width:24.167092px;}
._15{width:25.380684px;}
._13{width:26.705435px;}
._12{width:27.951238px;}
._d{width:29.094480px;}
._8{width:30.384000px;}
._9{width:32.449037px;}
._1f{width:34.410304px;}
._18{width:35.578145px;}
._17{width:38.123437px;}
._1d{width:39.493355px;}
._1e{width:40.510322px;}
._7{width:161.796000px;}
.fcb{color:rgb(4,77,110);}
.fc9{color:rgb(0,86,150);}
.fcc{color:rgb(0,32,96);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(128,0,0);}
.fc5{color:rgb(0,0,153);}
.fc4{color:rgb(0,0,128);}
.fca{color:rgb(0,0,255);}
.fc3{color:rgb(165,0,33);}
.fc8{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(0,102,204);}
.fs12{font-size:38.879984px;}
.fs13{font-size:48.239981px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:48.384000px;}
.fsb{font-size:50.848916px;}
.fs11{font-size:56.879977px;}
.fs10{font-size:59.759976px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:59.904000px;}
.fsc{font-size:66.240000px;}
.fse{font-size:69.822393px;}
.fsf{font-size:71.999971px;}
.fsd{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:77.904000px;}
.fs4{font-size:81.965417px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yba{bottom:3.240004px;}
.ya0{bottom:7.380000px;}
.y79{bottom:7.410000px;}
.yb2{bottom:14.040000px;}
.y82{bottom:14.400000px;}
.y7f{bottom:14.610000px;}
.ya3{bottom:14.760000px;}
.y78{bottom:31.170000px;}
.y9f{bottom:31.320000px;}
.y6d{bottom:34.020000px;}
.yb1{bottom:37.980000px;}
.ya2{bottom:38.520000px;}
.y7e{bottom:38.550000px;}
.y6c{bottom:46.080000px;}
.yeb{bottom:46.380281px;}
.ybf{bottom:47.100281px;}
.y9e{bottom:55.116000px;}
.y81{bottom:55.980000px;}
.y83{bottom:56.160000px;}
.y6b{bottom:58.140000px;}
.yb0{bottom:61.740000px;}
.y77{bottom:61.950000px;}
.y7d{bottom:62.310000px;}
.yea{bottom:63.660275px;}
.y120{bottom:67.080273px;}
.ybe{bottom:67.800273px;}
.y6a{bottom:70.020000px;}
.y69{bottom:82.080000px;}
.y11f{bottom:84.360266px;}
.yaf{bottom:85.500000px;}
.y76{bottom:85.710000px;}
.y7c{bottom:86.070000px;}
.ybd{bottom:87.780265px;}
.y84{bottom:93.960000px;}
.y68{bottom:94.140000px;}
.ybc{bottom:105.060258px;}
.y67{bottom:106.020000px;}
.yae{bottom:109.305000px;}
.y75{bottom:109.470000px;}
.y9d{bottom:109.650000px;}
.y7b{bottom:109.830000px;}
.ya1{bottom:110.010000px;}
.yb3{bottom:110.025000px;}
.y66{bottom:118.080000px;}
.ybb{bottom:122.340251px;}
.y65{bottom:130.140000px;}
.y13c{bottom:131.519947px;}
.y11c{bottom:131.520247px;}
.yad{bottom:133.245000px;}
.y74{bottom:133.410000px;}
.y7a{bottom:133.770000px;}
.yb9{bottom:136.380240px;}
.y11b{bottom:136.740245px;}
.yb8{bottom:139.620244px;}
.y64{bottom:142.056000px;}
.y176{bottom:143.040243px;}
.y11a{bottom:148.799940px;}
.y14a{bottom:148.800240px;}
.y149{bottom:154.019938px;}
.y63{bottom:154.110000px;}
.yac{bottom:157.005000px;}
.y9c{bottom:157.530000px;}
.yb7{bottom:157.619937px;}
.y119{bottom:165.899934px;}
.y62{bottom:166.170000px;}
.y175{bottom:166.979933px;}
.y118{bottom:171.119932px;}
.y61{bottom:178.050000px;}
.yb6{bottom:178.319929px;}
.yab{bottom:180.765000px;}
.y9b{bottom:181.290000px;}
.y117{bottom:183.179927px;}
.y144{bottom:188.399925px;}
.y60{bottom:190.110000px;}
.y174{bottom:190.739924px;}
.ye7{bottom:198.299921px;}
.y116{bottom:200.459920px;}
.y5f{bottom:202.170000px;}
.yaa{bottom:204.525000px;}
.y9a{bottom:205.050000px;}
.y115{bottom:205.679918px;}
.y5e{bottom:214.050000px;}
.y173{bottom:214.499914px;}
.ye6{bottom:215.399914px;}
.y13b{bottom:217.739913px;}
.y114{bottom:218.459913px;}
.y143{bottom:222.959911px;}
.y5d{bottom:226.110000px;}
.ya9{bottom:228.465000px;}
.y99{bottom:228.990000px;}
.ye5{bottom:232.679907px;}
.y13a{bottom:235.019906px;}
.y142{bottom:235.739906px;}
.ye4{bottom:237.899905px;}
.y5c{bottom:238.170000px;}
.y172{bottom:238.259905px;}
.ye3{bottom:249.959900px;}
.y5b{bottom:250.050000px;}
.ya8{bottom:252.225000px;}
.y139{bottom:252.299899px;}
.y98{bottom:252.750000px;}
.y171{bottom:257.519897px;}
.y5a{bottom:262.110000px;}
.y113{bottom:262.199895px;}
.ye2{bottom:267.059893px;}
.y141{bottom:267.419893px;}
.y138{bottom:269.399892px;}
.y59{bottom:274.170000px;}
.ya7{bottom:275.985000px;}
.y97{bottom:276.510000px;}
.ye1{bottom:285.599886px;}
.y112{bottom:285.959886px;}
.y58{bottom:286.050000px;}
.y137{bottom:286.679885px;}
.y136{bottom:291.899883px;}
.y57{bottom:298.110000px;}
.ya6{bottom:299.745000px;}
.y96{bottom:300.315000px;}
.ye0{bottom:302.879879px;}
.y135{bottom:303.959878px;}
.y170{bottom:304.679878px;}
.y111{bottom:309.719876px;}
.y56{bottom:310.170000px;}
.ydf{bottom:319.979872px;}
.y134{bottom:321.239872px;}
.y55{bottom:322.050000px;}
.ya5{bottom:323.685000px;}
.y95{bottom:324.255000px;}
.y110{bottom:333.479867px;}
.y54{bottom:334.110000px;}
.y133{bottom:338.519865px;}
.yde{bottom:339.239864px;}
.y16f{bottom:342.839863px;}
.y53{bottom:346.170000px;}
.y94{bottom:348.015000px;}
.y132{bottom:355.619858px;}
.y10f{bottom:357.419857px;}
.y52{bottom:358.050000px;}
.y131{bottom:360.839856px;}
.y16e{bottom:366.599853px;}
.y51{bottom:370.110000px;}
.y93{bottom:371.775000px;}
.y130{bottom:372.899851px;}
.ya{bottom:373.170000px;}
.y10d{bottom:381.179848px;}
.y50{bottom:382.170000px;}
.y10e{bottom:386.399845px;}
.y12f{bottom:390.179844px;}
.y16d{bottom:390.539844px;}
.y4f{bottom:394.095000px;}
.y92{bottom:395.535000px;}
.y9{bottom:397.155000px;}
.y10c{bottom:404.939838px;}
.y4e{bottom:406.155000px;}
.y12e{bottom:407.459837px;}
.y12d{bottom:412.679835px;}
.y16c{bottom:414.299834px;}
.y8{bottom:416.595000px;}
.y4d{bottom:418.215000px;}
.y91{bottom:419.475000px;}
.y164{bottom:424.739830px;}
.y12c{bottom:425.459830px;}
.y10b{bottom:428.699829px;}
.y163{bottom:429.959828px;}
.y4c{bottom:430.095000px;}
.y148{bottom:433.919826px;}
.y7{bottom:436.575000px;}
.y16b{bottom:438.059825px;}
.ydd{bottom:438.779824px;}
.y162{bottom:442.019823px;}
.y4b{bottom:442.155000px;}
.y90{bottom:443.235000px;}
.y14c{bottom:452.279819px;}
.y10a{bottom:452.639819px;}
.y4a{bottom:454.215000px;}
.y6{bottom:457.095000px;}
.y161{bottom:459.119816px;}
.y16a{bottom:461.819815px;}
.ydb{bottom:462.719815px;}
.y49{bottom:466.095000px;}
.y8f{bottom:466.995000px;}
.ydc{bottom:467.939813px;}
.y109{bottom:476.399809px;}
.y48{bottom:478.155000px;}
.y5{bottom:478.695000px;}
.y147{bottom:481.619807px;}
.y169{bottom:485.759806px;}
.yda{bottom:486.479805px;}
.y47{bottom:490.215000px;}
.y8e{bottom:490.755000px;}
.y160{bottom:493.679803px;}
.y15f{bottom:498.899800px;}
.y108{bottom:500.159800px;}
.y46{bottom:502.095000px;}
.y154{bottom:505.379798px;}
.y4{bottom:508.215000px;}
.y168{bottom:509.519796px;}
.yd9{bottom:510.239796px;}
.y15e{bottom:510.959796px;}
.y45{bottom:514.155000px;}
.y8d{bottom:514.695000px;}
.y107{bottom:523.919790px;}
.y44{bottom:526.215000px;}
.y15d{bottom:528.239789px;}
.y167{bottom:530.399788px;}
.yd8{bottom:533.999786px;}
.y3{bottom:535.215000px;}
.y43{bottom:538.095000px;}
.y8c{bottom:538.455000px;}
.y15c{bottom:545.519782px;}
.y106{bottom:547.859781px;}
.y42{bottom:550.155000px;}
.y166{bottom:551.099780px;}
.yd7{bottom:554.519778px;}
.y2{bottom:559.875000px;}
.y41{bottom:562.215000px;}
.y8b{bottom:562.245000px;}
.y15b{bottom:562.619775px;}
.y105{bottom:571.619771px;}
.y165{bottom:571.799771px;}
.y40{bottom:574.095000px;}
.yd6{bottom:578.459769px;}
.y15a{bottom:579.899768px;}
.y159{bottom:585.119766px;}
.y8a{bottom:586.005000px;}
.y3f{bottom:586.155000px;}
.y153{bottom:595.019762px;}
.y104{bottom:595.379762px;}
.y158{bottom:597.899761px;}
.y3e{bottom:598.215000px;}
.yd5{bottom:602.399759px;}
.y89{bottom:609.945000px;}
.y3d{bottom:610.095000px;}
.y152{bottom:618.779752px;}
.y102{bottom:619.139752px;}
.y3c{bottom:622.155000px;}
.y103{bottom:624.359750px;}
.yd4{bottom:626.159750px;}
.y88{bottom:633.705000px;}
.y3b{bottom:634.215000px;}
.y101{bottom:642.899743px;}
.y3a{bottom:646.125000px;}
.yd3{bottom:649.919740px;}
.y87{bottom:657.465000px;}
.y39{bottom:658.185000px;}
.y140{bottom:666.479733px;}
.y100{bottom:666.839733px;}
.y38{bottom:670.245000px;}
.yd2{bottom:673.679731px;}
.y86{bottom:681.225000px;}
.y37{bottom:682.125000px;}
.y13f{bottom:690.239724px;}
.yff{bottom:690.599724px;}
.y36{bottom:694.185000px;}
.y157{bottom:695.819722px;}
.yd1{bottom:697.619721px;}
.y85{bottom:704.985000px;}
.y35{bottom:706.245000px;}
.yfe{bottom:713.999714px;}
.y12b{bottom:714.359714px;}
.y34{bottom:718.125000px;}
.y150{bottom:719.579712px;}
.yd0{bottom:721.379711px;}
.y33{bottom:730.185000px;}
.yfd{bottom:737.759705px;}
.y12a{bottom:738.119705px;}
.y32{bottom:742.245000px;}
.y146{bottom:743.339703px;}
.ycf{bottom:745.139702px;}
.y31{bottom:754.125000px;}
.y129{bottom:761.699695px;}
.yfc{bottom:762.059695px;}
.y30{bottom:766.185000px;}
.y14f{bottom:767.279693px;}
.yce{bottom:768.899692px;}
.yb4{bottom:777.705000px;}
.y128{bottom:785.459686px;}
.yfb{bottom:785.819686px;}
.y2f{bottom:790.125000px;}
.y156{bottom:791.039684px;}
.ycd{bottom:792.839683px;}
.ya4{bottom:793.185000px;}
.y2e{bottom:802.185000px;}
.y14e{bottom:809.219676px;}
.yfa{bottom:809.579676px;}
.y2d{bottom:814.245000px;}
.y80{bottom:815.325000px;}
.ycc{bottom:816.599673px;}
.y2c{bottom:826.125000px;}
.y14d{bottom:832.979667px;}
.yf9{bottom:833.339667px;}
.y2b{bottom:838.185000px;}
.y13e{bottom:838.559665px;}
.ycb{bottom:840.359664px;}
.y2a{bottom:850.245000px;}
.yf8{bottom:857.279657px;}
.y29{bottom:862.125000px;}
.y155{bottom:862.499655px;}
.yca{bottom:864.119654px;}
.y28{bottom:874.185000px;}
.yf7{bottom:881.039648px;}
.y27{bottom:886.245000px;}
.y127{bottom:886.259645px;}
.y73{bottom:887.880000px;}
.yc9{bottom:888.059645px;}
.y26{bottom:898.170000px;}
.yf6{bottom:904.799638px;}
.y14b{bottom:910.019636px;}
.y25{bottom:910.230000px;}
.yc8{bottom:911.819635px;}
.y24{bottom:922.290000px;}
.yf5{bottom:928.559629px;}
.y126{bottom:933.779626px;}
.y23{bottom:934.170000px;}
.yc7{bottom:935.579626px;}
.y22{bottom:946.230000px;}
.yf4{bottom:952.499619px;}
.y145{bottom:957.719617px;}
.y21{bottom:958.290000px;}
.yc6{bottom:959.339616px;}
.y20{bottom:970.170000px;}
.yf3{bottom:976.259609px;}
.y1f{bottom:982.230000px;}
.yc5{bottom:983.459607px;}
.y1e{bottom:994.290000px;}
.yf2{bottom:1000.019600px;}
.y125{bottom:1005.239598px;}
.y1d{bottom:1006.170000px;}
.yc4{bottom:1008.479597px;}
.y1c{bottom:1018.230000px;}
.yf1{bottom:1023.779590px;}
.y13d{bottom:1028.999588px;}
.y1b{bottom:1030.290000px;}
.yc3{bottom:1032.599587px;}
.y1a{bottom:1042.170000px;}
.y72{bottom:1045.050000px;}
.yf0{bottom:1047.719581px;}
.y124{bottom:1052.939579px;}
.y19{bottom:1054.230000px;}
.yc2{bottom:1057.799577px;}
.y18{bottom:1066.290000px;}
.y71{bottom:1068.810000px;}
.y123{bottom:1071.119572px;}
.yef{bottom:1071.479571px;}
.y151{bottom:1076.699569px;}
.y17{bottom:1078.170000px;}
.yc1{bottom:1081.559567px;}
.y16{bottom:1090.230000px;}
.y70{bottom:1092.570000px;}
.y122{bottom:1094.879562px;}
.yed{bottom:1095.239562px;}
.yee{bottom:1100.459560px;}
.y15{bottom:1102.290000px;}
.yc0{bottom:1105.319558px;}
.y14{bottom:1114.170000px;}
.y6f{bottom:1116.510000px;}
.y121{bottom:1118.639553px;}
.yec{bottom:1118.999552px;}
.yb5{bottom:1121.699551px;}
.y13{bottom:1126.230000px;}
.y6e{bottom:1133.250000px;}
.y12{bottom:1138.290000px;}
.y11{bottom:1150.200000px;}
.y1{bottom:1159.020000px;}
.y10{bottom:1162.260000px;}
.yf{bottom:1174.320000px;}
.y11e{bottom:1182.899527px;}
.ye9{bottom:1185.419526px;}
.ye{bottom:1186.200000px;}
.yd{bottom:1198.260000px;}
.y11d{bottom:1202.519519px;}
.ye8{bottom:1202.699519px;}
.yc{bottom:1210.320000px;}
.yb{bottom:1222.200000px;}
.h1d{height:16.740000px;}
.h25{height:33.263987px;}
.h23{height:34.603186px;}
.hc{height:39.477656px;}
.hd{height:39.595500px;}
.h2{height:40.569750px;}
.h3{height:41.493516px;}
.hf{height:41.612687px;}
.h1e{height:42.608863px;}
.h26{height:42.933583px;}
.h18{height:47.286943px;}
.hb{height:48.263555px;}
.he{height:48.407625px;}
.h27{height:48.883660px;}
.h20{height:50.623180px;}
.h22{height:51.335979px;}
.h1c{height:53.186379px;}
.h24{height:55.353845px;}
.h1a{height:55.825312px;}
.h21{height:58.895976px;}
.h8{height:59.421094px;}
.h9{height:59.531133px;}
.h6{height:62.634706px;}
.h17{height:63.175781px;}
.h1b{height:64.079974px;}
.h7{height:64.372852px;}
.ha{height:64.853086px;}
.h10{height:65.884219px;}
.h1f{height:66.691380px;}
.h14{height:70.628906px;}
.h13{height:70.664062px;}
.h15{height:72.540000px;}
.h11{height:72.562500px;}
.h4{height:82.529297px;}
.h5{height:91.354219px;}
.h12{height:150.135000px;}
.h19{height:340.050000px;}
.h16{height:721.365000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:3.960000px;}
.w3{width:69.330000px;}
.w5{width:73.065000px;}
.w4{width:575.010000px;}
.w2{width:701.730000px;}
.w6{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4d{left:8.091000px;}
.x13{left:59.940000px;}
.x4f{left:61.230000px;}
.x2d{left:80.100000px;}
.x22{left:82.116000px;}
.x17{left:87.516000px;}
.x1{left:90.756000px;}
.x4a{left:93.636000px;}
.x1d{left:112.716000px;}
.x18{left:122.616000px;}
.x53{left:127.619949px;}
.x5d{left:132.479947px;}
.x57{left:136.619554px;}
.x59{left:137.699945px;}
.x51{left:142.005000px;}
.x28{left:147.636000px;}
.x5a{left:148.860294px;}
.x3e{left:150.510000px;}
.x3c{left:152.670000px;}
.x3b{left:155.190000px;}
.x25{left:158.070000px;}
.x30{left:160.230000px;}
.x1f{left:161.490000px;}
.x41{left:163.290000px;}
.x21{left:169.590000px;}
.x48{left:170.670000px;}
.x2c{left:172.650000px;}
.x1e{left:174.810000px;}
.x15{left:178.590000px;}
.xe{left:180.930000px;}
.x6c{left:184.139926px;}
.x16{left:191.550000px;}
.x2e{left:195.150000px;}
.x3d{left:196.770000px;}
.x38{left:198.030000px;}
.x27{left:200.370000px;}
.x1c{left:202.530000px;}
.x40{left:204.150000px;}
.x37{left:207.030000px;}
.xc{left:210.630000px;}
.x26{left:212.970000px;}
.x35{left:216.030000px;}
.x7{left:217.830000px;}
.x11{left:219.090000px;}
.x2a{left:220.530000px;}
.x2b{left:223.230000px;}
.x1b{left:225.390000px;}
.x64{left:226.979909px;}
.x34{left:228.990000px;}
.x29{left:230.790000px;}
.x31{left:232.050000px;}
.x75{left:233.099907px;}
.x23{left:235.110000px;}
.x3a{left:236.550000px;}
.x6d{left:238.679905px;}
.x24{left:240.870000px;}
.x42{left:242.490000px;}
.x9d{left:243.719903px;}
.x79{left:246.959901px;}
.xd{left:250.230000px;}
.x39{left:251.670000px;}
.x20{left:253.110000px;}
.x36{left:255.090000px;}
.x96{left:259.199896px;}
.x58{left:260.998078px;}
.x10{left:264.675000px;}
.x14{left:266.655000px;}
.x32{left:270.975000px;}
.x33{left:273.495000px;}
.x3{left:275.295000px;}
.x68{left:281.339887px;}
.x69{left:286.199886px;}
.x47{left:288.435000px;}
.x2f{left:292.755000px;}
.x19{left:293.835000px;}
.x6e{left:296.459881px;}
.x12{left:298.695000px;}
.x7d{left:302.399879px;}
.x7a{left:304.739878px;}
.x4{left:306.075000px;}
.x8f{left:311.219876px;}
.x76{left:313.379875px;}
.x86{left:315.899874px;}
.x43{left:323.355000px;}
.x87{left:325.619870px;}
.x5{left:330.375000px;}
.x92{left:334.619866px;}
.x44{left:338.295000px;}
.x45{left:341.895000px;}
.x93{left:344.339862px;}
.x3f{left:361.155000px;}
.x5e{left:364.499854px;}
.xf{left:366.015000px;}
.x1a{left:368.715000px;}
.x55{left:377.639243px;}
.x4b{left:379.695000px;}
.x46{left:381.135000px;}
.x62{left:388.439845px;}
.x8e{left:390.239844px;}
.x63{left:393.299843px;}
.xb{left:396.075000px;}
.x6{left:401.655000px;}
.x8a{left:403.739839px;}
.x9{left:405.795000px;}
.x4c{left:410.115000px;}
.x82{left:417.419833px;}
.x60{left:426.059830px;}
.x83{left:427.139829px;}
.xa0{left:429.479828px;}
.x61{left:430.919828px;}
.xa1{left:433.259827px;}
.x56{left:435.779826px;}
.x77{left:437.939825px;}
.xa{left:439.485000px;}
.x8{left:441.465000px;}
.x71{left:444.059822px;}
.x2{left:445.785000px;}
.x78{left:447.659821px;}
.x72{left:453.779818px;}
.xa2{left:456.659817px;}
.x8b{left:480.419808px;}
.x8c{left:490.139804px;}
.x73{left:500.579800px;}
.x49{left:503.925000px;}
.x74{left:510.299796px;}
.x52{left:514.259794px;}
.x91{left:519.299792px;}
.x84{left:562.499775px;}
.x85{left:572.219771px;}
.x7b{left:583.199767px;}
.x97{left:587.699765px;}
.x7c{left:592.919763px;}
.x5b{left:608.219757px;}
.x5c{left:613.079755px;}
.x98{left:620.279752px;}
.x8d{left:622.979751px;}
.x6f{left:624.779750px;}
.x99{left:627.299749px;}
.x70{left:629.639748px;}
.x90{left:632.879747px;}
.x6a{left:638.459745px;}
.x9a{left:640.979744px;}
.x6b{left:643.319743px;}
.x88{left:651.779739px;}
.x9b{left:653.399739px;}
.x66{left:666.539733px;}
.x50{left:668.670000px;}
.x67{left:671.399731px;}
.x9c{left:686.879725px;}
.x94{left:694.979722px;}
.x89{left:700.739720px;}
.x95{left:704.699718px;}
.x7e{left:732.599707px;}
.x80{left:735.299706px;}
.xa3{left:742.859703px;}
.x81{left:745.019702px;}
.x9e{left:748.799700px;}
.x5f{left:750.419700px;}
.x9f{left:758.519697px;}
.x7f{left:761.579695px;}
.x65{left:765.359694px;}
.x4e{left:795.390000px;}
.x54{left:888.480000px;}
@media print{
.v1{vertical-align:-42.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.018560pt;}
.ls15{letter-spacing:0.018880pt;}
.ls5{letter-spacing:0.023552pt;}
.lsd{letter-spacing:0.030720pt;}
.lsa{letter-spacing:0.078720pt;}
.ls1e{letter-spacing:0.078735pt;}
.ls8{letter-spacing:0.085120pt;}
.lsf{letter-spacing:0.085333pt;}
.ls20{letter-spacing:0.138597pt;}
.ls10{letter-spacing:0.158933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.168228pt;}
.ls1a{letter-spacing:0.168267pt;}
.ls1d{letter-spacing:0.168268pt;}
.ls4{letter-spacing:0.191787pt;}
.ls11{letter-spacing:0.217067pt;}
.ls9{letter-spacing:0.236160pt;}
.lse{letter-spacing:0.236267pt;}
.ls1c{letter-spacing:0.336457pt;}
.ls17{letter-spacing:0.336533pt;}
.ls18{letter-spacing:0.336535pt;}
.ls6{letter-spacing:0.396160pt;}
.ls3{letter-spacing:0.434560pt;}
.ls2{letter-spacing:0.447360pt;}
.ls12{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.725120pt;}
.ls1b{letter-spacing:2.089439pt;}
.ls1f{letter-spacing:2.729812pt;}
.ls19{letter-spacing:3.370239pt;}
.ls7{letter-spacing:441.996160pt;}
.wsf{word-spacing:-41.274223pt;}
.ws13{word-spacing:-16.138591pt;}
.ws9{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.999994pt;}
.wsa{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.147298pt;}
.ws8{word-spacing:-13.638507pt;}
.ws12{word-spacing:-13.616529pt;}
.ws10{word-spacing:-13.616451pt;}
.ws5{word-spacing:-13.580373pt;}
.ws3{word-spacing:-13.461504pt;}
.ws4{word-spacing:-13.452160pt;}
.ws2{word-spacing:-13.421440pt;}
.wsd{word-spacing:-13.279995pt;}
.wsc{word-spacing:-12.639995pt;}
.ws6{word-spacing:-12.601344pt;}
.ws1{word-spacing:-12.563840pt;}
.wse{word-spacing:-10.719996pt;}
.ws11{word-spacing:-8.639997pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-4.937153pt;}
._14{margin-left:-3.842524pt;}
._2{margin-left:-2.712277pt;}
._1{margin-left:-1.157760pt;}
._0{width:1.092872pt;}
._4{width:2.777088pt;}
._3{width:3.717120pt;}
._5{width:4.629880pt;}
._6{width:6.210936pt;}
._c{width:7.107712pt;}
._a{width:8.192000pt;}
._b{width:9.915128pt;}
._16{width:11.287547pt;}
._10{width:12.747758pt;}
._f{width:14.151412pt;}
._19{width:15.157770pt;}
._11{width:16.851181pt;}
._20{width:18.186777pt;}
._1a{width:19.195581pt;}
._1c{width:20.431277pt;}
._1b{width:21.481859pt;}
._15{width:22.560608pt;}
._13{width:23.738164pt;}
._12{width:24.845545pt;}
._d{width:25.861760pt;}
._8{width:27.008000pt;}
._9{width:28.843589pt;}
._1f{width:30.586937pt;}
._18{width:31.625018pt;}
._17{width:33.887500pt;}
._1d{width:35.105204pt;}
._1e{width:36.009175pt;}
._7{width:143.818667pt;}
.fs12{font-size:34.559986pt;}
.fs13{font-size:42.879983pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:43.008000pt;}
.fsb{font-size:45.199037pt;}
.fs11{font-size:50.559980pt;}
.fs10{font-size:53.119979pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:53.248000pt;}
.fsc{font-size:58.880000pt;}
.fse{font-size:62.064349pt;}
.fsf{font-size:63.999974pt;}
.fsd{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:69.248000pt;}
.fs4{font-size:72.858149pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:2.880004pt;}
.ya0{bottom:6.560000pt;}
.y79{bottom:6.586667pt;}
.yb2{bottom:12.480000pt;}
.y82{bottom:12.800000pt;}
.y7f{bottom:12.986667pt;}
.ya3{bottom:13.120000pt;}
.y78{bottom:27.706667pt;}
.y9f{bottom:27.840000pt;}
.y6d{bottom:30.240000pt;}
.yb1{bottom:33.760000pt;}
.ya2{bottom:34.240000pt;}
.y7e{bottom:34.266667pt;}
.y6c{bottom:40.960000pt;}
.yeb{bottom:41.226917pt;}
.ybf{bottom:41.866917pt;}
.y9e{bottom:48.992000pt;}
.y81{bottom:49.760000pt;}
.y83{bottom:49.920000pt;}
.y6b{bottom:51.680000pt;}
.yb0{bottom:54.880000pt;}
.y77{bottom:55.066667pt;}
.y7d{bottom:55.386667pt;}
.yea{bottom:56.586911pt;}
.y120{bottom:59.626909pt;}
.ybe{bottom:60.266909pt;}
.y6a{bottom:62.240000pt;}
.y69{bottom:72.960000pt;}
.y11f{bottom:74.986903pt;}
.yaf{bottom:76.000000pt;}
.y76{bottom:76.186667pt;}
.y7c{bottom:76.506667pt;}
.ybd{bottom:78.026902pt;}
.y84{bottom:83.520000pt;}
.y68{bottom:83.680000pt;}
.ybc{bottom:93.386896pt;}
.y67{bottom:94.240000pt;}
.yae{bottom:97.160000pt;}
.y75{bottom:97.306667pt;}
.y9d{bottom:97.466667pt;}
.y7b{bottom:97.626667pt;}
.ya1{bottom:97.786667pt;}
.yb3{bottom:97.800000pt;}
.y66{bottom:104.960000pt;}
.ybb{bottom:108.746890pt;}
.y65{bottom:115.680000pt;}
.y13c{bottom:116.906620pt;}
.y11c{bottom:116.906887pt;}
.yad{bottom:118.440000pt;}
.y74{bottom:118.586667pt;}
.y7a{bottom:118.906667pt;}
.yb9{bottom:121.226880pt;}
.y11b{bottom:121.546885pt;}
.yb8{bottom:124.106884pt;}
.y64{bottom:126.272000pt;}
.y176{bottom:127.146882pt;}
.y11a{bottom:132.266614pt;}
.y14a{bottom:132.266880pt;}
.y149{bottom:136.906612pt;}
.y63{bottom:136.986667pt;}
.yac{bottom:139.560000pt;}
.y9c{bottom:140.026667pt;}
.yb7{bottom:140.106611pt;}
.y119{bottom:147.466608pt;}
.y62{bottom:147.706667pt;}
.y175{bottom:148.426607pt;}
.y118{bottom:152.106606pt;}
.y61{bottom:158.266667pt;}
.yb6{bottom:158.506603pt;}
.yab{bottom:160.680000pt;}
.y9b{bottom:161.146667pt;}
.y117{bottom:162.826602pt;}
.y144{bottom:167.466600pt;}
.y60{bottom:168.986667pt;}
.y174{bottom:169.546599pt;}
.ye7{bottom:176.266596pt;}
.y116{bottom:178.186595pt;}
.y5f{bottom:179.706667pt;}
.yaa{bottom:181.800000pt;}
.y9a{bottom:182.266667pt;}
.y115{bottom:182.826594pt;}
.y5e{bottom:190.266667pt;}
.y173{bottom:190.666590pt;}
.ye6{bottom:191.466590pt;}
.y13b{bottom:193.546589pt;}
.y114{bottom:194.186589pt;}
.y143{bottom:198.186587pt;}
.y5d{bottom:200.986667pt;}
.ya9{bottom:203.080000pt;}
.y99{bottom:203.546667pt;}
.ye5{bottom:206.826584pt;}
.y13a{bottom:208.906583pt;}
.y142{bottom:209.546583pt;}
.ye4{bottom:211.466582pt;}
.y5c{bottom:211.706667pt;}
.y172{bottom:211.786582pt;}
.ye3{bottom:222.186578pt;}
.y5b{bottom:222.266667pt;}
.ya8{bottom:224.200000pt;}
.y139{bottom:224.266577pt;}
.y98{bottom:224.666667pt;}
.y171{bottom:228.906575pt;}
.y5a{bottom:232.986667pt;}
.y113{bottom:233.066573pt;}
.ye2{bottom:237.386572pt;}
.y141{bottom:237.706572pt;}
.y138{bottom:239.466571pt;}
.y59{bottom:243.706667pt;}
.ya7{bottom:245.320000pt;}
.y97{bottom:245.786667pt;}
.ye1{bottom:253.866565pt;}
.y112{bottom:254.186565pt;}
.y58{bottom:254.266667pt;}
.y137{bottom:254.826565pt;}
.y136{bottom:259.466563pt;}
.y57{bottom:264.986667pt;}
.ya6{bottom:266.440000pt;}
.y96{bottom:266.946667pt;}
.ye0{bottom:269.226559pt;}
.y135{bottom:270.186559pt;}
.y170{bottom:270.826558pt;}
.y111{bottom:275.306557pt;}
.y56{bottom:275.706667pt;}
.ydf{bottom:284.426553pt;}
.y134{bottom:285.546552pt;}
.y55{bottom:286.266667pt;}
.ya5{bottom:287.720000pt;}
.y95{bottom:288.226667pt;}
.y110{bottom:296.426548pt;}
.y54{bottom:296.986667pt;}
.y133{bottom:300.906546pt;}
.yde{bottom:301.546546pt;}
.y16f{bottom:304.746545pt;}
.y53{bottom:307.706667pt;}
.y94{bottom:309.346667pt;}
.y132{bottom:316.106540pt;}
.y10f{bottom:317.706540pt;}
.y52{bottom:318.266667pt;}
.y131{bottom:320.746538pt;}
.y16e{bottom:325.866536pt;}
.y51{bottom:328.986667pt;}
.y93{bottom:330.466667pt;}
.y130{bottom:331.466534pt;}
.ya{bottom:331.706667pt;}
.y10d{bottom:338.826531pt;}
.y50{bottom:339.706667pt;}
.y10e{bottom:343.466529pt;}
.y12f{bottom:346.826528pt;}
.y16d{bottom:347.146528pt;}
.y4f{bottom:350.306667pt;}
.y92{bottom:351.586667pt;}
.y9{bottom:353.026667pt;}
.y10c{bottom:359.946523pt;}
.y4e{bottom:361.026667pt;}
.y12e{bottom:362.186522pt;}
.y12d{bottom:366.826520pt;}
.y16c{bottom:368.266519pt;}
.y8{bottom:370.306667pt;}
.y4d{bottom:371.746667pt;}
.y91{bottom:372.866667pt;}
.y164{bottom:377.546516pt;}
.y12c{bottom:378.186515pt;}
.y10b{bottom:381.066514pt;}
.y163{bottom:382.186514pt;}
.y4c{bottom:382.306667pt;}
.y148{bottom:385.706512pt;}
.y7{bottom:388.066667pt;}
.y16b{bottom:389.386511pt;}
.ydd{bottom:390.026511pt;}
.y162{bottom:392.906510pt;}
.y4b{bottom:393.026667pt;}
.y90{bottom:393.986667pt;}
.y14c{bottom:402.026506pt;}
.y10a{bottom:402.346506pt;}
.y4a{bottom:403.746667pt;}
.y6{bottom:406.306667pt;}
.y161{bottom:408.106503pt;}
.y16a{bottom:410.506502pt;}
.ydb{bottom:411.306502pt;}
.y49{bottom:414.306667pt;}
.y8f{bottom:415.106667pt;}
.ydc{bottom:415.946500pt;}
.y109{bottom:423.466497pt;}
.y48{bottom:425.026667pt;}
.y5{bottom:425.506667pt;}
.y147{bottom:428.106495pt;}
.y169{bottom:431.786494pt;}
.yda{bottom:432.426494pt;}
.y47{bottom:435.746667pt;}
.y8e{bottom:436.226667pt;}
.y160{bottom:438.826491pt;}
.y15f{bottom:443.466489pt;}
.y108{bottom:444.586489pt;}
.y46{bottom:446.306667pt;}
.y154{bottom:449.226487pt;}
.y4{bottom:451.746667pt;}
.y168{bottom:452.906486pt;}
.yd9{bottom:453.546485pt;}
.y15e{bottom:454.186485pt;}
.y45{bottom:457.026667pt;}
.y8d{bottom:457.506667pt;}
.y107{bottom:465.706480pt;}
.y44{bottom:467.746667pt;}
.y15d{bottom:469.546479pt;}
.y167{bottom:471.466478pt;}
.yd8{bottom:474.666477pt;}
.y3{bottom:475.746667pt;}
.y43{bottom:478.306667pt;}
.y8c{bottom:478.626667pt;}
.y15c{bottom:484.906473pt;}
.y106{bottom:486.986472pt;}
.y42{bottom:489.026667pt;}
.y166{bottom:489.866471pt;}
.yd7{bottom:492.906470pt;}
.y2{bottom:497.666667pt;}
.y41{bottom:499.746667pt;}
.y8b{bottom:499.773333pt;}
.y15b{bottom:500.106467pt;}
.y105{bottom:508.106463pt;}
.y165{bottom:508.266463pt;}
.y40{bottom:510.306667pt;}
.yd6{bottom:514.186461pt;}
.y15a{bottom:515.466460pt;}
.y159{bottom:520.106459pt;}
.y8a{bottom:520.893333pt;}
.y3f{bottom:521.026667pt;}
.y153{bottom:528.906455pt;}
.y104{bottom:529.226455pt;}
.y158{bottom:531.466454pt;}
.y3e{bottom:531.746667pt;}
.yd5{bottom:535.466452pt;}
.y89{bottom:542.173333pt;}
.y3d{bottom:542.306667pt;}
.y152{bottom:550.026447pt;}
.y102{bottom:550.346447pt;}
.y3c{bottom:553.026667pt;}
.y103{bottom:554.986445pt;}
.yd4{bottom:556.586444pt;}
.y88{bottom:563.293333pt;}
.y3b{bottom:563.746667pt;}
.y101{bottom:571.466438pt;}
.y3a{bottom:574.333333pt;}
.yd3{bottom:577.706436pt;}
.y87{bottom:584.413333pt;}
.y39{bottom:585.053333pt;}
.y140{bottom:592.426430pt;}
.y100{bottom:592.746430pt;}
.y38{bottom:595.773333pt;}
.yd2{bottom:598.826427pt;}
.y86{bottom:605.533333pt;}
.y37{bottom:606.333333pt;}
.y13f{bottom:613.546421pt;}
.yff{bottom:613.866421pt;}
.y36{bottom:617.053333pt;}
.y157{bottom:618.506419pt;}
.yd1{bottom:620.106419pt;}
.y85{bottom:626.653333pt;}
.y35{bottom:627.773333pt;}
.yfe{bottom:634.666413pt;}
.y12b{bottom:634.986413pt;}
.y34{bottom:638.333333pt;}
.y150{bottom:639.626411pt;}
.yd0{bottom:641.226410pt;}
.y33{bottom:649.053333pt;}
.yfd{bottom:655.786404pt;}
.y12a{bottom:656.106404pt;}
.y32{bottom:659.773333pt;}
.y146{bottom:660.746402pt;}
.ycf{bottom:662.346402pt;}
.y31{bottom:670.333333pt;}
.y129{bottom:677.066396pt;}
.yfc{bottom:677.386396pt;}
.y30{bottom:681.053333pt;}
.y14f{bottom:682.026394pt;}
.yce{bottom:683.466393pt;}
.yb4{bottom:691.293333pt;}
.y128{bottom:698.186387pt;}
.yfb{bottom:698.506387pt;}
.y2f{bottom:702.333333pt;}
.y156{bottom:703.146385pt;}
.ycd{bottom:704.746385pt;}
.ya4{bottom:705.053333pt;}
.y2e{bottom:713.053333pt;}
.y14e{bottom:719.306379pt;}
.yfa{bottom:719.626379pt;}
.y2d{bottom:723.773333pt;}
.y80{bottom:724.733333pt;}
.ycc{bottom:725.866376pt;}
.y2c{bottom:734.333333pt;}
.y14d{bottom:740.426370pt;}
.yf9{bottom:740.746370pt;}
.y2b{bottom:745.053333pt;}
.y13e{bottom:745.386369pt;}
.ycb{bottom:746.986368pt;}
.y2a{bottom:755.773333pt;}
.yf8{bottom:762.026362pt;}
.y29{bottom:766.333333pt;}
.y155{bottom:766.666360pt;}
.yca{bottom:768.106359pt;}
.y28{bottom:777.053333pt;}
.yf7{bottom:783.146353pt;}
.y27{bottom:787.773333pt;}
.y127{bottom:787.786352pt;}
.y73{bottom:789.226667pt;}
.yc9{bottom:789.386351pt;}
.y26{bottom:798.373333pt;}
.yf6{bottom:804.266345pt;}
.y14b{bottom:808.906343pt;}
.y25{bottom:809.093333pt;}
.yc8{bottom:810.506342pt;}
.y24{bottom:819.813333pt;}
.yf5{bottom:825.386337pt;}
.y126{bottom:830.026335pt;}
.y23{bottom:830.373333pt;}
.yc7{bottom:831.626334pt;}
.y22{bottom:841.093333pt;}
.yf4{bottom:846.666328pt;}
.y145{bottom:851.306326pt;}
.y21{bottom:851.813333pt;}
.yc6{bottom:852.746326pt;}
.y20{bottom:862.373333pt;}
.yf3{bottom:867.786320pt;}
.y1f{bottom:873.093333pt;}
.yc5{bottom:874.186317pt;}
.y1e{bottom:883.813333pt;}
.yf2{bottom:888.906311pt;}
.y125{bottom:893.546309pt;}
.y1d{bottom:894.373333pt;}
.yc4{bottom:896.426308pt;}
.y1c{bottom:905.093333pt;}
.yf1{bottom:910.026303pt;}
.y13d{bottom:914.666301pt;}
.y1b{bottom:915.813333pt;}
.yc3{bottom:917.866300pt;}
.y1a{bottom:926.373333pt;}
.y72{bottom:928.933333pt;}
.yf0{bottom:931.306294pt;}
.y124{bottom:935.946292pt;}
.y19{bottom:937.093333pt;}
.yc2{bottom:940.266291pt;}
.y18{bottom:947.813333pt;}
.y71{bottom:950.053333pt;}
.y123{bottom:952.106286pt;}
.yef{bottom:952.426286pt;}
.y151{bottom:957.066284pt;}
.y17{bottom:958.373333pt;}
.yc1{bottom:961.386282pt;}
.y16{bottom:969.093333pt;}
.y70{bottom:971.173333pt;}
.y122{bottom:973.226277pt;}
.yed{bottom:973.546277pt;}
.yee{bottom:978.186275pt;}
.y15{bottom:979.813333pt;}
.yc0{bottom:982.506274pt;}
.y14{bottom:990.373333pt;}
.y6f{bottom:992.453333pt;}
.y121{bottom:994.346269pt;}
.yec{bottom:994.666269pt;}
.yb5{bottom:997.066268pt;}
.y13{bottom:1001.093333pt;}
.y6e{bottom:1007.333333pt;}
.y12{bottom:1011.813333pt;}
.y11{bottom:1022.400000pt;}
.y1{bottom:1030.240000pt;}
.y10{bottom:1033.120000pt;}
.yf{bottom:1043.840000pt;}
.y11e{bottom:1051.466246pt;}
.ye9{bottom:1053.706245pt;}
.ye{bottom:1054.400000pt;}
.yd{bottom:1065.120000pt;}
.y11d{bottom:1068.906239pt;}
.ye8{bottom:1069.066239pt;}
.yc{bottom:1075.840000pt;}
.yb{bottom:1086.400000pt;}
.h1d{height:14.880000pt;}
.h25{height:29.567988pt;}
.h23{height:30.758388pt;}
.hc{height:35.091250pt;}
.hd{height:35.196000pt;}
.h2{height:36.062000pt;}
.h3{height:36.883125pt;}
.hf{height:36.989055pt;}
.h1e{height:37.874545pt;}
.h26{height:38.163185pt;}
.h18{height:42.032838pt;}
.hb{height:42.900937pt;}
.he{height:43.029000pt;}
.h27{height:43.452143pt;}
.h20{height:44.998382pt;}
.h22{height:45.631982pt;}
.h1c{height:47.276781pt;}
.h24{height:49.203418pt;}
.h1a{height:49.622500pt;}
.h21{height:52.351979pt;}
.h8{height:52.818750pt;}
.h9{height:52.916562pt;}
.h6{height:55.675294pt;}
.h17{height:56.156250pt;}
.h1b{height:56.959977pt;}
.h7{height:57.220312pt;}
.ha{height:57.647187pt;}
.h10{height:58.563750pt;}
.h1f{height:59.281226pt;}
.h14{height:62.781250pt;}
.h13{height:62.812500pt;}
.h15{height:64.480000pt;}
.h11{height:64.500000pt;}
.h4{height:73.359375pt;}
.h5{height:81.203750pt;}
.h12{height:133.453333pt;}
.h19{height:302.266667pt;}
.h16{height:641.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:3.520000pt;}
.w3{width:61.626667pt;}
.w5{width:64.946667pt;}
.w4{width:511.120000pt;}
.w2{width:623.760000pt;}
.w6{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:7.192000pt;}
.x13{left:53.280000pt;}
.x4f{left:54.426667pt;}
.x2d{left:71.200000pt;}
.x22{left:72.992000pt;}
.x17{left:77.792000pt;}
.x1{left:80.672000pt;}
.x4a{left:83.232000pt;}
.x1d{left:100.192000pt;}
.x18{left:108.992000pt;}
.x53{left:113.439955pt;}
.x5d{left:117.759953pt;}
.x57{left:121.439604pt;}
.x59{left:122.399951pt;}
.x51{left:126.226667pt;}
.x28{left:131.232000pt;}
.x5a{left:132.320262pt;}
.x3e{left:133.786667pt;}
.x3c{left:135.706667pt;}
.x3b{left:137.946667pt;}
.x25{left:140.506667pt;}
.x30{left:142.426667pt;}
.x1f{left:143.546667pt;}
.x41{left:145.146667pt;}
.x21{left:150.746667pt;}
.x48{left:151.706667pt;}
.x2c{left:153.466667pt;}
.x1e{left:155.386667pt;}
.x15{left:158.746667pt;}
.xe{left:160.826667pt;}
.x6c{left:163.679935pt;}
.x16{left:170.266667pt;}
.x2e{left:173.466667pt;}
.x3d{left:174.906667pt;}
.x38{left:176.026667pt;}
.x27{left:178.106667pt;}
.x1c{left:180.026667pt;}
.x40{left:181.466667pt;}
.x37{left:184.026667pt;}
.xc{left:187.226667pt;}
.x26{left:189.306667pt;}
.x35{left:192.026667pt;}
.x7{left:193.626667pt;}
.x11{left:194.746667pt;}
.x2a{left:196.026667pt;}
.x2b{left:198.426667pt;}
.x1b{left:200.346667pt;}
.x64{left:201.759919pt;}
.x34{left:203.546667pt;}
.x29{left:205.146667pt;}
.x31{left:206.266667pt;}
.x75{left:207.199917pt;}
.x23{left:208.986667pt;}
.x3a{left:210.266667pt;}
.x6d{left:212.159915pt;}
.x24{left:214.106667pt;}
.x42{left:215.546667pt;}
.x9d{left:216.639913pt;}
.x79{left:219.519912pt;}
.xd{left:222.426667pt;}
.x39{left:223.706667pt;}
.x20{left:224.986667pt;}
.x36{left:226.746667pt;}
.x96{left:230.399908pt;}
.x58{left:231.998291pt;}
.x10{left:235.266667pt;}
.x14{left:237.026667pt;}
.x32{left:240.866667pt;}
.x33{left:243.106667pt;}
.x3{left:244.706667pt;}
.x68{left:250.079900pt;}
.x69{left:254.399898pt;}
.x47{left:256.386667pt;}
.x2f{left:260.226667pt;}
.x19{left:261.186667pt;}
.x6e{left:263.519895pt;}
.x12{left:265.506667pt;}
.x7d{left:268.799892pt;}
.x7a{left:270.879892pt;}
.x4{left:272.066667pt;}
.x8f{left:276.639889pt;}
.x76{left:278.559889pt;}
.x86{left:280.799888pt;}
.x43{left:287.426667pt;}
.x87{left:289.439884pt;}
.x5{left:293.666667pt;}
.x92{left:297.439881pt;}
.x44{left:300.706667pt;}
.x45{left:303.906667pt;}
.x93{left:306.079878pt;}
.x3f{left:321.026667pt;}
.x5e{left:323.999870pt;}
.xf{left:325.346667pt;}
.x1a{left:327.746667pt;}
.x55{left:335.679327pt;}
.x4b{left:337.506667pt;}
.x46{left:338.786667pt;}
.x62{left:345.279862pt;}
.x8e{left:346.879861pt;}
.x63{left:349.599860pt;}
.xb{left:352.066667pt;}
.x6{left:357.026667pt;}
.x8a{left:358.879856pt;}
.x9{left:360.706667pt;}
.x4c{left:364.546667pt;}
.x82{left:371.039852pt;}
.x60{left:378.719849pt;}
.x83{left:379.679848pt;}
.xa0{left:381.759847pt;}
.x61{left:383.039847pt;}
.xa1{left:385.119846pt;}
.x56{left:387.359845pt;}
.x77{left:389.279844pt;}
.xa{left:390.653333pt;}
.x8{left:392.413333pt;}
.x71{left:394.719842pt;}
.x2{left:396.253333pt;}
.x78{left:397.919841pt;}
.x72{left:403.359839pt;}
.xa2{left:405.919838pt;}
.x8b{left:427.039829pt;}
.x8c{left:435.679826pt;}
.x73{left:444.959822pt;}
.x49{left:447.933333pt;}
.x74{left:453.599819pt;}
.x52{left:457.119817pt;}
.x91{left:461.599815pt;}
.x84{left:499.999800pt;}
.x85{left:508.639797pt;}
.x7b{left:518.399793pt;}
.x97{left:522.399791pt;}
.x7c{left:527.039789pt;}
.x5b{left:540.639784pt;}
.x5c{left:544.959782pt;}
.x98{left:551.359779pt;}
.x8d{left:553.759778pt;}
.x6f{left:555.359778pt;}
.x99{left:557.599777pt;}
.x70{left:559.679776pt;}
.x90{left:562.559775pt;}
.x6a{left:567.519773pt;}
.x9a{left:569.759772pt;}
.x6b{left:571.839771pt;}
.x88{left:579.359768pt;}
.x9b{left:580.799768pt;}
.x66{left:592.479763pt;}
.x50{left:594.373333pt;}
.x67{left:596.799761pt;}
.x9c{left:610.559756pt;}
.x94{left:617.759753pt;}
.x89{left:622.879751pt;}
.x95{left:626.399749pt;}
.x7e{left:651.199740pt;}
.x80{left:653.599739pt;}
.xa3{left:660.319736pt;}
.x81{left:662.239735pt;}
.x9e{left:665.599734pt;}
.x5f{left:667.039733pt;}
.x9f{left:674.239730pt;}
.x7f{left:676.959729pt;}
.x65{left:680.319728pt;}
.x4e{left:707.013333pt;}
.x54{left:789.760000pt;}
}




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