
    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_06140f7d8f53d1737926badb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079590;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_c50831e2e2ba841a1a40f8c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_0cb6b0162993d5daa28ff7e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4f60546e767a47d7964190bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5e8db9dd9f4c660d594d1f83.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_b41a789ba9b6fc889e031c14.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.m2{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);}
.v4{vertical-align:-25.901136px;}
.v2{vertical-align:-7.227722px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.927048px;}
.v1{vertical-align:26.202312px;}
.ls96{letter-spacing:-0.685710px;}
.ls1c{letter-spacing:-0.416414px;}
.ls1a{letter-spacing:-0.385358px;}
.ls6e{letter-spacing:-0.345689px;}
.ls86{letter-spacing:-0.340022px;}
.ls53{letter-spacing:-0.323021px;}
.ls91{letter-spacing:-0.317354px;}
.ls6d{letter-spacing:-0.311687px;}
.ls67{letter-spacing:-0.300352px;}
.ls3d{letter-spacing:-0.289018px;}
.ls1f{letter-spacing:-0.283351px;}
.ls66{letter-spacing:-0.277684px;}
.ls56{letter-spacing:-0.260683px;}
.ls72{letter-spacing:-0.255016px;}
.ls98{letter-spacing:-0.249349px;}
.ls94{letter-spacing:-0.238015px;}
.ls9b{letter-spacing:-0.226681px;}
.ls99{letter-spacing:-0.221014px;}
.ls12{letter-spacing:-0.215347px;}
.ls87{letter-spacing:-0.209680px;}
.ls54{letter-spacing:-0.204013px;}
.ls1b{letter-spacing:-0.203503px;}
.ls3b{letter-spacing:-0.198346px;}
.ls30{letter-spacing:-0.192679px;}
.ls90{letter-spacing:-0.187012px;}
.ls3a{letter-spacing:-0.181345px;}
.ls18{letter-spacing:-0.177123px;}
.ls62{letter-spacing:-0.175678px;}
.ls6b{letter-spacing:-0.170011px;}
.ls61{letter-spacing:-0.164344px;}
.ls16{letter-spacing:-0.158677px;}
.ls2f{letter-spacing:-0.153010px;}
.ls2d{letter-spacing:-0.147343px;}
.ls39{letter-spacing:-0.141676px;}
.ls5d{letter-spacing:-0.136009px;}
.ls63{letter-spacing:-0.131900px;}
.ls42{letter-spacing:-0.130342px;}
.ls52{letter-spacing:-0.124675px;}
.ls33{letter-spacing:-0.119008px;}
.ls75{letter-spacing:-0.118299px;}
.ls11{letter-spacing:-0.113567px;}
.ls44{letter-spacing:-0.113341px;}
.ls55{letter-spacing:-0.107674px;}
.ls97{letter-spacing:-0.102007px;}
.ls5f{letter-spacing:-0.096339px;}
.ls21{letter-spacing:-0.090672px;}
.ls3c{letter-spacing:-0.085005px;}
.ls4b{letter-spacing:-0.079338px;}
.ls24{letter-spacing:-0.073671px;}
.ls50{letter-spacing:-0.068004px;}
.ls60{letter-spacing:-0.062337px;}
.ls88{letter-spacing:-0.056670px;}
.ls6f{letter-spacing:-0.051003px;}
.ls35{letter-spacing:-0.045336px;}
.ls41{letter-spacing:-0.039669px;}
.ls14{letter-spacing:-0.034002px;}
.ls13{letter-spacing:-0.028335px;}
.ls25{letter-spacing:-0.022668px;}
.ls26{letter-spacing:-0.017001px;}
.ls5c{letter-spacing:-0.011334px;}
.ls4e{letter-spacing:-0.005667px;}
.ls10{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005667px;}
.ls38{letter-spacing:0.011334px;}
.ls8b{letter-spacing:0.013204px;}
.lsc{letter-spacing:0.017001px;}
.ls7{letter-spacing:0.022668px;}
.ls2{letter-spacing:0.028335px;}
.ls20{letter-spacing:0.034002px;}
.ls36{letter-spacing:0.039613px;}
.ls23{letter-spacing:0.039669px;}
.ls3{letter-spacing:0.045336px;}
.ls1{letter-spacing:0.046215px;}
.ls8{letter-spacing:0.051003px;}
.lsa{letter-spacing:0.056670px;}
.ls1d{letter-spacing:0.062337px;}
.ls5{letter-spacing:0.064549px;}
.ls28{letter-spacing:0.068004px;}
.ls4{letter-spacing:0.073671px;}
.ls77{letter-spacing:0.079226px;}
.ls2a{letter-spacing:0.079338px;}
.lse{letter-spacing:0.085005px;}
.lsd{letter-spacing:0.090672px;}
.lsf{letter-spacing:0.096339px;}
.ls6{letter-spacing:0.097983px;}
.ls6a{letter-spacing:0.099032px;}
.ls32{letter-spacing:0.102007px;}
.ls2c{letter-spacing:0.107674px;}
.ls46{letter-spacing:0.112236px;}
.ls3f{letter-spacing:0.113341px;}
.ls8c{letter-spacing:0.118838px;}
.ls29{letter-spacing:0.119008px;}
.ls9{letter-spacing:0.120594px;}
.ls17{letter-spacing:0.124363px;}
.ls2e{letter-spacing:0.124675px;}
.ls8d{letter-spacing:0.125440px;}
.ls47{letter-spacing:0.129098px;}
.ls22{letter-spacing:0.130342px;}
.ls7b{letter-spacing:0.136009px;}
.ls57{letter-spacing:0.141676px;}
.ls76{letter-spacing:0.147343px;}
.ls27{letter-spacing:0.151849px;}
.ls1e{letter-spacing:0.153010px;}
.ls89{letter-spacing:0.158677px;}
.ls7e{letter-spacing:0.164344px;}
.ls64{letter-spacing:0.169585px;}
.ls95{letter-spacing:0.170011px;}
.ls5e{letter-spacing:0.175678px;}
.ls9f{letter-spacing:0.181345px;}
.ls0{letter-spacing:0.184547px;}
.ls37{letter-spacing:0.198346px;}
.ls15{letter-spacing:0.215347px;}
.ls2b{letter-spacing:0.249349px;}
.ls73{letter-spacing:0.260683px;}
.ls9c{letter-spacing:0.277684px;}
.ls8e{letter-spacing:0.334355px;}
.ls92{letter-spacing:0.340022px;}
.ls83{letter-spacing:0.346708px;}
.ls45{letter-spacing:0.351356px;}
.ls93{letter-spacing:0.362690px;}
.ls3e{letter-spacing:0.365725px;}
.ls8f{letter-spacing:0.374024px;}
.ls59{letter-spacing:0.385358px;}
.ls34{letter-spacing:0.391025px;}
.ls4f{letter-spacing:0.396692px;}
.ls79{letter-spacing:0.402359px;}
.ls19{letter-spacing:0.408026px;}
.ls8a{letter-spacing:0.430694px;}
.ls80{letter-spacing:1.110737px;}
.ls48{letter-spacing:2.323481px;}
.ls7f{letter-spacing:2.506256px;}
.ls71{letter-spacing:2.629501px;}
.ls74{letter-spacing:2.929853px;}
.ls9a{letter-spacing:3.785575px;}
.ls82{letter-spacing:3.830911px;}
.ls49{letter-spacing:6.239398px;}
.ls6c{letter-spacing:7.146122px;}
.ls51{letter-spacing:7.746827px;}
.ls68{letter-spacing:8.953904px;}
.ls69{letter-spacing:9.254257px;}
.ls85{letter-spacing:9.554609px;}
.ls81{letter-spacing:10.143980px;}
.ls78{letter-spacing:10.155314px;}
.ls4a{letter-spacing:10.455667px;}
.ls7d{letter-spacing:11.963096px;}
.ls4c{letter-spacing:12.563801px;}
.ls9e{letter-spacing:13.170173px;}
.ls5b{letter-spacing:13.470526px;}
.ls7c{letter-spacing:13.770878px;}
.ls65{letter-spacing:14.972288px;}
.ls40{letter-spacing:15.879012px;}
.ls9d{letter-spacing:16.479717px;}
.ls4d{letter-spacing:17.386442px;}
.ls31{letter-spacing:17.987147px;}
.ls43{letter-spacing:19.794929px;}
.ls84{letter-spacing:20.695986px;}
.ls7a{letter-spacing:20.996339px;}
.ls70{letter-spacing:23.104473px;}
.ls5a{letter-spacing:34.251517px;}
.ls58{letter-spacing:63.612685px;}
.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;}
}
.ws29{word-spacing:-60.455855px;}
.ws6{word-spacing:-20.016000px;}
.ws8{word-spacing:-18.505768px;}
.wsb{word-spacing:-18.393532px;}
.ws11{word-spacing:-15.952684px;}
.ws1c{word-spacing:-15.896014px;}
.ws19{word-spacing:-15.862011px;}
.ws26{word-spacing:-15.856344px;}
.ws13{word-spacing:-15.850677px;}
.ws10{word-spacing:-15.833676px;}
.ws2{word-spacing:-15.828009px;}
.wsf{word-spacing:-15.816675px;}
.wsd{word-spacing:-15.799674px;}
.wsc{word-spacing:-15.782673px;}
.ws4{word-spacing:-15.777006px;}
.ws12{word-spacing:-15.737337px;}
.ws24{word-spacing:-15.669332px;}
.ws16{word-spacing:-15.623996px;}
.wse{word-spacing:-15.612662px;}
.ws17{word-spacing:-15.561659px;}
.ws25{word-spacing:-10.823319px;}
.ws1e{word-spacing:-10.646196px;}
.ws0{word-spacing:-10.600974px;}
.ws3{word-spacing:-10.574594px;}
.ws1{word-spacing:-10.476611px;}
.ws1d{word-spacing:-10.344711px;}
.ws23{word-spacing:-10.299488px;}
.ws5{word-spacing:-10.273108px;}
.ws18{word-spacing:-0.459029px;}
.ws1f{word-spacing:-0.374024px;}
.ws1a{word-spacing:-0.317354px;}
.ws1b{word-spacing:-0.198346px;}
.ws21{word-spacing:-0.181345px;}
.ws22{word-spacing:-0.147343px;}
.ws20{word-spacing:-0.073671px;}
.ws7{word-spacing:0.000000px;}
.ws27{word-spacing:1.337419px;}
.ws9{word-spacing:8.018845px;}
.wsa{word-spacing:9.973969px;}
.ws28{word-spacing:10.132646px;}
.ws14{word-spacing:26.391349px;}
.ws15{word-spacing:37.714071px;}
._1f{margin-left:-3185.422560px;}
._60{margin-left:-2355.497700px;}
._7f{margin-left:-2344.300967px;}
._8b{margin-left:-2342.016717px;}
._4d{margin-left:-2337.555611px;}
._70{margin-left:-2336.104958px;}
._8d{margin-left:-2334.325684px;}
._51{margin-left:-2333.289759px;}
._72{margin-left:-2329.428431px;}
._8e{margin-left:-2328.246973px;}
._4b{margin-left:-2327.152380px;}
._82{margin-left:-2324.748228px;}
._49{margin-left:-2323.572425px;}
._52{margin-left:-2322.286222px;}
._47{margin-left:-2321.132195px;}
._55{margin-left:-2320.024222px;}
._a9{margin-left:-2316.979592px;}
._40{margin-left:-2314.683614px;}
._dc{margin-left:-2312.240240px;}
._3d{margin-left:-2311.153400px;}
._ab{margin-left:-2307.515827px;}
._63{margin-left:-2305.927516px;}
._46{margin-left:-2304.880948px;}
._a5{margin-left:-2302.156939px;}
._10e{margin-left:-2298.411033px;}
._31{margin-left:-2297.158814px;}
._10{margin-left:-2295.868446px;}
._12{margin-left:-2294.776746px;}
._35{margin-left:-2293.709713px;}
._9e{margin-left:-2292.511657px;}
._9a{margin-left:-2289.857484px;}
._d2{margin-left:-2283.555921px;}
._af{margin-left:-2282.382846px;}
._22{margin-left:-2280.199231px;}
._fe{margin-left:-2278.175619px;}
._b1{margin-left:-2277.027505px;}
._ce{margin-left:-2272.425706px;}
._99{margin-left:-2270.582090px;}
._c{margin-left:-2269.171661px;}
._5{margin-left:-2268.135145px;}
._be{margin-left:-2267.030407px;}
._1b{margin-left:-2263.109896px;}
._da{margin-left:-2260.513785px;}
._b8{margin-left:-2258.569706px;}
._111{margin-left:-2257.417296px;}
._c4{margin-left:-2251.505042px;}
._94{margin-left:-2247.955651px;}
._10b{margin-left:-2246.306374px;}
._10c{margin-left:-2243.929769px;}
._b5{margin-left:-2242.358287px;}
._f2{margin-left:-2241.149262px;}
._c6{margin-left:-2238.317868px;}
._c2{margin-left:-2237.231342px;}
._c1{margin-left:-2236.171608px;}
._a8{margin-left:-2234.768477px;}
._21{margin-left:-2233.410416px;}
._a6{margin-left:-2227.864714px;}
._bc{margin-left:-2223.864654px;}
._ef{margin-left:-2218.154122px;}
._eb{margin-left:-2214.767531px;}
._e0{margin-left:-2213.424618px;}
._cc{margin-left:-2210.751152px;}
._f6{margin-left:-2205.664164px;}
._f4{margin-left:-2201.387678px;}
._101{margin-left:-2200.369617px;}
._b3{margin-left:-2197.779785px;}
._f5{margin-left:-2195.493681px;}
._103{margin-left:-2193.823739px;}
._e3{margin-left:-2192.407098px;}
._d8{margin-left:-2186.275258px;}
._ac{margin-left:-2182.633363px;}
._c0{margin-left:-2181.175105px;}
._b7{margin-left:-2178.262541px;}
._d9{margin-left:-2175.893262px;}
._d7{margin-left:-2171.541446px;}
._bf{margin-left:-2169.610821px;}
._e6{margin-left:-2165.080745px;}
._ff{margin-left:-2160.904261px;}
._e8{margin-left:-2159.831534px;}
._9d{margin-left:-2157.077186px;}
._7c{margin-left:-2154.648035px;}
._e5{margin-left:-2147.567625px;}
._32{margin-left:-2146.563212px;}
._1d{margin-left:-2143.975629px;}
._ca{margin-left:-2141.454906px;}
._cb{margin-left:-2139.057580px;}
._107{margin-left:-2137.977009px;}
._108{margin-left:-2131.477389px;}
._106{margin-left:-2129.429760px;}
._c7{margin-left:-2128.352737px;}
._d0{margin-left:-2127.179950px;}
._84{margin-left:-2119.738970px;}
._fc{margin-left:-2113.625963px;}
._aa{margin-left:-2111.627333px;}
._b0{margin-left:-2109.824183px;}
._d5{margin-left:-2107.386392px;}
._cf{margin-left:-2100.058925px;}
._de{margin-left:-2097.646775px;}
._10f{margin-left:-2086.176710px;}
._102{margin-left:-2078.411051px;}
._c9{margin-left:-2074.580428px;}
._db{margin-left:-2072.751521px;}
._bb{margin-left:-2066.578124px;}
._ec{margin-left:-2050.155249px;}
._15b{margin-left:-2043.064254px;}
._ee{margin-left:-2034.472751px;}
._104{margin-left:-2031.492182px;}
._d4{margin-left:-2030.183099px;}
._fa{margin-left:-2018.117996px;}
._9b{margin-left:-2005.248176px;}
._f0{margin-left:-2001.319094px;}
._93{margin-left:-1994.189800px;}
._c8{margin-left:-1987.919947px;}
._b9{margin-left:-1955.986245px;}
._ad{margin-left:-1950.153041px;}
._27{margin-left:-1936.512814px;}
._10a{margin-left:-1927.346916px;}
._b6{margin-left:-1912.246118px;}
._105{margin-left:-1886.389301px;}
._b4{margin-left:-1856.886926px;}
._e2{margin-left:-1853.369994px;}
._90{margin-left:-1822.896380px;}
._15{margin-left:-1798.115078px;}
._a3{margin-left:-1766.758801px;}
._a4{margin-left:-1718.059909px;}
._38{margin-left:-1636.829039px;}
._91{margin-left:-1578.301784px;}
._d1{margin-left:-1568.707217px;}
._c5{margin-left:-1551.630631px;}
._8c{margin-left:-1545.946717px;}
._d6{margin-left:-1536.412656px;}
._6c{margin-left:-1527.519546px;}
._ba{margin-left:-1523.780851px;}
._83{margin-left:-1505.350133px;}
._6{margin-left:-1489.961528px;}
._57{margin-left:-1474.370322px;}
._ed{margin-left:-1461.447378px;}
._f1{margin-left:-1448.486885px;}
._160{margin-left:-1390.876167px;}
._e1{margin-left:-1373.810626px;}
._109{margin-left:-1366.923183px;}
._45{margin-left:-1363.283407px;}
._cd{margin-left:-1354.289546px;}
._112{margin-left:-1335.380505px;}
._d3{margin-left:-1299.999417px;}
._73{margin-left:-1287.792927px;}
._85{margin-left:-1262.867507px;}
._f8{margin-left:-1259.933529px;}
._11{margin-left:-1249.531770px;}
._41{margin-left:-1229.005010px;}
._ea{margin-left:-1227.374622px;}
._26{margin-left:-1201.820471px;}
._15f{margin-left:-1197.076593px;}
._df{margin-left:-1190.616274px;}
._20{margin-left:-1180.511280px;}
._c3{margin-left:-1123.930524px;}
._e4{margin-left:-1117.634456px;}
._16{margin-left:-1104.285842px;}
._154{margin-left:-1076.129641px;}
._89{margin-left:-1044.273483px;}
._ae{margin-left:-1029.682181px;}
._78{margin-left:-1022.324836px;}
._58{margin-left:-1016.956156px;}
._bd{margin-left:-1007.155745px;}
._53{margin-left:-1004.573700px;}
._81{margin-left:-988.073319px;}
._a0{margin-left:-984.832770px;}
._a7{margin-left:-982.286995px;}
._7a{margin-left:-971.536910px;}
._15c{margin-left:-962.896545px;}
._100{margin-left:-952.880786px;}
._fb{margin-left:-944.875107px;}
._fd{margin-left:-929.458960px;}
._44{margin-left:-924.710010px;}
._f9{margin-left:-906.526329px;}
._80{margin-left:-877.724949px;}
._98{margin-left:-868.569273px;}
._92{margin-left:-828.631486px;}
._77{margin-left:-813.241669px;}
._6e{margin-left:-802.591492px;}
._75{margin-left:-799.179941px;}
._18{margin-left:-795.810675px;}
._161{margin-left:-768.676161px;}
._6f{margin-left:-767.557925px;}
._f3{margin-left:-740.125385px;}
._8{margin-left:-731.254151px;}
._3b{margin-left:-722.314399px;}
._dd{margin-left:-708.191683px;}
._86{margin-left:-700.210964px;}
._71{margin-left:-685.918719px;}
._b2{margin-left:-676.892687px;}
._54{margin-left:-668.906301px;}
._f7{margin-left:-646.016887px;}
._74{margin-left:-641.661062px;}
._e7{margin-left:-614.632886px;}
._33{margin-left:-604.977220px;}
._15d{margin-left:-603.969659px;}
._8a{margin-left:-601.631981px;}
._13{margin-left:-587.660736px;}
._95{margin-left:-572.651830px;}
._96{margin-left:-570.798712px;}
._e9{margin-left:-519.778171px;}
._9c{margin-left:-509.994427px;}
._15e{margin-left:-507.316665px;}
._23{margin-left:-488.396821px;}
._110{margin-left:-472.617164px;}
._5d{margin-left:-462.337463px;}
._0{margin-left:-441.880815px;}
._10d{margin-left:-439.499052px;}
._9f{margin-left:-368.986342px;}
._7b{margin-left:-339.368622px;}
._a1{margin-left:-330.335380px;}
._153{margin-left:-195.743465px;}
._15a{margin-left:-181.591311px;}
._42{margin-left:-178.991730px;}
._76{margin-left:-176.393904px;}
._97{margin-left:-175.053355px;}
._1e{margin-left:-152.789418px;}
._7{margin-left:-126.888282px;}
._1{margin-left:-124.290106px;}
._5f{margin-left:-35.253400px;}
._5e{margin-left:-34.156319px;}
._7d{margin-left:-23.183639px;}
._7e{margin-left:-22.142804px;}
._3f{margin-left:-20.136782px;}
._2f{margin-left:-18.978877px;}
._2e{margin-left:-17.879473px;}
._30{margin-left:-16.870742px;}
._3c{margin-left:-15.236634px;}
._61{margin-left:-14.192070px;}
._50{margin-left:-12.756480px;}
._4f{margin-left:-11.294387px;}
._4e{margin-left:-10.121312px;}
._56{margin-left:-8.372198px;}
._43{margin-left:-6.707763px;}
._4a{margin-left:-5.570849px;}
._8f{margin-left:-4.369370px;}
._48{margin-left:-3.262032px;}
._a{margin-left:-1.284584px;}
._3{width:1.031399px;}
._1a{width:2.368818px;}
._d{width:3.442269px;}
._e{width:4.621912px;}
._28{width:5.729365px;}
._29{width:7.151789px;}
._b{width:8.188174px;}
._9{width:9.214588px;}
._2b{width:10.291323px;}
._2c{width:11.742082px;}
._79{width:12.756480px;}
._f{width:13.759544px;}
._4c{width:15.071149px;}
._2{width:17.267434px;}
._4{width:18.349837px;}
._24{width:19.551247px;}
._2a{width:20.699822px;}
._1c{width:21.770890px;}
._14{width:23.246149px;}
._17{width:24.413557px;}
._25{width:25.733974px;}
._34{width:27.309408px;}
._6d{width:28.408811px;}
._3e{width:30.312933px;}
._39{width:31.446338px;}
._3a{width:32.647748px;}
._2d{width:33.745320px;}
._19{width:34.823887px;}
._36{width:37.481723px;}
._37{width:38.632130px;}
._5c{width:41.622489px;}
._65{width:43.365930px;}
._5b{width:46.577303px;}
._5a{width:51.556789px;}
._87{width:57.291822px;}
._88{width:59.303444px;}
._68{width:62.647117px;}
._69{width:63.920286px;}
._12c{width:65.764465px;}
._128{width:69.982129px;}
._a2{width:72.622964px;}
._11b{width:74.094143px;}
._6a{width:78.696359px;}
._121{width:82.486190px;}
._13e{width:87.278878px;}
._59{width:88.307466px;}
._151{width:91.917799px;}
._132{width:94.028003px;}
._149{width:98.667229px;}
._115{width:101.298126px;}
._64{width:103.587777px;}
._12a{width:105.629567px;}
._118{width:107.173002px;}
._120{width:108.191480px;}
._141{width:110.233197px;}
._13d{width:112.680287px;}
._127{width:119.708468px;}
._6b{width:132.200429px;}
._119{width:135.411960px;}
._11c{width:139.140205px;}
._14c{width:150.809118px;}
._114{width:153.672798px;}
._159{width:159.169816px;}
._11d{width:160.239052px;}
._11e{width:162.762711px;}
._11a{width:167.827639px;}
._158{width:176.033060px;}
._134{width:178.522716px;}
._146{width:185.060635px;}
._135{width:187.019840px;}
._155{width:188.322682px;}
._152{width:189.469740px;}
._157{width:190.508481px;}
._137{width:191.912508px;}
._62{width:198.344149px;}
._156{width:201.899207px;}
._126{width:214.138156px;}
._117{width:222.634862px;}
._66{width:226.080415px;}
._67{width:227.174152px;}
._145{width:242.932761px;}
._13b{width:260.721126px;}
._142{width:276.594472px;}
._140{width:282.782866px;}
._147{width:291.625261px;}
._125{width:292.643495px;}
._113{width:298.952729px;}
._13a{width:302.011092px;}
._12d{width:303.513011px;}
._116{width:320.961634px;}
._139{width:324.484851px;}
._124{width:347.387142px;}
._144{width:349.897636px;}
._122{width:361.705891px;}
._12f{width:372.106718px;}
._130{width:373.965504px;}
._136{width:380.125563px;}
._13f{width:381.315482px;}
._12e{width:391.136598px;}
._123{width:397.438334px;}
._131{width:405.394841px;}
._12b{width:408.460703px;}
._13c{width:412.259286px;}
._133{width:424.443397px;}
._14e{width:437.124374px;}
._138{width:450.077525px;}
._11f{width:462.202804px;}
._148{width:466.007541px;}
._129{width:471.219046px;}
._14a{width:506.974486px;}
._143{width:509.069126px;}
._14d{width:524.698789px;}
._150{width:526.023199px;}
._14b{width:531.159201px;}
._14f{width:657.533926px;}
.fc2{color:rgb(79,130,189);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:37.685651px;}
.fs6{font-size:42.503463px;}
.fs0{font-size:47.319769px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:56.670280px;}
.fs1{font-size:66.021293px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:44.272992px;}
.y2{bottom:57.901086px;}
.y3d{bottom:77.025762px;}
.yc1{bottom:81.693530px;}
.y5a{bottom:82.446930px;}
.y5f{bottom:89.826776px;}
.y84{bottom:92.912796px;}
.ye6{bottom:95.773968px;}
.y1{bottom:97.065000px;}
.y1d{bottom:102.851729px;}
.y3c{bottom:109.628064px;}
.y8c{bottom:110.230541px;}
.yc0{bottom:112.489236px;}
.ya6{bottom:113.769234px;}
.y64{bottom:114.974063px;}
.y59{bottom:115.049357px;}
.y5e{bottom:117.233203px;}
.y83{bottom:125.515223px;}
.ye5{bottom:128.376270px;}
.y1c{bottom:135.453906px;}
.y3b{bottom:142.155197px;}
.y8b{bottom:142.832718px;}
.ya5{bottom:146.371206px;}
.ybf{bottom:146.371536px;}
.y63{bottom:147.576240px;}
.y58{bottom:147.651534px;}
.y53{bottom:147.651698px;}
.y82{bottom:158.117525px;}
.ye4{bottom:160.978697px;}
.y1b{bottom:168.056208px;}
.y3a{bottom:174.757374px;}
.y8a{bottom:178.972972px;}
.ya4{bottom:178.973618px;}
.ybe{bottom:178.973963px;}
.y62{bottom:180.178542px;}
.y52{bottom:180.253836px;}
.y81{bottom:190.719702px;}
.ye3{bottom:193.505580px;}
.y88{bottom:195.238018px;}
.y1a{bottom:200.658635px;}
.y39{bottom:207.359801px;}
.y89{bottom:211.500296px;}
.ybd{bottom:211.500531px;}
.ya3{bottom:211.500942px;}
.y87{bottom:211.500971px;}
.yd4{bottom:212.705550px;}
.y51{bottom:212.780844px;}
.y80{bottom:223.322129px;}
.ye2{bottom:226.108007px;}
.y19{bottom:233.185643px;}
.y38{bottom:239.961978px;}
.ybc{bottom:244.102943px;}
.ya2{bottom:244.103273px;}
.y86{bottom:245.307977px;}
.y50{bottom:245.383271px;}
.y7f{bottom:255.849137px;}
.ye1{bottom:258.710184px;}
.y18{bottom:265.787820px;}
.y37{bottom:272.488986px;}
.ybb{bottom:276.705355px;}
.ya1{bottom:276.705450px;}
.y85{bottom:277.910279px;}
.y4f{bottom:277.985573px;}
.y7e{bottom:288.451314px;}
.ye0{bottom:291.312486px;}
.y17{bottom:298.390247px;}
.y36{bottom:305.091413px;}
.yba{bottom:309.307767px;}
.ya0{bottom:309.307877px;}
.y4e{bottom:310.587750px;}
.y7d{bottom:321.053741px;}
.ydf{bottom:323.839619px;}
.y16{bottom:330.992549px;}
.y35{bottom:337.693590px;}
.y9f{bottom:341.910069px;}
.yb9{bottom:341.910179px;}
.y4d{bottom:343.114758px;}
.y7c{bottom:353.656043px;}
.yde{bottom:356.366502px;}
.y15{bottom:363.519557px;}
.y34{bottom:370.295892px;}
.y67{bottom:373.458240px;}
.y9e{bottom:374.437187px;}
.y4c{bottom:375.717185px;}
.ydd{bottom:386.107312px;}
.y7b{bottom:386.258220px;}
.y14{bottom:396.121734px;}
.y33{bottom:402.898194px;}
.y9d{bottom:407.039364px;}
.yb7{bottom:407.114012px;}
.y5d{bottom:408.244068px;}
.y4b{bottom:408.319362px;}
.ydc{bottom:416.451114px;}
.y7a{bottom:418.785228px;}
.y13{bottom:428.724036px;}
.y32{bottom:435.425202px;}
.yb6{bottom:439.641336px;}
.y9c{bottom:439.641666px;}
.yb8{bottom:439.716424px;}
.y4a{bottom:440.921664px;}
.y68{bottom:444.234212px;}
.ydb{bottom:449.053416px;}
.y79{bottom:451.312236px;}
.y12{bottom:461.326338px;}
.y31{bottom:468.027504px;}
.y9b{bottom:472.243968px;}
.yb4{bottom:472.318836px;}
.y49{bottom:473.523966px;}
.yda{bottom:481.655718px;}
.yd0{bottom:481.731601px;}
.y78{bottom:483.914538px;}
.y11{bottom:493.928640px;}
.y30{bottom:500.629806px;}
.y9a{bottom:504.770976px;}
.yb3{bottom:504.771072px;}
.yb5{bottom:504.846160px;}
.yd3{bottom:505.975680px;}
.y48{bottom:506.050974px;}
.ycf{bottom:509.138028px;}
.yd9{bottom:514.258020px;}
.y77{bottom:516.516840px;}
.y10{bottom:526.455648px;}
.y2f{bottom:533.232108px;}
.y99{bottom:537.373278px;}
.yd2{bottom:538.577982px;}
.y47{bottom:538.653276px;}
.yce{bottom:540.686427px;}
.yd8{bottom:546.785028px;}
.y76{bottom:552.281490px;}
.yf{bottom:559.057950px;}
.y2e{bottom:565.834410px;}
.yd1{bottom:568.017616px;}
.yb1{bottom:570.049375px;}
.y97{bottom:570.050874px;}
.y46{bottom:571.255578px;}
.ycd{bottom:574.342907px;}
.yd7{bottom:579.387330px;}
.y75{bottom:584.959086px;}
.ye{bottom:591.660252px;}
.yd{bottom:598.135536px;}
.y2d{bottom:598.361418px;}
.yb0{bottom:602.576699px;}
.y96{bottom:602.577882px;}
.yb2{bottom:602.651787px;}
.y98{bottom:602.653301px;}
.y5b{bottom:603.782586px;}
.y45{bottom:603.857880px;}
.ycc{bottom:607.622529px;}
.yd6{bottom:611.914338px;}
.y74{bottom:620.874324px;}
.yc{bottom:624.262554px;}
.y2c{bottom:630.963720px;}
.yaf{bottom:635.179111px;}
.y95{bottom:635.180184px;}
.y57{bottom:636.309594px;}
.y44{bottom:636.384888px;}
.ycb{bottom:640.751974px;}
.yd5{bottom:644.441346px;}
.y73{bottom:653.551920px;}
.yb{bottom:656.789562px;}
.yc7{bottom:657.391914px;}
.y2b{bottom:663.566022px;}
.yae{bottom:667.706435px;}
.y94{bottom:667.707178px;}
.y66{bottom:668.836602px;}
.y43{bottom:668.911896px;}
.y72{bottom:672.300251px;}
.yca{bottom:673.881420px;}
.ya{bottom:689.316570px;}
.y71{bottom:691.048457px;}
.y2a{bottom:696.168324px;}
.yad{bottom:700.308848px;}
.y93{bottom:700.309590px;}
.y65{bottom:701.438904px;}
.y42{bottom:701.514198px;}
.yc9{bottom:707.085954px;}
.y70{bottom:709.721369px;}
.y9{bottom:721.918872px;}
.y29{bottom:728.695457px;}
.y92{bottom:732.911796px;}
.yab{bottom:732.986348px;}
.y61{bottom:734.041206px;}
.y41{bottom:734.116500px;}
.yc8{bottom:740.290616px;}
.y6f{bottom:745.561188px;}
.y8{bottom:754.521174px;}
.y28{bottom:761.297634px;}
.yaa{bottom:765.513672px;}
.y91{bottom:765.514098px;}
.yac{bottom:765.588760px;}
.y5c{bottom:766.643508px;}
.y40{bottom:766.718802px;}
.y21{bottom:770.075820px;}
.yc6{bottom:776.431728px;}
.y6e{bottom:778.314078px;}
.y7{bottom:787.048307px;}
.y27{bottom:793.899936px;}
.y6d{bottom:797.062284px;}
.ya9{bottom:798.116084px;}
.y90{bottom:798.116400px;}
.y3f{bottom:799.245810px;}
.yc5{bottom:809.561213px;}
.y6c{bottom:815.810490px;}
.y6{bottom:819.650484px;}
.y55{bottom:826.427069px;}
.y26{bottom:826.502238px;}
.y8f{bottom:830.643408px;}
.y3e{bottom:831.848112px;}
.y6b{bottom:834.558696px;}
.yc4{bottom:842.163390px;}
.y5{bottom:849.090205px;}
.y60{bottom:859.029246px;}
.y25{bottom:859.104540px;}
.y54{bottom:862.191594px;}
.y8e{bottom:863.245710px;}
.ya7{bottom:863.321004px;}
.y23{bottom:864.450414px;}
.y4{bottom:866.408058px;}
.y6a{bottom:870.323346px;}
.yc3{bottom:871.828325px;}
.y24{bottom:894.793896px;}
.y8d{bottom:895.772718px;}
.ya8{bottom:895.848012px;}
.y56{bottom:896.977422px;}
.y22{bottom:897.052716px;}
.yc2{bottom:899.234752px;}
.y69{bottom:900.365652px;}
.y20{bottom:1131.000000px;}
.y1f{bottom:1147.500000px;}
.y1e{bottom:1164.240000px;}
.h8{height:32.754130px;}
.h2{height:41.127534px;}
.h4{height:41.257513px;}
.h3{height:48.065307px;}
.h5{height:49.254443px;}
.hc{height:49.554795px;}
.hf{height:49.555117px;}
.hd{height:49.555619px;}
.he{height:49.556121px;}
.h9{height:56.320312px;}
.h7{height:58.655266px;}
.h6{height:58.956442px;}
.hb{height:59.105331px;}
.ha{height:75.093750px;}
.h1{height:993.880800px;}
.h0{height:1188.000000px;}
.w1{width:767.998800px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:55.080000px;}
.x1{left:75.000000px;}
.x5{left:81.995166px;}
.x4{left:88.470450px;}
.xd{left:102.701016px;}
.x3{left:116.255089px;}
.xa{left:133.044498px;}
.x6{left:137.486844px;}
.xe{left:139.744961px;}
.xc{left:154.051524px;}
.x7{left:158.795046px;}
.x12{left:162.635040px;}
.x13{left:312.469844px;}
.x10{left:334.154772px;}
.x14{left:371.425012px;}
.x11{left:449.053186px;}
.xf{left:557.777681px;}
.xb{left:638.718877px;}
.x2{left:645.194286px;}
.x9{left:888.000000px;}
@media print{
.v4{vertical-align:-23.023232pt;}
.v2{vertical-align:-6.424642pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:6.157376pt;}
.v1{vertical-align:23.290944pt;}
.ls96{letter-spacing:-0.609520pt;}
.ls1c{letter-spacing:-0.370146pt;}
.ls1a{letter-spacing:-0.342540pt;}
.ls6e{letter-spacing:-0.307279pt;}
.ls86{letter-spacing:-0.302241pt;}
.ls53{letter-spacing:-0.287129pt;}
.ls91{letter-spacing:-0.282092pt;}
.ls6d{letter-spacing:-0.277055pt;}
.ls67{letter-spacing:-0.266980pt;}
.ls3d{letter-spacing:-0.256905pt;}
.ls1f{letter-spacing:-0.251868pt;}
.ls66{letter-spacing:-0.246831pt;}
.ls56{letter-spacing:-0.231718pt;}
.ls72{letter-spacing:-0.226681pt;}
.ls98{letter-spacing:-0.221644pt;}
.ls94{letter-spacing:-0.211569pt;}
.ls9b{letter-spacing:-0.201494pt;}
.ls99{letter-spacing:-0.196457pt;}
.ls12{letter-spacing:-0.191420pt;}
.ls87{letter-spacing:-0.186382pt;}
.ls54{letter-spacing:-0.181345pt;}
.ls1b{letter-spacing:-0.180891pt;}
.ls3b{letter-spacing:-0.176308pt;}
.ls30{letter-spacing:-0.171270pt;}
.ls90{letter-spacing:-0.166233pt;}
.ls3a{letter-spacing:-0.161195pt;}
.ls18{letter-spacing:-0.157442pt;}
.ls62{letter-spacing:-0.156158pt;}
.ls6b{letter-spacing:-0.151121pt;}
.ls61{letter-spacing:-0.146083pt;}
.ls16{letter-spacing:-0.141046pt;}
.ls2f{letter-spacing:-0.136009pt;}
.ls2d{letter-spacing:-0.130971pt;}
.ls39{letter-spacing:-0.125934pt;}
.ls5d{letter-spacing:-0.120897pt;}
.ls63{letter-spacing:-0.117244pt;}
.ls42{letter-spacing:-0.115859pt;}
.ls52{letter-spacing:-0.110822pt;}
.ls33{letter-spacing:-0.105785pt;}
.ls75{letter-spacing:-0.105155pt;}
.ls11{letter-spacing:-0.100949pt;}
.ls44{letter-spacing:-0.100747pt;}
.ls55{letter-spacing:-0.095710pt;}
.ls97{letter-spacing:-0.090672pt;}
.ls5f{letter-spacing:-0.085635pt;}
.ls21{letter-spacing:-0.080598pt;}
.ls3c{letter-spacing:-0.075560pt;}
.ls4b{letter-spacing:-0.070523pt;}
.ls24{letter-spacing:-0.065486pt;}
.ls50{letter-spacing:-0.060448pt;}
.ls60{letter-spacing:-0.055411pt;}
.ls88{letter-spacing:-0.050374pt;}
.ls6f{letter-spacing:-0.045336pt;}
.ls35{letter-spacing:-0.040299pt;}
.ls41{letter-spacing:-0.035262pt;}
.ls14{letter-spacing:-0.030224pt;}
.ls13{letter-spacing:-0.025187pt;}
.ls25{letter-spacing:-0.020149pt;}
.ls26{letter-spacing:-0.015112pt;}
.ls5c{letter-spacing:-0.010075pt;}
.ls4e{letter-spacing:-0.005037pt;}
.ls10{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.005037pt;}
.ls38{letter-spacing:0.010075pt;}
.ls8b{letter-spacing:0.011737pt;}
.lsc{letter-spacing:0.015112pt;}
.ls7{letter-spacing:0.020149pt;}
.ls2{letter-spacing:0.025187pt;}
.ls20{letter-spacing:0.030224pt;}
.ls36{letter-spacing:0.035211pt;}
.ls23{letter-spacing:0.035262pt;}
.ls3{letter-spacing:0.040299pt;}
.ls1{letter-spacing:0.041080pt;}
.ls8{letter-spacing:0.045336pt;}
.lsa{letter-spacing:0.050374pt;}
.ls1d{letter-spacing:0.055411pt;}
.ls5{letter-spacing:0.057377pt;}
.ls28{letter-spacing:0.060448pt;}
.ls4{letter-spacing:0.065486pt;}
.ls77{letter-spacing:0.070423pt;}
.ls2a{letter-spacing:0.070523pt;}
.lse{letter-spacing:0.075560pt;}
.lsd{letter-spacing:0.080598pt;}
.lsf{letter-spacing:0.085635pt;}
.ls6{letter-spacing:0.087096pt;}
.ls6a{letter-spacing:0.088028pt;}
.ls32{letter-spacing:0.090672pt;}
.ls2c{letter-spacing:0.095710pt;}
.ls46{letter-spacing:0.099766pt;}
.ls3f{letter-spacing:0.100747pt;}
.ls8c{letter-spacing:0.105634pt;}
.ls29{letter-spacing:0.105785pt;}
.ls9{letter-spacing:0.107195pt;}
.ls17{letter-spacing:0.110545pt;}
.ls2e{letter-spacing:0.110822pt;}
.ls8d{letter-spacing:0.111503pt;}
.ls47{letter-spacing:0.114754pt;}
.ls22{letter-spacing:0.115859pt;}
.ls7b{letter-spacing:0.120897pt;}
.ls57{letter-spacing:0.125934pt;}
.ls76{letter-spacing:0.130971pt;}
.ls27{letter-spacing:0.134977pt;}
.ls1e{letter-spacing:0.136009pt;}
.ls89{letter-spacing:0.141046pt;}
.ls7e{letter-spacing:0.146083pt;}
.ls64{letter-spacing:0.150743pt;}
.ls95{letter-spacing:0.151121pt;}
.ls5e{letter-spacing:0.156158pt;}
.ls9f{letter-spacing:0.161195pt;}
.ls0{letter-spacing:0.164042pt;}
.ls37{letter-spacing:0.176308pt;}
.ls15{letter-spacing:0.191420pt;}
.ls2b{letter-spacing:0.221644pt;}
.ls73{letter-spacing:0.231718pt;}
.ls9c{letter-spacing:0.246831pt;}
.ls8e{letter-spacing:0.297204pt;}
.ls92{letter-spacing:0.302241pt;}
.ls83{letter-spacing:0.308185pt;}
.ls45{letter-spacing:0.312316pt;}
.ls93{letter-spacing:0.322391pt;}
.ls3e{letter-spacing:0.325089pt;}
.ls8f{letter-spacing:0.332466pt;}
.ls59{letter-spacing:0.342540pt;}
.ls34{letter-spacing:0.347578pt;}
.ls4f{letter-spacing:0.352615pt;}
.ls79{letter-spacing:0.357652pt;}
.ls19{letter-spacing:0.362690pt;}
.ls8a{letter-spacing:0.382839pt;}
.ls80{letter-spacing:0.987322pt;}
.ls48{letter-spacing:2.065317pt;}
.ls7f{letter-spacing:2.227783pt;}
.ls71{letter-spacing:2.337334pt;}
.ls74{letter-spacing:2.604314pt;}
.ls9a{letter-spacing:3.364955pt;}
.ls82{letter-spacing:3.405254pt;}
.ls49{letter-spacing:5.546131pt;}
.ls6c{letter-spacing:6.352109pt;}
.ls51{letter-spacing:6.886069pt;}
.ls68{letter-spacing:7.959026pt;}
.ls69{letter-spacing:8.226006pt;}
.ls85{letter-spacing:8.492986pt;}
.ls81{letter-spacing:9.016871pt;}
.ls78{letter-spacing:9.026946pt;}
.ls4a{letter-spacing:9.293926pt;}
.ls7d{letter-spacing:10.633863pt;}
.ls4c{letter-spacing:11.167823pt;}
.ls9e{letter-spacing:11.706821pt;}
.ls5b{letter-spacing:11.973801pt;}
.ls7c{letter-spacing:12.240780pt;}
.ls65{letter-spacing:13.308700pt;}
.ls40{letter-spacing:14.114678pt;}
.ls9d{letter-spacing:14.648638pt;}
.ls4d{letter-spacing:15.454615pt;}
.ls31{letter-spacing:15.988575pt;}
.ls43{letter-spacing:17.595492pt;}
.ls84{letter-spacing:18.396432pt;}
.ls7a{letter-spacing:18.663412pt;}
.ls70{letter-spacing:20.537310pt;}
.ls5a{letter-spacing:30.445793pt;}
.ls58{letter-spacing:56.544609pt;}
.ws29{word-spacing:-53.738538pt;}
.ws6{word-spacing:-17.792000pt;}
.ws8{word-spacing:-16.449572pt;}
.wsb{word-spacing:-16.349806pt;}
.ws11{word-spacing:-14.180163pt;}
.ws1c{word-spacing:-14.129790pt;}
.ws19{word-spacing:-14.099566pt;}
.ws26{word-spacing:-14.094528pt;}
.ws13{word-spacing:-14.089491pt;}
.ws10{word-spacing:-14.074379pt;}
.ws2{word-spacing:-14.069342pt;}
.wsf{word-spacing:-14.059267pt;}
.wsd{word-spacing:-14.044155pt;}
.wsc{word-spacing:-14.029043pt;}
.ws4{word-spacing:-14.024005pt;}
.ws12{word-spacing:-13.988744pt;}
.ws24{word-spacing:-13.928296pt;}
.ws16{word-spacing:-13.887997pt;}
.wse{word-spacing:-13.877922pt;}
.ws17{word-spacing:-13.832586pt;}
.ws25{word-spacing:-9.620728pt;}
.ws1e{word-spacing:-9.463286pt;}
.ws0{word-spacing:-9.423088pt;}
.ws3{word-spacing:-9.399639pt;}
.ws1{word-spacing:-9.312543pt;}
.ws1d{word-spacing:-9.195299pt;}
.ws23{word-spacing:-9.155101pt;}
.ws5{word-spacing:-9.131652pt;}
.ws18{word-spacing:-0.408026pt;}
.ws1f{word-spacing:-0.332466pt;}
.ws1a{word-spacing:-0.282092pt;}
.ws1b{word-spacing:-0.176308pt;}
.ws21{word-spacing:-0.161195pt;}
.ws22{word-spacing:-0.130971pt;}
.ws20{word-spacing:-0.065486pt;}
.ws7{word-spacing:0.000000pt;}
.ws27{word-spacing:1.188817pt;}
.ws9{word-spacing:7.127862pt;}
.wsa{word-spacing:8.865750pt;}
.ws28{word-spacing:9.006797pt;}
.ws14{word-spacing:23.458977pt;}
.ws15{word-spacing:33.523619pt;}
._1f{margin-left:-2831.486720pt;}
._60{margin-left:-2093.775734pt;}
._7f{margin-left:-2083.823082pt;}
._8b{margin-left:-2081.792637pt;}
._4d{margin-left:-2077.827210pt;}
._70{margin-left:-2076.537740pt;}
._8d{margin-left:-2074.956163pt;}
._51{margin-left:-2074.035341pt;}
._72{margin-left:-2070.603050pt;}
._8e{margin-left:-2069.552865pt;}
._4b{margin-left:-2068.579893pt;}
._82{margin-left:-2066.442869pt;}
._49{margin-left:-2065.397711pt;}
._52{margin-left:-2064.254420pt;}
._47{margin-left:-2063.228618pt;}
._55{margin-left:-2062.243753pt;}
._a9{margin-left:-2059.537415pt;}
._40{margin-left:-2057.496545pt;}
._dc{margin-left:-2055.324658pt;}
._3d{margin-left:-2054.358578pt;}
._ab{margin-left:-2051.125180pt;}
._63{margin-left:-2049.713348pt;}
._46{margin-left:-2048.783065pt;}
._a5{margin-left:-2046.361723pt;}
._10e{margin-left:-2043.032029pt;}
._31{margin-left:-2041.918946pt;}
._10{margin-left:-2040.771952pt;}
._12{margin-left:-2039.801552pt;}
._35{margin-left:-2038.853078pt;}
._9e{margin-left:-2037.788140pt;}
._9a{margin-left:-2035.428875pt;}
._d2{margin-left:-2029.827486pt;}
._af{margin-left:-2028.784752pt;}
._22{margin-left:-2026.843761pt;}
._fe{margin-left:-2025.044995pt;}
._b1{margin-left:-2024.024449pt;}
._ce{margin-left:-2019.933961pt;}
._99{margin-left:-2018.295191pt;}
._c{margin-left:-2017.041476pt;}
._5{margin-left:-2016.120129pt;}
._be{margin-left:-2015.138139pt;}
._1b{margin-left:-2011.653241pt;}
._da{margin-left:-2009.345587pt;}
._b8{margin-left:-2007.617517pt;}
._111{margin-left:-2006.593152pt;}
._c4{margin-left:-2001.337815pt;}
._94{margin-left:-1998.182801pt;}
._10b{margin-left:-1996.716777pt;}
._10c{margin-left:-1994.604239pt;}
._b5{margin-left:-1993.207366pt;}
._f2{margin-left:-1992.132678pt;}
._c6{margin-left:-1989.615883pt;}
._c2{margin-left:-1988.650082pt;}
._c1{margin-left:-1987.708096pt;}
._a8{margin-left:-1986.460869pt;}
._21{margin-left:-1985.253703pt;}
._a6{margin-left:-1980.324190pt;}
._bc{margin-left:-1976.768582pt;}
._ef{margin-left:-1971.692553pt;}
._eb{margin-left:-1968.682250pt;}
._e0{margin-left:-1967.488549pt;}
._cc{margin-left:-1965.112135pt;}
._f6{margin-left:-1960.590368pt;}
._f4{margin-left:-1956.789047pt;}
._101{margin-left:-1955.884104pt;}
._b3{margin-left:-1953.582031pt;}
._f5{margin-left:-1951.549938pt;}
._103{margin-left:-1950.065546pt;}
._e3{margin-left:-1948.806309pt;}
._d8{margin-left:-1943.355785pt;}
._ac{margin-left:-1940.118545pt;}
._c0{margin-left:-1938.822316pt;}
._b7{margin-left:-1936.233370pt;}
._d9{margin-left:-1934.127344pt;}
._d7{margin-left:-1930.259063pt;}
._bf{margin-left:-1928.542952pt;}
._e6{margin-left:-1924.516218pt;}
._ff{margin-left:-1920.803788pt;}
._e8{margin-left:-1919.850253pt;}
._9d{margin-left:-1917.401943pt;}
._7c{margin-left:-1915.242698pt;}
._e5{margin-left:-1908.949000pt;}
._32{margin-left:-1908.056188pt;}
._1d{margin-left:-1905.756115pt;}
._ca{margin-left:-1903.515472pt;}
._cb{margin-left:-1901.384516pt;}
._107{margin-left:-1900.424008pt;}
._108{margin-left:-1894.646568pt;}
._106{margin-left:-1892.826454pt;}
._c7{margin-left:-1891.869099pt;}
._d0{margin-left:-1890.826623pt;}
._84{margin-left:-1884.212418pt;}
._fc{margin-left:-1878.778633pt;}
._aa{margin-left:-1877.002074pt;}
._b0{margin-left:-1875.399274pt;}
._d5{margin-left:-1873.232349pt;}
._cf{margin-left:-1866.719044pt;}
._de{margin-left:-1864.574911pt;}
._10f{margin-left:-1854.379298pt;}
._102{margin-left:-1847.476489pt;}
._c9{margin-left:-1844.071491pt;}
._db{margin-left:-1842.445797pt;}
._bb{margin-left:-1836.958332pt;}
._ec{margin-left:-1822.360221pt;}
._15b{margin-left:-1816.057114pt;}
._ee{margin-left:-1808.420223pt;}
._104{margin-left:-1805.770829pt;}
._d4{margin-left:-1804.607199pt;}
._fa{margin-left:-1793.882663pt;}
._9b{margin-left:-1782.442823pt;}
._f0{margin-left:-1778.950306pt;}
._93{margin-left:-1772.613156pt;}
._c8{margin-left:-1767.039953pt;}
._b9{margin-left:-1738.654440pt;}
._ad{margin-left:-1733.469370pt;}
._27{margin-left:-1721.344724pt;}
._10a{margin-left:-1713.197259pt;}
._b6{margin-left:-1699.774327pt;}
._105{margin-left:-1676.790490pt;}
._b4{margin-left:-1650.566156pt;}
._e2{margin-left:-1647.439994pt;}
._90{margin-left:-1620.352338pt;}
._15{margin-left:-1598.324514pt;}
._a3{margin-left:-1570.452267pt;}
._a4{margin-left:-1527.164364pt;}
._38{margin-left:-1454.959146pt;}
._91{margin-left:-1402.934919pt;}
._d1{margin-left:-1394.406416pt;}
._c5{margin-left:-1379.227227pt;}
._8c{margin-left:-1374.174860pt;}
._d6{margin-left:-1365.700139pt;}
._6c{margin-left:-1357.795152pt;}
._ba{margin-left:-1354.471868pt;}
._83{margin-left:-1338.089007pt;}
._6{margin-left:-1324.410247pt;}
._57{margin-left:-1310.551397pt;}
._ed{margin-left:-1299.064336pt;}
._f1{margin-left:-1287.543898pt;}
._160{margin-left:-1236.334371pt;}
._e1{margin-left:-1221.165001pt;}
._109{margin-left:-1215.042829pt;}
._45{margin-left:-1211.807473pt;}
._cd{margin-left:-1203.812930pt;}
._112{margin-left:-1187.004893pt;}
._d3{margin-left:-1155.555038pt;}
._73{margin-left:-1144.704824pt;}
._85{margin-left:-1122.548895pt;}
._f8{margin-left:-1119.940915pt;}
._11{margin-left:-1110.694906pt;}
._41{margin-left:-1092.448898pt;}
._ea{margin-left:-1090.999664pt;}
._26{margin-left:-1068.284863pt;}
._15f{margin-left:-1064.068083pt;}
._df{margin-left:-1058.325577pt;}
._20{margin-left:-1049.343360pt;}
._c3{margin-left:-999.049355pt;}
._e4{margin-left:-993.452850pt;}
._16{margin-left:-981.587415pt;}
._154{margin-left:-956.559681pt;}
._89{margin-left:-928.243096pt;}
._ae{margin-left:-915.273050pt;}
._78{margin-left:-908.733187pt;}
._58{margin-left:-903.961028pt;}
._bd{margin-left:-895.249551pt;}
._53{margin-left:-892.954400pt;}
._81{margin-left:-878.287394pt;}
._a0{margin-left:-875.406906pt;}
._a7{margin-left:-873.143995pt;}
._7a{margin-left:-863.588365pt;}
._15c{margin-left:-855.908040pt;}
._100{margin-left:-847.005143pt;}
._fb{margin-left:-839.888984pt;}
._fd{margin-left:-826.185742pt;}
._44{margin-left:-821.964453pt;}
._f9{margin-left:-805.801181pt;}
._80{margin-left:-780.199955pt;}
._98{margin-left:-772.061576pt;}
._92{margin-left:-736.561320pt;}
._77{margin-left:-722.881484pt;}
._6e{margin-left:-713.414659pt;}
._75{margin-left:-710.382170pt;}
._18{margin-left:-707.387267pt;}
._161{margin-left:-683.267698pt;}
._6f{margin-left:-682.273711pt;}
._f3{margin-left:-657.889231pt;}
._8{margin-left:-650.003690pt;}
._3b{margin-left:-642.057243pt;}
._dd{margin-left:-629.503718pt;}
._86{margin-left:-622.409746pt;}
._71{margin-left:-609.705528pt;}
._b2{margin-left:-601.682388pt;}
._54{margin-left:-594.583379pt;}
._f7{margin-left:-574.237233pt;}
._74{margin-left:-570.365388pt;}
._e7{margin-left:-546.340343pt;}
._33{margin-left:-537.757529pt;}
._15d{margin-left:-536.861919pt;}
._8a{margin-left:-534.783983pt;}
._13{margin-left:-522.365099pt;}
._95{margin-left:-509.023849pt;}
._96{margin-left:-507.376633pt;}
._e9{margin-left:-462.025041pt;}
._9c{margin-left:-453.328379pt;}
._15e{margin-left:-450.948146pt;}
._23{margin-left:-434.130508pt;}
._110{margin-left:-420.104146pt;}
._5d{margin-left:-410.966634pt;}
._0{margin-left:-392.782947pt;}
._10d{margin-left:-390.665824pt;}
._9f{margin-left:-327.987860pt;}
._7b{margin-left:-301.660998pt;}
._a1{margin-left:-293.631449pt;}
._153{margin-left:-173.994191pt;}
._15a{margin-left:-161.414499pt;}
._42{margin-left:-159.103760pt;}
._76{margin-left:-156.794581pt;}
._97{margin-left:-155.602982pt;}
._1e{margin-left:-135.812816pt;}
._7{margin-left:-112.789584pt;}
._1{margin-left:-110.480094pt;}
._5f{margin-left:-31.336355pt;}
._5e{margin-left:-30.361173pt;}
._7d{margin-left:-20.607679pt;}
._7e{margin-left:-19.682492pt;}
._3f{margin-left:-17.899362pt;}
._2f{margin-left:-16.870113pt;}
._2e{margin-left:-15.892865pt;}
._30{margin-left:-14.996215pt;}
._3c{margin-left:-13.543675pt;}
._61{margin-left:-12.615173pt;}
._50{margin-left:-11.339093pt;}
._4f{margin-left:-10.039455pt;}
._4e{margin-left:-8.996722pt;}
._56{margin-left:-7.441954pt;}
._43{margin-left:-5.962456pt;}
._4a{margin-left:-4.951865pt;}
._8f{margin-left:-3.883884pt;}
._48{margin-left:-2.899584pt;}
._a{margin-left:-1.141852pt;}
._3{width:0.916799pt;}
._1a{width:2.105616pt;}
._d{width:3.059795pt;}
._e{width:4.108366pt;}
._28{width:5.092769pt;}
._29{width:6.357146pt;}
._b{width:7.278377pt;}
._9{width:8.190744pt;}
._2b{width:9.147843pt;}
._2c{width:10.437406pt;}
._79{width:11.339093pt;}
._f{width:12.230706pt;}
._4c{width:13.396577pt;}
._2{width:15.348831pt;}
._4{width:16.310966pt;}
._24{width:17.378886pt;}
._2a{width:18.399842pt;}
._1c{width:19.351902pt;}
._14{width:20.663243pt;}
._17{width:21.700939pt;}
._25{width:22.874644pt;}
._34{width:24.275029pt;}
._6d{width:25.252277pt;}
._3e{width:26.944829pt;}
._39{width:27.952301pt;}
._3a{width:29.020221pt;}
._2d{width:29.995840pt;}
._19{width:30.954566pt;}
._36{width:33.317087pt;}
._37{width:34.339671pt;}
._5c{width:36.997768pt;}
._65{width:38.547493pt;}
._5b{width:41.402047pt;}
._5a{width:45.828257pt;}
._87{width:50.926064pt;}
._88{width:52.714173pt;}
._68{width:55.686327pt;}
._69{width:56.818032pt;}
._12c{width:58.457302pt;}
._128{width:62.206337pt;}
._a2{width:64.553746pt;}
._11b{width:65.861460pt;}
._6a{width:69.952319pt;}
._121{width:73.321057pt;}
._13e{width:77.581224pt;}
._59{width:78.495525pt;}
._151{width:81.704710pt;}
._132{width:83.580447pt;}
._149{width:87.704204pt;}
._115{width:90.042778pt;}
._64{width:92.078024pt;}
._12a{width:93.892948pt;}
._118{width:95.264891pt;}
._120{width:96.170204pt;}
._141{width:97.985064pt;}
._13d{width:100.160255pt;}
._127{width:106.407527pt;}
._6b{width:117.511493pt;}
._119{width:120.366186pt;}
._11c{width:123.680182pt;}
._14c{width:134.052549pt;}
._114{width:136.598043pt;}
._159{width:141.484281pt;}
._11d{width:142.434713pt;}
._11e{width:144.677966pt;}
._11a{width:149.180124pt;}
._158{width:156.473831pt;}
._134{width:158.686859pt;}
._146{width:164.498342pt;}
._135{width:166.239857pt;}
._155{width:167.397940pt;}
._152{width:168.417546pt;}
._157{width:169.340872pt;}
._137{width:170.588896pt;}
._62{width:176.305910pt;}
._156{width:179.465962pt;}
._126{width:190.345027pt;}
._117{width:197.897655pt;}
._66{width:200.960369pt;}
._67{width:201.932579pt;}
._145{width:215.940232pt;}
._13b{width:231.752112pt;}
._142{width:245.861752pt;}
._140{width:251.362548pt;}
._147{width:259.222454pt;}
._125{width:260.127551pt;}
._113{width:265.735759pt;}
._13a{width:268.454304pt;}
._12d{width:269.789343pt;}
._116{width:285.299230pt;}
._139{width:288.430978pt;}
._124{width:308.788571pt;}
._144{width:311.020121pt;}
._122{width:321.516347pt;}
._12f{width:330.761527pt;}
._130{width:332.413781pt;}
._136{width:337.889389pt;}
._13f{width:338.947095pt;}
._12e{width:347.676976pt;}
._123{width:353.278519pt;}
._131{width:360.350970pt;}
._12b{width:363.076181pt;}
._13c{width:366.452699pt;}
._133{width:377.283019pt;}
._14e{width:388.554999pt;}
._138{width:400.068911pt;}
._11f{width:410.846937pt;}
._148{width:414.228925pt;}
._129{width:418.861374pt;}
._14a{width:450.643988pt;}
._143{width:452.505890pt;}
._14d{width:466.398924pt;}
._150{width:467.576177pt;}
._14b{width:472.141512pt;}
._14f{width:584.474601pt;}
.fs3{font-size:33.498356pt;}
.fs6{font-size:37.780856pt;}
.fs0{font-size:42.062017pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:50.373582pt;}
.fs1{font-size:58.685594pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:39.353771pt;}
.y2{bottom:51.467632pt;}
.y3d{bottom:68.467344pt;}
.yc1{bottom:72.616471pt;}
.y5a{bottom:73.286160pt;}
.y5f{bottom:79.846023pt;}
.y84{bottom:82.589152pt;}
.ye6{bottom:85.132416pt;}
.y1{bottom:86.280000pt;}
.y1d{bottom:91.423760pt;}
.y3c{bottom:97.447168pt;}
.y8c{bottom:97.982704pt;}
.yc0{bottom:99.990432pt;}
.ya6{bottom:101.128208pt;}
.y64{bottom:102.199168pt;}
.y59{bottom:102.266096pt;}
.y5e{bottom:104.207292pt;}
.y83{bottom:111.569088pt;}
.ye5{bottom:114.112240pt;}
.y1c{bottom:120.403472pt;}
.y3b{bottom:126.360176pt;}
.y8b{bottom:126.962416pt;}
.ya5{bottom:130.107738pt;}
.ybf{bottom:130.108032pt;}
.y63{bottom:131.178880pt;}
.y58{bottom:131.245808pt;}
.y53{bottom:131.245954pt;}
.y82{bottom:140.548912pt;}
.ye4{bottom:143.092176pt;}
.y1b{bottom:149.383296pt;}
.y3a{bottom:155.339888pt;}
.y8a{bottom:159.087086pt;}
.ya4{bottom:159.087660pt;}
.ybe{bottom:159.087968pt;}
.y62{bottom:160.158704pt;}
.y52{bottom:160.225632pt;}
.y81{bottom:169.528624pt;}
.ye3{bottom:172.004960pt;}
.y88{bottom:173.544905pt;}
.y1a{bottom:178.363232pt;}
.y39{bottom:184.319824pt;}
.y89{bottom:188.000263pt;}
.ybd{bottom:188.000472pt;}
.ya3{bottom:188.000837pt;}
.y87{bottom:188.000864pt;}
.yd4{bottom:189.071600pt;}
.y51{bottom:189.138528pt;}
.y80{bottom:198.508560pt;}
.ye2{bottom:200.984896pt;}
.y19{bottom:207.276128pt;}
.y38{bottom:213.299536pt;}
.ybc{bottom:216.980394pt;}
.ya2{bottom:216.980688pt;}
.y86{bottom:218.051536pt;}
.y50{bottom:218.118464pt;}
.y7f{bottom:227.421456pt;}
.ye1{bottom:229.964608pt;}
.y18{bottom:236.255840pt;}
.y37{bottom:242.212432pt;}
.ybb{bottom:245.960316pt;}
.ya1{bottom:245.960400pt;}
.y85{bottom:247.031360pt;}
.y4f{bottom:247.098288pt;}
.y7e{bottom:256.401168pt;}
.ye0{bottom:258.944432pt;}
.y17{bottom:265.235776pt;}
.y36{bottom:271.192368pt;}
.yba{bottom:274.940238pt;}
.ya0{bottom:274.940336pt;}
.y4e{bottom:276.078000pt;}
.y7d{bottom:285.381104pt;}
.ydf{bottom:287.857440pt;}
.y16{bottom:294.215600pt;}
.y35{bottom:300.172080pt;}
.y9f{bottom:303.920062pt;}
.yb9{bottom:303.920160pt;}
.y4d{bottom:304.990896pt;}
.y7c{bottom:314.360928pt;}
.yde{bottom:316.770224pt;}
.y15{bottom:323.128496pt;}
.y34{bottom:329.151904pt;}
.y67{bottom:331.962880pt;}
.y9e{bottom:332.833056pt;}
.y4c{bottom:333.970832pt;}
.ydd{bottom:343.206500pt;}
.y7b{bottom:343.340640pt;}
.y14{bottom:352.108208pt;}
.y33{bottom:358.131728pt;}
.y9d{bottom:361.812768pt;}
.yb7{bottom:361.879121pt;}
.y5d{bottom:362.883616pt;}
.y4b{bottom:362.950544pt;}
.ydc{bottom:370.178768pt;}
.y7a{bottom:372.253536pt;}
.y13{bottom:381.088032pt;}
.y32{bottom:387.044624pt;}
.yb6{bottom:390.792298pt;}
.y9c{bottom:390.792592pt;}
.yb8{bottom:390.859043pt;}
.y4a{bottom:391.930368pt;}
.y68{bottom:394.874855pt;}
.ydb{bottom:399.158592pt;}
.y79{bottom:401.166432pt;}
.y12{bottom:410.067856pt;}
.y31{bottom:416.024448pt;}
.y9b{bottom:419.772416pt;}
.yb4{bottom:419.838965pt;}
.y49{bottom:420.910192pt;}
.yda{bottom:428.138416pt;}
.yd0{bottom:428.205867pt;}
.y78{bottom:430.146256pt;}
.y11{bottom:439.047680pt;}
.y30{bottom:445.004272pt;}
.y9a{bottom:448.685312pt;}
.yb3{bottom:448.685397pt;}
.yb5{bottom:448.752142pt;}
.yd3{bottom:449.756160pt;}
.y48{bottom:449.823088pt;}
.ycf{bottom:452.567136pt;}
.yd9{bottom:457.118240pt;}
.y77{bottom:459.126080pt;}
.y10{bottom:467.960576pt;}
.y2f{bottom:473.984096pt;}
.y99{bottom:477.665136pt;}
.yd2{bottom:478.735984pt;}
.y47{bottom:478.802912pt;}
.yce{bottom:480.610158pt;}
.yd8{bottom:486.031136pt;}
.y76{bottom:490.916880pt;}
.yf{bottom:496.940400pt;}
.y2e{bottom:502.963920pt;}
.yd1{bottom:504.904548pt;}
.yb1{bottom:506.710556pt;}
.y97{bottom:506.711888pt;}
.y46{bottom:507.782736pt;}
.ycd{bottom:510.527028pt;}
.yd7{bottom:515.010960pt;}
.y75{bottom:519.963632pt;}
.ye{bottom:525.920224pt;}
.yd{bottom:531.676032pt;}
.y2d{bottom:531.876816pt;}
.yb0{bottom:535.623733pt;}
.y96{bottom:535.624784pt;}
.yb2{bottom:535.690478pt;}
.y98{bottom:535.691824pt;}
.y5b{bottom:536.695632pt;}
.y45{bottom:536.762560pt;}
.ycc{bottom:540.108914pt;}
.yd6{bottom:543.923856pt;}
.y74{bottom:551.888288pt;}
.yc{bottom:554.900048pt;}
.y2c{bottom:560.856640pt;}
.yaf{bottom:564.603655pt;}
.y95{bottom:564.604608pt;}
.y57{bottom:565.608528pt;}
.y44{bottom:565.675456pt;}
.ycb{bottom:569.557311pt;}
.yd5{bottom:572.836752pt;}
.y73{bottom:580.935040pt;}
.yb{bottom:583.812944pt;}
.yc7{bottom:584.348368pt;}
.y2b{bottom:589.836464pt;}
.yae{bottom:593.516832pt;}
.y94{bottom:593.517491pt;}
.y66{bottom:594.521424pt;}
.y43{bottom:594.588352pt;}
.y72{bottom:597.600224pt;}
.yca{bottom:599.005707pt;}
.ya{bottom:612.725840pt;}
.y71{bottom:614.265296pt;}
.y2a{bottom:618.816288pt;}
.yad{bottom:622.496753pt;}
.y93{bottom:622.497413pt;}
.y65{bottom:623.501248pt;}
.y42{bottom:623.568176pt;}
.yc9{bottom:628.520848pt;}
.y70{bottom:630.863440pt;}
.y9{bottom:641.705664pt;}
.y29{bottom:647.729296pt;}
.y92{bottom:651.477152pt;}
.yab{bottom:651.543420pt;}
.y61{bottom:652.481072pt;}
.y41{bottom:652.548000pt;}
.yc8{bottom:658.036104pt;}
.y6f{bottom:662.721056pt;}
.y8{bottom:670.685488pt;}
.y28{bottom:676.709008pt;}
.yaa{bottom:680.456597pt;}
.y91{bottom:680.456976pt;}
.yac{bottom:680.523342pt;}
.y5c{bottom:681.460896pt;}
.y40{bottom:681.527824pt;}
.y21{bottom:684.511840pt;}
.yc6{bottom:690.161536pt;}
.y6e{bottom:691.834736pt;}
.y7{bottom:699.598496pt;}
.y27{bottom:705.688832pt;}
.y6d{bottom:708.499808pt;}
.ya9{bottom:709.436519pt;}
.y90{bottom:709.436800pt;}
.y3f{bottom:710.440720pt;}
.yc5{bottom:719.609968pt;}
.y6c{bottom:725.164880pt;}
.y6{bottom:728.578208pt;}
.y55{bottom:734.601840pt;}
.y26{bottom:734.668656pt;}
.y8f{bottom:738.349696pt;}
.y3e{bottom:739.420544pt;}
.y6b{bottom:741.829952pt;}
.yc4{bottom:748.589680pt;}
.y5{bottom:754.746849pt;}
.y60{bottom:763.581552pt;}
.y25{bottom:763.648480pt;}
.y54{bottom:766.392528pt;}
.y8e{bottom:767.329520pt;}
.ya7{bottom:767.396448pt;}
.y23{bottom:768.400368pt;}
.y4{bottom:770.140496pt;}
.y6a{bottom:773.620752pt;}
.yc3{bottom:774.958511pt;}
.y24{bottom:795.372352pt;}
.y8d{bottom:796.242416pt;}
.ya8{bottom:796.309344pt;}
.y56{bottom:797.313264pt;}
.y22{bottom:797.380192pt;}
.yc2{bottom:799.319780pt;}
.y69{bottom:800.325024pt;}
.y20{bottom:1005.333333pt;}
.y1f{bottom:1020.000000pt;}
.y1e{bottom:1034.880000pt;}
.h8{height:29.114782pt;}
.h2{height:36.557808pt;}
.h4{height:36.673345pt;}
.h3{height:42.724717pt;}
.h5{height:43.781727pt;}
.hc{height:44.048707pt;}
.hf{height:44.048993pt;}
.hd{height:44.049439pt;}
.he{height:44.049885pt;}
.h9{height:50.062500pt;}
.h7{height:52.138014pt;}
.h6{height:52.405726pt;}
.hb{height:52.538072pt;}
.ha{height:66.750000pt;}
.h1{height:883.449600pt;}
.h0{height:1056.000000pt;}
.w1{width:682.665600pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:48.960000pt;}
.x1{left:66.666667pt;}
.x5{left:72.884592pt;}
.x4{left:78.640400pt;}
.xd{left:91.289792pt;}
.x3{left:103.337857pt;}
.xa{left:118.261776pt;}
.x6{left:122.210528pt;}
.xe{left:124.217743pt;}
.xc{left:136.934688pt;}
.x7{left:141.151152pt;}
.x12{left:144.564480pt;}
.x13{left:277.750972pt;}
.x10{left:297.026464pt;}
.x14{left:330.155567pt;}
.x11{left:399.158388pt;}
.xf{left:495.802383pt;}
.xb{left:567.750112pt;}
.x2{left:573.506032pt;}
.x9{left:789.333333pt;}
}




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