
    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_59ed6123bdcc666118e993c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_dc1d8e8c01c1782272e76d9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.184000;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_3d78361b5ba0b46d585383d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050000;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_c328375bfc745e624627d7a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163000;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_15247e24f2da7c572d0c0148.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032000;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_7b356dae70ac8ea97248e329.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_b641b2b9d93bdddb083342f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_b16071c7ed3e0c45671a2f25.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_8c3e793bc8597e98b10bf6e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_44fb436e111b87adb43d35e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.022000;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_105b8a539c8c6e996d69e1be.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.012000;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_a99c17ac7a534d3c45df284b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.032000;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_ba681c37bf02b19a97bd43da.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;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_44a279a1a990a5aa8c47f123.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.941406;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_1a8975356810da2a48315dd7.woff2')format("woff");}.fff{font-family:fff;line-height:0.948242;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_c962c5304d37f5e39fd24129.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.740234;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_82633c629cad685e8397ab42.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3b89cde273b2ec61aea78521.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_64d7d7635147008fb0423c7c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.948242;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_595f54e599ae6a0fff028e6a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.941406;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_2ab5e230d680a67fd254c8b5.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_55f2a86e8f07c830c9807f57.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2f747854e3ef4086228c6211.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.012000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_bd88309a402a51c62fd0acd1.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_28b35b4f712fec40b2fea45b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_27a0dfaaf7458035095030bf.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.952000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-45.180000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:45.180000px;}
.v3{vertical-align:54.120000px;}
.v4{vertical-align:71.280000px;}
.v5{vertical-align:119.100000px;}
.v6{vertical-align:216.300000px;}
.lsa{letter-spacing:-1.890000px;}
.lsb{letter-spacing:-1.650000px;}
.ls5{letter-spacing:-1.338000px;}
.ls9{letter-spacing:-0.102600px;}
.lsc{letter-spacing:-0.044520px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.395400px;}
.lsf{letter-spacing:0.567900px;}
.ls4{letter-spacing:0.804000px;}
.ls3{letter-spacing:0.954000px;}
.ls6{letter-spacing:1.332000px;}
.ls1{letter-spacing:1.962000px;}
.ls2{letter-spacing:2.220000px;}
.ls12{letter-spacing:26.580300px;}
.ls10{letter-spacing:27.714600px;}
.ls8{letter-spacing:91.120800px;}
.ls7{letter-spacing:93.365400px;}
.ls1d{letter-spacing:96.827400px;}
.ls14{letter-spacing:98.831400px;}
.ls16{letter-spacing:98.981400px;}
.ls15{letter-spacing:99.072000px;}
.ls1f{letter-spacing:102.022500px;}
.ls20{letter-spacing:102.075000px;}
.ls1e{letter-spacing:102.697500px;}
.ls1b{letter-spacing:119.520000px;}
.ls18{letter-spacing:119.572500px;}
.ls11{letter-spacing:122.722500px;}
.ls13{letter-spacing:124.147500px;}
.ls1a{letter-spacing:125.422500px;}
.ls19{letter-spacing:125.572500px;}
.ls1c{letter-spacing:125.872500px;}
.lse{letter-spacing:129.615000px;}
.lsd{letter-spacing:129.667500px;}
.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:-81.461700px;}
.ws1a{word-spacing:-44.781900px;}
.ws6{word-spacing:-41.764800px;}
.ws15{word-spacing:-40.073700px;}
.ws0{word-spacing:-39.729300px;}
.ws17{word-spacing:-37.696800px;}
.wsa{word-spacing:-36.679800px;}
.ws23{word-spacing:-33.628800px;}
.ws18{word-spacing:-32.959500px;}
.ws16{word-spacing:-32.577900px;}
.wse{word-spacing:-30.992250px;}
.ws14{word-spacing:-30.024750px;}
.ws31{word-spacing:-29.694900px;}
.ws2f{word-spacing:-29.514300px;}
.ws10{word-spacing:-28.767900px;}
.ws1d{word-spacing:-27.492900px;}
.ws1c{word-spacing:-25.492800px;}
.ws1b{word-spacing:-25.458900px;}
.ws2a{word-spacing:-25.059900px;}
.ws20{word-spacing:-24.837300px;}
.ws3{word-spacing:-24.441900px;}
.ws26{word-spacing:-24.219750px;}
.ws24{word-spacing:-23.769000px;}
.ws29{word-spacing:-23.205900px;}
.ws22{word-spacing:-21.390900px;}
.ws2b{word-spacing:-21.267000px;}
.ws30{word-spacing:-20.349750px;}
.ws1f{word-spacing:-19.356900px;}
.ws9{word-spacing:-17.604000px;}
.ws7{word-spacing:-16.305900px;}
.ws8{word-spacing:-16.272000px;}
.ws2d{word-spacing:-1.853700px;}
.ws4{word-spacing:-0.667200px;}
.ws5{word-spacing:-0.573600px;}
.ws21{word-spacing:-0.281250px;}
.ws27{word-spacing:-0.261450px;}
.ws2c{word-spacing:-0.210750px;}
.ws11{word-spacing:-0.112800px;}
.wsf{word-spacing:-0.112650px;}
.ws12{word-spacing:-0.085650px;}
.ws13{word-spacing:-0.085500px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.222600px;}
.wsc{word-spacing:0.315000px;}
.ws2e{word-spacing:0.616800px;}
.ws1e{word-spacing:1.868850px;}
.ws25{word-spacing:2.201850px;}
.ws1{word-spacing:7.935750px;}
.wsd{word-spacing:209.189400px;}
.ws19{word-spacing:1900.781400px;}
._c{margin-left:-5.890050px;}
._4{margin-left:-4.679850px;}
._2{margin-left:-3.318900px;}
._0{margin-left:-1.875900px;}
._1{width:1.154400px;}
._3{width:2.308800px;}
._5{width:3.606150px;}
._6{width:5.169300px;}
._b{width:6.297600px;}
._d{width:23.244000px;}
._e{width:25.443600px;}
._8{width:26.727300px;}
._a{width:30.461100px;}
._9{width:32.124750px;}
._7{width:362.963400px;}
.fc10{color:rgb(0,141,206);}
.fce{color:rgb(103,78,167);}
.fcd{color:rgb(112,173,71);}
.fc0{color:rgb(249,255,255);}
.fc8{color:rgb(120,164,204);}
.fc3{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc6{color:rgb(38,38,38);}
.fc5{color:rgb(0,151,167);}
.fc7{color:rgb(0,117,167);}
.fc9{color:rgb(152,0,0);}
.fc11{color:rgb(5,99,193);}
.fc1{color:rgb(255,244,236);}
.fcc{color:rgb(197,90,17);}
.fc12{color:rgb(255,0,0);}
.fcf{color:rgb(191,144,0);}
.fc2{color:rgb(0,131,186);}
.fca{color:rgb(39,78,19);}
.fcb{color:rgb(9,137,177);}
.fsd{font-size:72.000000px;}
.fsc{font-size:72.150000px;}
.fs1d{font-size:76.500000px;}
.fs1c{font-size:85.500000px;}
.fs11{font-size:85.650000px;}
.fs5{font-size:90.000000px;}
.fs6{font-size:90.150000px;}
.fs28{font-size:94.500000px;}
.fs2{font-size:94.650000px;}
.fs2c{font-size:103.650000px;}
.fs8{font-size:108.150000px;}
.fs1a{font-size:112.650000px;}
.fs1b{font-size:112.800000px;}
.fs19{font-size:121.650000px;}
.fs18{font-size:121.800000px;}
.fsb{font-size:126.150000px;}
.fs2b{font-size:126.300000px;}
.fs29{font-size:130.650000px;}
.fs2a{font-size:130.800000px;}
.fs17{font-size:139.650000px;}
.fs16{font-size:139.800000px;}
.fs1{font-size:144.150000px;}
.fs0{font-size:144.300000px;}
.fse{font-size:148.650000px;}
.fs1e{font-size:148.800000px;}
.fs22{font-size:153.150000px;}
.fs23{font-size:153.300000px;}
.fs25{font-size:157.650000px;}
.fs26{font-size:157.800000px;}
.fsf{font-size:162.150000px;}
.fs10{font-size:162.300000px;}
.fs2d{font-size:166.650000px;}
.fs21{font-size:166.800000px;}
.fsa{font-size:184.650000px;}
.fs9{font-size:184.800000px;}
.fs24{font-size:193.650000px;}
.fs7{font-size:193.800000px;}
.fs27{font-size:198.150000px;}
.fs14{font-size:198.300000px;}
.fs15{font-size:211.650000px;}
.fs1f{font-size:265.800000px;}
.fs20{font-size:265.950000px;}
.fs4{font-size:288.300000px;}
.fs3{font-size:288.450000px;}
.fs13{font-size:360.450000px;}
.fs12{font-size:360.600000px;}
.fs2e{font-size:396.600000px;}
.y6d{bottom:-1.050015px;}
.y0{bottom:0.000000px;}
.y79{bottom:5.850000px;}
.y2b{bottom:6.600000px;}
.y6f{bottom:9.450000px;}
.yb5{bottom:11.250000px;}
.y32{bottom:11.362500px;}
.y104{bottom:12.337500px;}
.y102{bottom:14.025000px;}
.ye2{bottom:21.712500px;}
.y2a{bottom:28.012500px;}
.y6c{bottom:31.612500px;}
.y8b{bottom:38.325000px;}
.yd0{bottom:46.462500px;}
.y78{bottom:48.637500px;}
.ye5{bottom:49.800000px;}
.y99{bottom:54.112500px;}
.y9d{bottom:54.412500px;}
.ye{bottom:55.425000px;}
.y2d{bottom:58.387500px;}
.yb4{bottom:61.350000px;}
.y13f{bottom:67.950000px;}
.y6b{bottom:69.900000px;}
.y74{bottom:70.800000px;}
.y8a{bottom:73.237500px;}
.ycf{bottom:75.750000px;}
.y12e{bottom:76.350000px;}
.y57{bottom:78.487500px;}
.yd{bottom:82.462500px;}
.y10a{bottom:84.450000px;}
.y110{bottom:85.725000px;}
.y97{bottom:85.987500px;}
.y118{bottom:86.887500px;}
.y11e{bottom:88.162500px;}
.y62{bottom:88.237500px;}
.y77{bottom:91.462500px;}
.ye1{bottom:92.250000px;}
.y1c{bottom:93.637500px;}
.yf8{bottom:93.862500px;}
.y88{bottom:98.025000px;}
.yb3{bottom:99.637500px;}
.y6a{bottom:102.562500px;}
.y89{bottom:107.025000px;}
.y19{bottom:108.487500px;}
.yc{bottom:109.500000px;}
.y12d{bottom:110.137500px;}
.y13e{bottom:110.737500px;}
.y56{bottom:112.312500px;}
.ydc{bottom:112.500000px;}
.y61{bottom:113.025000px;}
.y73{bottom:113.625000px;}
.yce{bottom:124.200000px;}
.y1b{bottom:126.300000px;}
.ye0{bottom:130.537500px;}
.yf7{bottom:131.062500px;}
.y76{bottom:134.250000px;}
.y87{bottom:137.437500px;}
.y60{bottom:137.775000px;}
.yb2{bottom:139.087500px;}
.y96{bottom:140.062500px;}
.y18{bottom:141.150000px;}
.y55{bottom:147.225000px;}
.ydb{bottom:151.950000px;}
.y13d{bottom:153.555000px;}
.y72{bottom:157.530000px;}
.y1a{bottom:157.830000px;}
.y5f{bottom:162.555000px;}
.yb{bottom:163.530000px;}
.y109{bottom:167.550000px;}
.ydf{bottom:167.700000px;}
.y117{bottom:169.995000px;}
.y10f{bottom:170.925000px;}
.ycd{bottom:172.575000px;}
.y17{bottom:172.725000px;}
.y11d{bottom:173.370000px;}
.y75{bottom:178.200000px;}
.yf6{bottom:178.350000px;}
.y52{bottom:179.550000px;}
.y54{bottom:181.005000px;}
.y12c{bottom:181.125000px;}
.y29{bottom:183.270000px;}
.y69{bottom:184.800000px;}
.y101{bottom:187.380000px;}
.y5e{bottom:188.475000px;}
.ya{bottom:190.575000px;}
.y3{bottom:191.430000px;}
.yda{bottom:192.495000px;}
.y95{bottom:193.005000px;}
.y86{bottom:193.320000px;}
.y13c{bottom:197.505000px;}
.ycc{bottom:201.870000px;}
.yde{bottom:206.025000px;}
.y51{bottom:212.220000px;}
.y5d{bottom:213.255000px;}
.y12b{bottom:213.795000px;}
.y53{bottom:215.925000px;}
.yf5{bottom:216.675000px;}
.yb1{bottom:216.795000px;}
.y9f{bottom:217.620000px;}
.y48{bottom:219.630000px;}
.y4a{bottom:220.620000px;}
.ya1{bottom:222.945000px;}
.y100{bottom:223.425000px;}
.y68{bottom:228.750000px;}
.ycb{bottom:231.150000px;}
.y85{bottom:232.755000px;}
.ya5{bottom:233.850000px;}
.y28{bottom:233.925000px;}
.y22{bottom:234.345000px;}
.y5c{bottom:238.050000px;}
.y13b{bottom:240.300000px;}
.yb0{bottom:240.450000px;}
.y9{bottom:244.650000px;}
.y2{bottom:245.505000px;}
.y12a{bottom:246.450000px;}
.y108{bottom:247.695000px;}
.y116{bottom:250.125000px;}
.y9e{bottom:250.275000px;}
.y50{bottom:250.500000px;}
.yf4{bottom:253.830000px;}
.ya0{bottom:255.630000px;}
.y10e{bottom:256.095000px;}
.yff{bottom:258.345000px;}
.y11c{bottom:258.570000px;}
.yca{bottom:259.320000px;}
.yd9{bottom:260.100000px;}
.ydd{bottom:261.225000px;}
.y5b{bottom:263.955000px;}
.ye9{bottom:270.000000px;}
.y67{bottom:271.575000px;}
.y8{bottom:271.695000px;}
.y46{bottom:276.405000px;}
.yaf{bottom:279.900000px;}
.y132{bottom:280.605000px;}
.y4f{bottom:283.155000px;}
.yc0{bottom:283.650000px;}
.y1{bottom:283.845000px;}
.y21{bottom:283.905000px;}
.y13a{bottom:284.250000px;}
.y27{bottom:284.625000px;}
.y5a{bottom:288.750000px;}
.yfe{bottom:293.280000px;}
.y49{bottom:293.655000px;}
.y47{bottom:294.600000px;}
.y94{bottom:300.030000px;}
.y84{bottom:300.150000px;}
.yc9{bottom:307.755000px;}
.ybf{bottom:308.445000px;}
.y45{bottom:309.075000px;}
.y59{bottom:313.530000px;}
.y131{bottom:314.400000px;}
.y129{bottom:318.570000px;}
.yae{bottom:319.320000px;}
.y4e{bottom:322.605000px;}
.y16{bottom:323.070000px;}
.y143{bottom:323.880000px;}
.y107{bottom:325.125000px;}
.y7{bottom:325.755000px;}
.y139{bottom:327.030000px;}
.y115{bottom:327.600000px;}
.y34{bottom:329.505000px;}
.ye4{bottom:331.275000px;}
.y26{bottom:334.200000px;}
.ybe{bottom:334.350000px;}
.y20{bottom:334.605000px;}
.yf3{bottom:338.325000px;}
.y58{bottom:339.450000px;}
.y83{bottom:339.600000px;}
.y10d{bottom:341.280000px;}
.y11b{bottom:343.725000px;}
.y44{bottom:347.400000px;}
.y130{bottom:348.195000px;}
.y128{bottom:351.225000px;}
.y6{bottom:352.800000px;}
.y103{bottom:352.980000px;}
.y93{bottom:354.120000px;}
.y15{bottom:355.725000px;}
.yc8{bottom:356.955000px;}
.yad{bottom:357.630000px;}
.y66{bottom:358.320000px;}
.y4d{bottom:366.570000px;}
.ye8{bottom:366.855000px;}
.y138{bottom:369.855000px;}
.yf2{bottom:376.650000px;}
.y43{bottom:380.070000px;}
.y12f{bottom:380.850000px;}
.yfd{bottom:382.275000px;}
.y127{bottom:382.755000px;}
.y25{bottom:384.900000px;}
.y1f{bottom:385.320000px;}
.yc7{bottom:386.250000px;}
.yd4{bottom:387.720000px;}
.y14{bottom:388.425000px;}
.yd8{bottom:389.070000px;}
.y31{bottom:392.970000px;}
.y82{bottom:394.905000px;}
.y65{bottom:402.225000px;}
.y92{bottom:407.070000px;}
.ye6{bottom:412.350000px;}
.y137{bottom:413.820000px;}
.yf1{bottom:414.945000px;}
.y126{bottom:415.425000px;}
.yc6{bottom:415.530000px;}
.y42{bottom:418.350000px;}
.yc3{bottom:418.620000px;}
.y1d{bottom:419.970000px;}
.y111{bottom:420.405000px;}
.yac{bottom:420.720000px;}
.y13{bottom:421.095000px;}
.y113{bottom:422.895000px;}
.y10c{bottom:426.495000px;}
.yd3{bottom:427.155000px;}
.y33{bottom:427.545000px;}
.yd7{bottom:428.505000px;}
.y11a{bottom:428.925000px;}
.y1e{bottom:434.880000px;}
.y24{bottom:435.600000px;}
.yc2{bottom:443.400000px;}
.yc5{bottom:443.700000px;}
.y125{bottom:449.205000px;}
.y30{bottom:449.280000px;}
.y41{bottom:449.925000px;}
.y4c{bottom:452.175000px;}
.yfc{bottom:454.380000px;}
.y136{bottom:456.600000px;}
.y3e{bottom:457.845000px;}
.y9c{bottom:459.000000px;}
.y91{bottom:460.005000px;}
.yab{bottom:460.125000px;}
.yf0{bottom:461.130000px;}
.ye7{bottom:464.880000px;}
.yd2{bottom:467.700000px;}
.yd6{bottom:467.925000px;}
.yc1{bottom:469.320000px;}
.y7b{bottom:472.245000px;}
.y23{bottom:485.175000px;}
.y64{bottom:489.000000px;}
.y40{bottom:490.455000px;}
.yc4{bottom:492.150000px;}
.y4b{bottom:496.095000px;}
.yaa{bottom:499.575000px;}
.y135{bottom:500.550000px;}
.y2f{bottom:504.495000px;}
.yef{bottom:507.330000px;}
.y10b{bottom:511.650000px;}
.y7a{bottom:512.820000px;}
.y9b{bottom:513.075000px;}
.y90{bottom:514.080000px;}
.y119{bottom:514.125000px;}
.y114{bottom:516.525000px;}
.y3d{bottom:518.670000px;}
.y124{bottom:520.200000px;}
.y12{bottom:521.700000px;}
.y5{bottom:527.445000px;}
.y63{bottom:531.780000px;}
.y3f{bottom:533.280000px;}
.yd1{bottom:535.320000px;}
.yd5{bottom:535.545000px;}
.yee{bottom:537.750000px;}
.ya9{bottom:537.870000px;}
.y141{bottom:541.725000px;}
.ybb{bottom:542.220000px;}
.yfb{bottom:547.875000px;}
.ybd{bottom:550.650000px;}
.y123{bottom:552.870000px;}
.y11{bottom:554.370000px;}
.y2e{bottom:560.820000px;}
.y3c{bottom:561.450000px;}
.y8f{bottom:567.030000px;}
.yba{bottom:570.375000px;}
.y134{bottom:571.500000px;}
.y142{bottom:574.905000px;}
.ya8{bottom:577.320000px;}
.yfa{bottom:578.280000px;}
.yed{bottom:582.795000px;}
.y71{bottom:584.205000px;}
.y122{bottom:585.525000px;}
.y140{bottom:585.675000px;}
.y10{bottom:585.900000px;}
.yb9{bottom:599.655000px;}
.y106{bottom:600.975000px;}
.y11f{bottom:603.405000px;}
.ybc{bottom:603.600000px;}
.y38{bottom:605.445000px;}
.y4{bottom:614.205000px;}
.ye3{bottom:614.580000px;}
.y9a{bottom:617.445000px;}
.y121{bottom:618.225000px;}
.y3b{bottom:622.320000px;}
.y70{bottom:628.125000px;}
.y37{bottom:643.725000px;}
.yb8{bottom:644.700000px;}
.y2c{bottom:644.820000px;}
.y7d{bottom:646.155000px;}
.y8d{bottom:648.000000px;}
.yf{bottom:653.820000px;}
.ya7{bottom:655.050000px;}
.y81{bottom:655.155000px;}
.y3a{bottom:665.100000px;}
.y8e{bottom:674.025000px;}
.yf9{bottom:674.070000px;}
.yec{bottom:675.195000px;}
.y80{bottom:679.950000px;}
.y36{bottom:683.175000px;}
.y105{bottom:690.525000px;}
.y133{bottom:691.350000px;}
.ya4{bottom:692.400000px;}
.y112{bottom:693.000000px;}
.ya6{bottom:695.325000px;}
.y39{bottom:696.150000px;}
.y8c{bottom:698.700000px;}
.y35{bottom:703.650000px;}
.y7f{bottom:704.745000px;}
.yb7{bottom:712.650000px;}
.y120{bottom:713.250000px;}
.y7c{bottom:717.120000px;}
.yea{bottom:721.095000px;}
.ya3{bottom:721.695000px;}
.y98{bottom:728.445000px;}
.y7e{bottom:730.650000px;}
.y6e{bottom:738.525000px;}
.ya2{bottom:749.850000px;}
.yb6{bottom:770.955000px;}
.yeb{bottom:784.320000px;}
.h28{height:53.231763px;}
.h59{height:55.918213px;}
.h2d{height:56.441162px;}
.h26{height:60.367676px;}
.h25{height:60.473584px;}
.h52{height:62.496826px;}
.h53{height:62.606470px;}
.h32{height:63.191968px;}
.h41{height:69.185083px;}
.h40{height:71.172363px;}
.h12{height:71.613281px;}
.h11{height:71.762476px;}
.h10{height:73.876245px;}
.h47{height:74.770752px;}
.h15{height:74.901929px;}
.h21{height:79.537061px;}
.h24{height:79.642969px;}
.h5f{height:80.986500px;}
.h5e{height:81.115050px;}
.h4d{height:82.772534px;}
.h7{height:83.790000px;}
.h9{height:83.929650px;}
.h4b{height:85.189966px;}
.h6{height:85.680000px;}
.h8{height:85.822800px;}
.h58{height:88.828050px;}
.h5d{height:91.603050px;}
.h4c{height:93.992432px;}
.h49{height:94.141626px;}
.hc{height:94.578442px;}
.h54{height:95.414550px;}
.h55{height:96.541050px;}
.h43{height:98.644922px;}
.h5c{height:98.681400px;}
.h57{height:103.037550px;}
.h20{height:104.254050px;}
.h1f{height:104.382600px;}
.h29{height:105.367456px;}
.h2c{height:105.477100px;}
.h3{height:107.535900px;}
.h3f{height:107.569116px;}
.h1{height:107.647800px;}
.h2a{height:108.394043px;}
.h2b{height:108.506836px;}
.hb{height:110.737573px;}
.h45{height:112.044946px;}
.h56{height:112.194141px;}
.h44{height:115.345239px;}
.h46{height:115.498828px;}
.h2{height:115.788900px;}
.h22{height:118.283550px;}
.h1d{height:118.410600px;}
.h1e{height:119.680050px;}
.h23{height:119.808600px;}
.h1b{height:123.536550px;}
.h1c{height:123.665100px;}
.h4a{height:124.560571px;}
.h5b{height:124.714160px;}
.h35{height:125.472437px;}
.h51{height:125.621631px;}
.h37{height:129.718050px;}
.h4f{height:129.948267px;}
.h50{height:130.097461px;}
.h38{height:131.378100px;}
.h27{height:141.659473px;}
.h42{height:143.375757px;}
.h3e{height:143.524951px;}
.h5a{height:145.737378px;}
.h33{height:147.598901px;}
.h34{height:147.752490px;}
.h2f{height:147.851587px;}
.h2e{height:148.000781px;}
.h4e{height:152.360156px;}
.h3a{height:156.803247px;}
.h3b{height:156.952441px;}
.h19{height:161.428271px;}
.h39{height:165.958050px;}
.h13{height:166.029565px;}
.ha{height:166.086600px;}
.h14{height:166.183154px;}
.h36{height:170.790820px;}
.hf{height:183.658228px;}
.hd{height:183.807422px;}
.he{height:189.221484px;}
.h3c{height:197.085718px;}
.h48{height:197.234912px;}
.h18{height:237.309565px;}
.h1a{height:241.195050px;}
.h30{height:264.372363px;}
.h31{height:264.521558px;}
.h5{height:274.461600px;}
.h4{height:274.604400px;}
.h60{height:297.450000px;}
.h17{height:358.513989px;}
.h16{height:358.663184px;}
.h3d{height:413.385718px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2e{left:10.799979px;}
.x4f{left:13.012479px;}
.x16{left:16.949979px;}
.x67{left:22.649979px;}
.x2{left:27.899979px;}
.x17{left:37.012479px;}
.x68{left:49.762479px;}
.x43{left:55.087479px;}
.x23{left:59.924979px;}
.x6c{left:61.799979px;}
.x24{left:63.524979px;}
.x1{left:65.812479px;}
.x1c{left:76.162479px;}
.x51{left:82.612479px;}
.x30{left:86.062479px;}
.x3c{left:89.287479px;}
.x6d{left:90.299979px;}
.x2f{left:92.062479px;}
.x52{left:97.649979px;}
.x76{left:99.262479px;}
.x25{left:102.224979px;}
.x1b{left:109.874979px;}
.x4{left:112.312479px;}
.x6a{left:115.837479px;}
.x19{left:119.062479px;}
.x18{left:120.562479px;}
.x57{left:130.199979px;}
.x28{left:134.249979px;}
.x53{left:136.649979px;}
.x77{left:139.799979px;}
.x7c{left:146.099979px;}
.x9{left:153.104979px;}
.x6b{left:157.874979px;}
.x78{left:193.844979px;}
.x35{left:195.449979px;}
.x74{left:197.069979px;}
.x36{left:209.144979px;}
.x8{left:225.194979px;}
.x2d{left:255.674979px;}
.x4a{left:272.069979px;}
.x5f{left:328.529979px;}
.x4b{left:334.844979px;}
.x73{left:338.654979px;}
.x5a{left:352.154979px;}
.x46{left:355.049979px;}
.x47{left:356.924979px;}
.x5e{left:359.654979px;}
.x59{left:384.404979px;}
.x5d{left:410.174979px;}
.x7e{left:415.904979px;}
.x58{left:429.254979px;}
.x71{left:433.019979px;}
.x60{left:439.229979px;}
.x7d{left:447.374979px;}
.x45{left:460.094979px;}
.x44{left:470.144979px;}
.x3{left:474.599979px;}
.x72{left:485.474979px;}
.x5b{left:492.119979px;}
.x49{left:521.879979px;}
.x31{left:532.079979px;}
.xd{left:562.919979px;}
.xc{left:578.099979px;}
.x32{left:585.194979px;}
.x65{left:589.154979px;}
.xb{left:594.704979px;}
.xe{left:598.394979px;}
.x75{left:605.624979px;}
.xa{left:607.274979px;}
.x66{left:615.074979px;}
.x6f{left:667.994979px;}
.x2a{left:685.754979px;}
.x70{left:700.874979px;}
.x6e{left:727.904979px;}
.x3b{left:738.299979px;}
.x3e{left:747.299979px;}
.x29{left:751.649979px;}
.x5c{left:757.574979px;}
.x61{left:759.194979px;}
.x26{left:771.494979px;}
.x3f{left:792.329979px;}
.x40{left:806.774979px;}
.x27{left:810.194979px;}
.x3a{left:818.549979px;}
.x1d{left:820.079979px;}
.x37{left:821.774979px;}
.x39{left:830.594979px;}
.x64{left:835.919979px;}
.x63{left:839.774979px;}
.x5{left:845.849979px;}
.x38{left:851.879979px;}
.x4c{left:877.004979px;}
.x1a{left:881.774979px;}
.x4d{left:904.394979px;}
.x55{left:945.899979px;}
.x56{left:950.579979px;}
.x4e{left:952.874979px;}
.x48{left:962.924979px;}
.x7{left:973.094979px;}
.x10{left:982.949979px;}
.x13{left:985.844979px;}
.x1e{left:1007.699979px;}
.x33{left:1010.399979px;}
.x11{left:1012.319979px;}
.x20{left:1014.944979px;}
.xf{left:1022.729979px;}
.x12{left:1027.049979px;}
.x3d{left:1029.029979px;}
.x6{left:1034.699979px;}
.x15{left:1047.044979px;}
.x14{left:1050.419979px;}
.x1f{left:1052.654979px;}
.x2b{left:1070.144979px;}
.x22{left:1073.594979px;}
.x54{left:1078.829979px;}
.x41{left:1085.654979px;}
.x21{left:1094.879979px;}
.x34{left:1103.549979px;}
.x2c{left:1107.869979px;}
.x42{left:1130.774979px;}
.x62{left:1163.954979px;}
.x50{left:1166.924979px;}
.x69{left:1187.399979px;}
.x79{left:1196.294979px;}
.x7a{left:1200.779979px;}
.x7b{left:1219.469979px;}
@media print{
.v2{vertical-align:-40.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.160000pt;}
.v3{vertical-align:48.106667pt;}
.v4{vertical-align:63.360000pt;}
.v5{vertical-align:105.866667pt;}
.v6{vertical-align:192.266667pt;}
.lsa{letter-spacing:-1.680000pt;}
.lsb{letter-spacing:-1.466667pt;}
.ls5{letter-spacing:-1.189333pt;}
.ls9{letter-spacing:-0.091200pt;}
.lsc{letter-spacing:-0.039573pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.351467pt;}
.lsf{letter-spacing:0.504800pt;}
.ls4{letter-spacing:0.714667pt;}
.ls3{letter-spacing:0.848000pt;}
.ls6{letter-spacing:1.184000pt;}
.ls1{letter-spacing:1.744000pt;}
.ls2{letter-spacing:1.973333pt;}
.ls12{letter-spacing:23.626933pt;}
.ls10{letter-spacing:24.635200pt;}
.ls8{letter-spacing:80.996267pt;}
.ls7{letter-spacing:82.991467pt;}
.ls1d{letter-spacing:86.068800pt;}
.ls14{letter-spacing:87.850133pt;}
.ls16{letter-spacing:87.983467pt;}
.ls15{letter-spacing:88.064000pt;}
.ls1f{letter-spacing:90.686667pt;}
.ls20{letter-spacing:90.733333pt;}
.ls1e{letter-spacing:91.286667pt;}
.ls1b{letter-spacing:106.240000pt;}
.ls18{letter-spacing:106.286667pt;}
.ls11{letter-spacing:109.086667pt;}
.ls13{letter-spacing:110.353333pt;}
.ls1a{letter-spacing:111.486667pt;}
.ls19{letter-spacing:111.620000pt;}
.ls1c{letter-spacing:111.886667pt;}
.lse{letter-spacing:115.213333pt;}
.lsd{letter-spacing:115.260000pt;}
.wsb{word-spacing:-72.410400pt;}
.ws1a{word-spacing:-39.806133pt;}
.ws6{word-spacing:-37.124267pt;}
.ws15{word-spacing:-35.621067pt;}
.ws0{word-spacing:-35.314933pt;}
.ws17{word-spacing:-33.508267pt;}
.wsa{word-spacing:-32.604267pt;}
.ws23{word-spacing:-29.892267pt;}
.ws18{word-spacing:-29.297333pt;}
.ws16{word-spacing:-28.958133pt;}
.wse{word-spacing:-27.548667pt;}
.ws14{word-spacing:-26.688667pt;}
.ws31{word-spacing:-26.395467pt;}
.ws2f{word-spacing:-26.234933pt;}
.ws10{word-spacing:-25.571467pt;}
.ws1d{word-spacing:-24.438133pt;}
.ws1c{word-spacing:-22.660267pt;}
.ws1b{word-spacing:-22.630133pt;}
.ws2a{word-spacing:-22.275467pt;}
.ws20{word-spacing:-22.077600pt;}
.ws3{word-spacing:-21.726133pt;}
.ws26{word-spacing:-21.528667pt;}
.ws24{word-spacing:-21.128000pt;}
.ws29{word-spacing:-20.627467pt;}
.ws22{word-spacing:-19.014133pt;}
.ws2b{word-spacing:-18.904000pt;}
.ws30{word-spacing:-18.088667pt;}
.ws1f{word-spacing:-17.206133pt;}
.ws9{word-spacing:-15.648000pt;}
.ws7{word-spacing:-14.494133pt;}
.ws8{word-spacing:-14.464000pt;}
.ws2d{word-spacing:-1.647733pt;}
.ws4{word-spacing:-0.593067pt;}
.ws5{word-spacing:-0.509867pt;}
.ws21{word-spacing:-0.250000pt;}
.ws27{word-spacing:-0.232400pt;}
.ws2c{word-spacing:-0.187333pt;}
.ws11{word-spacing:-0.100267pt;}
.wsf{word-spacing:-0.100133pt;}
.ws12{word-spacing:-0.076133pt;}
.ws13{word-spacing:-0.076000pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.197867pt;}
.wsc{word-spacing:0.280000pt;}
.ws2e{word-spacing:0.548267pt;}
.ws1e{word-spacing:1.661200pt;}
.ws25{word-spacing:1.957200pt;}
.ws1{word-spacing:7.054000pt;}
.wsd{word-spacing:185.946133pt;}
.ws19{word-spacing:1689.583467pt;}
._c{margin-left:-5.235600pt;}
._4{margin-left:-4.159867pt;}
._2{margin-left:-2.950133pt;}
._0{margin-left:-1.667467pt;}
._1{width:1.026133pt;}
._3{width:2.052267pt;}
._5{width:3.205467pt;}
._6{width:4.594933pt;}
._b{width:5.597867pt;}
._d{width:20.661333pt;}
._e{width:22.616533pt;}
._8{width:23.757600pt;}
._a{width:27.076533pt;}
._9{width:28.555333pt;}
._7{width:322.634133pt;}
.fsd{font-size:64.000000pt;}
.fsc{font-size:64.133333pt;}
.fs1d{font-size:68.000000pt;}
.fs1c{font-size:76.000000pt;}
.fs11{font-size:76.133333pt;}
.fs5{font-size:80.000000pt;}
.fs6{font-size:80.133333pt;}
.fs28{font-size:84.000000pt;}
.fs2{font-size:84.133333pt;}
.fs2c{font-size:92.133333pt;}
.fs8{font-size:96.133333pt;}
.fs1a{font-size:100.133333pt;}
.fs1b{font-size:100.266667pt;}
.fs19{font-size:108.133333pt;}
.fs18{font-size:108.266667pt;}
.fsb{font-size:112.133333pt;}
.fs2b{font-size:112.266667pt;}
.fs29{font-size:116.133333pt;}
.fs2a{font-size:116.266667pt;}
.fs17{font-size:124.133333pt;}
.fs16{font-size:124.266667pt;}
.fs1{font-size:128.133333pt;}
.fs0{font-size:128.266667pt;}
.fse{font-size:132.133333pt;}
.fs1e{font-size:132.266667pt;}
.fs22{font-size:136.133333pt;}
.fs23{font-size:136.266667pt;}
.fs25{font-size:140.133333pt;}
.fs26{font-size:140.266667pt;}
.fsf{font-size:144.133333pt;}
.fs10{font-size:144.266667pt;}
.fs2d{font-size:148.133333pt;}
.fs21{font-size:148.266667pt;}
.fsa{font-size:164.133333pt;}
.fs9{font-size:164.266667pt;}
.fs24{font-size:172.133333pt;}
.fs7{font-size:172.266667pt;}
.fs27{font-size:176.133333pt;}
.fs14{font-size:176.266667pt;}
.fs15{font-size:188.133333pt;}
.fs1f{font-size:236.266667pt;}
.fs20{font-size:236.400000pt;}
.fs4{font-size:256.266667pt;}
.fs3{font-size:256.400000pt;}
.fs13{font-size:320.400000pt;}
.fs12{font-size:320.533333pt;}
.fs2e{font-size:352.533333pt;}
.y6d{bottom:-0.933347pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:5.200000pt;}
.y2b{bottom:5.866667pt;}
.y6f{bottom:8.400000pt;}
.yb5{bottom:10.000000pt;}
.y32{bottom:10.100000pt;}
.y104{bottom:10.966667pt;}
.y102{bottom:12.466667pt;}
.ye2{bottom:19.300000pt;}
.y2a{bottom:24.900000pt;}
.y6c{bottom:28.100000pt;}
.y8b{bottom:34.066667pt;}
.yd0{bottom:41.300000pt;}
.y78{bottom:43.233333pt;}
.ye5{bottom:44.266667pt;}
.y99{bottom:48.100000pt;}
.y9d{bottom:48.366667pt;}
.ye{bottom:49.266667pt;}
.y2d{bottom:51.900000pt;}
.yb4{bottom:54.533333pt;}
.y13f{bottom:60.400000pt;}
.y6b{bottom:62.133333pt;}
.y74{bottom:62.933333pt;}
.y8a{bottom:65.100000pt;}
.ycf{bottom:67.333333pt;}
.y12e{bottom:67.866667pt;}
.y57{bottom:69.766667pt;}
.yd{bottom:73.300000pt;}
.y10a{bottom:75.066667pt;}
.y110{bottom:76.200000pt;}
.y97{bottom:76.433333pt;}
.y118{bottom:77.233333pt;}
.y11e{bottom:78.366667pt;}
.y62{bottom:78.433333pt;}
.y77{bottom:81.300000pt;}
.ye1{bottom:82.000000pt;}
.y1c{bottom:83.233333pt;}
.yf8{bottom:83.433333pt;}
.y88{bottom:87.133333pt;}
.yb3{bottom:88.566667pt;}
.y6a{bottom:91.166667pt;}
.y89{bottom:95.133333pt;}
.y19{bottom:96.433333pt;}
.yc{bottom:97.333333pt;}
.y12d{bottom:97.900000pt;}
.y13e{bottom:98.433333pt;}
.y56{bottom:99.833333pt;}
.ydc{bottom:100.000000pt;}
.y61{bottom:100.466667pt;}
.y73{bottom:101.000000pt;}
.yce{bottom:110.400000pt;}
.y1b{bottom:112.266667pt;}
.ye0{bottom:116.033333pt;}
.yf7{bottom:116.500000pt;}
.y76{bottom:119.333333pt;}
.y87{bottom:122.166667pt;}
.y60{bottom:122.466667pt;}
.yb2{bottom:123.633333pt;}
.y96{bottom:124.500000pt;}
.y18{bottom:125.466667pt;}
.y55{bottom:130.866667pt;}
.ydb{bottom:135.066667pt;}
.y13d{bottom:136.493333pt;}
.y72{bottom:140.026667pt;}
.y1a{bottom:140.293333pt;}
.y5f{bottom:144.493333pt;}
.yb{bottom:145.360000pt;}
.y109{bottom:148.933333pt;}
.ydf{bottom:149.066667pt;}
.y117{bottom:151.106667pt;}
.y10f{bottom:151.933333pt;}
.ycd{bottom:153.400000pt;}
.y17{bottom:153.533333pt;}
.y11d{bottom:154.106667pt;}
.y75{bottom:158.400000pt;}
.yf6{bottom:158.533333pt;}
.y52{bottom:159.600000pt;}
.y54{bottom:160.893333pt;}
.y12c{bottom:161.000000pt;}
.y29{bottom:162.906667pt;}
.y69{bottom:164.266667pt;}
.y101{bottom:166.560000pt;}
.y5e{bottom:167.533333pt;}
.ya{bottom:169.400000pt;}
.y3{bottom:170.160000pt;}
.yda{bottom:171.106667pt;}
.y95{bottom:171.560000pt;}
.y86{bottom:171.840000pt;}
.y13c{bottom:175.560000pt;}
.ycc{bottom:179.440000pt;}
.yde{bottom:183.133333pt;}
.y51{bottom:188.640000pt;}
.y5d{bottom:189.560000pt;}
.y12b{bottom:190.040000pt;}
.y53{bottom:191.933333pt;}
.yf5{bottom:192.600000pt;}
.yb1{bottom:192.706667pt;}
.y9f{bottom:193.440000pt;}
.y48{bottom:195.226667pt;}
.y4a{bottom:196.106667pt;}
.ya1{bottom:198.173333pt;}
.y100{bottom:198.600000pt;}
.y68{bottom:203.333333pt;}
.ycb{bottom:205.466667pt;}
.y85{bottom:206.893333pt;}
.ya5{bottom:207.866667pt;}
.y28{bottom:207.933333pt;}
.y22{bottom:208.306667pt;}
.y5c{bottom:211.600000pt;}
.y13b{bottom:213.600000pt;}
.yb0{bottom:213.733333pt;}
.y9{bottom:217.466667pt;}
.y2{bottom:218.226667pt;}
.y12a{bottom:219.066667pt;}
.y108{bottom:220.173333pt;}
.y116{bottom:222.333333pt;}
.y9e{bottom:222.466667pt;}
.y50{bottom:222.666667pt;}
.yf4{bottom:225.626667pt;}
.ya0{bottom:227.226667pt;}
.y10e{bottom:227.640000pt;}
.yff{bottom:229.640000pt;}
.y11c{bottom:229.840000pt;}
.yca{bottom:230.506667pt;}
.yd9{bottom:231.200000pt;}
.ydd{bottom:232.200000pt;}
.y5b{bottom:234.626667pt;}
.ye9{bottom:240.000000pt;}
.y67{bottom:241.400000pt;}
.y8{bottom:241.506667pt;}
.y46{bottom:245.693333pt;}
.yaf{bottom:248.800000pt;}
.y132{bottom:249.426667pt;}
.y4f{bottom:251.693333pt;}
.yc0{bottom:252.133333pt;}
.y1{bottom:252.306667pt;}
.y21{bottom:252.360000pt;}
.y13a{bottom:252.666667pt;}
.y27{bottom:253.000000pt;}
.y5a{bottom:256.666667pt;}
.yfe{bottom:260.693333pt;}
.y49{bottom:261.026667pt;}
.y47{bottom:261.866667pt;}
.y94{bottom:266.693333pt;}
.y84{bottom:266.800000pt;}
.yc9{bottom:273.560000pt;}
.ybf{bottom:274.173333pt;}
.y45{bottom:274.733333pt;}
.y59{bottom:278.693333pt;}
.y131{bottom:279.466667pt;}
.y129{bottom:283.173333pt;}
.yae{bottom:283.840000pt;}
.y4e{bottom:286.760000pt;}
.y16{bottom:287.173333pt;}
.y143{bottom:287.893333pt;}
.y107{bottom:289.000000pt;}
.y7{bottom:289.560000pt;}
.y139{bottom:290.693333pt;}
.y115{bottom:291.200000pt;}
.y34{bottom:292.893333pt;}
.ye4{bottom:294.466667pt;}
.y26{bottom:297.066667pt;}
.ybe{bottom:297.200000pt;}
.y20{bottom:297.426667pt;}
.yf3{bottom:300.733333pt;}
.y58{bottom:301.733333pt;}
.y83{bottom:301.866667pt;}
.y10d{bottom:303.360000pt;}
.y11b{bottom:305.533333pt;}
.y44{bottom:308.800000pt;}
.y130{bottom:309.506667pt;}
.y128{bottom:312.200000pt;}
.y6{bottom:313.600000pt;}
.y103{bottom:313.760000pt;}
.y93{bottom:314.773333pt;}
.y15{bottom:316.200000pt;}
.yc8{bottom:317.293333pt;}
.yad{bottom:317.893333pt;}
.y66{bottom:318.506667pt;}
.y4d{bottom:325.840000pt;}
.ye8{bottom:326.093333pt;}
.y138{bottom:328.760000pt;}
.yf2{bottom:334.800000pt;}
.y43{bottom:337.840000pt;}
.y12f{bottom:338.533333pt;}
.yfd{bottom:339.800000pt;}
.y127{bottom:340.226667pt;}
.y25{bottom:342.133333pt;}
.y1f{bottom:342.506667pt;}
.yc7{bottom:343.333333pt;}
.yd4{bottom:344.640000pt;}
.y14{bottom:345.266667pt;}
.yd8{bottom:345.840000pt;}
.y31{bottom:349.306667pt;}
.y82{bottom:351.026667pt;}
.y65{bottom:357.533333pt;}
.y92{bottom:361.840000pt;}
.ye6{bottom:366.533333pt;}
.y137{bottom:367.840000pt;}
.yf1{bottom:368.840000pt;}
.y126{bottom:369.266667pt;}
.yc6{bottom:369.360000pt;}
.y42{bottom:371.866667pt;}
.yc3{bottom:372.106667pt;}
.y1d{bottom:373.306667pt;}
.y111{bottom:373.693333pt;}
.yac{bottom:373.973333pt;}
.y13{bottom:374.306667pt;}
.y113{bottom:375.906667pt;}
.y10c{bottom:379.106667pt;}
.yd3{bottom:379.693333pt;}
.y33{bottom:380.040000pt;}
.yd7{bottom:380.893333pt;}
.y11a{bottom:381.266667pt;}
.y1e{bottom:386.560000pt;}
.y24{bottom:387.200000pt;}
.yc2{bottom:394.133333pt;}
.yc5{bottom:394.400000pt;}
.y125{bottom:399.293333pt;}
.y30{bottom:399.360000pt;}
.y41{bottom:399.933333pt;}
.y4c{bottom:401.933333pt;}
.yfc{bottom:403.893333pt;}
.y136{bottom:405.866667pt;}
.y3e{bottom:406.973333pt;}
.y9c{bottom:408.000000pt;}
.y91{bottom:408.893333pt;}
.yab{bottom:409.000000pt;}
.yf0{bottom:409.893333pt;}
.ye7{bottom:413.226667pt;}
.yd2{bottom:415.733333pt;}
.yd6{bottom:415.933333pt;}
.yc1{bottom:417.173333pt;}
.y7b{bottom:419.773333pt;}
.y23{bottom:431.266667pt;}
.y64{bottom:434.666667pt;}
.y40{bottom:435.960000pt;}
.yc4{bottom:437.466667pt;}
.y4b{bottom:440.973333pt;}
.yaa{bottom:444.066667pt;}
.y135{bottom:444.933333pt;}
.y2f{bottom:448.440000pt;}
.yef{bottom:450.960000pt;}
.y10b{bottom:454.800000pt;}
.y7a{bottom:455.840000pt;}
.y9b{bottom:456.066667pt;}
.y90{bottom:456.960000pt;}
.y119{bottom:457.000000pt;}
.y114{bottom:459.133333pt;}
.y3d{bottom:461.040000pt;}
.y124{bottom:462.400000pt;}
.y12{bottom:463.733333pt;}
.y5{bottom:468.840000pt;}
.y63{bottom:472.693333pt;}
.y3f{bottom:474.026667pt;}
.yd1{bottom:475.840000pt;}
.yd5{bottom:476.040000pt;}
.yee{bottom:478.000000pt;}
.ya9{bottom:478.106667pt;}
.y141{bottom:481.533333pt;}
.ybb{bottom:481.973333pt;}
.yfb{bottom:487.000000pt;}
.ybd{bottom:489.466667pt;}
.y123{bottom:491.440000pt;}
.y11{bottom:492.773333pt;}
.y2e{bottom:498.506667pt;}
.y3c{bottom:499.066667pt;}
.y8f{bottom:504.026667pt;}
.yba{bottom:507.000000pt;}
.y134{bottom:508.000000pt;}
.y142{bottom:511.026667pt;}
.ya8{bottom:513.173333pt;}
.yfa{bottom:514.026667pt;}
.yed{bottom:518.040000pt;}
.y71{bottom:519.293333pt;}
.y122{bottom:520.466667pt;}
.y140{bottom:520.600000pt;}
.y10{bottom:520.800000pt;}
.yb9{bottom:533.026667pt;}
.y106{bottom:534.200000pt;}
.y11f{bottom:536.360000pt;}
.ybc{bottom:536.533333pt;}
.y38{bottom:538.173333pt;}
.y4{bottom:545.960000pt;}
.ye3{bottom:546.293333pt;}
.y9a{bottom:548.840000pt;}
.y121{bottom:549.533333pt;}
.y3b{bottom:553.173333pt;}
.y70{bottom:558.333333pt;}
.y37{bottom:572.200000pt;}
.yb8{bottom:573.066667pt;}
.y2c{bottom:573.173333pt;}
.y7d{bottom:574.360000pt;}
.y8d{bottom:576.000000pt;}
.yf{bottom:581.173333pt;}
.ya7{bottom:582.266667pt;}
.y81{bottom:582.360000pt;}
.y3a{bottom:591.200000pt;}
.y8e{bottom:599.133333pt;}
.yf9{bottom:599.173333pt;}
.yec{bottom:600.173333pt;}
.y80{bottom:604.400000pt;}
.y36{bottom:607.266667pt;}
.y105{bottom:613.800000pt;}
.y133{bottom:614.533333pt;}
.ya4{bottom:615.466667pt;}
.y112{bottom:616.000000pt;}
.ya6{bottom:618.066667pt;}
.y39{bottom:618.800000pt;}
.y8c{bottom:621.066667pt;}
.y35{bottom:625.466667pt;}
.y7f{bottom:626.440000pt;}
.yb7{bottom:633.466667pt;}
.y120{bottom:634.000000pt;}
.y7c{bottom:637.440000pt;}
.yea{bottom:640.973333pt;}
.ya3{bottom:641.506667pt;}
.y98{bottom:647.506667pt;}
.y7e{bottom:649.466667pt;}
.y6e{bottom:656.466667pt;}
.ya2{bottom:666.533333pt;}
.yb6{bottom:685.293333pt;}
.yeb{bottom:697.173333pt;}
.h28{height:47.317122pt;}
.h59{height:49.705078pt;}
.h2d{height:50.169922pt;}
.h26{height:53.660156pt;}
.h25{height:53.754297pt;}
.h52{height:55.552734pt;}
.h53{height:55.650195pt;}
.h32{height:56.170638pt;}
.h41{height:61.497852pt;}
.h40{height:63.264323pt;}
.h12{height:63.656250pt;}
.h11{height:63.788867pt;}
.h10{height:65.667773pt;}
.h47{height:66.462891pt;}
.h15{height:66.579492pt;}
.h21{height:70.699609pt;}
.h24{height:70.793750pt;}
.h5f{height:71.988000pt;}
.h5e{height:72.102267pt;}
.h4d{height:73.575586pt;}
.h7{height:74.480000pt;}
.h9{height:74.604133pt;}
.h4b{height:75.724414pt;}
.h6{height:76.160000pt;}
.h8{height:76.286933pt;}
.h58{height:78.958267pt;}
.h5d{height:81.424933pt;}
.h4c{height:83.548828pt;}
.h49{height:83.681445pt;}
.hc{height:84.069727pt;}
.h54{height:84.812933pt;}
.h55{height:85.814267pt;}
.h43{height:87.684375pt;}
.h5c{height:87.716800pt;}
.h57{height:91.588933pt;}
.h20{height:92.670267pt;}
.h1f{height:92.784533pt;}
.h29{height:93.659961pt;}
.h2c{height:93.757422pt;}
.h3{height:95.587467pt;}
.h3f{height:95.616992pt;}
.h1{height:95.686933pt;}
.h2a{height:96.350260pt;}
.h2b{height:96.450521pt;}
.hb{height:98.433398pt;}
.h45{height:99.595508pt;}
.h56{height:99.728125pt;}
.h44{height:102.529102pt;}
.h46{height:102.665625pt;}
.h2{height:102.923467pt;}
.h22{height:105.140933pt;}
.h1d{height:105.253867pt;}
.h1e{height:106.382267pt;}
.h23{height:106.496533pt;}
.h1b{height:109.810267pt;}
.h1c{height:109.924533pt;}
.h4a{height:110.720508pt;}
.h5b{height:110.857031pt;}
.h35{height:111.531055pt;}
.h51{height:111.663672pt;}
.h37{height:115.304933pt;}
.h4f{height:115.509570pt;}
.h50{height:115.642188pt;}
.h38{height:116.780533pt;}
.h27{height:125.919531pt;}
.h42{height:127.445117pt;}
.h3e{height:127.577734pt;}
.h5a{height:129.544336pt;}
.h33{height:131.199023pt;}
.h34{height:131.335547pt;}
.h2f{height:131.423633pt;}
.h2e{height:131.556250pt;}
.h4e{height:135.431250pt;}
.h3a{height:139.380664pt;}
.h3b{height:139.513281pt;}
.h19{height:143.491797pt;}
.h39{height:147.518267pt;}
.h13{height:147.581836pt;}
.ha{height:147.632533pt;}
.h14{height:147.718359pt;}
.h36{height:151.814063pt;}
.hf{height:163.251758pt;}
.hd{height:163.384375pt;}
.he{height:168.196875pt;}
.h3c{height:175.187305pt;}
.h48{height:175.319922pt;}
.h18{height:210.941836pt;}
.h1a{height:214.395600pt;}
.h30{height:234.997656pt;}
.h31{height:235.130273pt;}
.h5{height:243.965867pt;}
.h4{height:244.092800pt;}
.h60{height:264.400000pt;}
.h17{height:318.679102pt;}
.h16{height:318.811719pt;}
.h3d{height:367.453971pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:9.599981pt;}
.x4f{left:11.566648pt;}
.x16{left:15.066648pt;}
.x67{left:20.133314pt;}
.x2{left:24.799981pt;}
.x17{left:32.899981pt;}
.x68{left:44.233314pt;}
.x43{left:48.966648pt;}
.x23{left:53.266648pt;}
.x6c{left:54.933314pt;}
.x24{left:56.466648pt;}
.x1{left:58.499981pt;}
.x1c{left:67.699981pt;}
.x51{left:73.433314pt;}
.x30{left:76.499981pt;}
.x3c{left:79.366648pt;}
.x6d{left:80.266648pt;}
.x2f{left:81.833314pt;}
.x52{left:86.799981pt;}
.x76{left:88.233314pt;}
.x25{left:90.866648pt;}
.x1b{left:97.666648pt;}
.x4{left:99.833314pt;}
.x6a{left:102.966648pt;}
.x19{left:105.833314pt;}
.x18{left:107.166648pt;}
.x57{left:115.733314pt;}
.x28{left:119.333314pt;}
.x53{left:121.466648pt;}
.x77{left:124.266648pt;}
.x7c{left:129.866648pt;}
.x9{left:136.093314pt;}
.x6b{left:140.333314pt;}
.x78{left:172.306648pt;}
.x35{left:173.733314pt;}
.x74{left:175.173314pt;}
.x36{left:185.906648pt;}
.x8{left:200.173314pt;}
.x2d{left:227.266648pt;}
.x4a{left:241.839981pt;}
.x5f{left:292.026648pt;}
.x4b{left:297.639981pt;}
.x73{left:301.026648pt;}
.x5a{left:313.026648pt;}
.x46{left:315.599981pt;}
.x47{left:317.266648pt;}
.x5e{left:319.693314pt;}
.x59{left:341.693314pt;}
.x5d{left:364.599981pt;}
.x7e{left:369.693314pt;}
.x58{left:381.559981pt;}
.x71{left:384.906648pt;}
.x60{left:390.426648pt;}
.x7d{left:397.666648pt;}
.x45{left:408.973314pt;}
.x44{left:417.906648pt;}
.x3{left:421.866648pt;}
.x72{left:431.533314pt;}
.x5b{left:437.439981pt;}
.x49{left:463.893314pt;}
.x31{left:472.959981pt;}
.xd{left:500.373314pt;}
.xc{left:513.866648pt;}
.x32{left:520.173314pt;}
.x65{left:523.693314pt;}
.xb{left:528.626648pt;}
.xe{left:531.906648pt;}
.x75{left:538.333314pt;}
.xa{left:539.799981pt;}
.x66{left:546.733314pt;}
.x6f{left:593.773314pt;}
.x2a{left:609.559981pt;}
.x70{left:622.999981pt;}
.x6e{left:647.026648pt;}
.x3b{left:656.266648pt;}
.x3e{left:664.266648pt;}
.x29{left:668.133314pt;}
.x5c{left:673.399981pt;}
.x61{left:674.839981pt;}
.x26{left:685.773314pt;}
.x3f{left:704.293314pt;}
.x40{left:717.133314pt;}
.x27{left:720.173314pt;}
.x3a{left:727.599981pt;}
.x1d{left:728.959981pt;}
.x37{left:730.466648pt;}
.x39{left:738.306648pt;}
.x64{left:743.039981pt;}
.x63{left:746.466648pt;}
.x5{left:751.866648pt;}
.x38{left:757.226648pt;}
.x4c{left:779.559981pt;}
.x1a{left:783.799981pt;}
.x4d{left:803.906648pt;}
.x55{left:840.799981pt;}
.x56{left:844.959981pt;}
.x4e{left:846.999981pt;}
.x48{left:855.933314pt;}
.x7{left:864.973314pt;}
.x10{left:873.733314pt;}
.x13{left:876.306648pt;}
.x1e{left:895.733314pt;}
.x33{left:898.133314pt;}
.x11{left:899.839981pt;}
.x20{left:902.173314pt;}
.xf{left:909.093314pt;}
.x12{left:912.933314pt;}
.x3d{left:914.693314pt;}
.x6{left:919.733314pt;}
.x15{left:930.706648pt;}
.x14{left:933.706648pt;}
.x1f{left:935.693314pt;}
.x2b{left:951.239981pt;}
.x22{left:954.306648pt;}
.x54{left:958.959981pt;}
.x41{left:965.026648pt;}
.x21{left:973.226648pt;}
.x34{left:980.933314pt;}
.x2c{left:984.773314pt;}
.x42{left:1005.133314pt;}
.x62{left:1034.626648pt;}
.x50{left:1037.266648pt;}
.x69{left:1055.466648pt;}
.x79{left:1063.373314pt;}
.x7a{left:1067.359981pt;}
.x7b{left:1083.973314pt;}
}




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