
    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_97cb397fecd8e6599cd740e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4e4bfc5ebb5e84ad9203c36f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f44c42627d672f7d74b348eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_865ce8a2e8b4b8474b0d95cf.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_24fd67a6b746a0eb628b6a43.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_912ae89c3b455678e5450282.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_efafecf539b4c832e4e7d4cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_c4cf358510f8d5cfd821f6a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_70e213918e9d9e38c3910f85.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_9bf0272d42a3d80bd2b654e9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14{transform:matrix(0.188537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188537,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237092,0.000000,-0.079023,0.237182,0,0);-ms-transform:matrix(0.237092,0.000000,-0.079023,0.237182,0,0);-webkit-transform:matrix(0.237092,0.000000,-0.079023,0.237182,0,0);}
.m16{transform:matrix(0.237879,0.000000,-0.079285,0.237095,0,0);-ms-transform:matrix(0.237879,0.000000,-0.079285,0.237095,0,0);-webkit-transform:matrix(0.237879,0.000000,-0.079285,0.237095,0,0);}
.m13{transform:matrix(0.238888,0.000000,-0.079621,0.236982,0,0);-ms-transform:matrix(0.238888,0.000000,-0.079621,0.236982,0,0);-webkit-transform:matrix(0.238888,0.000000,-0.079621,0.236982,0,0);}
.ma{transform:matrix(0.240763,0.000000,-0.080246,0.236771,0,0);-ms-transform:matrix(0.240763,0.000000,-0.080246,0.236771,0,0);-webkit-transform:matrix(0.240763,0.000000,-0.080246,0.236771,0,0);}
.m6{transform:matrix(0.242359,0.000000,-0.080778,0.236590,0,0);-ms-transform:matrix(0.242359,0.000000,-0.080778,0.236590,0,0);-webkit-transform:matrix(0.242359,0.000000,-0.080778,0.236590,0,0);}
.mf{transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248308,0.000000,-0.082761,0.235904,0,0);-ms-transform:matrix(0.248308,0.000000,-0.082761,0.235904,0,0);-webkit-transform:matrix(0.248308,0.000000,-0.082761,0.235904,0,0);}
.m7{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252649,0.000000,-0.084208,0.235391,0,0);-ms-transform:matrix(0.252649,0.000000,-0.084208,0.235391,0,0);-webkit-transform:matrix(0.252649,0.000000,-0.084208,0.235391,0,0);}
.m9{transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.256094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256094,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256096,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256903,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.258175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258175,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259548,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.260647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260647,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.263146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263146,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268329,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-72.867376px;}
.v9{vertical-align:-53.957730px;}
.v7{vertical-align:-43.677323px;}
.v3{vertical-align:-39.148705px;}
.v4{vertical-align:-29.963628px;}
.v2{vertical-align:-22.667812px;}
.v8{vertical-align:-18.295441px;}
.va{vertical-align:-11.631105px;}
.v5{vertical-align:-6.470060px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1a{letter-spacing:-0.823048px;}
.ls5{letter-spacing:-0.463800px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.474996px;}
.ls0{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.440000px;}
.lse{letter-spacing:1.872000px;}
.lsc{letter-spacing:1.992000px;}
.ls2{letter-spacing:2.160000px;}
.ls1{letter-spacing:2.340000px;}
.ls3{letter-spacing:6.570179px;}
.lsb{letter-spacing:7.124593px;}
.lsf{letter-spacing:18.576352px;}
.ls2b{letter-spacing:53.424000px;}
.ls2a{letter-spacing:63.970560px;}
.ls6{letter-spacing:102.625312px;}
.ls1b{letter-spacing:123.218288px;}
.ls13{letter-spacing:162.490728px;}
.ls7{letter-spacing:187.778218px;}
.ls26{letter-spacing:188.100800px;}
.ls15{letter-spacing:212.195430px;}
.ls1f{letter-spacing:220.395013px;}
.ls1d{letter-spacing:224.249551px;}
.ls1e{letter-spacing:250.998055px;}
.ls28{letter-spacing:273.190006px;}
.ls17{letter-spacing:314.068950px;}
.ls18{letter-spacing:360.676198px;}
.ls14{letter-spacing:377.854305px;}
.ls11{letter-spacing:380.248015px;}
.ls20{letter-spacing:385.608589px;}
.ls12{letter-spacing:391.160521px;}
.ls8{letter-spacing:421.210393px;}
.ls1c{letter-spacing:438.110005px;}
.ls22{letter-spacing:475.215729px;}
.ls29{letter-spacing:483.245111px;}
.ls27{letter-spacing:503.979498px;}
.ls24{letter-spacing:505.639740px;}
.ls25{letter-spacing:506.836938px;}
.lsa{letter-spacing:690.143579px;}
.ls16{letter-spacing:690.163173px;}
.ls10{letter-spacing:844.365260px;}
.ls21{letter-spacing:994.292162px;}
.ls9{letter-spacing:1078.222768px;}
.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;}
}
.wsb{word-spacing:-52.980000px;}
.ws29{word-spacing:-33.203520px;}
.ws28{word-spacing:-29.731089px;}
.ws20{word-spacing:-29.609385px;}
.ws7{word-spacing:-27.273557px;}
.wsf{word-spacing:-21.157877px;}
.ws22{word-spacing:-19.440000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.506440px;}
.ws10{word-spacing:-11.685460px;}
.ws8{word-spacing:0.000000px;}
.wsd{word-spacing:12.656993px;}
.ws14{word-spacing:13.749815px;}
.wsc{word-spacing:23.261501px;}
.ws2{word-spacing:42.053740px;}
.ws12{word-spacing:46.383792px;}
.ws3{word-spacing:47.150727px;}
.wse{word-spacing:60.291759px;}
.ws13{word-spacing:60.770789px;}
.ws17{word-spacing:83.111068px;}
.wsa{word-spacing:85.210483px;}
.ws9{word-spacing:86.654728px;}
.ws5{word-spacing:92.079728px;}
.ws11{word-spacing:96.881625px;}
.ws4{word-spacing:97.182351px;}
.ws1f{word-spacing:99.921007px;}
.ws27{word-spacing:101.258055px;}
.ws21{word-spacing:102.395566px;}
.ws6{word-spacing:118.100356px;}
.ws25{word-spacing:125.074307px;}
.ws16{word-spacing:138.559851px;}
.ws19{word-spacing:182.172064px;}
.ws15{word-spacing:182.260830px;}
.ws1c{word-spacing:295.885952px;}
.ws1a{word-spacing:314.781037px;}
.ws18{word-spacing:354.971297px;}
.ws1d{word-spacing:367.173435px;}
.ws1b{word-spacing:381.852208px;}
.ws1e{word-spacing:386.160587px;}
.ws24{word-spacing:395.552743px;}
.ws26{word-spacing:406.066346px;}
.ws23{word-spacing:416.992958px;}
._31{margin-left:-513.031761px;}
._2b{margin-left:-405.593998px;}
._32{margin-left:-245.698884px;}
._29{margin-left:-190.482372px;}
._15{margin-left:-111.205490px;}
._26{margin-left:-64.454247px;}
._17{margin-left:-10.075327px;}
._28{margin-left:-7.524118px;}
._d{margin-left:-5.854080px;}
._9{margin-left:-3.937920px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._6{width:2.427840px;}
._5{width:3.525120px;}
._8{width:5.482560px;}
._7{width:6.670560px;}
._a{width:7.704000px;}
._c{width:9.521280px;}
._e{width:11.108160px;}
._f{width:12.958080px;}
._50{width:14.184960px;}
._51{width:16.001280px;}
._b{width:19.993440px;}
._52{width:21.260160px;}
._16{width:22.320000px;}
._13{width:25.954560px;}
._10{width:27.000000px;}
._14{width:28.258560px;}
._2f{width:83.518411px;}
._1f{width:89.283116px;}
._24{width:102.709791px;}
._11{width:109.726228px;}
._2c{width:113.660457px;}
._20{width:116.221987px;}
._4d{width:117.459344px;}
._2e{width:118.570940px;}
._19{width:122.131147px;}
._21{width:124.089847px;}
._4e{width:130.902967px;}
._12{width:133.652154px;}
._43{width:139.599289px;}
._1e{width:147.643782px;}
._4a{width:155.730147px;}
._2d{width:161.008642px;}
._1a{width:174.328923px;}
._30{width:195.264000px;}
._1c{width:203.981696px;}
._25{width:209.695593px;}
._27{width:216.747552px;}
._42{width:225.782224px;}
._18{width:238.824458px;}
._2a{width:240.147041px;}
._41{width:248.479908px;}
._40{width:251.210456px;}
._1b{width:280.020109px;}
._35{width:301.469614px;}
._36{width:302.749558px;}
._4{width:309.000000px;}
._46{width:312.647796px;}
._4c{width:315.666601px;}
._4b{width:318.165736px;}
._37{width:337.393391px;}
._47{width:339.526632px;}
._3c{width:346.655552px;}
._1d{width:361.493994px;}
._23{width:370.473617px;}
._44{width:375.621070px;}
._34{width:391.236393px;}
._3{width:396.876000px;}
._45{width:398.830731px;}
._4f{width:407.531356px;}
._39{width:419.565833px;}
._3f{width:429.720060px;}
._22{width:432.646821px;}
._38{width:433.901213px;}
._3d{width:448.464804px;}
._3b{width:453.325723px;}
._48{width:475.115428px;}
._33{width:674.786783px;}
._3e{width:713.270450px;}
._3a{width:750.561931px;}
._49{width:994.260950px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:35.831168px;}
.fsb{font-size:46.178561px;}
.fs22{font-size:46.488079px;}
.fs19{font-size:46.741841px;}
.fs4{font-size:47.520000px;}
.fs1e{font-size:47.706740px;}
.fs18{font-size:48.944817px;}
.fs1c{font-size:49.122056px;}
.fse{font-size:49.132324px;}
.fs25{font-size:49.338759px;}
.fs14{font-size:49.521658px;}
.fs2a{font-size:49.828754px;}
.fs5{font-size:50.685151px;}
.fs8{font-size:50.705607px;}
.fs2{font-size:54.720000px;}
.fs2d{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:79.981105px;}
.fs23{font-size:80.430903px;}
.fs1a{font-size:80.667464px;}
.fs1f{font-size:82.539356px;}
.fsd{font-size:84.514419px;}
.fs17{font-size:84.631508px;}
.fs1b{font-size:84.875404px;}
.fsf{font-size:84.955616px;}
.fs26{font-size:85.329639px;}
.fs13{font-size:85.520226px;}
.fs2b{font-size:86.177068px;}
.fs21{font-size:86.708292px;}
.fs7{font-size:87.472863px;}
.fs9{font-size:87.611540px;}
.fs6{font-size:87.640757px;}
.fs10{font-size:89.546778px;}
.fs1d{font-size:89.947055px;}
.fs27{font-size:90.017022px;}
.fs15{font-size:90.298417px;}
.fs2c{font-size:90.867793px;}
.fsa{font-size:93.048811px;}
.fs3{font-size:96.480000px;}
.fs29{font-size:112.797099px;}
.fs24{font-size:120.487033px;}
.fs20{font-size:123.809035px;}
.fs11{font-size:127.267976px;}
.fs28{font-size:128.081622px;}
.fs16{font-size:128.283826px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.710529px;}
.y79{bottom:4.694917px;}
.y80{bottom:4.701047px;}
.y92{bottom:4.815664px;}
.y36{bottom:4.852611px;}
.y83{bottom:4.900746px;}
.y88{bottom:4.900755px;}
.y86{bottom:4.900761px;}
.y75{bottom:5.063908px;}
.y2f{bottom:5.243895px;}
.y32{bottom:5.286229px;}
.y3d{bottom:5.384151px;}
.y3e{bottom:5.384154px;}
.y3c{bottom:5.384157px;}
.yb0{bottom:5.901525px;}
.ybf{bottom:6.385814px;}
.y8d{bottom:7.158144px;}
.y5c{bottom:7.533203px;}
.y44{bottom:7.703397px;}
.y54{bottom:7.703398px;}
.y4d{bottom:7.703399px;}
.yb9{bottom:8.216470px;}
.y6d{bottom:8.348721px;}
.y7a{bottom:9.920850px;}
.yaf{bottom:10.116930px;}
.y7f{bottom:10.165441px;}
.y38{bottom:10.493158px;}
.y39{bottom:10.493160px;}
.y37{bottom:10.493165px;}
.y74{bottom:10.536244px;}
.y76{bottom:10.536289px;}
.y6{bottom:10.800000px;}
.y30{bottom:10.910848px;}
.y33{bottom:10.953015px;}
.y7{bottom:11.160000px;}
.y3b{bottom:14.331350px;}
.y68{bottom:17.962393px;}
.y94{bottom:18.660554px;}
.y85{bottom:19.108870px;}
.y89{bottom:19.684583px;}
.y6f{bottom:19.690412px;}
.y6b{bottom:19.690413px;}
.ybe{bottom:19.880515px;}
.y35{bottom:20.280332px;}
.y6a{bottom:21.209248px;}
.y5b{bottom:21.323442px;}
.y4c{bottom:22.344276px;}
.y5f{bottom:22.939194px;}
.y95{bottom:23.797019px;}
.y87{bottom:24.420882px;}
.y71{bottom:26.689829px;}
.y66{bottom:26.689835px;}
.y6c{bottom:26.689840px;}
.yb8{bottom:26.692215px;}
.y50{bottom:27.791746px;}
.yae{bottom:30.519478px;}
.yb6{bottom:30.694022px;}
.ybd{bottom:30.993322px;}
.ybb{bottom:32.227491px;}
.yad{bottom:34.229170px;}
.yac{bottom:34.270980px;}
.y99{bottom:34.398264px;}
.ya4{bottom:36.294935px;}
.y6e{bottom:36.979608px;}
.y67{bottom:40.141016px;}
.y65{bottom:40.141028px;}
.yb7{bottom:40.486391px;}
.y5a{bottom:40.730101px;}
.y51{bottom:44.049579px;}
.y64{bottom:44.146397px;}
.y93{bottom:44.183557px;}
.y84{bottom:45.300996px;}
.yba{bottom:46.019907px;}
.y9e{bottom:49.067889px;}
.yb2{bottom:49.698956px;}
.ybc{bottom:50.703060px;}
.yab{bottom:50.920991px;}
.y69{bottom:51.103946px;}
.y9a{bottom:54.588795px;}
.yaa{bottom:54.588832px;}
.ya3{bottom:54.588833px;}
.ya1{bottom:54.588835px;}
.y4b{bottom:56.775027px;}
.y8{bottom:57.240000px;}
.y59{bottom:62.266479px;}
.y4f{bottom:62.266485px;}
.y98{bottom:62.724665px;}
.ya9{bottom:66.898062px;}
.ya8{bottom:67.614556px;}
.ya0{bottom:67.994577px;}
.ya2{bottom:67.994579px;}
.y43{bottom:70.352239px;}
.y53{bottom:70.352241px;}
.y4a{bottom:70.352242px;}
.y58{bottom:71.841295px;}
.y42{bottom:72.012042px;}
.y52{bottom:72.012044px;}
.y49{bottom:72.012045px;}
.y5{bottom:73.476000px;}
.ya7{bottom:75.539457px;}
.y9d{bottom:76.214110px;}
.y9c{bottom:77.436129px;}
.yb1{bottom:78.027100px;}
.ya6{bottom:82.916973px;}
.y9f{bottom:82.916974px;}
.y48{bottom:84.950348px;}
.y5e{bottom:85.589268px;}
.y57{bottom:85.631534px;}
.y47{bottom:86.610151px;}
.y5d{bottom:87.206829px;}
.y56{bottom:92.057601px;}
.y4e{bottom:92.057607px;}
.ya5{bottom:95.942703px;}
.y9b{bottom:104.542254px;}
.y55{bottom:105.038193px;}
.yf4{bottom:107.676000px;}
.y46{bottom:111.934167px;}
.y45{bottom:113.593970px;}
.yc7{bottom:119.916000px;}
.yf3{bottom:131.796000px;}
.yc6{bottom:143.676000px;}
.yf2{bottom:155.550000px;}
.y40{bottom:165.630000px;}
.yc5{bottom:167.430000px;}
.yf1{bottom:179.310000px;}
.y3f{bottom:189.750000px;}
.y3a{bottom:189.899980px;}
.yc4{bottom:191.550000px;}
.yf0{bottom:203.115000px;}
.yc3{bottom:215.355000px;}
.y34{bottom:223.635000px;}
.y31{bottom:223.724980px;}
.yef{bottom:226.875000px;}
.yc2{bottom:239.115000px;}
.yee{bottom:250.635000px;}
.yc1{bottom:262.875000px;}
.y2d{bottom:266.475000px;}
.y2e{bottom:266.550000px;}
.yed{bottom:274.395000px;}
.yc0{bottom:286.635000px;}
.yb5{bottom:286.725000px;}
.yec{bottom:297.795000px;}
.y2c{bottom:305.715000px;}
.yeb{bottom:321.945000px;}
.y2b{bottom:330.225000px;}
.yea{bottom:346.065000px;}
.y2a{bottom:353.985000px;}
.yb4{bottom:369.105000px;}
.ye9{bottom:369.825000px;}
.y29{bottom:377.745000px;}
.yb3{bottom:388.545000px;}
.y97{bottom:388.649959px;}
.ye8{bottom:393.585000px;}
.y28{bottom:401.505000px;}
.ye7{bottom:417.345000px;}
.y27{bottom:425.265000px;}
.ye6{bottom:441.105000px;}
.y26{bottom:449.070000px;}
.ye5{bottom:464.910000px;}
.y25{bottom:472.830000px;}
.ye4{bottom:488.310000px;}
.y24{bottom:496.590000px;}
.ye3{bottom:512.430000px;}
.y96{bottom:516.390000px;}
.y23{bottom:520.350000px;}
.ye2{bottom:536.550000px;}
.y90{bottom:540.510000px;}
.y91{bottom:540.525000px;}
.y22{bottom:544.470000px;}
.ye1{bottom:560.310000px;}
.y21{bottom:568.230000px;}
.ye0{bottom:584.100000px;}
.y20{bottom:592.020000px;}
.y8f{bottom:605.340000px;}
.ydf{bottom:607.860000px;}
.y1f{bottom:615.780000px;}
.y8e{bottom:629.460000px;}
.yde{bottom:631.620000px;}
.y1e{bottom:639.540000px;}
.y8b{bottom:652.860000px;}
.y8c{bottom:653.055000px;}
.ydd{bottom:655.380000px;}
.y1d{bottom:663.300000px;}
.ydc{bottom:679.140000px;}
.y8a{bottom:686.340000px;}
.y1c{bottom:687.060000px;}
.ydb{bottom:702.930000px;}
.y82{bottom:709.724919px;}
.y81{bottom:709.770000px;}
.y1b{bottom:710.850000px;}
.yda{bottom:727.050000px;}
.y1a{bottom:734.610000px;}
.yd9{bottom:750.810000px;}
.y19{bottom:758.730000px;}
.yd8{bottom:774.570000px;}
.y7e{bottom:775.650000px;}
.y18{bottom:782.490000px;}
.yd7{bottom:798.330000px;}
.y17{bottom:806.250000px;}
.y7d{bottom:817.410000px;}
.yd6{bottom:822.090000px;}
.y16{bottom:830.055000px;}
.y7c{bottom:841.215000px;}
.yd5{bottom:845.895000px;}
.y15{bottom:853.815000px;}
.y7b{bottom:864.975000px;}
.yd4{bottom:869.655000px;}
.y14{bottom:877.575000px;}
.y73{bottom:888.674919px;}
.y77{bottom:888.735000px;}
.y78{bottom:888.855000px;}
.yd3{bottom:893.415000px;}
.y13{bottom:901.335000px;}
.yd2{bottom:917.175000px;}
.y12{bottom:925.455000px;}
.y72{bottom:927.615000px;}
.yd1{bottom:941.295000px;}
.y11{bottom:949.215000px;}
.y63{bottom:951.674919px;}
.y62{bottom:951.765000px;}
.yd0{bottom:965.085000px;}
.y10{bottom:972.645000px;}
.ycf{bottom:988.845000px;}
.yf{bottom:996.405000px;}
.yce{bottom:1012.605000px;}
.ye{bottom:1020.525000px;}
.y61{bottom:1023.045000px;}
.ycd{bottom:1036.365000px;}
.y41{bottom:1042.349919px;}
.y60{bottom:1042.485000px;}
.yd{bottom:1044.285000px;}
.ycc{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.ycb{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.yca{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.yc9{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.yc8{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h43{height:25.695280px;}
.h1b{height:26.999292px;}
.h5{height:27.000000px;}
.h35{height:30.044494px;}
.h31{height:31.649077px;}
.he{height:32.774341px;}
.h12{height:32.774362px;}
.h38{height:34.875682px;}
.h2b{height:35.148836px;}
.h29{height:35.166332px;}
.h15{height:35.999993px;}
.h49{height:43.060491px;}
.h41{height:44.189299px;}
.h1c{height:45.321732px;}
.h25{height:45.509775px;}
.h47{height:45.602808px;}
.h46{height:45.625508px;}
.h51{height:45.700989px;}
.h2f{height:45.870403px;}
.h36{height:45.874561px;}
.h3f{height:46.798262px;}
.h3e{height:46.821556px;}
.h33{height:48.012762px;}
.h3a{height:48.186626px;}
.h22{height:48.196699px;}
.h21{height:48.220689px;}
.h4e{height:48.399202px;}
.h4c{height:48.423294px;}
.h2c{height:48.578619px;}
.h56{height:48.879867px;}
.h13{height:49.719956px;}
.h17{height:49.740022px;}
.hf{height:49.744704px;}
.h16{height:49.764781px;}
.h7{height:50.229844px;}
.hc{height:50.273438px;}
.hd{height:50.800781px;}
.h4{height:55.147500px;}
.h45{height:57.226362px;}
.h3d{height:58.726602px;}
.h28{height:64.049576px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h5a{height:74.004654px;}
.h1f{height:74.084061px;}
.h54{height:75.226235px;}
.h9{height:75.251250px;}
.h1e{height:78.283131px;}
.h1d{height:78.497081px;}
.h26{height:78.691798px;}
.h48{height:78.899260px;}
.h52{height:79.038244px;}
.h37{height:79.131316px;}
.h59{height:79.823193px;}
.h40{height:80.967562px;}
.h1a{height:81.151900px;}
.h24{height:82.944453px;}
.h34{height:83.019873px;}
.h32{height:83.061197px;}
.h3b{height:83.259124px;}
.h39{height:83.300568px;}
.h3c{height:83.315217px;}
.h23{height:83.337809px;}
.h50{height:83.380025px;}
.h2e{height:83.640673px;}
.h4f{height:83.704709px;}
.h4d{height:83.746374px;}
.h2d{height:83.891667px;}
.h2a{height:83.933425px;}
.h58{height:84.168068px;}
.h57{height:84.536001px;}
.h44{height:85.099447px;}
.h14{height:85.807120px;}
.h18{height:85.943156px;}
.h11{height:85.971817px;}
.h10{height:86.014610px;}
.h19{height:86.188278px;}
.h30{height:88.135489px;}
.h4a{height:93.308026px;}
.h8{height:97.233750px;}
.h55{height:104.480516px;}
.h42{height:114.680537px;}
.h27{height:117.884448px;}
.h53{height:118.638104px;}
.h4b{height:120.222996px;}
.h20{height:129.297431px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:52.874848px;}
.w6{width:81.001048px;}
.w10{width:93.224131px;}
.w8{width:93.226914px;}
.w4{width:104.076000px;}
.wb{width:108.001110px;}
.w5{width:108.001120px;}
.wf{width:134.820041px;}
.wc{width:143.820000px;}
.wd{width:149.774816px;}
.w7{width:157.648068px;}
.w3{width:298.905000px;}
.w9{width:325.121981px;}
.w12{width:400.727812px;}
.wa{width:426.228067px;}
.w11{width:716.781805px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:3.701674px;}
.x12{left:4.843468px;}
.x4a{left:6.132158px;}
.x48{left:10.802223px;}
.x3a{left:15.338939px;}
.x1e{left:17.027960px;}
.x10{left:18.778396px;}
.x5b{left:20.055977px;}
.x38{left:22.772487px;}
.x11{left:26.002194px;}
.x4e{left:27.559578px;}
.x2f{left:29.843172px;}
.x1d{left:31.291993px;}
.x19{left:35.598096px;}
.x14{left:37.713988px;}
.x8{left:39.270000px;}
.x49{left:43.250114px;}
.x1b{left:46.973195px;}
.x5c{left:49.566181px;}
.x26{left:51.244674px;}
.x22{left:56.105930px;}
.x44{left:57.736601px;}
.x1a{left:62.586121px;}
.x41{left:64.281324px;}
.x5e{left:65.917783px;}
.x53{left:69.281241px;}
.x58{left:73.625266px;}
.x2a{left:75.077684px;}
.x18{left:80.161467px;}
.x24{left:89.914816px;}
.x5{left:95.796000px;}
.x2e{left:99.420926px;}
.x30{left:108.758136px;}
.xa{left:111.635987px;}
.x32{left:119.629551px;}
.x29{left:122.997069px;}
.x2c{left:127.346339px;}
.x21{left:133.484932px;}
.x2d{left:138.175520px;}
.xf{left:148.751987px;}
.x66{left:149.831987px;}
.x28{left:161.665452px;}
.x61{left:168.644477px;}
.x34{left:171.554980px;}
.xb{left:174.674987px;}
.x16{left:176.834987px;}
.x60{left:181.745942px;}
.x3b{left:186.481434px;}
.x1f{left:189.074987px;}
.x3{left:190.154987px;}
.x3e{left:193.219376px;}
.x47{left:194.954980px;}
.x59{left:198.644279px;}
.x62{left:199.710333px;}
.x55{left:209.627356px;}
.x56{left:216.023901px;}
.xd{left:228.674987px;}
.x31{left:232.013826px;}
.x27{left:235.374306px;}
.x64{left:236.624987px;}
.x23{left:240.247878px;}
.x54{left:243.999985px;}
.x20{left:245.860409px;}
.x4b{left:247.784987px;}
.x2b{left:253.848147px;}
.x42{left:256.784987px;}
.x25{left:274.046208px;}
.x13{left:282.704987px;}
.x6{left:290.634000px;}
.xe{left:296.024987px;}
.x57{left:297.474378px;}
.x46{left:298.544987px;}
.x50{left:303.572181px;}
.x43{left:308.730000px;}
.xc{left:316.544987px;}
.x36{left:319.325280px;}
.x3c{left:328.687483px;}
.x52{left:331.671278px;}
.x2{left:333.509987px;}
.x5a{left:341.125508px;}
.x4{left:342.869987px;}
.x3f{left:349.787883px;}
.x39{left:355.071833px;}
.x3d{left:378.406396px;}
.x4c{left:381.779959px;}
.x37{left:385.623086px;}
.x35{left:388.797010px;}
.x7{left:394.710000px;}
.x4d{left:427.529959px;}
.x65{left:443.699987px;}
.x45{left:452.699987px;}
.x33{left:473.939987px;}
.x9{left:498.780000px;}
.x5d{left:509.702524px;}
.x17{left:517.154959px;}
.x4f{left:520.769987px;}
.x63{left:549.569987px;}
.x40{left:597.809987px;}
.x1c{left:674.894987px;}
.x51{left:707.679028px;}
.x1{left:797.684987px;}
.x5f{left:812.849987px;}
@media print{
.v6{vertical-align:-64.771001pt;}
.v9{vertical-align:-47.962427pt;}
.v7{vertical-align:-38.824287pt;}
.v3{vertical-align:-34.798849pt;}
.v4{vertical-align:-26.634336pt;}
.v2{vertical-align:-20.149166pt;}
.v8{vertical-align:-16.262615pt;}
.va{vertical-align:-10.338760pt;}
.v5{vertical-align:-5.751164pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1a{letter-spacing:-0.731598pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.422219pt;}
.ls0{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.664000pt;}
.lsc{letter-spacing:1.770667pt;}
.ls2{letter-spacing:1.920000pt;}
.ls1{letter-spacing:2.080000pt;}
.ls3{letter-spacing:5.840159pt;}
.lsb{letter-spacing:6.332972pt;}
.lsf{letter-spacing:16.512313pt;}
.ls2b{letter-spacing:47.488000pt;}
.ls2a{letter-spacing:56.862720pt;}
.ls6{letter-spacing:91.222499pt;}
.ls1b{letter-spacing:109.527367pt;}
.ls13{letter-spacing:144.436202pt;}
.ls7{letter-spacing:166.913972pt;}
.ls26{letter-spacing:167.200711pt;}
.ls15{letter-spacing:188.618160pt;}
.ls1f{letter-spacing:195.906678pt;}
.ls1d{letter-spacing:199.332934pt;}
.ls1e{letter-spacing:223.109382pt;}
.ls28{letter-spacing:242.835561pt;}
.ls17{letter-spacing:279.172400pt;}
.ls18{letter-spacing:320.601065pt;}
.ls14{letter-spacing:335.870493pt;}
.ls11{letter-spacing:337.998236pt;}
.ls20{letter-spacing:342.763190pt;}
.ls12{letter-spacing:347.698241pt;}
.ls8{letter-spacing:374.409238pt;}
.ls1c{letter-spacing:389.431116pt;}
.ls22{letter-spacing:422.413981pt;}
.ls29{letter-spacing:429.551210pt;}
.ls27{letter-spacing:447.981776pt;}
.ls24{letter-spacing:449.457547pt;}
.ls25{letter-spacing:450.521722pt;}
.lsa{letter-spacing:613.460960pt;}
.ls16{letter-spacing:613.478376pt;}
.ls10{letter-spacing:750.546898pt;}
.ls21{letter-spacing:883.815255pt;}
.ls9{letter-spacing:958.420238pt;}
.wsb{word-spacing:-47.093333pt;}
.ws29{word-spacing:-29.514240pt;}
.ws28{word-spacing:-26.427634pt;}
.ws20{word-spacing:-26.319453pt;}
.ws7{word-spacing:-24.243162pt;}
.wsf{word-spacing:-18.807002pt;}
.ws22{word-spacing:-17.280000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws10{word-spacing:-10.387076pt;}
.ws8{word-spacing:0.000000pt;}
.wsd{word-spacing:11.250661pt;}
.ws14{word-spacing:12.222058pt;}
.wsc{word-spacing:20.676890pt;}
.ws2{word-spacing:37.381102pt;}
.ws12{word-spacing:41.230037pt;}
.ws3{word-spacing:41.911758pt;}
.wse{word-spacing:53.592675pt;}
.ws13{word-spacing:54.018479pt;}
.ws17{word-spacing:73.876505pt;}
.wsa{word-spacing:75.742651pt;}
.ws9{word-spacing:77.026425pt;}
.ws5{word-spacing:81.848647pt;}
.ws11{word-spacing:86.117000pt;}
.ws4{word-spacing:86.384312pt;}
.ws1f{word-spacing:88.818673pt;}
.ws27{word-spacing:90.007160pt;}
.ws21{word-spacing:91.018281pt;}
.ws6{word-spacing:104.978094pt;}
.ws25{word-spacing:111.177162pt;}
.ws16{word-spacing:123.164312pt;}
.ws19{word-spacing:161.930723pt;}
.ws15{word-spacing:162.009627pt;}
.ws1c{word-spacing:263.009735pt;}
.ws1a{word-spacing:279.805366pt;}
.ws18{word-spacing:315.530042pt;}
.ws1d{word-spacing:326.376387pt;}
.ws1b{word-spacing:339.424185pt;}
.ws1e{word-spacing:343.253855pt;}
.ws24{word-spacing:351.602439pt;}
.ws26{word-spacing:360.947863pt;}
.ws23{word-spacing:370.660407pt;}
._31{margin-left:-456.028232pt;}
._2b{margin-left:-360.527998pt;}
._32{margin-left:-218.399008pt;}
._29{margin-left:-169.317664pt;}
._15{margin-left:-98.849324pt;}
._26{margin-left:-57.292664pt;}
._17{margin-left:-8.955846pt;}
._28{margin-left:-6.688105pt;}
._d{margin-left:-5.203627pt;}
._9{margin-left:-3.500373pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._6{width:2.158080pt;}
._5{width:3.133440pt;}
._8{width:4.873387pt;}
._7{width:5.929387pt;}
._a{width:6.848000pt;}
._c{width:8.463360pt;}
._e{width:9.873920pt;}
._f{width:11.518293pt;}
._50{width:12.608853pt;}
._51{width:14.223360pt;}
._b{width:17.771947pt;}
._52{width:18.897920pt;}
._16{width:19.840000pt;}
._13{width:23.070720pt;}
._10{width:24.000000pt;}
._14{width:25.118720pt;}
._2f{width:74.238588pt;}
._1f{width:79.362769pt;}
._24{width:91.297592pt;}
._11{width:97.534425pt;}
._2c{width:101.031518pt;}
._20{width:103.308433pt;}
._4d{width:104.408306pt;}
._2e{width:105.396391pt;}
._19{width:108.561020pt;}
._21{width:110.302087pt;}
._4e{width:116.358193pt;}
._12{width:118.801915pt;}
._43{width:124.088257pt;}
._1e{width:131.238917pt;}
._4a{width:138.426797pt;}
._2d{width:143.118793pt;}
._1a{width:154.959043pt;}
._30{width:173.568000pt;}
._1c{width:181.317063pt;}
._25{width:186.396083pt;}
._27{width:192.664491pt;}
._42{width:200.695310pt;}
._18{width:212.288407pt;}
._2a{width:213.464037pt;}
._41{width:220.871029pt;}
._40{width:223.298183pt;}
._1b{width:248.906763pt;}
._35{width:267.972990pt;}
._36{width:269.110718pt;}
._4{width:274.666667pt;}
._46{width:277.909152pt;}
._4c{width:280.592534pt;}
._4b{width:282.813988pt;}
._37{width:299.905237pt;}
._47{width:301.801451pt;}
._3c{width:308.138269pt;}
._1d{width:321.327994pt;}
._23{width:329.309882pt;}
._44{width:333.885395pt;}
._34{width:347.765683pt;}
._3{width:352.778667pt;}
._45{width:354.516206pt;}
._4f{width:362.250094pt;}
._39{width:372.947408pt;}
._3f{width:381.973387pt;}
._22{width:384.574952pt;}
._38{width:385.689967pt;}
._3d{width:398.635382pt;}
._3b{width:402.956199pt;}
._48{width:422.324825pt;}
._33{width:599.810474pt;}
._3e{width:634.018178pt;}
._3a{width:667.166161pt;}
._49{width:883.787511pt;}
.fs12{font-size:31.849927pt;}
.fsb{font-size:41.047610pt;}
.fs22{font-size:41.322737pt;}
.fs19{font-size:41.548303pt;}
.fs4{font-size:42.240000pt;}
.fs1e{font-size:42.405991pt;}
.fs18{font-size:43.506504pt;}
.fs1c{font-size:43.664049pt;}
.fse{font-size:43.673177pt;}
.fs25{font-size:43.856674pt;}
.fs14{font-size:44.019252pt;}
.fs2a{font-size:44.292226pt;}
.fs5{font-size:45.053468pt;}
.fs8{font-size:45.071651pt;}
.fs2{font-size:48.640000pt;}
.fs2d{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:71.094316pt;}
.fs23{font-size:71.494136pt;}
.fs1a{font-size:71.704413pt;}
.fs1f{font-size:73.368317pt;}
.fsd{font-size:75.123928pt;}
.fs17{font-size:75.228007pt;}
.fs1b{font-size:75.444804pt;}
.fsf{font-size:75.516103pt;}
.fs26{font-size:75.848568pt;}
.fs13{font-size:76.017978pt;}
.fs2b{font-size:76.601838pt;}
.fs21{font-size:77.074038pt;}
.fs7{font-size:77.753656pt;}
.fs9{font-size:77.876924pt;}
.fs6{font-size:77.902895pt;}
.fs10{font-size:79.597136pt;}
.fs1d{font-size:79.952938pt;}
.fs27{font-size:80.015131pt;}
.fs15{font-size:80.265260pt;}
.fs2c{font-size:80.771372pt;}
.fsa{font-size:82.710054pt;}
.fs3{font-size:85.760000pt;}
.fs29{font-size:100.264088pt;}
.fs24{font-size:107.099584pt;}
.fs20{font-size:110.052475pt;}
.fs11{font-size:113.127090pt;}
.fs28{font-size:113.850330pt;}
.fs16{font-size:114.030067pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:3.298248pt;}
.y79{bottom:4.173259pt;}
.y80{bottom:4.178709pt;}
.y92{bottom:4.280590pt;}
.y36{bottom:4.313432pt;}
.y83{bottom:4.356218pt;}
.y88{bottom:4.356226pt;}
.y86{bottom:4.356232pt;}
.y75{bottom:4.501252pt;}
.y2f{bottom:4.661240pt;}
.y32{bottom:4.698870pt;}
.y3d{bottom:4.785912pt;}
.y3e{bottom:4.785914pt;}
.y3c{bottom:4.785917pt;}
.yb0{bottom:5.245800pt;}
.ybf{bottom:5.676279pt;}
.y8d{bottom:6.362795pt;}
.y5c{bottom:6.696181pt;}
.y44{bottom:6.847464pt;}
.y54{bottom:6.847465pt;}
.y4d{bottom:6.847466pt;}
.yb9{bottom:7.303529pt;}
.y6d{bottom:7.421085pt;}
.y7a{bottom:8.818533pt;}
.yaf{bottom:8.992826pt;}
.y7f{bottom:9.035948pt;}
.y38{bottom:9.327251pt;}
.y39{bottom:9.327253pt;}
.y37{bottom:9.327258pt;}
.y74{bottom:9.365550pt;}
.y76{bottom:9.365591pt;}
.y6{bottom:9.600000pt;}
.y30{bottom:9.698531pt;}
.y33{bottom:9.736014pt;}
.y7{bottom:9.920000pt;}
.y3b{bottom:12.738977pt;}
.y68{bottom:15.966572pt;}
.y94{bottom:16.587159pt;}
.y85{bottom:16.985663pt;}
.y89{bottom:17.497407pt;}
.y6f{bottom:17.502589pt;}
.y6b{bottom:17.502590pt;}
.ybe{bottom:17.671569pt;}
.y35{bottom:18.026962pt;}
.y6a{bottom:18.852665pt;}
.y5b{bottom:18.954171pt;}
.y4c{bottom:19.861579pt;}
.y5f{bottom:20.390395pt;}
.y95{bottom:21.152906pt;}
.y87{bottom:21.707450pt;}
.y71{bottom:23.724293pt;}
.y66{bottom:23.724298pt;}
.y6c{bottom:23.724303pt;}
.yb8{bottom:23.726413pt;}
.y50{bottom:24.703774pt;}
.yae{bottom:27.128425pt;}
.yb6{bottom:27.283575pt;}
.ybd{bottom:27.549619pt;}
.ybb{bottom:28.646659pt;}
.yad{bottom:30.425929pt;}
.yac{bottom:30.463094pt;}
.y99{bottom:30.576234pt;}
.ya4{bottom:32.262164pt;}
.y6e{bottom:32.870762pt;}
.y67{bottom:35.680903pt;}
.y65{bottom:35.680914pt;}
.yb7{bottom:35.987903pt;}
.y5a{bottom:36.204534pt;}
.y51{bottom:39.155181pt;}
.y64{bottom:39.241242pt;}
.y93{bottom:39.274273pt;}
.y84{bottom:40.267552pt;}
.yba{bottom:40.906584pt;}
.y9e{bottom:43.615901pt;}
.yb2{bottom:44.176849pt;}
.ybc{bottom:45.069387pt;}
.yab{bottom:45.263103pt;}
.y69{bottom:45.425730pt;}
.y9a{bottom:48.523373pt;}
.yaa{bottom:48.523406pt;}
.ya3{bottom:48.523407pt;}
.ya1{bottom:48.523409pt;}
.y4b{bottom:50.466691pt;}
.y8{bottom:50.880000pt;}
.y59{bottom:55.347981pt;}
.y4f{bottom:55.347987pt;}
.y98{bottom:55.755257pt;}
.ya9{bottom:59.464944pt;}
.ya8{bottom:60.101828pt;}
.ya0{bottom:60.439624pt;}
.ya2{bottom:60.439626pt;}
.y43{bottom:62.535324pt;}
.y53{bottom:62.535325pt;}
.y4a{bottom:62.535326pt;}
.y58{bottom:63.858929pt;}
.y42{bottom:64.010704pt;}
.y52{bottom:64.010705pt;}
.y49{bottom:64.010706pt;}
.y5{bottom:65.312000pt;}
.ya7{bottom:67.146184pt;}
.y9d{bottom:67.745876pt;}
.y9c{bottom:68.832114pt;}
.yb1{bottom:69.357422pt;}
.ya6{bottom:73.703976pt;}
.y9f{bottom:73.703977pt;}
.y48{bottom:75.511421pt;}
.y5e{bottom:76.079350pt;}
.y57{bottom:76.116919pt;}
.y47{bottom:76.986801pt;}
.y5d{bottom:77.517182pt;}
.y56{bottom:81.828979pt;}
.y4e{bottom:81.828984pt;}
.ya5{bottom:85.282403pt;}
.y9b{bottom:92.926448pt;}
.y55{bottom:93.367283pt;}
.yf4{bottom:95.712000pt;}
.y46{bottom:99.497037pt;}
.y45{bottom:100.972418pt;}
.yc7{bottom:106.592000pt;}
.yf3{bottom:117.152000pt;}
.yc6{bottom:127.712000pt;}
.yf2{bottom:138.266667pt;}
.y40{bottom:147.226667pt;}
.yc5{bottom:148.826667pt;}
.yf1{bottom:159.386667pt;}
.y3f{bottom:168.666667pt;}
.y3a{bottom:168.799982pt;}
.yc4{bottom:170.266667pt;}
.yf0{bottom:180.546667pt;}
.yc3{bottom:191.426667pt;}
.y34{bottom:198.786667pt;}
.y31{bottom:198.866649pt;}
.yef{bottom:201.666667pt;}
.yc2{bottom:212.546667pt;}
.yee{bottom:222.786667pt;}
.yc1{bottom:233.666667pt;}
.y2d{bottom:236.866667pt;}
.y2e{bottom:236.933333pt;}
.yed{bottom:243.906667pt;}
.yc0{bottom:254.786667pt;}
.yb5{bottom:254.866667pt;}
.yec{bottom:264.706667pt;}
.y2c{bottom:271.746667pt;}
.yeb{bottom:286.173333pt;}
.y2b{bottom:293.533333pt;}
.yea{bottom:307.613333pt;}
.y2a{bottom:314.653333pt;}
.yb4{bottom:328.093333pt;}
.ye9{bottom:328.733333pt;}
.y29{bottom:335.773333pt;}
.yb3{bottom:345.373333pt;}
.y97{bottom:345.466630pt;}
.ye8{bottom:349.853333pt;}
.y28{bottom:356.893333pt;}
.ye7{bottom:370.973333pt;}
.y27{bottom:378.013333pt;}
.ye6{bottom:392.093333pt;}
.y26{bottom:399.173333pt;}
.ye5{bottom:413.253333pt;}
.y25{bottom:420.293333pt;}
.ye4{bottom:434.053333pt;}
.y24{bottom:441.413333pt;}
.ye3{bottom:455.493333pt;}
.y96{bottom:459.013333pt;}
.y23{bottom:462.533333pt;}
.ye2{bottom:476.933333pt;}
.y90{bottom:480.453333pt;}
.y91{bottom:480.466667pt;}
.y22{bottom:483.973333pt;}
.ye1{bottom:498.053333pt;}
.y21{bottom:505.093333pt;}
.ye0{bottom:519.200000pt;}
.y20{bottom:526.240000pt;}
.y8f{bottom:538.080000pt;}
.ydf{bottom:540.320000pt;}
.y1f{bottom:547.360000pt;}
.y8e{bottom:559.520000pt;}
.yde{bottom:561.440000pt;}
.y1e{bottom:568.480000pt;}
.y8b{bottom:580.320000pt;}
.y8c{bottom:580.493333pt;}
.ydd{bottom:582.560000pt;}
.y1d{bottom:589.600000pt;}
.ydc{bottom:603.680000pt;}
.y8a{bottom:610.080000pt;}
.y1c{bottom:610.720000pt;}
.ydb{bottom:624.826667pt;}
.y82{bottom:630.866594pt;}
.y81{bottom:630.906667pt;}
.y1b{bottom:631.866667pt;}
.yda{bottom:646.266667pt;}
.y1a{bottom:652.986667pt;}
.yd9{bottom:667.386667pt;}
.y19{bottom:674.426667pt;}
.yd8{bottom:688.506667pt;}
.y7e{bottom:689.466667pt;}
.y18{bottom:695.546667pt;}
.yd7{bottom:709.626667pt;}
.y17{bottom:716.666667pt;}
.y7d{bottom:726.586667pt;}
.yd6{bottom:730.746667pt;}
.y16{bottom:737.826667pt;}
.y7c{bottom:747.746667pt;}
.yd5{bottom:751.906667pt;}
.y15{bottom:758.946667pt;}
.y7b{bottom:768.866667pt;}
.yd4{bottom:773.026667pt;}
.y14{bottom:780.066667pt;}
.y73{bottom:789.933261pt;}
.y77{bottom:789.986667pt;}
.y78{bottom:790.093333pt;}
.yd3{bottom:794.146667pt;}
.y13{bottom:801.186667pt;}
.yd2{bottom:815.266667pt;}
.y12{bottom:822.626667pt;}
.y72{bottom:824.546667pt;}
.yd1{bottom:836.706667pt;}
.y11{bottom:843.746667pt;}
.y63{bottom:845.933261pt;}
.y62{bottom:846.013333pt;}
.yd0{bottom:857.853333pt;}
.y10{bottom:864.573333pt;}
.ycf{bottom:878.973333pt;}
.yf{bottom:885.693333pt;}
.yce{bottom:900.093333pt;}
.ye{bottom:907.133333pt;}
.y61{bottom:909.373333pt;}
.ycd{bottom:921.213333pt;}
.y41{bottom:926.533261pt;}
.y60{bottom:926.653333pt;}
.yd{bottom:928.253333pt;}
.ycc{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.ycb{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.yca{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.yc9{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.yc8{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h43{height:22.840249pt;}
.h1b{height:23.999370pt;}
.h5{height:24.000000pt;}
.h35{height:26.706217pt;}
.h31{height:28.132513pt;}
.he{height:29.132748pt;}
.h12{height:29.132766pt;}
.h38{height:31.000607pt;}
.h2b{height:31.243410pt;}
.h29{height:31.258962pt;}
.h15{height:31.999994pt;}
.h49{height:38.275992pt;}
.h41{height:39.279377pt;}
.h1c{height:40.285984pt;}
.h25{height:40.453133pt;}
.h47{height:40.535830pt;}
.h46{height:40.556007pt;}
.h51{height:40.623101pt;}
.h2f{height:40.773692pt;}
.h36{height:40.777387pt;}
.h3f{height:41.598455pt;}
.h3e{height:41.619161pt;}
.h33{height:42.678011pt;}
.h3a{height:42.832556pt;}
.h22{height:42.841510pt;}
.h21{height:42.862835pt;}
.h4e{height:43.021513pt;}
.h4c{height:43.042928pt;}
.h2c{height:43.180994pt;}
.h56{height:43.448770pt;}
.h13{height:44.195516pt;}
.h17{height:44.213353pt;}
.hf{height:44.217515pt;}
.h16{height:44.235361pt;}
.h7{height:44.648750pt;}
.hc{height:44.687500pt;}
.hd{height:45.156250pt;}
.h4{height:49.020000pt;}
.h45{height:50.867877pt;}
.h3d{height:52.201424pt;}
.h28{height:56.932956pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h5a{height:65.781915pt;}
.h1f{height:65.852498pt;}
.h54{height:66.867765pt;}
.h9{height:66.890000pt;}
.h1e{height:69.585005pt;}
.h1d{height:69.775183pt;}
.h26{height:69.948265pt;}
.h48{height:70.132675pt;}
.h52{height:70.256217pt;}
.h37{height:70.338948pt;}
.h59{height:70.953949pt;}
.h40{height:71.971166pt;}
.h1a{height:72.135022pt;}
.h24{height:73.728402pt;}
.h34{height:73.795443pt;}
.h32{height:73.832175pt;}
.h3b{height:74.008111pt;}
.h39{height:74.044949pt;}
.h3c{height:74.057971pt;}
.h23{height:74.078052pt;}
.h50{height:74.115578pt;}
.h2e{height:74.347264pt;}
.h4f{height:74.404186pt;}
.h4d{height:74.441221pt;}
.h2d{height:74.570370pt;}
.h2a{height:74.607488pt;}
.h58{height:74.816060pt;}
.h57{height:75.143112pt;}
.h44{height:75.643953pt;}
.h14{height:76.272995pt;}
.h18{height:76.393916pt;}
.h11{height:76.419393pt;}
.h10{height:76.457431pt;}
.h19{height:76.611803pt;}
.h30{height:78.342657pt;}
.h4a{height:82.940467pt;}
.h8{height:86.430000pt;}
.h55{height:92.871570pt;}
.h42{height:101.938255pt;}
.h27{height:104.786176pt;}
.h53{height:105.456092pt;}
.h4b{height:106.864885pt;}
.h20{height:114.931050pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:46.999865pt;}
.w6{width:72.000932pt;}
.w10{width:82.865894pt;}
.w8{width:82.868368pt;}
.w4{width:92.512000pt;}
.wb{width:96.000987pt;}
.w5{width:96.000996pt;}
.wf{width:119.840036pt;}
.wc{width:127.840000pt;}
.wd{width:133.133170pt;}
.w7{width:140.131616pt;}
.w3{width:265.693333pt;}
.w9{width:288.997316pt;}
.w12{width:356.202499pt;}
.wa{width:378.869393pt;}
.w11{width:637.139382pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:3.290377pt;}
.x12{left:4.305305pt;}
.x4a{left:5.450807pt;}
.x48{left:9.601976pt;}
.x3a{left:13.634613pt;}
.x1e{left:15.135964pt;}
.x10{left:16.691907pt;}
.x5b{left:17.827535pt;}
.x38{left:20.242210pt;}
.x11{left:23.113061pt;}
.x4e{left:24.497403pt;}
.x2f{left:26.527264pt;}
.x1d{left:27.815105pt;}
.x19{left:31.642752pt;}
.x14{left:33.523545pt;}
.x8{left:34.906667pt;}
.x49{left:38.444546pt;}
.x1b{left:41.753951pt;}
.x5c{left:44.058828pt;}
.x26{left:45.550821pt;}
.x22{left:49.871937pt;}
.x44{left:51.321423pt;}
.x1a{left:55.632107pt;}
.x41{left:57.138955pt;}
.x5e{left:58.593585pt;}
.x53{left:61.583325pt;}
.x58{left:65.444681pt;}
.x2a{left:66.735719pt;}
.x18{left:71.254637pt;}
.x24{left:79.924281pt;}
.x5{left:85.152000pt;}
.x2e{left:88.374156pt;}
.x30{left:96.673898pt;}
.xa{left:99.231988pt;}
.x32{left:106.337379pt;}
.x29{left:109.330728pt;}
.x2c{left:113.196746pt;}
.x21{left:118.653273pt;}
.x2d{left:122.822684pt;}
.xf{left:132.223988pt;}
.x66{left:133.183988pt;}
.x28{left:143.702624pt;}
.x61{left:149.906202pt;}
.x34{left:152.493315pt;}
.xb{left:155.266655pt;}
.x16{left:157.186655pt;}
.x60{left:161.551948pt;}
.x3b{left:165.761274pt;}
.x1f{left:168.066655pt;}
.x3{left:169.026655pt;}
.x3e{left:171.750556pt;}
.x47{left:173.293315pt;}
.x59{left:176.572692pt;}
.x62{left:177.520296pt;}
.x55{left:186.335427pt;}
.x56{left:192.021245pt;}
.xd{left:203.266655pt;}
.x31{left:206.234512pt;}
.x27{left:209.221606pt;}
.x64{left:210.333322pt;}
.x23{left:213.553669pt;}
.x54{left:216.888876pt;}
.x20{left:218.542586pt;}
.x4b{left:220.253322pt;}
.x2b{left:225.642798pt;}
.x42{left:228.253322pt;}
.x25{left:243.596629pt;}
.x13{left:251.293322pt;}
.x6{left:258.341333pt;}
.xe{left:263.133322pt;}
.x57{left:264.421670pt;}
.x46{left:265.373322pt;}
.x50{left:269.841939pt;}
.x43{left:274.426667pt;}
.xc{left:281.373322pt;}
.x36{left:283.844693pt;}
.x3c{left:292.166652pt;}
.x52{left:294.818913pt;}
.x2{left:296.453322pt;}
.x5a{left:303.222673pt;}
.x4{left:304.773322pt;}
.x3f{left:310.922563pt;}
.x39{left:315.619407pt;}
.x3d{left:336.361241pt;}
.x4c{left:339.359964pt;}
.x37{left:342.776076pt;}
.x35{left:345.597342pt;}
.x7{left:350.853333pt;}
.x4d{left:380.026630pt;}
.x65{left:394.399988pt;}
.x45{left:402.399988pt;}
.x33{left:421.279988pt;}
.x9{left:443.360000pt;}
.x5d{left:453.068910pt;}
.x17{left:459.693297pt;}
.x4f{left:462.906655pt;}
.x63{left:488.506655pt;}
.x40{left:531.386655pt;}
.x1c{left:599.906655pt;}
.x51{left:629.048025pt;}
.x1{left:709.053322pt;}
.x5f{left:722.533322pt;}
}




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