
    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_553a0f6c755907951ea91866.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9416df2e76ff60267122d58b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d2447c3cf8692986d1a2b04d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3d73d9c723bd66266dbc9e6a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935547;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_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_99dbfee172f86fc32bdfb21b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_85ec36f721eb437a3dcc94d8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_8f783a774f3d9d96200e05a3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0d0409644a2b3e0ab6e0e0d0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b7389af4cf767a5b6d4ade25.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_856523acf5972c9adb8b69be.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3e696ea438a3053cd638ff01.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_7e7439dab8f6357f52df9d41.woff')format("woff");}.fff{font-family:fff;line-height:0.950684;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_71761f316d23e8e093984032.woff')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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_c9e0e6aefec1f6c63674c2c5.woff')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b219342fdf7d8432ed689fc4.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_ed95314458a7766b4ed90148.woff')format("woff");}.ff14{font-family:ff14;line-height:0.695312;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_9df701e5537c744f4a127ea5.woff')format("woff");}.ff15{font-family:ff15;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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,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);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.879999px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021238px;}
.ls13{letter-spacing:0.055440px;}
.ls2{letter-spacing:0.073080px;}
.ls16{letter-spacing:0.237060px;}
.ls15{letter-spacing:0.254220px;}
.ls14{letter-spacing:0.341340px;}
.ls11{letter-spacing:0.720414px;}
.ls4{letter-spacing:0.810720px;}
.lsc{letter-spacing:0.837060px;}
.lsd{letter-spacing:3.692339px;}
.lsb{letter-spacing:17.406593px;}
.ls7{letter-spacing:18.100613px;}
.ls9{letter-spacing:18.127013px;}
.ls8{letter-spacing:18.847432px;}
.lsa{letter-spacing:19.567792px;}
.ls12{letter-spacing:21.702651px;}
.ls10{letter-spacing:21.729051px;}
.ls6{letter-spacing:25.331090px;}
.ls5{letter-spacing:31.814807px;}
.lsf{letter-spacing:49.825180px;}
.lse{letter-spacing:52.706979px;}
.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;}
}
.ws1{word-spacing:-22.407831px;}
.ws0{word-spacing:-18.021231px;}
.ws3{word-spacing:-17.999993px;}
.ws2{word-spacing:-17.639993px;}
.ws4{word-spacing:-15.179034px;}
.ws8{word-spacing:-13.715995px;}
.ws6{word-spacing:-13.499995px;}
.ws7{word-spacing:-13.013995px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._2a{margin-left:-3.585839px;}
._11{margin-left:-2.231819px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._c{width:3.358555px;}
._d{width:4.976496px;}
._12{width:6.337400px;}
._e{width:7.689232px;}
._f{width:9.605911px;}
._10{width:11.087668px;}
._3b{width:12.619577px;}
._14{width:14.841687px;}
._13{width:16.339673px;}
._1a{width:18.000926px;}
._21{width:19.423327px;}
._19{width:20.502244px;}
._18{width:21.578818px;}
._1f{width:22.592052px;}
._1c{width:23.611024px;}
._17{width:24.970928px;}
._20{width:26.897827px;}
._1e{width:28.048836px;}
._1d{width:29.468070px;}
._24{width:30.965544px;}
._15{width:32.231933px;}
._16{width:33.877961px;}
._22{width:35.245831px;}
._38{width:36.418927px;}
._25{width:37.517206px;}
._26{width:39.067319px;}
._31{width:40.282850px;}
._2d{width:41.608994px;}
._2e{width:42.810664px;}
._2c{width:44.136248px;}
._27{width:45.543240px;}
._28{width:46.618759px;}
._2f{width:47.675682px;}
._1b{width:50.738646px;}
._23{width:52.421297px;}
._29{width:53.721209px;}
._30{width:56.503224px;}
._34{width:65.315151px;}
._33{width:66.379545px;}
._2b{width:71.333258px;}
._3c{width:76.918821px;}
._39{width:82.714337px;}
._3d{width:117.934195px;}
._32{width:121.616374px;}
._3a{width:165.561644px;}
._35{width:187.408189px;}
._36{width:361.740458px;}
._37{width:362.954751px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsa{font-size:23.759990px;}
.fs7{font-size:38.879984px;}
.fse{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fsd{font-size:51.119980px;}
.fs9{font-size:53.999978px;}
.fs8{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsc{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y4a{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.878921px;}
.yc5{bottom:3.058953px;}
.yc8{bottom:3.058960px;}
.yca{bottom:3.058967px;}
.ycc{bottom:3.058973px;}
.yce{bottom:3.058980px;}
.yd0{bottom:3.058987px;}
.yd2{bottom:3.058993px;}
.yd4{bottom:3.059000px;}
.yd6{bottom:3.059007px;}
.yd8{bottom:3.059013px;}
.yda{bottom:3.059020px;}
.y1e{bottom:3.059079px;}
.y28{bottom:3.059123px;}
.y15{bottom:3.239032px;}
.y25{bottom:3.419111px;}
.y45{bottom:3.778940px;}
.yc{bottom:4.138945px;}
.y7{bottom:4.140028px;}
.y20{bottom:4.319079px;}
.y4{bottom:4.320028px;}
.y17{bottom:4.859040px;}
.y1b{bottom:4.859058px;}
.y23{bottom:4.859096px;}
.y8{bottom:58.620277px;}
.y6{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y5{bottom:78.960268px;}
.y2{bottom:79.319968px;}
.y42{bottom:123.239951px;}
.y127{bottom:124.139950px;}
.y149{bottom:126.479949px;}
.yfe{bottom:127.919949px;}
.y99{bottom:129.359948px;}
.y8f{bottom:129.719948px;}
.y77{bottom:130.619948px;}
.y41{bottom:146.279941px;}
.y126{bottom:146.999941px;}
.y148{bottom:150.239940px;}
.yfd{bottom:150.959940px;}
.y98{bottom:152.399939px;}
.y8e{bottom:152.759939px;}
.y76{bottom:153.479939px;}
.y40{bottom:169.319932px;}
.y125{bottom:170.039932px;}
.yfc{bottom:173.999930px;}
.y147{bottom:174.179930px;}
.y97{bottom:175.259930px;}
.y8d{bottom:175.619930px;}
.yc3{bottom:175.799930px;}
.y75{bottom:176.519929px;}
.y3f{bottom:192.179923px;}
.y124{bottom:193.079923px;}
.yfb{bottom:196.859921px;}
.yc2{bottom:197.939921px;}
.y8c{bottom:198.659921px;}
.y74{bottom:199.559920px;}
.y3e{bottom:215.219914px;}
.y123{bottom:216.119914px;}
.yfa{bottom:219.899912px;}
.yc1{bottom:220.439912px;}
.y8b{bottom:221.699911px;}
.y73{bottom:222.599911px;}
.y3d{bottom:238.259905px;}
.y122{bottom:239.159904px;}
.yf9{bottom:242.939903px;}
.yc0{bottom:243.479903px;}
.y8a{bottom:244.559902px;}
.y96{bottom:244.739902px;}
.y146{bottom:245.459902px;}
.y72{bottom:245.639902px;}
.y3c{bottom:261.299895px;}
.y121{bottom:262.019895px;}
.yf8{bottom:265.979894px;}
.ybf{bottom:266.519893px;}
.y95{bottom:267.779893px;}
.y89{bottom:267.959893px;}
.y71{bottom:268.679893px;}
.y145{bottom:269.219892px;}
.y3b{bottom:284.339886px;}
.y120{bottom:285.059886px;}
.yf7{bottom:289.019884px;}
.ybe{bottom:289.559884px;}
.y94{bottom:290.639884px;}
.y88{bottom:290.999884px;}
.y70{bottom:291.539883px;}
.y144{bottom:292.979883px;}
.y3a{bottom:307.199877px;}
.y11f{bottom:308.099877px;}
.yf6{bottom:311.879875px;}
.ybd{bottom:312.599875px;}
.y93{bottom:313.859874px;}
.y87{bottom:314.039874px;}
.y6f{bottom:314.579874px;}
.y143{bottom:316.739873px;}
.y39{bottom:330.239868px;}
.y11e{bottom:331.139868px;}
.yf5{bottom:334.919866px;}
.ybc{bottom:335.459866px;}
.y86{bottom:336.899865px;}
.y92{bottom:337.259865px;}
.y6e{bottom:337.619865px;}
.y142{bottom:340.499864px;}
.y38{bottom:353.279859px;}
.y11d{bottom:354.179858px;}
.yf4{bottom:357.959857px;}
.ybb{bottom:358.499857px;}
.y85{bottom:360.119856px;}
.y6d{bottom:360.659856px;}
.y141{bottom:364.259854px;}
.y37{bottom:376.319849px;}
.y11c{bottom:377.219849px;}
.yf3{bottom:380.999848px;}
.yba{bottom:381.539847px;}
.y91{bottom:382.979847px;}
.y84{bottom:383.159847px;}
.y6c{bottom:383.699847px;}
.y140{bottom:388.019845px;}
.y36{bottom:399.359840px;}
.y11b{bottom:400.079840px;}
.yf2{bottom:404.039838px;}
.yb9{bottom:404.579838px;}
.y83{bottom:406.199838px;}
.y90{bottom:406.379837px;}
.y6b{bottom:406.739837px;}
.y13f{bottom:411.779835px;}
.y35{bottom:415.559834px;}
.y34{bottom:419.339832px;}
.y11a{bottom:423.119831px;}
.yf1{bottom:427.079829px;}
.yb8{bottom:427.619829px;}
.y82{bottom:429.239828px;}
.y6a{bottom:429.599828px;}
.y13e{bottom:435.539826px;}
.y33{bottom:439.679824px;}
.y119{bottom:446.159822px;}
.yf0{bottom:449.939820px;}
.yb7{bottom:450.659820px;}
.y81{bottom:452.279819px;}
.y69{bottom:452.639819px;}
.y13d{bottom:459.479816px;}
.y32{bottom:462.719815px;}
.y118{bottom:469.199812px;}
.yef{bottom:472.979811px;}
.yb6{bottom:473.519811px;}
.y80{bottom:475.319810px;}
.y68{bottom:475.679810px;}
.y13c{bottom:483.239807px;}
.y31{bottom:485.759806px;}
.y117{bottom:492.239803px;}
.yee{bottom:496.019802px;}
.yb5{bottom:496.559801px;}
.y7f{bottom:498.179801px;}
.y67{bottom:498.719801px;}
.y13b{bottom:506.999797px;}
.y30{bottom:508.799796px;}
.y116{bottom:515.279794px;}
.yed{bottom:519.059792px;}
.yb4{bottom:519.599792px;}
.y7e{bottom:521.039792px;}
.y66{bottom:521.759791px;}
.y13a{bottom:530.759788px;}
.y2f{bottom:531.839787px;}
.y115{bottom:538.139785px;}
.yec{bottom:542.099783px;}
.yb3{bottom:542.639783px;}
.y7d{bottom:544.439782px;}
.y65{bottom:544.799782px;}
.y139{bottom:554.519778px;}
.y2e{bottom:554.879778px;}
.y114{bottom:561.179776px;}
.yeb{bottom:565.139774px;}
.yb2{bottom:565.679774px;}
.y7c{bottom:567.479773px;}
.y64{bottom:567.659773px;}
.y2d{bottom:577.739769px;}
.y138{bottom:578.279769px;}
.y113{bottom:584.219766px;}
.yea{bottom:587.999765px;}
.yb1{bottom:588.539765px;}
.y7b{bottom:590.519764px;}
.y63{bottom:590.699764px;}
.y2c{bottom:600.779760px;}
.y137{bottom:602.039759px;}
.y112{bottom:607.259757px;}
.ye9{bottom:611.039756px;}
.yb0{bottom:611.579755px;}
.y7a{bottom:613.559755px;}
.y62{bottom:613.739755px;}
.y2b{bottom:623.819750px;}
.y136{bottom:625.799750px;}
.y111{bottom:630.299748px;}
.ye8{bottom:634.079746px;}
.yaf{bottom:634.619746px;}
.y79{bottom:636.599745px;}
.y61{bottom:636.779745px;}
.y2a{bottom:646.859741px;}
.y135{bottom:649.559740px;}
.y110{bottom:653.339739px;}
.ye7{bottom:657.119737px;}
.yae{bottom:657.659737px;}
.y78{bottom:659.459736px;}
.y60{bottom:659.819736px;}
.y29{bottom:669.899732px;}
.y134{bottom:673.319731px;}
.y10f{bottom:676.199730px;}
.ye6{bottom:680.159728px;}
.yad{bottom:680.699728px;}
.y5f{bottom:682.679727px;}
.y27{bottom:689.880600px;}
.y133{bottom:697.079721px;}
.y10e{bottom:699.239720px;}
.ye5{bottom:703.199719px;}
.yac{bottom:703.739719px;}
.y5e{bottom:705.719718px;}
.y24{bottom:717.960600px;}
.y132{bottom:721.019712px;}
.y26{bottom:721.379711px;}
.y10d{bottom:722.279711px;}
.ye4{bottom:726.059710px;}
.yab{bottom:726.599709px;}
.y5d{bottom:728.759708px;}
.y131{bottom:744.779702px;}
.y10c{bottom:745.319702px;}
.ye3{bottom:749.099700px;}
.yaa{bottom:749.459700px;}
.y5c{bottom:751.799699px;}
.y22{bottom:754.140600px;}
.y21{bottom:758.999696px;}
.y10b{bottom:768.359693px;}
.y130{bottom:768.539693px;}
.ye2{bottom:772.139691px;}
.ya9{bottom:772.859691px;}
.y5b{bottom:774.839690px;}
.y10a{bottom:791.219684px;}
.y12f{bottom:792.299683px;}
.ye1{bottom:795.179682px;}
.ya8{bottom:795.719682px;}
.y5a{bottom:797.879681px;}
.y1f{bottom:798.600600px;}
.y1d{bottom:799.860600px;}
.y109{bottom:814.259674px;}
.y12e{bottom:816.059674px;}
.ye0{bottom:818.219673px;}
.y1c{bottom:819.119672px;}
.y59{bottom:820.739672px;}
.y108{bottom:837.299665px;}
.y12d{bottom:839.819664px;}
.ydf{bottom:841.079664px;}
.ya7{bottom:841.979663px;}
.y58{bottom:843.779662px;}
.y1a{bottom:850.080600px;}
.y107{bottom:860.339656px;}
.y12c{bottom:863.579655px;}
.yde{bottom:864.119654px;}
.ya6{bottom:865.559654px;}
.y57{bottom:866.819653px;}
.y19{bottom:872.759651px;}
.y157{bottom:873.119651px;}
.y106{bottom:883.379647px;}
.ydd{bottom:887.159645px;}
.y12b{bottom:887.339645px;}
.ya5{bottom:888.599645px;}
.y56{bottom:889.859644px;}
.y156{bottom:894.539642px;}
.y16{bottom:895.440600px;}
.y18{bottom:905.519638px;}
.y105{bottom:906.419637px;}
.ydc{bottom:910.199636px;}
.y12a{bottom:911.099636px;}
.ya4{bottom:911.819635px;}
.y55{bottom:912.899635px;}
.y14{bottom:915.780600px;}
.y155{bottom:916.139634px;}
.y104{bottom:929.279628px;}
.ydb{bottom:933.239627px;}
.y129{bottom:934.859626px;}
.ya3{bottom:935.219626px;}
.y54{bottom:935.939626px;}
.y154{bottom:937.559625px;}
.yd9{bottom:947.640600px;}
.y13{bottom:949.259620px;}
.y103{bottom:952.859619px;}
.y153{bottom:957.179617px;}
.ya2{bottom:958.259617px;}
.y128{bottom:958.619617px;}
.y53{bottom:958.799616px;}
.yd7{bottom:964.020600px;}
.y152{bottom:975.719610px;}
.y102{bottom:977.159609px;}
.yd5{bottom:980.400600px;}
.ya1{bottom:981.119608px;}
.y52{bottom:981.839607px;}
.y12{bottom:990.119604px;}
.yd3{bottom:996.960600px;}
.y151{bottom:997.139601px;}
.y101{bottom:1000.199600px;}
.ya0{bottom:1004.519598px;}
.y51{bottom:1004.879598px;}
.yd1{bottom:1013.340600px;}
.y11{bottom:1013.519595px;}
.y100{bottom:1014.600600px;}
.y150{bottom:1018.739593px;}
.y9f{bottom:1027.379589px;}
.y50{bottom:1027.919589px;}
.y10{bottom:1029.899588px;}
.ycf{bottom:1029.900600px;}
.yf{bottom:1030.259588px;}
.yff{bottom:1030.980600px;}
.y14f{bottom:1040.159584px;}
.ycd{bottom:1047.540600px;}
.y9e{bottom:1050.599580px;}
.y4f{bottom:1050.959580px;}
.y14e{bottom:1059.779576px;}
.ycb{bottom:1063.920600px;}
.y49{bottom:1073.280600px;}
.y9d{bottom:1073.639571px;}
.y4e{bottom:1073.999570px;}
.y14d{bottom:1078.319569px;}
.yc9{bottom:1080.300600px;}
.y48{bottom:1082.279567px;}
.y9c{bottom:1096.679561px;}
.y4d{bottom:1096.859561px;}
.yc7{bottom:1096.860600px;}
.y14c{bottom:1099.739560px;}
.yc6{bottom:1102.079559px;}
.y47{bottom:1103.519559px;}
.yc4{bottom:1114.500600px;}
.y9b{bottom:1119.719552px;}
.y4c{bottom:1119.899552px;}
.y14b{bottom:1121.339551px;}
.y46{bottom:1124.939550px;}
.ye{bottom:1127.099549px;}
.yd{bottom:1127.459549px;}
.yb{bottom:1134.300600px;}
.y9a{bottom:1142.579543px;}
.y14a{bottom:1142.759543px;}
.y4b{bottom:1142.939543px;}
.y44{bottom:1145.280600px;}
.y43{bottom:1149.059540px;}
.y1{bottom:1192.799523px;}
.y9{bottom:1195.860600px;}
.h27{height:2.880000px;}
.he{height:8.187887px;}
.h11{height:13.500000px;}
.h19{height:15.120000px;}
.h2b{height:15.300000px;}
.h21{height:15.894134px;}
.h1b{height:16.380000px;}
.h1f{height:17.100000px;}
.h4{height:19.800000px;}
.h13{height:20.160000px;}
.h16{height:20.340000px;}
.h2{height:20.520000px;}
.ha{height:20.700000px;}
.h7{height:20.880000px;}
.h25{height:21.780000px;}
.h22{height:25.913662px;}
.h14{height:26.008583px;}
.h2d{height:31.585065px;}
.h12{height:32.269909px;}
.h1e{height:33.588971px;}
.h15{height:36.886626px;}
.h2a{height:38.689438px;}
.h18{height:40.005336px;}
.h1a{height:40.842757px;}
.h1c{height:40.869124px;}
.h26{height:41.290999px;}
.h23{height:43.185920px;}
.h20{height:45.199318px;}
.hb{height:47.988262px;}
.h5{height:48.164043px;}
.h17{height:48.199199px;}
.h28{height:49.907793px;}
.h2c{height:50.018535px;}
.h1d{height:50.132792px;}
.hd{height:54.457009px;}
.h24{height:55.054665px;}
.h29{height:56.320290px;}
.h8{height:56.351931px;}
.hf{height:64.058178px;}
.h10{height:67.696970px;}
.h6{height:70.628878px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.hc{height:78.468719px;}
.h9{height:84.898091px;}
.h0{height:1263.000000px;}
.w12{width:4.320000px;}
.w18{width:4.500000px;}
.w2{width:4.680000px;}
.w1f{width:5.040000px;}
.w25{width:5.760000px;}
.w1{width:6.480000px;}
.w10{width:7.200000px;}
.w27{width:7.380000px;}
.w26{width:7.560000px;}
.w1b{width:7.740000px;}
.w41{width:8.100000px;}
.w8{width:8.280000px;}
.w1c{width:8.820000px;}
.wa{width:9.720000px;}
.w22{width:9.900000px;}
.w21{width:10.620000px;}
.w6{width:11.160000px;}
.w7{width:11.340000px;}
.w16{width:12.240000px;}
.we{width:12.420000px;}
.w2e{width:12.600000px;}
.w4{width:16.020000px;}
.w3f{width:16.920000px;}
.w32{width:17.460000px;}
.w46{width:18.360000px;}
.w3d{width:24.120000px;}
.w4c{width:24.480000px;}
.w48{width:24.660000px;}
.w35{width:24.840000px;}
.w3e{width:25.020000px;}
.w37{width:25.380000px;}
.w39{width:25.560000px;}
.w4a{width:25.920000px;}
.w4f{width:26.100000px;}
.w3b{width:26.280000px;}
.w4e{width:26.460000px;}
.w36{width:26.820000px;}
.w44{width:27.000000px;}
.w33{width:27.360000px;}
.w31{width:28.260000px;}
.w4b{width:29.160000px;}
.w49{width:32.220000px;}
.w30{width:32.580000px;}
.w5{width:33.480000px;}
.w2f{width:33.660000px;}
.w38{width:35.460000px;}
.w43{width:38.160000px;}
.w3c{width:38.340000px;}
.w34{width:40.500000px;}
.w4d{width:41.580000px;}
.w45{width:42.660000px;}
.w3a{width:46.260000px;}
.w11{width:46.980000px;}
.w14{width:47.160000px;}
.w50{width:50.040000px;}
.w23{width:50.580000px;}
.w42{width:51.840000px;}
.w24{width:63.000000px;}
.w1d{width:65.700000px;}
.w28{width:73.620000px;}
.w51{width:75.600000px;}
.w15{width:76.320000px;}
.w2b{width:77.580000px;}
.w29{width:77.760000px;}
.w17{width:77.940000px;}
.w2d{width:78.120000px;}
.w2c{width:79.380000px;}
.w2a{width:80.640000px;}
.wd{width:88.920000px;}
.w1a{width:89.100000px;}
.wc{width:98.640000px;}
.w40{width:108.540000px;}
.w13{width:110.880000px;}
.w3{width:119.700000px;}
.w1e{width:136.620000px;}
.w47{width:138.780000px;}
.w19{width:140.400000px;}
.wb{width:144.000000px;}
.w9{width:195.120000px;}
.wf{width:199.800000px;}
.w20{width:534.240000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x20{left:109.259956px;}
.x21{left:117.179953px;}
.x7{left:120.240000px;}
.x40{left:122.039951px;}
.x2{left:128.699878px;}
.x60{left:140.580000px;}
.x6c{left:143.460000px;}
.x6f{left:146.340000px;}
.x41{left:149.033364px;}
.x6e{left:154.260000px;}
.x3{left:155.700000px;}
.x7e{left:158.040000px;}
.x4{left:171.899931px;}
.x37{left:174.599930px;}
.xc{left:185.219926px;}
.x30{left:187.200000px;}
.x31{left:191.700000px;}
.x49{left:206.460000px;}
.x70{left:216.540000px;}
.x61{left:221.940000px;}
.x69{left:223.740000px;}
.x55{left:229.860000px;}
.x7f{left:233.640000px;}
.x8{left:239.940000px;}
.x51{left:243.000000px;}
.x38{left:245.700000px;}
.x6a{left:248.580000px;}
.x39{left:250.740000px;}
.xd{left:259.740316px;}
.x22{left:271.979891px;}
.x5{left:273.600000px;}
.x6{left:278.279889px;}
.x4a{left:280.080000px;}
.x44{left:284.940000px;}
.x7d{left:289.260000px;}
.x77{left:291.060000px;}
.x71{left:299.700000px;}
.x23{left:304.379878px;}
.x72{left:307.800000px;}
.x24{left:309.240000px;}
.x56{left:310.500000px;}
.x29{left:315.540000px;}
.x7c{left:316.980000px;}
.x25{left:318.960000px;}
.x52{left:320.940000px;}
.x32{left:332.100000px;}
.x62{left:335.880000px;}
.x3a{left:342.539863px;}
.x57{left:344.160000px;}
.x4b{left:357.840000px;}
.x2a{left:361.620000px;}
.x2b{left:365.940000px;}
.x4c{left:395.280000px;}
.x73{left:404.640000px;}
.x63{left:409.500000px;}
.x6d{left:410.760000px;}
.x74{left:412.380000px;}
.x58{left:417.240000px;}
.x33{left:421.200000px;}
.xe{left:427.680106px;}
.x59{left:429.840000px;}
.xf{left:432.180102px;}
.x3c{left:435.959826px;}
.x64{left:437.760000px;}
.x34{left:448.920000px;}
.x42{left:455.400000px;}
.x26{left:462.960000px;}
.x45{left:470.700000px;}
.x2c{left:476.820000px;}
.x46{left:478.260000px;}
.x2d{left:481.140000px;}
.x3f{left:503.630393px;}
.x5a{left:507.600000px;}
.x78{left:509.400000px;}
.x35{left:513.179795px;}
.x10{left:516.060050px;}
.x43{left:518.400000px;}
.x2e{left:528.300000px;}
.x11{left:529.380042px;}
.x65{left:532.980000px;}
.x3e{left:536.939785px;}
.x5b{left:541.260000px;}
.x12{left:542.700033px;}
.x79{left:552.060000px;}
.x4d{left:553.500000px;}
.x27{left:561.600000px;}
.x13{left:564.659960px;}
.x75{left:565.920000px;}
.x14{left:569.159957px;}
.x7a{left:570.420000px;}
.x15{left:582.479948px;}
.x3d{left:589.679764px;}
.x16{left:595.619941px;}
.x4e{left:600.480000px;}
.x2f{left:604.080000px;}
.x17{left:608.939932px;}
.x18{left:613.439928px;}
.x6b{left:614.880000px;}
.x5c{left:621.180000px;}
.x19{left:631.079858px;}
.x5d{left:633.780000px;}
.x1a{left:635.399856px;}
.x53{left:639.900000px;}
.x66{left:641.160000px;}
.x1b{left:648.719847px;}
.x28{left:650.520000px;}
.x1c{left:653.039845px;}
.x1d{left:657.539841px;}
.x76{left:659.160000px;}
.x1e{left:666.359733px;}
.x47{left:675.360000px;}
.x4f{left:679.860000px;}
.x48{left:682.740000px;}
.x9{left:697.320000px;}
.x5e{left:714.600000px;}
.x54{left:717.840000px;}
.x67{left:722.880000px;}
.xa{left:730.800000px;}
.x68{left:739.980000px;}
.xb{left:741.960000px;}
.x5f{left:748.260000px;}
.x50{left:757.620000px;}
.x7b{left:759.780000px;}
.x3b{left:779.580000px;}
.x36{left:781.559687px;}
.x1f{left:783.539686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018878pt;}
.ls13{letter-spacing:0.049280pt;}
.ls2{letter-spacing:0.064960pt;}
.ls16{letter-spacing:0.210720pt;}
.ls15{letter-spacing:0.225973pt;}
.ls14{letter-spacing:0.303413pt;}
.ls11{letter-spacing:0.640368pt;}
.ls4{letter-spacing:0.720640pt;}
.lsc{letter-spacing:0.744053pt;}
.lsd{letter-spacing:3.282079pt;}
.lsb{letter-spacing:15.472527pt;}
.ls7{letter-spacing:16.089434pt;}
.ls9{letter-spacing:16.112900pt;}
.ls8{letter-spacing:16.753273pt;}
.lsa{letter-spacing:17.393593pt;}
.ls12{letter-spacing:19.291246pt;}
.ls10{letter-spacing:19.314712pt;}
.ls6{letter-spacing:22.516524pt;}
.ls5{letter-spacing:28.279829pt;}
.lsf{letter-spacing:44.289049pt;}
.lse{letter-spacing:46.850648pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-16.018872pt;}
.ws3{word-spacing:-15.999994pt;}
.ws2{word-spacing:-15.679994pt;}
.ws4{word-spacing:-13.492475pt;}
.ws8{word-spacing:-12.191995pt;}
.ws6{word-spacing:-11.999995pt;}
.ws7{word-spacing:-11.567995pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._2a{margin-left:-3.187412pt;}
._11{margin-left:-1.983839pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._c{width:2.985382pt;}
._d{width:4.423552pt;}
._12{width:5.633244pt;}
._e{width:6.834873pt;}
._f{width:8.538587pt;}
._10{width:9.855705pt;}
._3b{width:11.217402pt;}
._14{width:13.192610pt;}
._13{width:14.524154pt;}
._1a{width:16.000824pt;}
._21{width:17.265180pt;}
._19{width:18.224217pt;}
._18{width:19.181172pt;}
._1f{width:20.081824pt;}
._1c{width:20.987577pt;}
._17{width:22.196381pt;}
._20{width:23.909179pt;}
._1e{width:24.932298pt;}
._1d{width:26.193840pt;}
._24{width:27.524928pt;}
._15{width:28.650607pt;}
._16{width:30.113743pt;}
._22{width:31.329628pt;}
._38{width:32.372380pt;}
._25{width:33.348627pt;}
._26{width:34.726506pt;}
._31{width:35.806978pt;}
._2d{width:36.985772pt;}
._2e{width:38.053923pt;}
._2c{width:39.232221pt;}
._27{width:40.482880pt;}
._28{width:41.438897pt;}
._2f{width:42.378384pt;}
._1b{width:45.101019pt;}
._23{width:46.596709pt;}
._29{width:47.752185pt;}
._30{width:50.225088pt;}
._34{width:58.057912pt;}
._33{width:59.004040pt;}
._2b{width:63.407341pt;}
._3c{width:68.372285pt;}
._39{width:73.523855pt;}
._3d{width:104.830395pt;}
._32{width:108.103443pt;}
._3a{width:147.165906pt;}
._35{width:166.585057pt;}
._36{width:321.547074pt;}
._37{width:322.626445pt;}
.fsb{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsa{font-size:21.119992pt;}
.fs7{font-size:34.559986pt;}
.fse{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fsd{font-size:45.439982pt;}
.fs9{font-size:47.999981pt;}
.fs8{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsc{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y4a{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.559040pt;}
.yc5{bottom:2.719069pt;}
.yc8{bottom:2.719076pt;}
.yca{bottom:2.719081pt;}
.ycc{bottom:2.719087pt;}
.yce{bottom:2.719093pt;}
.yd0{bottom:2.719099pt;}
.yd2{bottom:2.719105pt;}
.yd4{bottom:2.719111pt;}
.yd6{bottom:2.719117pt;}
.yd8{bottom:2.719123pt;}
.yda{bottom:2.719129pt;}
.y1e{bottom:2.719181pt;}
.y28{bottom:2.719220pt;}
.y15{bottom:2.879140pt;}
.y25{bottom:3.039210pt;}
.y45{bottom:3.359058pt;}
.yc{bottom:3.679062pt;}
.y7{bottom:3.680025pt;}
.y20{bottom:3.839181pt;}
.y4{bottom:3.840025pt;}
.y17{bottom:4.319147pt;}
.y1b{bottom:4.319163pt;}
.y23{bottom:4.319197pt;}
.y8{bottom:52.106912pt;}
.y6{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y5{bottom:70.186905pt;}
.y2{bottom:70.506638pt;}
.y42{bottom:109.546623pt;}
.y127{bottom:110.346623pt;}
.y149{bottom:112.426622pt;}
.yfe{bottom:113.706621pt;}
.y99{bottom:114.986621pt;}
.y8f{bottom:115.306621pt;}
.y77{bottom:116.106620pt;}
.y41{bottom:130.026615pt;}
.y126{bottom:130.666614pt;}
.y148{bottom:133.546613pt;}
.yfd{bottom:134.186613pt;}
.y98{bottom:135.466612pt;}
.y8e{bottom:135.786612pt;}
.y76{bottom:136.426612pt;}
.y40{bottom:150.506606pt;}
.y125{bottom:151.146606pt;}
.yfc{bottom:154.666605pt;}
.y147{bottom:154.826605pt;}
.y97{bottom:155.786604pt;}
.y8d{bottom:156.106604pt;}
.yc3{bottom:156.266604pt;}
.y75{bottom:156.906604pt;}
.y3f{bottom:170.826598pt;}
.y124{bottom:171.626598pt;}
.yfb{bottom:174.986597pt;}
.yc2{bottom:175.946596pt;}
.y8c{bottom:176.586596pt;}
.y74{bottom:177.386596pt;}
.y3e{bottom:191.306590pt;}
.y123{bottom:192.106590pt;}
.yfa{bottom:195.466588pt;}
.yc1{bottom:195.946588pt;}
.y8b{bottom:197.066588pt;}
.y73{bottom:197.866588pt;}
.y3d{bottom:211.786582pt;}
.y122{bottom:212.586582pt;}
.yf9{bottom:215.946580pt;}
.yc0{bottom:216.426580pt;}
.y8a{bottom:217.386580pt;}
.y96{bottom:217.546580pt;}
.y146{bottom:218.186579pt;}
.y72{bottom:218.346579pt;}
.y3c{bottom:232.266574pt;}
.y121{bottom:232.906574pt;}
.yf8{bottom:236.426572pt;}
.ybf{bottom:236.906572pt;}
.y95{bottom:238.026571pt;}
.y89{bottom:238.186571pt;}
.y71{bottom:238.826571pt;}
.y145{bottom:239.306571pt;}
.y3b{bottom:252.746566pt;}
.y120{bottom:253.386565pt;}
.yf7{bottom:256.906564pt;}
.ybe{bottom:257.386564pt;}
.y94{bottom:258.346563pt;}
.y88{bottom:258.666563pt;}
.y70{bottom:259.146563pt;}
.y144{bottom:260.426562pt;}
.y3a{bottom:273.066557pt;}
.y11f{bottom:273.866557pt;}
.yf6{bottom:277.226556pt;}
.ybd{bottom:277.866556pt;}
.y93{bottom:278.986555pt;}
.y87{bottom:279.146555pt;}
.y6f{bottom:279.626555pt;}
.y143{bottom:281.546554pt;}
.y39{bottom:293.546549pt;}
.y11e{bottom:294.346549pt;}
.yf5{bottom:297.706548pt;}
.ybc{bottom:298.186547pt;}
.y86{bottom:299.466547pt;}
.y92{bottom:299.786547pt;}
.y6e{bottom:300.106547pt;}
.y142{bottom:302.666546pt;}
.y38{bottom:314.026541pt;}
.y11d{bottom:314.826541pt;}
.yf4{bottom:318.186539pt;}
.ybb{bottom:318.666539pt;}
.y85{bottom:320.106539pt;}
.y6d{bottom:320.586538pt;}
.y141{bottom:323.786537pt;}
.y37{bottom:334.506533pt;}
.y11c{bottom:335.306533pt;}
.yf3{bottom:338.666531pt;}
.yba{bottom:339.146531pt;}
.y91{bottom:340.426530pt;}
.y84{bottom:340.586530pt;}
.y6c{bottom:341.066530pt;}
.y140{bottom:344.906529pt;}
.y36{bottom:354.986525pt;}
.y11b{bottom:355.626524pt;}
.yf2{bottom:359.146523pt;}
.yb9{bottom:359.626523pt;}
.y83{bottom:361.066522pt;}
.y90{bottom:361.226522pt;}
.y6b{bottom:361.546522pt;}
.y13f{bottom:366.026520pt;}
.y35{bottom:369.386519pt;}
.y34{bottom:372.746518pt;}
.y11a{bottom:376.106516pt;}
.yf1{bottom:379.626515pt;}
.yb8{bottom:380.106515pt;}
.y82{bottom:381.546514pt;}
.y6a{bottom:381.866514pt;}
.y13e{bottom:387.146512pt;}
.y33{bottom:390.826510pt;}
.y119{bottom:396.586508pt;}
.yf0{bottom:399.946507pt;}
.yb7{bottom:400.586506pt;}
.y81{bottom:402.026506pt;}
.y69{bottom:402.346506pt;}
.y13d{bottom:408.426503pt;}
.y32{bottom:411.306502pt;}
.y118{bottom:417.066500pt;}
.yef{bottom:420.426498pt;}
.yb6{bottom:420.906498pt;}
.y80{bottom:422.506498pt;}
.y68{bottom:422.826498pt;}
.y13c{bottom:429.546495pt;}
.y31{bottom:431.786494pt;}
.y117{bottom:437.546492pt;}
.yee{bottom:440.906490pt;}
.yb5{bottom:441.386490pt;}
.y7f{bottom:442.826490pt;}
.y67{bottom:443.306489pt;}
.y13b{bottom:450.666486pt;}
.y30{bottom:452.266486pt;}
.y116{bottom:458.026483pt;}
.yed{bottom:461.386482pt;}
.yb4{bottom:461.866482pt;}
.y7e{bottom:463.146481pt;}
.y66{bottom:463.786481pt;}
.y13a{bottom:471.786478pt;}
.y2f{bottom:472.746478pt;}
.y115{bottom:478.346475pt;}
.yec{bottom:481.866474pt;}
.yb3{bottom:482.346474pt;}
.y7d{bottom:483.946473pt;}
.y65{bottom:484.266473pt;}
.y139{bottom:492.906470pt;}
.y2e{bottom:493.226469pt;}
.y114{bottom:498.826467pt;}
.yeb{bottom:502.346466pt;}
.yb2{bottom:502.826466pt;}
.y7c{bottom:504.426465pt;}
.y64{bottom:504.586465pt;}
.y2d{bottom:513.546461pt;}
.y138{bottom:514.026461pt;}
.y113{bottom:519.306459pt;}
.yea{bottom:522.666458pt;}
.yb1{bottom:523.146457pt;}
.y7b{bottom:524.906457pt;}
.y63{bottom:525.066457pt;}
.y2c{bottom:534.026453pt;}
.y137{bottom:535.146453pt;}
.y112{bottom:539.786451pt;}
.ye9{bottom:543.146449pt;}
.yb0{bottom:543.626449pt;}
.y7a{bottom:545.386449pt;}
.y62{bottom:545.546448pt;}
.y2b{bottom:554.506445pt;}
.y136{bottom:556.266444pt;}
.y111{bottom:560.266443pt;}
.ye8{bottom:563.626441pt;}
.yaf{bottom:564.106441pt;}
.y79{bottom:565.866440pt;}
.y61{bottom:566.026440pt;}
.y2a{bottom:574.986437pt;}
.y135{bottom:577.386436pt;}
.y110{bottom:580.746434pt;}
.ye7{bottom:584.106433pt;}
.yae{bottom:584.586433pt;}
.y78{bottom:586.186432pt;}
.y60{bottom:586.506432pt;}
.y29{bottom:595.466428pt;}
.y134{bottom:598.506427pt;}
.y10f{bottom:601.066426pt;}
.ye6{bottom:604.586425pt;}
.yad{bottom:605.066425pt;}
.y5f{bottom:606.826424pt;}
.y27{bottom:613.227200pt;}
.y133{bottom:619.626419pt;}
.y10e{bottom:621.546418pt;}
.ye5{bottom:625.066417pt;}
.yac{bottom:625.546416pt;}
.y5e{bottom:627.306416pt;}
.y24{bottom:638.187200pt;}
.y132{bottom:640.906410pt;}
.y26{bottom:641.226410pt;}
.y10d{bottom:642.026410pt;}
.ye4{bottom:645.386409pt;}
.yab{bottom:645.866408pt;}
.y5d{bottom:647.786408pt;}
.y131{bottom:662.026402pt;}
.y10c{bottom:662.506402pt;}
.ye3{bottom:665.866400pt;}
.yaa{bottom:666.186400pt;}
.y5c{bottom:668.266399pt;}
.y22{bottom:670.347200pt;}
.y21{bottom:674.666397pt;}
.y10b{bottom:682.986393pt;}
.y130{bottom:683.146393pt;}
.ye2{bottom:686.346392pt;}
.ya9{bottom:686.986392pt;}
.y5b{bottom:688.746391pt;}
.y10a{bottom:703.306385pt;}
.y12f{bottom:704.266385pt;}
.ye1{bottom:706.826384pt;}
.ya8{bottom:707.306384pt;}
.y5a{bottom:709.226383pt;}
.y1f{bottom:709.867200pt;}
.y1d{bottom:710.987200pt;}
.y109{bottom:723.786377pt;}
.y12e{bottom:725.386377pt;}
.ye0{bottom:727.306376pt;}
.y1c{bottom:728.106375pt;}
.y59{bottom:729.546375pt;}
.y108{bottom:744.266369pt;}
.y12d{bottom:746.506368pt;}
.ydf{bottom:747.626368pt;}
.ya7{bottom:748.426367pt;}
.y58{bottom:750.026367pt;}
.y1a{bottom:755.627200pt;}
.y107{bottom:764.746361pt;}
.y12c{bottom:767.626360pt;}
.yde{bottom:768.106359pt;}
.ya6{bottom:769.386359pt;}
.y57{bottom:770.506358pt;}
.y19{bottom:775.786356pt;}
.y157{bottom:776.106356pt;}
.y106{bottom:785.226353pt;}
.ydd{bottom:788.586351pt;}
.y12b{bottom:788.746351pt;}
.ya5{bottom:789.866351pt;}
.y56{bottom:790.986350pt;}
.y156{bottom:795.146349pt;}
.y16{bottom:795.947200pt;}
.y18{bottom:804.906345pt;}
.y105{bottom:805.706344pt;}
.ydc{bottom:809.066343pt;}
.y12a{bottom:809.866343pt;}
.ya4{bottom:810.506342pt;}
.y55{bottom:811.466342pt;}
.y14{bottom:814.027200pt;}
.y155{bottom:814.346341pt;}
.y104{bottom:826.026336pt;}
.ydb{bottom:829.546335pt;}
.y129{bottom:830.986334pt;}
.ya3{bottom:831.306334pt;}
.y54{bottom:831.946334pt;}
.y154{bottom:833.386333pt;}
.yd9{bottom:842.347200pt;}
.y13{bottom:843.786329pt;}
.y103{bottom:846.986328pt;}
.y153{bottom:850.826326pt;}
.ya2{bottom:851.786326pt;}
.y128{bottom:852.106326pt;}
.y53{bottom:852.266326pt;}
.yd7{bottom:856.907200pt;}
.y152{bottom:867.306320pt;}
.y102{bottom:868.586319pt;}
.yd5{bottom:871.467200pt;}
.ya1{bottom:872.106318pt;}
.y52{bottom:872.746318pt;}
.y12{bottom:880.106315pt;}
.yd3{bottom:886.187200pt;}
.y151{bottom:886.346312pt;}
.y101{bottom:889.066311pt;}
.ya0{bottom:892.906310pt;}
.y51{bottom:893.226309pt;}
.yd1{bottom:900.747200pt;}
.y11{bottom:900.906306pt;}
.y100{bottom:901.867200pt;}
.y150{bottom:905.546304pt;}
.y9f{bottom:913.226301pt;}
.y50{bottom:913.706301pt;}
.y10{bottom:915.466300pt;}
.ycf{bottom:915.467200pt;}
.yf{bottom:915.786300pt;}
.yff{bottom:916.427200pt;}
.y14f{bottom:924.586297pt;}
.ycd{bottom:931.147200pt;}
.y9e{bottom:933.866293pt;}
.y4f{bottom:934.186293pt;}
.y14e{bottom:942.026290pt;}
.ycb{bottom:945.707200pt;}
.y49{bottom:954.027200pt;}
.y9d{bottom:954.346285pt;}
.y4e{bottom:954.666285pt;}
.y14d{bottom:958.506283pt;}
.yc9{bottom:960.267200pt;}
.y48{bottom:962.026282pt;}
.y9c{bottom:974.826277pt;}
.y4d{bottom:974.986277pt;}
.yc7{bottom:974.987200pt;}
.y14c{bottom:977.546276pt;}
.yc6{bottom:979.626275pt;}
.y47{bottom:980.906274pt;}
.yc4{bottom:990.667200pt;}
.y9b{bottom:995.306269pt;}
.y4c{bottom:995.466268pt;}
.y14b{bottom:996.746268pt;}
.y46{bottom:999.946267pt;}
.ye{bottom:1001.866266pt;}
.yd{bottom:1002.186266pt;}
.yb{bottom:1008.267200pt;}
.y9a{bottom:1015.626260pt;}
.y14a{bottom:1015.786260pt;}
.y4b{bottom:1015.946260pt;}
.y44{bottom:1018.027200pt;}
.y43{bottom:1021.386258pt;}
.y1{bottom:1060.266243pt;}
.y9{bottom:1062.987200pt;}
.h27{height:2.560000pt;}
.he{height:7.278122pt;}
.h11{height:12.000000pt;}
.h19{height:13.440000pt;}
.h2b{height:13.600000pt;}
.h21{height:14.128119pt;}
.h1b{height:14.560000pt;}
.h1f{height:15.200000pt;}
.h4{height:17.600000pt;}
.h13{height:17.920000pt;}
.h16{height:18.080000pt;}
.h2{height:18.240000pt;}
.ha{height:18.400000pt;}
.h7{height:18.560000pt;}
.h25{height:19.360000pt;}
.h22{height:23.034366pt;}
.h14{height:23.118741pt;}
.h2d{height:28.075614pt;}
.h12{height:28.684364pt;}
.h1e{height:29.856863pt;}
.h15{height:32.788112pt;}
.h2a{height:34.390611pt;}
.h18{height:35.560298pt;}
.h1a{height:36.304673pt;}
.h1c{height:36.328110pt;}
.h26{height:36.703110pt;}
.h23{height:38.387485pt;}
.h20{height:40.177171pt;}
.hb{height:42.656233pt;}
.h5{height:42.812483pt;}
.h17{height:42.843733pt;}
.h28{height:44.362482pt;}
.h2c{height:44.460920pt;}
.h1d{height:44.562482pt;}
.hd{height:48.406231pt;}
.h24{height:48.937480pt;}
.h29{height:50.062480pt;}
.h8{height:50.090605pt;}
.hf{height:56.940602pt;}
.h10{height:60.175084pt;}
.h6{height:62.781225pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.hc{height:69.749972pt;}
.h9{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w12{width:3.840000pt;}
.w18{width:4.000000pt;}
.w2{width:4.160000pt;}
.w1f{width:4.480000pt;}
.w25{width:5.120000pt;}
.w1{width:5.760000pt;}
.w10{width:6.400000pt;}
.w27{width:6.560000pt;}
.w26{width:6.720000pt;}
.w1b{width:6.880000pt;}
.w41{width:7.200000pt;}
.w8{width:7.360000pt;}
.w1c{width:7.840000pt;}
.wa{width:8.640000pt;}
.w22{width:8.800000pt;}
.w21{width:9.440000pt;}
.w6{width:9.920000pt;}
.w7{width:10.080000pt;}
.w16{width:10.880000pt;}
.we{width:11.040000pt;}
.w2e{width:11.200000pt;}
.w4{width:14.240000pt;}
.w3f{width:15.040000pt;}
.w32{width:15.520000pt;}
.w46{width:16.320000pt;}
.w3d{width:21.440000pt;}
.w4c{width:21.760000pt;}
.w48{width:21.920000pt;}
.w35{width:22.080000pt;}
.w3e{width:22.240000pt;}
.w37{width:22.560000pt;}
.w39{width:22.720000pt;}
.w4a{width:23.040000pt;}
.w4f{width:23.200000pt;}
.w3b{width:23.360000pt;}
.w4e{width:23.520000pt;}
.w36{width:23.840000pt;}
.w44{width:24.000000pt;}
.w33{width:24.320000pt;}
.w31{width:25.120000pt;}
.w4b{width:25.920000pt;}
.w49{width:28.640000pt;}
.w30{width:28.960000pt;}
.w5{width:29.760000pt;}
.w2f{width:29.920000pt;}
.w38{width:31.520000pt;}
.w43{width:33.920000pt;}
.w3c{width:34.080000pt;}
.w34{width:36.000000pt;}
.w4d{width:36.960000pt;}
.w45{width:37.920000pt;}
.w3a{width:41.120000pt;}
.w11{width:41.760000pt;}
.w14{width:41.920000pt;}
.w50{width:44.480000pt;}
.w23{width:44.960000pt;}
.w42{width:46.080000pt;}
.w24{width:56.000000pt;}
.w1d{width:58.400000pt;}
.w28{width:65.440000pt;}
.w51{width:67.200000pt;}
.w15{width:67.840000pt;}
.w2b{width:68.960000pt;}
.w29{width:69.120000pt;}
.w17{width:69.280000pt;}
.w2d{width:69.440000pt;}
.w2c{width:70.560000pt;}
.w2a{width:71.680000pt;}
.wd{width:79.040000pt;}
.w1a{width:79.200000pt;}
.wc{width:87.680000pt;}
.w40{width:96.480000pt;}
.w13{width:98.560000pt;}
.w3{width:106.400000pt;}
.w1e{width:121.440000pt;}
.w47{width:123.360000pt;}
.w19{width:124.800000pt;}
.wb{width:128.000000pt;}
.w9{width:173.440000pt;}
.wf{width:177.600000pt;}
.w20{width:474.880000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x20{left:97.119961pt;}
.x21{left:104.159958pt;}
.x7{left:106.880000pt;}
.x40{left:108.479957pt;}
.x2{left:114.399892pt;}
.x60{left:124.960000pt;}
.x6c{left:127.520000pt;}
.x6f{left:130.080000pt;}
.x41{left:132.474101pt;}
.x6e{left:137.120000pt;}
.x3{left:138.400000pt;}
.x7e{left:140.480000pt;}
.x4{left:152.799939pt;}
.x37{left:155.199938pt;}
.xc{left:164.639934pt;}
.x30{left:166.400000pt;}
.x31{left:170.400000pt;}
.x49{left:183.520000pt;}
.x70{left:192.480000pt;}
.x61{left:197.280000pt;}
.x69{left:198.880000pt;}
.x55{left:204.320000pt;}
.x7f{left:207.680000pt;}
.x8{left:213.280000pt;}
.x51{left:216.000000pt;}
.x38{left:218.400000pt;}
.x6a{left:220.960000pt;}
.x39{left:222.880000pt;}
.xd{left:230.880281pt;}
.x22{left:241.759903pt;}
.x5{left:243.200000pt;}
.x6{left:247.359901pt;}
.x4a{left:248.960000pt;}
.x44{left:253.280000pt;}
.x7d{left:257.120000pt;}
.x77{left:258.720000pt;}
.x71{left:266.400000pt;}
.x23{left:270.559892pt;}
.x72{left:273.600000pt;}
.x24{left:274.880000pt;}
.x56{left:276.000000pt;}
.x29{left:280.480000pt;}
.x7c{left:281.760000pt;}
.x25{left:283.520000pt;}
.x52{left:285.280000pt;}
.x32{left:295.200000pt;}
.x62{left:298.560000pt;}
.x3a{left:304.479878pt;}
.x57{left:305.920000pt;}
.x4b{left:318.080000pt;}
.x2a{left:321.440000pt;}
.x2b{left:325.280000pt;}
.x4c{left:351.360000pt;}
.x73{left:359.680000pt;}
.x63{left:364.000000pt;}
.x6d{left:365.120000pt;}
.x74{left:366.560000pt;}
.x58{left:370.880000pt;}
.x33{left:374.400000pt;}
.xe{left:380.160094pt;}
.x59{left:382.080000pt;}
.xf{left:384.160091pt;}
.x3c{left:387.519845pt;}
.x64{left:389.120000pt;}
.x34{left:399.040000pt;}
.x42{left:404.800000pt;}
.x26{left:411.520000pt;}
.x45{left:418.400000pt;}
.x2c{left:423.840000pt;}
.x46{left:425.120000pt;}
.x2d{left:427.680000pt;}
.x3f{left:447.671460pt;}
.x5a{left:451.200000pt;}
.x78{left:452.800000pt;}
.x35{left:456.159818pt;}
.x10{left:458.720045pt;}
.x43{left:460.800000pt;}
.x2e{left:469.600000pt;}
.x11{left:470.560037pt;}
.x65{left:473.760000pt;}
.x3e{left:477.279809pt;}
.x5b{left:481.120000pt;}
.x12{left:482.400029pt;}
.x79{left:490.720000pt;}
.x4d{left:492.000000pt;}
.x27{left:499.200000pt;}
.x13{left:501.919965pt;}
.x75{left:503.040000pt;}
.x14{left:505.919962pt;}
.x7a{left:507.040000pt;}
.x15{left:517.759954pt;}
.x3d{left:524.159790pt;}
.x16{left:529.439947pt;}
.x4e{left:533.760000pt;}
.x2f{left:536.960000pt;}
.x17{left:541.279939pt;}
.x18{left:545.279936pt;}
.x6b{left:546.560000pt;}
.x5c{left:552.160000pt;}
.x19{left:560.959873pt;}
.x5d{left:563.360000pt;}
.x1a{left:564.799872pt;}
.x53{left:568.800000pt;}
.x66{left:569.920000pt;}
.x1b{left:576.639864pt;}
.x28{left:578.240000pt;}
.x1c{left:580.479862pt;}
.x1d{left:584.479859pt;}
.x76{left:585.920000pt;}
.x1e{left:592.319763pt;}
.x47{left:600.320000pt;}
.x4f{left:604.320000pt;}
.x48{left:606.880000pt;}
.x9{left:619.840000pt;}
.x5e{left:635.200000pt;}
.x54{left:638.080000pt;}
.x67{left:642.560000pt;}
.xa{left:649.600000pt;}
.x68{left:657.760000pt;}
.xb{left:659.520000pt;}
.x5f{left:665.120000pt;}
.x50{left:673.440000pt;}
.x7b{left:675.360000pt;}
.x3b{left:692.960000pt;}
.x36{left:694.719722pt;}
.x1f{left:696.479721pt;}
}




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