
    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_f7bffde269e4439f31b541c1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4a377b5189aa5fd7d4e6a807.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_951198e5be1a58d69ca818c8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_59c517336c79b347652981a6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_eb01009bb04dd6acd41053bf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_d1e9d645851fbb38b8c60960.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_15010d489c3323857ccaf122.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5524b79e796088ccff8684d6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.972027;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_bf18c172f0589e9c0cd566a7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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_793b9fcb7c8c2263f3b6f173.woff')format("woff");}.ffa{font-family:ffa;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;}
.m16{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);}
.mb{transform:matrix(0.219482,0.119697,-0.119697,0.219482,0,0);-ms-transform:matrix(0.219482,0.119697,-0.119697,0.219482,0,0);-webkit-transform:matrix(0.219482,0.119697,-0.119697,0.219482,0,0);}
.ma{transform:matrix(0.225543,0.107845,-0.107845,0.225543,0,0);-ms-transform:matrix(0.225543,0.107845,-0.107845,0.225543,0,0);-webkit-transform:matrix(0.225543,0.107845,-0.107845,0.225543,0,0);}
.mc{transform:matrix(0.231211,0.095088,-0.095088,0.231211,0,0);-ms-transform:matrix(0.231211,0.095088,-0.095088,0.231211,0,0);-webkit-transform:matrix(0.231211,0.095088,-0.095088,0.231211,0,0);}
.m9{transform:matrix(0.233382,0.089625,-0.089625,0.233382,0,0);-ms-transform:matrix(0.233382,0.089625,-0.089625,0.233382,0,0);-webkit-transform:matrix(0.233382,0.089625,-0.089625,0.233382,0,0);}
.md{transform:matrix(0.236525,0.080968,-0.080968,0.236525,0,0);-ms-transform:matrix(0.236525,0.080968,-0.080968,0.236525,0,0);-webkit-transform:matrix(0.236525,0.080968,-0.080968,0.236525,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m8{transform:matrix(0.237260,0.078788,-0.078788,0.237260,0,0);-ms-transform:matrix(0.237260,0.078788,-0.078788,0.237260,0,0);-webkit-transform:matrix(0.237260,0.078788,-0.078788,0.237260,0,0);}
.m7{transform:matrix(0.240320,0.068893,-0.068893,0.240320,0,0);-ms-transform:matrix(0.240320,0.068893,-0.068893,0.240320,0,0);-webkit-transform:matrix(0.240320,0.068893,-0.068893,0.240320,0,0);}
.me{transform:matrix(0.241057,0.066270,-0.066270,0.241057,0,0);-ms-transform:matrix(0.241057,0.066270,-0.066270,0.241057,0,0);-webkit-transform:matrix(0.241057,0.066270,-0.066270,0.241057,0,0);}
.m6{transform:matrix(0.243073,0.058443,-0.058443,0.243073,0,0);-ms-transform:matrix(0.243073,0.058443,-0.058443,0.243073,0,0);-webkit-transform:matrix(0.243073,0.058443,-0.058443,0.243073,0,0);}
.mf{transform:matrix(0.244259,0.053267,-0.053267,0.244259,0,0);-ms-transform:matrix(0.244259,0.053267,-0.053267,0.244259,0,0);-webkit-transform:matrix(0.244259,0.053267,-0.053267,0.244259,0,0);}
.m5{transform:matrix(0.245360,0.047942,-0.047942,0.245360,0,0);-ms-transform:matrix(0.245360,0.047942,-0.047942,0.245360,0,0);-webkit-transform:matrix(0.245360,0.047942,-0.047942,0.245360,0,0);}
.m10{transform:matrix(0.246600,0.041090,-0.041090,0.246600,0,0);-ms-transform:matrix(0.246600,0.041090,-0.041090,0.246600,0,0);-webkit-transform:matrix(0.246600,0.041090,-0.041090,0.246600,0,0);}
.m15{transform:matrix(0.247488,-0.035348,0.035348,0.247488,0,0);-ms-transform:matrix(0.247488,-0.035348,0.035348,0.247488,0,0);-webkit-transform:matrix(0.247488,-0.035348,0.035348,0.247488,0,0);}
.m4{transform:matrix(0.247786,0.033198,-0.033198,0.247786,0,0);-ms-transform:matrix(0.247786,0.033198,-0.033198,0.247786,0,0);-webkit-transform:matrix(0.247786,0.033198,-0.033198,0.247786,0,0);}
.m11{transform:matrix(0.248060,0.031087,-0.031087,0.248060,0,0);-ms-transform:matrix(0.248060,0.031087,-0.031087,0.248060,0,0);-webkit-transform:matrix(0.248060,0.031087,-0.031087,0.248060,0,0);}
.m12{transform:matrix(0.249226,0.019653,-0.019653,0.249226,0,0);-ms-transform:matrix(0.249226,0.019653,-0.019653,0.249226,0,0);-webkit-transform:matrix(0.249226,0.019653,-0.019653,0.249226,0,0);}
.m3{transform:matrix(0.249751,0.011150,-0.011150,0.249751,0,0);-ms-transform:matrix(0.249751,0.011150,-0.011150,0.249751,0,0);-webkit-transform:matrix(0.249751,0.011150,-0.011150,0.249751,0,0);}
.m13{transform:matrix(0.249870,0.008059,-0.008059,0.249870,0,0);-ms-transform:matrix(0.249870,0.008059,-0.008059,0.249870,0,0);-webkit-transform:matrix(0.249870,0.008059,-0.008059,0.249870,0,0);}
.m14{transform:matrix(0.249927,-0.006057,0.006057,0.249927,0,0);-ms-transform:matrix(0.249927,-0.006057,0.006057,0.249927,0,0);-webkit-transform:matrix(0.249927,-0.006057,0.006057,0.249927,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);}
.v4{vertical-align:-30.096000px;}
.v5{vertical-align:-28.512000px;}
.v7{vertical-align:-26.784000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.888000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:32.400000px;}
.ls13{letter-spacing:-12.600000px;}
.ls14{letter-spacing:-4.752000px;}
.ls6{letter-spacing:-0.774000px;}
.ls2d{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.349200px;}
.ls23{letter-spacing:-0.306600px;}
.ls10{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.181200px;}
.ls26{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.117600px;}
.ls1{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.053280px;}
.ls2c{letter-spacing:-0.050400px;}
.ls15{letter-spacing:-0.037440px;}
.ls11{letter-spacing:-0.028080px;}
.ls0{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000006px;}
.ls16{letter-spacing:0.018720px;}
.ls17{letter-spacing:0.026520px;}
.ls3{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.106800px;}
.ls22{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.162000px;}
.ls1b{letter-spacing:0.162600px;}
.ls21{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.305400px;}
.ls18{letter-spacing:0.365376px;}
.ls19{letter-spacing:9.684000px;}
.lse{letter-spacing:31.176000px;}
.ls27{letter-spacing:41.982048px;}
.ls28{letter-spacing:42.048000px;}
.ls24{letter-spacing:42.102048px;}
.ls25{letter-spacing:42.168000px;}
.ls20{letter-spacing:52.864128px;}
.ls1f{letter-spacing:52.930080px;}
.ls1d{letter-spacing:52.984128px;}
.ls1e{letter-spacing:53.050080px;}
.lsc{letter-spacing:58.536000px;}
.lsa{letter-spacing:153.213840px;}
.lsb{letter-spacing:170.297400px;}
.ls9{letter-spacing:171.434400px;}
.ls8{letter-spacing:191.159640px;}
.ls7{letter-spacing:218.985000px;}
.ls4{letter-spacing:283.824000px;}
.ls2e{letter-spacing:494.928000px;}
.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;}
}
.ws1d{word-spacing:-46.799880px;}
.ws13{word-spacing:-46.677312px;}
.ws2f{word-spacing:-46.637280px;}
.wsa{word-spacing:-46.328112px;}
.ws11{word-spacing:-41.673312px;}
.ws28{word-spacing:-40.072032px;}
.ws21{word-spacing:-40.032000px;}
.ws2a{word-spacing:-39.888000px;}
.ws34{word-spacing:-39.744000px;}
.ws14{word-spacing:-34.077312px;}
.wsb{word-spacing:-33.426720px;}
.ws25{word-spacing:-33.120120px;}
.wsf{word-spacing:-30.064032px;}
.ws10{word-spacing:-30.024000px;}
.ws8{word-spacing:-28.422720px;}
.ws26{word-spacing:-23.458752px;}
.ws12{word-spacing:-23.418720px;}
.ws2e{word-spacing:-23.341152px;}
.ws23{word-spacing:-20.232000px;}
.ws0{word-spacing:-20.016000px;}
.ws1f{word-spacing:-18.414720px;}
.ws19{word-spacing:-16.653312px;}
.ws5{word-spacing:-16.613280px;}
.ws3{word-spacing:-16.506480px;}
.ws1b{word-spacing:-15.174000px;}
.ws1a{word-spacing:-15.012000px;}
.ws31{word-spacing:-9.512760px;}
.ws32{word-spacing:-9.207360px;}
.ws33{word-spacing:-8.792760px;}
.wse{word-spacing:-2.656080px;}
.ws24{word-spacing:-2.544000px;}
.wsd{word-spacing:-2.430720px;}
.ws22{word-spacing:-0.995760px;}
.wsc{word-spacing:-0.281040px;}
.ws15{word-spacing:-0.252000px;}
.ws20{word-spacing:-0.084240px;}
.ws2{word-spacing:0.000000px;}
.ws30{word-spacing:0.043200px;}
.ws27{word-spacing:0.496368px;}
.ws29{word-spacing:1.296000px;}
.ws2d{word-spacing:1.452000px;}
.ws18{word-spacing:1.584000px;}
.ws2b{word-spacing:1.740000px;}
.ws2c{word-spacing:3.144000px;}
.ws1{word-spacing:7.974000px;}
.ws17{word-spacing:243.072000px;}
.ws9{word-spacing:1857.234000px;}
.ws6{word-spacing:1989.114000px;}
.ws7{word-spacing:1989.594000px;}
.ws1e{word-spacing:2127.528000px;}
.ws16{word-spacing:2379.954000px;}
.ws1c{word-spacing:2511.594000px;}
.ws4{word-spacing:2538.354000px;}
._8{margin-left:-12.592800px;}
._12{margin-left:-11.088000px;}
._7{margin-left:-9.738432px;}
._2{margin-left:-6.983280px;}
._3{margin-left:-5.147760px;}
._4{margin-left:-3.436848px;}
._1{margin-left:-1.729152px;}
._0{width:1.170000px;}
._5{width:2.298960px;}
._9{width:3.350304px;}
._6{width:4.449600px;}
._c{width:11.921376px;}
._11{width:18.628464px;}
._a{width:20.994384px;}
._b{width:22.191216px;}
._17{width:32.136384px;}
._10{width:183.156000px;}
._15{width:246.684000px;}
._16{width:310.620000px;}
._14{width:334.300080px;}
._13{width:433.740000px;}
._e{width:1321.422480px;}
._f{width:1335.862032px;}
._d{width:2220.582480px;}
.fc15{color:rgb(70,70,70);}
.fc14{color:rgb(166,168,171);}
.fc12{color:rgb(0,51,69);}
.fcd{color:rgb(98,156,106);}
.fc13{color:rgb(99,119,34);}
.fce{color:rgb(159,135,6);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(104,104,104);}
.fcf{color:rgb(166,166,166);}
.fc4{color:rgb(137,137,137);}
.fc5{color:rgb(127,127,127);}
.fc8{color:rgb(89,89,89);}
.fcb{color:rgb(148,179,51);}
.fc0{color:rgb(255,255,255);}
.fc3{color:rgb(59,152,203);}
.fc6{color:rgb(0,101,139);}
.fc11{color:rgb(217,217,217);}
.fca{color:rgb(210,174,61);}
.fc7{color:rgb(0,176,240);}
.fc10{color:rgb(255,80,80);}
.fc9{color:rgb(130,160,67);}
.fcc{color:transparent;}
.fs2f{font-size:7.200000px;}
.fs30{font-size:33.120000px;}
.fs2b{font-size:36.000000px;}
.fs7{font-size:48.240000px;}
.fs2e{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2d{font-size:59.904000px;}
.fs15{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fse{font-size:84.240000px;}
.fs16{font-size:84.384000px;}
.fs2{font-size:90.000000px;}
.fs2c{font-size:95.904000px;}
.fs2a{font-size:96.911619px;}
.fs21{font-size:96.911765px;}
.fs24{font-size:96.912290px;}
.fs23{font-size:96.912334px;}
.fs29{font-size:96.912345px;}
.fs22{font-size:97.055854px;}
.fs25{font-size:97.055960px;}
.fs28{font-size:97.055969px;}
.fs20{font-size:97.056046px;}
.fs26{font-size:97.056152px;}
.fs27{font-size:97.056471px;}
.fs18{font-size:102.095498px;}
.fs1c{font-size:102.095901px;}
.fs1e{font-size:102.096026px;}
.fs19{font-size:102.239575px;}
.fs1b{font-size:102.239809px;}
.fs1d{font-size:102.239818px;}
.fs1f{font-size:102.239970px;}
.fsa{font-size:102.240000px;}
.fs1a{font-size:102.240011px;}
.fs17{font-size:102.384000px;}
.fs0{font-size:108.000000px;}
.fs10{font-size:108.144000px;}
.fsd{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fs6{font-size:131.760000px;}
.fs9{font-size:144.000000px;}
.fs13{font-size:144.144000px;}
.fs12{font-size:149.760000px;}
.fs11{font-size:149.904000px;}
.fs14{font-size:167.760000px;}
.fs8{font-size:167.904000px;}
.fs5{font-size:216.000000px;}
.fs4{font-size:216.144000px;}
.fsb{font-size:689.880000px;}
.fsc{font-size:727.190099px;}
.y0{bottom:0.000000px;}
.y89{bottom:0.612000px;}
.y85{bottom:1.296000px;}
.y8b{bottom:1.692000px;}
.y73{bottom:2.055000px;}
.y83{bottom:2.196000px;}
.y7b{bottom:2.412000px;}
.y69{bottom:2.445000px;}
.y6f{bottom:2.490000px;}
.y81{bottom:2.808000px;}
.y7f{bottom:3.168000px;}
.y6b{bottom:3.210000px;}
.y6d{bottom:3.345000px;}
.y7d{bottom:3.564000px;}
.y8d{bottom:5.256000px;}
.y75{bottom:5.295000px;}
.y79{bottom:6.516000px;}
.y87{bottom:6.552000px;}
.y71{bottom:9.000000px;}
.ya9{bottom:9.288000px;}
.yaf{bottom:9.504000px;}
.y8{bottom:10.548000px;}
.yce{bottom:10.584000px;}
.y77{bottom:10.950000px;}
.y66{bottom:11.376000px;}
.y9e{bottom:15.624000px;}
.y47{bottom:15.984000px;}
.yb2{bottom:16.128000px;}
.y4f{bottom:16.956000px;}
.yf1{bottom:17.424000px;}
.ya{bottom:23.508000px;}
.yfc{bottom:25.236000px;}
.yae{bottom:25.704000px;}
.ya8{bottom:27.288000px;}
.y9d{bottom:33.624000px;}
.y5b{bottom:38.880000px;}
.yad{bottom:41.904000px;}
.y7{bottom:42.048000px;}
.yf9{bottom:44.928000px;}
.ya7{bottom:45.288000px;}
.y5c{bottom:56.916000px;}
.yac{bottom:58.104000px;}
.y86{bottom:58.860000px;}
.y8c{bottom:59.040000px;}
.y8a{bottom:62.280000px;}
.y2f{bottom:63.504000px;}
.y88{bottom:63.720000px;}
.y5a{bottom:64.116000px;}
.y84{bottom:65.340000px;}
.y9{bottom:65.700000px;}
.y82{bottom:66.600000px;}
.y80{bottom:69.120000px;}
.y7e{bottom:72.360000px;}
.ycc{bottom:73.728000px;}
.yab{bottom:74.304000px;}
.y3e{bottom:75.132000px;}
.y7c{bottom:76.320000px;}
.ya3{bottom:78.156000px;}
.y7a{bottom:80.100000px;}
.y1d{bottom:81.432000px;}
.yec{bottom:82.188000px;}
.y65{bottom:83.772000px;}
.y78{bottom:84.240000px;}
.yf0{bottom:86.184000px;}
.y46{bottom:86.868000px;}
.yd7{bottom:88.092000px;}
.y59{bottom:89.316000px;}
.yaa{bottom:90.504000px;}
.yfb{bottom:90.900000px;}
.y2e{bottom:95.904000px;}
.ya2{bottom:96.156000px;}
.yca{bottom:97.092000px;}
.yfd{bottom:97.884000px;}
.yf8{bottom:101.736000px;}
.y45{bottom:104.868000px;}
.yeb{bottom:107.388000px;}
.ya1{bottom:114.156000px;}
.ycb{bottom:120.096000px;}
.y1c{bottom:121.212000px;}
.y44{bottom:122.868000px;}
.y2d{bottom:128.304000px;}
.yea{bottom:133.848000px;}
.yd6{bottom:139.032000px;}
.yef{bottom:140.184000px;}
.y43{bottom:140.868000px;}
.y9f{bottom:143.640000px;}
.ycd{bottom:148.644000px;}
.y42{bottom:158.865000px;}
.yf7{bottom:159.915000px;}
.y2c{bottom:160.740000px;}
.y1b{bottom:161.175000px;}
.yda{bottom:175.035000px;}
.y9c{bottom:178.230000px;}
.y105{bottom:184.755000px;}
.yd5{bottom:190.155000px;}
.y3d{bottom:191.625000px;}
.y2b{bottom:193.140000px;}
.yee{bottom:194.010000px;}
.y1a{bottom:201.885000px;}
.ybb{bottom:203.430000px;}
.ye9{bottom:220.785000px;}
.yf{bottom:222.270000px;}
.y41{bottom:223.950000px;}
.yd9{bottom:226.185000px;}
.y2a{bottom:227.520000px;}
.yfa{bottom:238.755000px;}
.yd4{bottom:241.125000px;}
.ye8{bottom:247.245000px;}
.yed{bottom:247.860000px;}
.y3{bottom:248.115000px;}
.y19{bottom:252.105000px;}
.yd{bottom:252.870000px;}
.y104{bottom:258.045000px;}
.y40{bottom:264.315000px;}
.y53{bottom:268.590000px;}
.y51{bottom:268.710000px;}
.yd8{bottom:277.125000px;}
.ye{bottom:283.470000px;}
.y2{bottom:284.685000px;}
.y18{bottom:292.065000px;}
.y30{bottom:292.170000px;}
.y3c{bottom:308.130000px;}
.y3f{bottom:309.675000px;}
.y52{bottom:312.150000px;}
.y50{bottom:312.270000px;}
.y95{bottom:316.050000px;}
.y103{bottom:316.185000px;}
.y8f{bottom:321.690000px;}
.y1{bottom:322.305000px;}
.yd3{bottom:328.065000px;}
.y17{bottom:332.565000px;}
.y4e{bottom:334.290000px;}
.ye7{bottom:334.875000px;}
.yf6{bottom:341.205000px;}
.y10{bottom:344.955000px;}
.yba{bottom:346.110000px;}
.y94{bottom:348.450000px;}
.y5f{bottom:349.920000px;}
.y8e{bottom:354.090000px;}
.ybd{bottom:355.215000px;}
.y4d{bottom:359.490000px;}
.ye6{bottom:360.075000px;}
.ydf{bottom:366.585000px;}
.yb9{bottom:371.310000px;}
.y102{bottom:374.550000px;}
.y5e{bottom:375.120000px;}
.yd2{bottom:379.230000px;}
.y93{bottom:380.850000px;}
.y29{bottom:382.965000px;}
.y16{bottom:383.010000px;}
.y4c{bottom:384.690000px;}
.ye5{bottom:386.535000px;}
.yb8{bottom:397.800000px;}
.yf5{bottom:399.345000px;}
.y5d{bottom:401.580000px;}
.y6{bottom:410.655000px;}
.y4b{bottom:411.150000px;}
.y91{bottom:412.665000px;}
.y92{bottom:413.250000px;}
.y23{bottom:413.820000px;}
.y28{bottom:415.365000px;}
.y15{bottom:422.790000px;}
.y31{bottom:423.255000px;}
.yc8{bottom:423.690000px;}
.yc1{bottom:424.050000px;}
.y3b{bottom:424.440000px;}
.yde{bottom:424.770000px;}
.yc6{bottom:424.905000px;}
.yc4{bottom:425.625000px;}
.yd1{bottom:430.170000px;}
.y101{bottom:432.690000px;}
.y58{bottom:439.950000px;}
.y90{bottom:445.065000px;}
.y22{bottom:446.250000px;}
.y27{bottom:447.810000px;}
.yc7{bottom:453.030000px;}
.yc0{bottom:453.345000px;}
.yc2{bottom:454.215000px;}
.yc5{bottom:455.070000px;}
.yc3{bottom:455.655000px;}
.y55{bottom:457.485000px;}
.ye1{bottom:461.520000px;}
.y14{bottom:462.750000px;}
.y57{bottom:465.150000px;}
.y5{bottom:465.735000px;}
.y21{bottom:478.650000px;}
.y26{bottom:480.210000px;}
.yd0{bottom:481.110000px;}
.y54{bottom:482.685000px;}
.ydd{bottom:483.090000px;}
.ye0{bottom:486.720000px;}
.y56{bottom:490.350000px;}
.y100{bottom:490.830000px;}
.y9b{bottom:491.040000px;}
.y13{bottom:502.710000px;}
.ybc{bottom:505.470000px;}
.y67{bottom:509.685000px;}
.y20{bottom:511.050000px;}
.y4a{bottom:512.430000px;}
.y25{bottom:512.610000px;}
.yb7{bottom:513.180000px;}
.yf4{bottom:515.850000px;}
.ya6{bottom:518.970000px;}
.y3a{bottom:519.945000px;}
.y62{bottom:520.050000px;}
.y9a{bottom:523.440000px;}
.ya0{bottom:531.285000px;}
.ycf{bottom:532.260000px;}
.y36{bottom:532.545000px;}
.yff{bottom:534.060000px;}
.y49{bottom:537.630000px;}
.yb6{bottom:538.380000px;}
.ydc{bottom:541.230000px;}
.y12{bottom:542.520000px;}
.y4{bottom:543.525000px;}
.ya5{bottom:544.170000px;}
.y39{bottom:545.145000px;}
.y61{bottom:545.295000px;}
.y1f{bottom:545.430000px;}
.y24{bottom:546.990000px;}
.yb3{bottom:555.840000px;}
.y99{bottom:555.870000px;}
.y35{bottom:557.745000px;}
.y97{bottom:557.970000px;}
.y48{bottom:564.120000px;}
.yb5{bottom:564.840000px;}
.y38{bottom:570.345000px;}
.ya4{bottom:570.630000px;}
.y60{bottom:571.755000px;}
.yf3{bottom:573.990000px;}
.yfe{bottom:577.260000px;}
.y11{bottom:583.200000px;}
.y34{bottom:584.205000px;}
.yc9{bottom:584.385000px;}
.ye4{bottom:588.210000px;}
.y98{bottom:588.270000px;}
.y96{bottom:590.370000px;}
.y76{bottom:591.120000px;}
.y37{bottom:596.805000px;}
.ydb{bottom:599.400000px;}
.y74{bottom:602.100000px;}
.y70{bottom:604.620000px;}
.y72{bottom:607.320000px;}
.y1e{bottom:611.100000px;}
.y6e{bottom:613.260000px;}
.ye3{bottom:613.410000px;}
.y6c{bottom:615.060000px;}
.y6a{bottom:617.220000px;}
.y68{bottom:618.840000px;}
.yf2{bottom:632.160000px;}
.ye2{bottom:639.870000px;}
.yb4{bottom:684.000000px;}
.yb1{bottom:685.290000px;}
.yc{bottom:689.040000px;}
.y33{bottom:692.640000px;}
.y64{bottom:695.370000px;}
.ybf{bottom:701.850000px;}
.yb0{bottom:725.655000px;}
.ybe{bottom:727.050000px;}
.yb{bottom:729.390000px;}
.y32{bottom:733.170000px;}
.y63{bottom:735.690000px;}
.h4b{height:5.459766px;}
.h37{height:14.220000px;}
.h35{height:14.760000px;}
.h31{height:14.940000px;}
.h2f{height:15.120000px;}
.h21{height:15.300000px;}
.h3d{height:16.200000px;}
.h1f{height:16.740000px;}
.h27{height:17.280000px;}
.h3b{height:18.360000px;}
.h2d{height:18.540000px;}
.h25{height:19.080000px;}
.h33{height:19.620000px;}
.h39{height:20.160000px;}
.h1d{height:21.420000px;}
.h23{height:21.600000px;}
.h2b{height:21.960000px;}
.h29{height:22.320000px;}
.h1b{height:22.500000px;}
.h4a{height:26.856000px;}
.h4c{height:34.543125px;}
.h40{height:37.546875px;}
.h48{height:50.474880px;}
.h6{height:53.493750px;}
.h43{height:56.320312px;}
.h16{height:62.327813px;}
.h42{height:62.478000px;}
.h45{height:63.180000px;}
.h46{height:64.190880px;}
.h47{height:64.300608px;}
.h18{height:66.215812px;}
.h19{height:69.086250px;}
.h7{height:75.093750px;}
.h44{height:75.519844px;}
.h13{height:87.859687px;}
.h17{height:88.009875px;}
.h2{height:93.867188px;}
.he{height:96.820312px;}
.h41{height:100.024875px;}
.h3f{height:101.075790px;}
.h2e{height:101.075942px;}
.h34{height:101.076490px;}
.h32{height:101.076536px;}
.h3e{height:101.076548px;}
.h30{height:101.226222px;}
.h36{height:101.226333px;}
.h3c{height:101.226343px;}
.h2c{height:101.226423px;}
.h38{height:101.226534px;}
.h3a{height:101.226866px;}
.h1c{height:106.482414px;}
.h24{height:106.482834px;}
.h28{height:106.482965px;}
.h1e{height:106.632682px;}
.h22{height:106.632925px;}
.h26{height:106.632935px;}
.h2a{height:106.633094px;}
.ha{height:106.633125px;}
.h20{height:106.633136px;}
.h1a{height:106.783312px;}
.h1{height:112.640625px;}
.h10{height:112.790813px;}
.hd{height:125.406562px;}
.hf{height:125.556750px;}
.h49{height:129.093750px;}
.h5{height:137.421562px;}
.h9{height:150.187500px;}
.h14{height:150.337688px;}
.h12{height:156.195000px;}
.h11{height:156.345188px;}
.h15{height:174.968437px;}
.h8{height:175.118625px;}
.h4{height:225.281250px;}
.h3{height:225.431438px;}
.hb{height:581.412539px;}
.hc{height:612.856500px;}
.h0{height:810.000000px;}
.w11{width:8.460000px;}
.w7{width:9.180000px;}
.wb{width:9.900000px;}
.wf{width:10.080000px;}
.w5{width:11.520000px;}
.we{width:13.680000px;}
.wc{width:14.040000px;}
.wd{width:14.580000px;}
.w4{width:15.660000px;}
.w10{width:15.840000px;}
.w8{width:16.200000px;}
.w6{width:17.280000px;}
.w12{width:17.460000px;}
.w3{width:18.360000px;}
.w9{width:19.440000px;}
.wa{width:20.340000px;}
.w2{width:20.700000px;}
.w13{width:104.040000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x3a{left:-1.545000px;}
.x0{left:0.000000px;}
.x49{left:2.085000px;}
.x23{left:6.947979px;}
.x7{left:11.987979px;}
.x6b{left:47.627979px;}
.x6c{left:68.687979px;}
.x53{left:74.303979px;}
.x54{left:78.983979px;}
.x55{left:91.403979px;}
.x8{left:92.951979px;}
.x15{left:95.687979px;}
.x7b{left:96.983979px;}
.x65{left:109.799979px;}
.x2a{left:110.987979px;}
.x16{left:114.371979px;}
.x22{left:116.999979px;}
.x21{left:120.779979px;}
.x56{left:127.583979px;}
.x20{left:130.859979px;}
.x14{left:131.939979px;}
.x1f{left:140.939979px;}
.x4b{left:145.439979px;}
.x5{left:151.484979px;}
.x4a{left:158.939979px;}
.x6{left:164.594979px;}
.x70{left:176.504979px;}
.x3{left:185.729979px;}
.x2{left:196.169979px;}
.x71{left:198.389979px;}
.x1{left:200.954979px;}
.x4{left:214.529979px;}
.x27{left:240.764979px;}
.x5b{left:250.379979px;}
.x13{left:303.329979px;}
.x7d{left:304.634979px;}
.x7a{left:316.409979px;}
.xe{left:318.134979px;}
.xf{left:319.394979px;}
.xd{left:320.834979px;}
.x36{left:332.384979px;}
.x1b{left:342.899979px;}
.x26{left:358.304979px;}
.x6e{left:360.029979px;}
.x6f{left:381.854979px;}
.x5a{left:392.789979px;}
.x17{left:451.109979px;}
.x31{left:492.014979px;}
.x4e{left:529.094979px;}
.x4f{left:531.974979px;}
.x50{left:539.534979px;}
.x1a{left:541.364979px;}
.x34{left:551.189979px;}
.x51{left:561.314979px;}
.x2b{left:589.574979px;}
.x6d{left:591.374979px;}
.x2c{left:613.874979px;}
.xb{left:624.704979px;}
.x2d{left:647.354979px;}
.xa{left:655.304979px;}
.x3f{left:658.080000px;}
.xc{left:659.444979px;}
.x40{left:674.280000px;}
.x41{left:680.040000px;}
.x42{left:693.180000px;}
.x37{left:705.960000px;}
.x43{left:720.180000px;}
.x38{left:723.960000px;}
.x44{left:733.680000px;}
.x1c{left:739.334979px;}
.x45{left:741.420000px;}
.x39{left:754.200000px;}
.x46{left:756.180000px;}
.x3b{left:761.580000px;}
.x47{left:762.660000px;}
.x48{left:776.340000px;}
.x3c{left:777.960000px;}
.x67{left:781.994979px;}
.x3d{left:783.900000px;}
.x18{left:787.859979px;}
.x3e{left:795.960000px;}
.x69{left:838.544979px;}
.x29{left:850.424979px;}
.x11{left:854.489979px;}
.x68{left:856.004979px;}
.x2f{left:860.789979px;}
.x10{left:864.569979px;}
.x12{left:871.769979px;}
.x30{left:887.069979px;}
.x2e{left:891.569979px;}
.x28{left:898.844979px;}
.x72{left:934.229979px;}
.x1d{left:936.869979px;}
.x19{left:939.269979px;}
.x52{left:945.029979px;}
.x73{left:954.824979px;}
.x79{left:968.009979px;}
.x6a{left:990.074979px;}
.x58{left:1027.619979px;}
.x4d{left:1038.449979px;}
.x9{left:1077.509979px;}
.x5d{left:1097.969979px;}
.x4c{left:1108.154979px;}
.x35{left:1111.829979px;}
.x59{left:1114.739979px;}
.x25{left:1119.419979px;}
.x5c{left:1128.209979px;}
.x66{left:1130.759979px;}
.x1e{left:1134.359979px;}
.x63{left:1142.024979px;}
.x62{left:1149.404979px;}
.x64{left:1152.329979px;}
.x60{left:1154.129979px;}
.x5e{left:1171.769979px;}
.x61{left:1177.304979px;}
.x5f{left:1189.469979px;}
.x74{left:1202.504979px;}
.x78{left:1219.214979px;}
.x75{left:1223.099979px;}
.x77{left:1274.399979px;}
.x24{left:1287.749979px;}
.x33{left:1295.564979px;}
.x32{left:1296.689979px;}
.x76{left:1336.604979px;}
.x7c{left:1346.909979px;}
.x57{left:1432.904979px;}
@media print{
.v4{vertical-align:-26.752000pt;}
.v5{vertical-align:-25.344000pt;}
.v7{vertical-align:-23.808000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.456000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:28.800000pt;}
.ls13{letter-spacing:-11.200000pt;}
.ls14{letter-spacing:-4.224000pt;}
.ls6{letter-spacing:-0.688000pt;}
.ls2d{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.310400pt;}
.ls23{letter-spacing:-0.272533pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.104533pt;}
.ls1{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls2c{letter-spacing:-0.044800pt;}
.ls15{letter-spacing:-0.033280pt;}
.ls11{letter-spacing:-0.024960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000005pt;}
.ls16{letter-spacing:0.016640pt;}
.ls17{letter-spacing:0.023573pt;}
.ls3{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.094933pt;}
.ls22{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls1b{letter-spacing:0.144533pt;}
.ls21{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.271467pt;}
.ls18{letter-spacing:0.324779pt;}
.ls19{letter-spacing:8.608000pt;}
.lse{letter-spacing:27.712000pt;}
.ls27{letter-spacing:37.317376pt;}
.ls28{letter-spacing:37.376000pt;}
.ls24{letter-spacing:37.424043pt;}
.ls25{letter-spacing:37.482667pt;}
.ls20{letter-spacing:46.990336pt;}
.ls1f{letter-spacing:47.048960pt;}
.ls1d{letter-spacing:47.097003pt;}
.ls1e{letter-spacing:47.155627pt;}
.lsc{letter-spacing:52.032000pt;}
.lsa{letter-spacing:136.190080pt;}
.lsb{letter-spacing:151.375467pt;}
.ls9{letter-spacing:152.386133pt;}
.ls8{letter-spacing:169.919680pt;}
.ls7{letter-spacing:194.653333pt;}
.ls4{letter-spacing:252.288000pt;}
.ls2e{letter-spacing:439.936000pt;}
.ws1d{word-spacing:-41.599893pt;}
.ws13{word-spacing:-41.490944pt;}
.ws2f{word-spacing:-41.455360pt;}
.wsa{word-spacing:-41.180544pt;}
.ws11{word-spacing:-37.042944pt;}
.ws28{word-spacing:-35.619584pt;}
.ws21{word-spacing:-35.584000pt;}
.ws2a{word-spacing:-35.456000pt;}
.ws34{word-spacing:-35.328000pt;}
.ws14{word-spacing:-30.290944pt;}
.wsb{word-spacing:-29.712640pt;}
.ws25{word-spacing:-29.440107pt;}
.wsf{word-spacing:-26.723584pt;}
.ws10{word-spacing:-26.688000pt;}
.ws8{word-spacing:-25.264640pt;}
.ws26{word-spacing:-20.852224pt;}
.ws12{word-spacing:-20.816640pt;}
.ws2e{word-spacing:-20.747691pt;}
.ws23{word-spacing:-17.984000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws1f{word-spacing:-16.368640pt;}
.ws19{word-spacing:-14.802944pt;}
.ws5{word-spacing:-14.767360pt;}
.ws3{word-spacing:-14.672427pt;}
.ws1b{word-spacing:-13.488000pt;}
.ws1a{word-spacing:-13.344000pt;}
.ws31{word-spacing:-8.455787pt;}
.ws32{word-spacing:-8.184320pt;}
.ws33{word-spacing:-7.815787pt;}
.wse{word-spacing:-2.360960pt;}
.ws24{word-spacing:-2.261333pt;}
.wsd{word-spacing:-2.160640pt;}
.ws22{word-spacing:-0.885120pt;}
.wsc{word-spacing:-0.249813pt;}
.ws15{word-spacing:-0.224000pt;}
.ws20{word-spacing:-0.074880pt;}
.ws2{word-spacing:0.000000pt;}
.ws30{word-spacing:0.038400pt;}
.ws27{word-spacing:0.441216pt;}
.ws29{word-spacing:1.152000pt;}
.ws2d{word-spacing:1.290667pt;}
.ws18{word-spacing:1.408000pt;}
.ws2b{word-spacing:1.546667pt;}
.ws2c{word-spacing:2.794667pt;}
.ws1{word-spacing:7.088000pt;}
.ws17{word-spacing:216.064000pt;}
.ws9{word-spacing:1650.874667pt;}
.ws6{word-spacing:1768.101333pt;}
.ws7{word-spacing:1768.528000pt;}
.ws1e{word-spacing:1891.136000pt;}
.ws16{word-spacing:2115.514667pt;}
.ws1c{word-spacing:2232.528000pt;}
.ws4{word-spacing:2256.314667pt;}
._8{margin-left:-11.193600pt;}
._12{margin-left:-9.856000pt;}
._7{margin-left:-8.656384pt;}
._2{margin-left:-6.207360pt;}
._3{margin-left:-4.575787pt;}
._4{margin-left:-3.054976pt;}
._1{margin-left:-1.537024pt;}
._0{width:1.040000pt;}
._5{width:2.043520pt;}
._9{width:2.978048pt;}
._6{width:3.955200pt;}
._c{width:10.596779pt;}
._11{width:16.558635pt;}
._a{width:18.661675pt;}
._b{width:19.725525pt;}
._17{width:28.565675pt;}
._10{width:162.805333pt;}
._15{width:219.274667pt;}
._16{width:276.106667pt;}
._14{width:297.155627pt;}
._13{width:385.546667pt;}
._e{width:1174.597760pt;}
._f{width:1187.432917pt;}
._d{width:1973.851093pt;}
.fs2f{font-size:6.400000pt;}
.fs30{font-size:29.440000pt;}
.fs2b{font-size:32.000000pt;}
.fs7{font-size:42.880000pt;}
.fs2e{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2d{font-size:53.248000pt;}
.fs15{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:74.880000pt;}
.fs16{font-size:75.008000pt;}
.fs2{font-size:80.000000pt;}
.fs2c{font-size:85.248000pt;}
.fs2a{font-size:86.143661pt;}
.fs21{font-size:86.143791pt;}
.fs24{font-size:86.144258pt;}
.fs23{font-size:86.144297pt;}
.fs29{font-size:86.144307pt;}
.fs22{font-size:86.271870pt;}
.fs25{font-size:86.271964pt;}
.fs28{font-size:86.271973pt;}
.fs20{font-size:86.272041pt;}
.fs26{font-size:86.272135pt;}
.fs27{font-size:86.272419pt;}
.fs18{font-size:90.751553pt;}
.fs1c{font-size:90.751912pt;}
.fs1e{font-size:90.752023pt;}
.fs19{font-size:90.879622pt;}
.fs1b{font-size:90.879830pt;}
.fs1d{font-size:90.879838pt;}
.fs1f{font-size:90.879973pt;}
.fsa{font-size:90.880000pt;}
.fs1a{font-size:90.880009pt;}
.fs17{font-size:91.008000pt;}
.fs0{font-size:96.000000pt;}
.fs10{font-size:96.128000pt;}
.fsd{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fs6{font-size:117.120000pt;}
.fs9{font-size:128.000000pt;}
.fs13{font-size:128.128000pt;}
.fs12{font-size:133.120000pt;}
.fs11{font-size:133.248000pt;}
.fs14{font-size:149.120000pt;}
.fs8{font-size:149.248000pt;}
.fs5{font-size:192.000000pt;}
.fs4{font-size:192.128000pt;}
.fsb{font-size:613.226667pt;}
.fsc{font-size:646.391199pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:0.544000pt;}
.y85{bottom:1.152000pt;}
.y8b{bottom:1.504000pt;}
.y73{bottom:1.826667pt;}
.y83{bottom:1.952000pt;}
.y7b{bottom:2.144000pt;}
.y69{bottom:2.173333pt;}
.y6f{bottom:2.213333pt;}
.y81{bottom:2.496000pt;}
.y7f{bottom:2.816000pt;}
.y6b{bottom:2.853333pt;}
.y6d{bottom:2.973333pt;}
.y7d{bottom:3.168000pt;}
.y8d{bottom:4.672000pt;}
.y75{bottom:4.706667pt;}
.y79{bottom:5.792000pt;}
.y87{bottom:5.824000pt;}
.y71{bottom:8.000000pt;}
.ya9{bottom:8.256000pt;}
.yaf{bottom:8.448000pt;}
.y8{bottom:9.376000pt;}
.yce{bottom:9.408000pt;}
.y77{bottom:9.733333pt;}
.y66{bottom:10.112000pt;}
.y9e{bottom:13.888000pt;}
.y47{bottom:14.208000pt;}
.yb2{bottom:14.336000pt;}
.y4f{bottom:15.072000pt;}
.yf1{bottom:15.488000pt;}
.ya{bottom:20.896000pt;}
.yfc{bottom:22.432000pt;}
.yae{bottom:22.848000pt;}
.ya8{bottom:24.256000pt;}
.y9d{bottom:29.888000pt;}
.y5b{bottom:34.560000pt;}
.yad{bottom:37.248000pt;}
.y7{bottom:37.376000pt;}
.yf9{bottom:39.936000pt;}
.ya7{bottom:40.256000pt;}
.y5c{bottom:50.592000pt;}
.yac{bottom:51.648000pt;}
.y86{bottom:52.320000pt;}
.y8c{bottom:52.480000pt;}
.y8a{bottom:55.360000pt;}
.y2f{bottom:56.448000pt;}
.y88{bottom:56.640000pt;}
.y5a{bottom:56.992000pt;}
.y84{bottom:58.080000pt;}
.y9{bottom:58.400000pt;}
.y82{bottom:59.200000pt;}
.y80{bottom:61.440000pt;}
.y7e{bottom:64.320000pt;}
.ycc{bottom:65.536000pt;}
.yab{bottom:66.048000pt;}
.y3e{bottom:66.784000pt;}
.y7c{bottom:67.840000pt;}
.ya3{bottom:69.472000pt;}
.y7a{bottom:71.200000pt;}
.y1d{bottom:72.384000pt;}
.yec{bottom:73.056000pt;}
.y65{bottom:74.464000pt;}
.y78{bottom:74.880000pt;}
.yf0{bottom:76.608000pt;}
.y46{bottom:77.216000pt;}
.yd7{bottom:78.304000pt;}
.y59{bottom:79.392000pt;}
.yaa{bottom:80.448000pt;}
.yfb{bottom:80.800000pt;}
.y2e{bottom:85.248000pt;}
.ya2{bottom:85.472000pt;}
.yca{bottom:86.304000pt;}
.yfd{bottom:87.008000pt;}
.yf8{bottom:90.432000pt;}
.y45{bottom:93.216000pt;}
.yeb{bottom:95.456000pt;}
.ya1{bottom:101.472000pt;}
.ycb{bottom:106.752000pt;}
.y1c{bottom:107.744000pt;}
.y44{bottom:109.216000pt;}
.y2d{bottom:114.048000pt;}
.yea{bottom:118.976000pt;}
.yd6{bottom:123.584000pt;}
.yef{bottom:124.608000pt;}
.y43{bottom:125.216000pt;}
.y9f{bottom:127.680000pt;}
.ycd{bottom:132.128000pt;}
.y42{bottom:141.213333pt;}
.yf7{bottom:142.146667pt;}
.y2c{bottom:142.880000pt;}
.y1b{bottom:143.266667pt;}
.yda{bottom:155.586667pt;}
.y9c{bottom:158.426667pt;}
.y105{bottom:164.226667pt;}
.yd5{bottom:169.026667pt;}
.y3d{bottom:170.333333pt;}
.y2b{bottom:171.680000pt;}
.yee{bottom:172.453333pt;}
.y1a{bottom:179.453333pt;}
.ybb{bottom:180.826667pt;}
.ye9{bottom:196.253333pt;}
.yf{bottom:197.573333pt;}
.y41{bottom:199.066667pt;}
.yd9{bottom:201.053333pt;}
.y2a{bottom:202.240000pt;}
.yfa{bottom:212.226667pt;}
.yd4{bottom:214.333333pt;}
.ye8{bottom:219.773333pt;}
.yed{bottom:220.320000pt;}
.y3{bottom:220.546667pt;}
.y19{bottom:224.093333pt;}
.yd{bottom:224.773333pt;}
.y104{bottom:229.373333pt;}
.y40{bottom:234.946667pt;}
.y53{bottom:238.746667pt;}
.y51{bottom:238.853333pt;}
.yd8{bottom:246.333333pt;}
.ye{bottom:251.973333pt;}
.y2{bottom:253.053333pt;}
.y18{bottom:259.613333pt;}
.y30{bottom:259.706667pt;}
.y3c{bottom:273.893333pt;}
.y3f{bottom:275.266667pt;}
.y52{bottom:277.466667pt;}
.y50{bottom:277.573333pt;}
.y95{bottom:280.933333pt;}
.y103{bottom:281.053333pt;}
.y8f{bottom:285.946667pt;}
.y1{bottom:286.493333pt;}
.yd3{bottom:291.613333pt;}
.y17{bottom:295.613333pt;}
.y4e{bottom:297.146667pt;}
.ye7{bottom:297.666667pt;}
.yf6{bottom:303.293333pt;}
.y10{bottom:306.626667pt;}
.yba{bottom:307.653333pt;}
.y94{bottom:309.733333pt;}
.y5f{bottom:311.040000pt;}
.y8e{bottom:314.746667pt;}
.ybd{bottom:315.746667pt;}
.y4d{bottom:319.546667pt;}
.ye6{bottom:320.066667pt;}
.ydf{bottom:325.853333pt;}
.yb9{bottom:330.053333pt;}
.y102{bottom:332.933333pt;}
.y5e{bottom:333.440000pt;}
.yd2{bottom:337.093333pt;}
.y93{bottom:338.533333pt;}
.y29{bottom:340.413333pt;}
.y16{bottom:340.453333pt;}
.y4c{bottom:341.946667pt;}
.ye5{bottom:343.586667pt;}
.yb8{bottom:353.600000pt;}
.yf5{bottom:354.973333pt;}
.y5d{bottom:356.960000pt;}
.y6{bottom:365.026667pt;}
.y4b{bottom:365.466667pt;}
.y91{bottom:366.813333pt;}
.y92{bottom:367.333333pt;}
.y23{bottom:367.840000pt;}
.y28{bottom:369.213333pt;}
.y15{bottom:375.813333pt;}
.y31{bottom:376.226667pt;}
.yc8{bottom:376.613333pt;}
.yc1{bottom:376.933333pt;}
.y3b{bottom:377.280000pt;}
.yde{bottom:377.573333pt;}
.yc6{bottom:377.693333pt;}
.yc4{bottom:378.333333pt;}
.yd1{bottom:382.373333pt;}
.y101{bottom:384.613333pt;}
.y58{bottom:391.066667pt;}
.y90{bottom:395.613333pt;}
.y22{bottom:396.666667pt;}
.y27{bottom:398.053333pt;}
.yc7{bottom:402.693333pt;}
.yc0{bottom:402.973333pt;}
.yc2{bottom:403.746667pt;}
.yc5{bottom:404.506667pt;}
.yc3{bottom:405.026667pt;}
.y55{bottom:406.653333pt;}
.ye1{bottom:410.240000pt;}
.y14{bottom:411.333333pt;}
.y57{bottom:413.466667pt;}
.y5{bottom:413.986667pt;}
.y21{bottom:425.466667pt;}
.y26{bottom:426.853333pt;}
.yd0{bottom:427.653333pt;}
.y54{bottom:429.053333pt;}
.ydd{bottom:429.413333pt;}
.ye0{bottom:432.640000pt;}
.y56{bottom:435.866667pt;}
.y100{bottom:436.293333pt;}
.y9b{bottom:436.480000pt;}
.y13{bottom:446.853333pt;}
.ybc{bottom:449.306667pt;}
.y67{bottom:453.053333pt;}
.y20{bottom:454.266667pt;}
.y4a{bottom:455.493333pt;}
.y25{bottom:455.653333pt;}
.yb7{bottom:456.160000pt;}
.yf4{bottom:458.533333pt;}
.ya6{bottom:461.306667pt;}
.y3a{bottom:462.173333pt;}
.y62{bottom:462.266667pt;}
.y9a{bottom:465.280000pt;}
.ya0{bottom:472.253333pt;}
.ycf{bottom:473.120000pt;}
.y36{bottom:473.373333pt;}
.yff{bottom:474.720000pt;}
.y49{bottom:477.893333pt;}
.yb6{bottom:478.560000pt;}
.ydc{bottom:481.093333pt;}
.y12{bottom:482.240000pt;}
.y4{bottom:483.133333pt;}
.ya5{bottom:483.706667pt;}
.y39{bottom:484.573333pt;}
.y61{bottom:484.706667pt;}
.y1f{bottom:484.826667pt;}
.y24{bottom:486.213333pt;}
.yb3{bottom:494.080000pt;}
.y99{bottom:494.106667pt;}
.y35{bottom:495.773333pt;}
.y97{bottom:495.973333pt;}
.y48{bottom:501.440000pt;}
.yb5{bottom:502.080000pt;}
.y38{bottom:506.973333pt;}
.ya4{bottom:507.226667pt;}
.y60{bottom:508.226667pt;}
.yf3{bottom:510.213333pt;}
.yfe{bottom:513.120000pt;}
.y11{bottom:518.400000pt;}
.y34{bottom:519.293333pt;}
.yc9{bottom:519.453333pt;}
.ye4{bottom:522.853333pt;}
.y98{bottom:522.906667pt;}
.y96{bottom:524.773333pt;}
.y76{bottom:525.440000pt;}
.y37{bottom:530.493333pt;}
.ydb{bottom:532.800000pt;}
.y74{bottom:535.200000pt;}
.y70{bottom:537.440000pt;}
.y72{bottom:539.840000pt;}
.y1e{bottom:543.200000pt;}
.y6e{bottom:545.120000pt;}
.ye3{bottom:545.253333pt;}
.y6c{bottom:546.720000pt;}
.y6a{bottom:548.640000pt;}
.y68{bottom:550.080000pt;}
.yf2{bottom:561.920000pt;}
.ye2{bottom:568.773333pt;}
.yb4{bottom:608.000000pt;}
.yb1{bottom:609.146667pt;}
.yc{bottom:612.480000pt;}
.y33{bottom:615.680000pt;}
.y64{bottom:618.106667pt;}
.ybf{bottom:623.866667pt;}
.yb0{bottom:645.026667pt;}
.ybe{bottom:646.266667pt;}
.yb{bottom:648.346667pt;}
.y32{bottom:651.706667pt;}
.y63{bottom:653.946667pt;}
.h4b{height:4.853125pt;}
.h37{height:12.640000pt;}
.h35{height:13.120000pt;}
.h31{height:13.280000pt;}
.h2f{height:13.440000pt;}
.h21{height:13.600000pt;}
.h3d{height:14.400000pt;}
.h1f{height:14.880000pt;}
.h27{height:15.360000pt;}
.h3b{height:16.320000pt;}
.h2d{height:16.480000pt;}
.h25{height:16.960000pt;}
.h33{height:17.440000pt;}
.h39{height:17.920000pt;}
.h1d{height:19.040000pt;}
.h23{height:19.200000pt;}
.h2b{height:19.520000pt;}
.h29{height:19.840000pt;}
.h1b{height:20.000000pt;}
.h4a{height:23.872000pt;}
.h4c{height:30.705000pt;}
.h40{height:33.375000pt;}
.h48{height:44.866560pt;}
.h6{height:47.550000pt;}
.h43{height:50.062500pt;}
.h16{height:55.402500pt;}
.h42{height:55.536000pt;}
.h45{height:56.160000pt;}
.h46{height:57.058560pt;}
.h47{height:57.156096pt;}
.h18{height:58.858500pt;}
.h19{height:61.410000pt;}
.h7{height:66.750000pt;}
.h44{height:67.128750pt;}
.h13{height:78.097500pt;}
.h17{height:78.231000pt;}
.h2{height:83.437500pt;}
.he{height:86.062500pt;}
.h41{height:88.911000pt;}
.h3f{height:89.845147pt;}
.h2e{height:89.845282pt;}
.h34{height:89.845769pt;}
.h32{height:89.845810pt;}
.h3e{height:89.845820pt;}
.h30{height:89.978864pt;}
.h36{height:89.978963pt;}
.h3c{height:89.978971pt;}
.h2c{height:89.979043pt;}
.h38{height:89.979141pt;}
.h3a{height:89.979437pt;}
.h1c{height:94.651034pt;}
.h24{height:94.651408pt;}
.h28{height:94.651524pt;}
.h1e{height:94.784606pt;}
.h22{height:94.784823pt;}
.h26{height:94.784831pt;}
.h2a{height:94.784972pt;}
.ha{height:94.785000pt;}
.h20{height:94.785010pt;}
.h1a{height:94.918500pt;}
.h1{height:100.125000pt;}
.h10{height:100.258500pt;}
.hd{height:111.472500pt;}
.hf{height:111.606000pt;}
.h49{height:114.750000pt;}
.h5{height:122.152500pt;}
.h9{height:133.500000pt;}
.h14{height:133.633500pt;}
.h12{height:138.840000pt;}
.h11{height:138.973500pt;}
.h15{height:155.527500pt;}
.h8{height:155.661000pt;}
.h4{height:200.250000pt;}
.h3{height:200.383500pt;}
.hb{height:516.811146pt;}
.hc{height:544.761333pt;}
.h0{height:720.000000pt;}
.w11{width:7.520000pt;}
.w7{width:8.160000pt;}
.wb{width:8.800000pt;}
.wf{width:8.960000pt;}
.w5{width:10.240000pt;}
.we{width:12.160000pt;}
.wc{width:12.480000pt;}
.wd{width:12.960000pt;}
.w4{width:13.920000pt;}
.w10{width:14.080000pt;}
.w8{width:14.400000pt;}
.w6{width:15.360000pt;}
.w12{width:15.520000pt;}
.w3{width:16.320000pt;}
.w9{width:17.280000pt;}
.wa{width:18.080000pt;}
.w2{width:18.400000pt;}
.w13{width:92.480000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x3a{left:-1.373333pt;}
.x0{left:0.000000pt;}
.x49{left:1.853333pt;}
.x23{left:6.175981pt;}
.x7{left:10.655981pt;}
.x6b{left:42.335981pt;}
.x6c{left:61.055981pt;}
.x53{left:66.047981pt;}
.x54{left:70.207981pt;}
.x55{left:81.247981pt;}
.x8{left:82.623981pt;}
.x15{left:85.055981pt;}
.x7b{left:86.207981pt;}
.x65{left:97.599981pt;}
.x2a{left:98.655981pt;}
.x16{left:101.663981pt;}
.x22{left:103.999981pt;}
.x21{left:107.359981pt;}
.x56{left:113.407981pt;}
.x20{left:116.319981pt;}
.x14{left:117.279981pt;}
.x1f{left:125.279981pt;}
.x4b{left:129.279981pt;}
.x5{left:134.653314pt;}
.x4a{left:141.279981pt;}
.x6{left:146.306648pt;}
.x70{left:156.893314pt;}
.x3{left:165.093314pt;}
.x2{left:174.373314pt;}
.x71{left:176.346648pt;}
.x1{left:178.626648pt;}
.x4{left:190.693314pt;}
.x27{left:214.013314pt;}
.x5b{left:222.559981pt;}
.x13{left:269.626648pt;}
.x7d{left:270.786648pt;}
.x7a{left:281.253314pt;}
.xe{left:282.786648pt;}
.xf{left:283.906648pt;}
.xd{left:285.186648pt;}
.x36{left:295.453314pt;}
.x1b{left:304.799981pt;}
.x26{left:318.493314pt;}
.x6e{left:320.026648pt;}
.x6f{left:339.426648pt;}
.x5a{left:349.146648pt;}
.x17{left:400.986648pt;}
.x31{left:437.346648pt;}
.x4e{left:470.306648pt;}
.x4f{left:472.866648pt;}
.x50{left:479.586648pt;}
.x1a{left:481.213314pt;}
.x34{left:489.946648pt;}
.x51{left:498.946648pt;}
.x2b{left:524.066648pt;}
.x6d{left:525.666648pt;}
.x2c{left:545.666648pt;}
.xb{left:555.293314pt;}
.x2d{left:575.426648pt;}
.xa{left:582.493314pt;}
.x3f{left:584.960000pt;}
.xc{left:586.173314pt;}
.x40{left:599.360000pt;}
.x41{left:604.480000pt;}
.x42{left:616.160000pt;}
.x37{left:627.520000pt;}
.x43{left:640.160000pt;}
.x38{left:643.520000pt;}
.x44{left:652.160000pt;}
.x1c{left:657.186648pt;}
.x45{left:659.040000pt;}
.x39{left:670.400000pt;}
.x46{left:672.160000pt;}
.x3b{left:676.960000pt;}
.x47{left:677.920000pt;}
.x48{left:690.080000pt;}
.x3c{left:691.520000pt;}
.x67{left:695.106648pt;}
.x3d{left:696.800000pt;}
.x18{left:700.319981pt;}
.x3e{left:707.520000pt;}
.x69{left:745.373314pt;}
.x29{left:755.933314pt;}
.x11{left:759.546648pt;}
.x68{left:760.893314pt;}
.x2f{left:765.146648pt;}
.x10{left:768.506648pt;}
.x12{left:774.906648pt;}
.x30{left:788.506648pt;}
.x2e{left:792.506648pt;}
.x28{left:798.973314pt;}
.x72{left:830.426648pt;}
.x1d{left:832.773314pt;}
.x19{left:834.906648pt;}
.x52{left:840.026648pt;}
.x73{left:848.733314pt;}
.x79{left:860.453314pt;}
.x6a{left:880.066648pt;}
.x58{left:913.439981pt;}
.x4d{left:923.066648pt;}
.x9{left:957.786648pt;}
.x5d{left:975.973314pt;}
.x4c{left:985.026648pt;}
.x35{left:988.293314pt;}
.x59{left:990.879981pt;}
.x25{left:995.039981pt;}
.x5c{left:1002.853314pt;}
.x66{left:1005.119981pt;}
.x1e{left:1008.319981pt;}
.x63{left:1015.133314pt;}
.x62{left:1021.693314pt;}
.x64{left:1024.293314pt;}
.x60{left:1025.893314pt;}
.x5e{left:1041.573314pt;}
.x61{left:1046.493314pt;}
.x5f{left:1057.306648pt;}
.x74{left:1068.893314pt;}
.x78{left:1083.746648pt;}
.x75{left:1087.199981pt;}
.x77{left:1132.799981pt;}
.x24{left:1144.666648pt;}
.x33{left:1151.613314pt;}
.x32{left:1152.613314pt;}
.x76{left:1188.093314pt;}
.x7c{left:1197.253314pt;}
.x57{left:1273.693314pt;}
}




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