
    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_d70b24505dbaf2d53d7261e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0c352c61c813c1e10eac8889.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_78da62cc4900588f3b0fc7b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f731410d93cdd6287527643b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c7a119f1172d3d33374a024f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_67a66b6a1520a1b245c5473c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,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:-27.355200px;}
.v3{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.121200px;}
.v4{vertical-align:82.800000px;}
.ls62{letter-spacing:-0.936000px;}
.ls4f{letter-spacing:-0.932832px;}
.ls24{letter-spacing:-0.904392px;}
.ls44{letter-spacing:-0.777600px;}
.ls13{letter-spacing:-0.340632px;}
.ls68{letter-spacing:-0.237600px;}
.ls54{letter-spacing:-0.194400px;}
.ls52{letter-spacing:-0.182016px;}
.ls2d{letter-spacing:-0.180000px;}
.ls55{letter-spacing:-0.173304px;}
.ls1e{letter-spacing:-0.172800px;}
.lsa{letter-spacing:-0.165600px;}
.ls8{letter-spacing:-0.158400px;}
.ls66{letter-spacing:-0.151200px;}
.ls63{letter-spacing:-0.149400px;}
.ls65{letter-spacing:-0.147888px;}
.ls3b{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.136800px;}
.ls5b{letter-spacing:-0.130824px;}
.ls2f{letter-spacing:-0.129600px;}
.ls4e{letter-spacing:-0.125136px;}
.ls1d{letter-spacing:-0.122400px;}
.ls2e{letter-spacing:-0.115200px;}
.ls1f{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.100800px;}
.ls59{letter-spacing:-0.096696px;}
.ls2c{letter-spacing:-0.093600px;}
.ls3c{letter-spacing:-0.086400px;}
.ls5a{letter-spacing:-0.079632px;}
.ls39{letter-spacing:-0.079200px;}
.ls23{letter-spacing:-0.072000px;}
.ls42{letter-spacing:-0.068256px;}
.ls1c{letter-spacing:-0.064800px;}
.ls53{letter-spacing:-0.062568px;}
.lsf{letter-spacing:-0.057600px;}
.lsc{letter-spacing:-0.050400px;}
.ls37{letter-spacing:-0.045504px;}
.lse{letter-spacing:-0.043200px;}
.ls25{letter-spacing:-0.039816px;}
.ls1b{letter-spacing:-0.036000px;}
.ls3e{letter-spacing:-0.034128px;}
.ls20{letter-spacing:-0.028800px;}
.ls1a{letter-spacing:-0.022752px;}
.ls7{letter-spacing:-0.021600px;}
.ls10{letter-spacing:-0.014400px;}
.lsd{letter-spacing:-0.007200px;}
.lsb{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.005688px;}
.ls41{letter-spacing:0.007200px;}
.ls64{letter-spacing:0.011952px;}
.ls40{letter-spacing:0.014400px;}
.ls48{letter-spacing:0.017064px;}
.ls31{letter-spacing:0.021600px;}
.ls5d{letter-spacing:0.028440px;}
.ls4c{letter-spacing:0.028800px;}
.ls5c{letter-spacing:0.034128px;}
.ls35{letter-spacing:0.041832px;}
.ls27{letter-spacing:0.043200px;}
.ls3d{letter-spacing:0.045504px;}
.ls46{letter-spacing:0.047808px;}
.ls4b{letter-spacing:0.050400px;}
.ls4d{letter-spacing:0.053784px;}
.ls21{letter-spacing:0.057600px;}
.ls57{letter-spacing:0.059760px;}
.ls3a{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065736px;}
.ls2{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.079200px;}
.ls18{letter-spacing:0.086400px;}
.ls3f{letter-spacing:0.089640px;}
.ls26{letter-spacing:0.091008px;}
.ls17{letter-spacing:0.093600px;}
.ls2b{letter-spacing:0.096696px;}
.ls14{letter-spacing:0.100800px;}
.ls15{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.115200px;}
.ls45{letter-spacing:0.125496px;}
.ls49{letter-spacing:0.129600px;}
.ls56{letter-spacing:0.137448px;}
.ls51{letter-spacing:0.142200px;}
.ls12{letter-spacing:0.143424px;}
.ls29{letter-spacing:0.144000px;}
.ls36{letter-spacing:0.149400px;}
.ls1{letter-spacing:0.153216px;}
.ls5{letter-spacing:0.155376px;}
.ls33{letter-spacing:0.167328px;}
.ls34{letter-spacing:0.173304px;}
.ls0{letter-spacing:0.181944px;}
.ls60{letter-spacing:0.197208px;}
.ls47{letter-spacing:0.208800px;}
.ls30{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.221112px;}
.ls11{letter-spacing:0.239040px;}
.ls5f{letter-spacing:0.256968px;}
.ls67{letter-spacing:0.352800px;}
.ls32{letter-spacing:0.360000px;}
.ls58{letter-spacing:0.546048px;}
.ls4a{letter-spacing:0.576000px;}
.ls38{letter-spacing:0.682560px;}
.ls6{letter-spacing:0.720000px;}
.ls43{letter-spacing:0.756504px;}
.ls50{letter-spacing:0.784944px;}
.ls61{letter-spacing:0.813384px;}
.ls28{letter-spacing:51.984000px;}
.ls19{letter-spacing:126.000000px;}
.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;}
}
.ws2a{word-spacing:-18.402137px;}
.ws33{word-spacing:-18.144000px;}
.wsaf{word-spacing:-18.115200px;}
.ws45{word-spacing:-18.093600px;}
.ws32{word-spacing:-18.057600px;}
.ws27{word-spacing:-18.000000px;}
.wsb0{word-spacing:-17.971200px;}
.wsb1{word-spacing:-17.949600px;}
.wsb9{word-spacing:-17.942400px;}
.ws44{word-spacing:-17.892000px;}
.ws29{word-spacing:-17.877600px;}
.ws43{word-spacing:-17.841600px;}
.wsb2{word-spacing:-17.762400px;}
.ws9e{word-spacing:-17.064000px;}
.ws9b{word-spacing:-15.033384px;}
.ws55{word-spacing:-15.004944px;}
.wsaa{word-spacing:-14.951952px;}
.ws54{word-spacing:-14.902560px;}
.wsa9{word-spacing:-14.790600px;}
.ws72{word-spacing:-14.766696px;}
.ws75{word-spacing:-14.766048px;}
.ws26{word-spacing:-14.316696px;}
.ws21{word-spacing:-14.311008px;}
.ws3f{word-spacing:-14.265504px;}
.ws98{word-spacing:-14.254128px;}
.ws99{word-spacing:-14.248440px;}
.ws50{word-spacing:-14.237064px;}
.ws9a{word-spacing:-14.225688px;}
.ws13{word-spacing:-14.197248px;}
.ws40{word-spacing:-14.185872px;}
.ws20{word-spacing:-14.180184px;}
.ws34{word-spacing:-14.174496px;}
.ws57{word-spacing:-14.157432px;}
.ws47{word-spacing:-14.151744px;}
.ws77{word-spacing:-14.140368px;}
.ws76{word-spacing:-14.123304px;}
.ws78{word-spacing:-14.089176px;}
.wsae{word-spacing:-14.072112px;}
.ws56{word-spacing:-14.037984px;}
.ws1f{word-spacing:-13.315608px;}
.ws53{word-spacing:-13.287168px;}
.ws28{word-spacing:-10.440000px;}
.ws0{word-spacing:-9.720000px;}
.ws37{word-spacing:-0.500544px;}
.ws1{word-spacing:-0.363888px;}
.wsb4{word-spacing:-0.352800px;}
.ws2{word-spacing:-0.335160px;}
.ws52{word-spacing:-0.208800px;}
.ws51{word-spacing:-0.129600px;}
.ws2e{word-spacing:-0.115200px;}
.ws17{word-spacing:-0.108000px;}
.ws16{word-spacing:-0.100800px;}
.ws1a{word-spacing:-0.093600px;}
.ws1b{word-spacing:-0.086400px;}
.ws18{word-spacing:-0.079200px;}
.ws9{word-spacing:-0.072000px;}
.ws3d{word-spacing:-0.064800px;}
.wsf{word-spacing:-0.059760px;}
.ws25{word-spacing:-0.057600px;}
.ws2b{word-spacing:-0.043200px;}
.wse{word-spacing:-0.041832px;}
.ws42{word-spacing:-0.041760px;}
.wsb7{word-spacing:-0.028800px;}
.ws4d{word-spacing:-0.021600px;}
.ws4c{word-spacing:-0.014400px;}
.wsb6{word-spacing:-0.007200px;}
.ws3{word-spacing:0.000000px;}
.ws3a{word-spacing:0.005976px;}
.ws8{word-spacing:0.007200px;}
.ws39{word-spacing:0.011952px;}
.wsc{word-spacing:0.014400px;}
.ws4{word-spacing:0.021600px;}
.ws10{word-spacing:0.023904px;}
.ws1e{word-spacing:0.028800px;}
.ws3c{word-spacing:0.029880px;}
.ws11{word-spacing:0.035856px;}
.ws14{word-spacing:0.036000px;}
.ws73{word-spacing:0.039816px;}
.wsa{word-spacing:0.043200px;}
.ws7{word-spacing:0.050400px;}
.ws4e{word-spacing:0.053784px;}
.wsb{word-spacing:0.057600px;}
.ws15{word-spacing:0.064800px;}
.ws24{word-spacing:0.072000px;}
.ws38{word-spacing:0.079200px;}
.ws41{word-spacing:0.086400px;}
.ws46{word-spacing:0.089640px;}
.ws2c{word-spacing:0.093600px;}
.ws23{word-spacing:0.100800px;}
.ws1d{word-spacing:0.108000px;}
.wsd{word-spacing:0.113544px;}
.ws30{word-spacing:0.115200px;}
.ws97{word-spacing:0.119520px;}
.ws19{word-spacing:0.122400px;}
.ws74{word-spacing:0.125496px;}
.ws31{word-spacing:0.129600px;}
.ws4f{word-spacing:0.131472px;}
.ws22{word-spacing:0.136800px;}
.ws3b{word-spacing:0.137448px;}
.ws4a{word-spacing:0.142200px;}
.ws3e{word-spacing:0.144000px;}
.wsb3{word-spacing:0.151200px;}
.ws5{word-spacing:0.158400px;}
.ws6{word-spacing:0.165600px;}
.ws1c{word-spacing:0.172800px;}
.ws2d{word-spacing:0.180000px;}
.ws12{word-spacing:0.519912px;}
.wsb5{word-spacing:0.655200px;}
.ws4b{word-spacing:0.777600px;}
.wsb8{word-spacing:1.504800px;}
.wsab{word-spacing:2.802744px;}
.ws96{word-spacing:3.645360px;}
.wsad{word-spacing:7.840512px;}
.wsac{word-spacing:10.063584px;}
.ws95{word-spacing:12.973896px;}
.ws94{word-spacing:13.099392px;}
.ws2f{word-spacing:54.000000px;}
.ws49{word-spacing:56.145600px;}
.ws48{word-spacing:56.160000px;}
.ws79{word-spacing:90.100800px;}
.ws35{word-spacing:111.600000px;}
.ws7c{word-spacing:126.000000px;}
.ws9c{word-spacing:139.622400px;}
.ws36{word-spacing:141.076800px;}
.ws9d{word-spacing:189.374400px;}
.wsa2{word-spacing:198.000000px;}
.wsa3{word-spacing:198.014400px;}
.wsa6{word-spacing:198.043200px;}
.ws81{word-spacing:207.360000px;}
.ws9f{word-spacing:215.985600px;}
.wsa4{word-spacing:216.000000px;}
.ws80{word-spacing:217.440000px;}
.ws91{word-spacing:233.820000px;}
.wsa5{word-spacing:233.985600px;}
.ws7b{word-spacing:234.000000px;}
.ws7a{word-spacing:234.014400px;}
.wsa0{word-spacing:234.028800px;}
.ws8c{word-spacing:234.043200px;}
.wsa7{word-spacing:234.050400px;}
.ws87{word-spacing:234.057600px;}
.wsa1{word-spacing:234.072000px;}
.wsa8{word-spacing:234.100800px;}
.ws8e{word-spacing:234.194400px;}
.ws7f{word-spacing:234.360000px;}
.ws85{word-spacing:260.481600px;}
.ws8b{word-spacing:260.539200px;}
.ws82{word-spacing:260.575200px;}
.ws86{word-spacing:260.589600px;}
.ws8d{word-spacing:260.611200px;}
.ws84{word-spacing:260.625600px;}
.ws8a{word-spacing:260.640000px;}
.ws93{word-spacing:260.661600px;}
.ws7d{word-spacing:260.812800px;}
.ws92{word-spacing:260.870400px;}
.ws83{word-spacing:260.884800px;}
.ws90{word-spacing:260.971200px;}
.ws7e{word-spacing:293.457600px;}
.ws88{word-spacing:346.680000px;}
.ws89{word-spacing:386.697600px;}
.ws8f{word-spacing:414.324000px;}
.ws5d{word-spacing:1099.238400px;}
.ws69{word-spacing:1151.697600px;}
.ws5b{word-spacing:1175.270400px;}
.ws6d{word-spacing:1176.652800px;}
.ws61{word-spacing:1179.705600px;}
.ws6e{word-spacing:1179.777600px;}
.ws67{word-spacing:1196.020800px;}
.ws6f{word-spacing:1200.456000px;}
.ws5e{word-spacing:1211.788800px;}
.ws63{word-spacing:1216.310400px;}
.ws6a{word-spacing:1223.496000px;}
.ws65{word-spacing:1224.028800px;}
.ws60{word-spacing:1228.118400px;}
.ws64{word-spacing:1228.521600px;}
.ws6c{word-spacing:1240.617600px;}
.ws70{word-spacing:1240.790400px;}
.ws5c{word-spacing:1248.595200px;}
.ws59{word-spacing:1261.526400px;}
.ws71{word-spacing:1261.598400px;}
.ws68{word-spacing:1268.150400px;}
.ws66{word-spacing:1268.553600px;}
.ws62{word-spacing:1279.396800px;}
.ws58{word-spacing:1281.398400px;}
.ws6b{word-spacing:1296.388800px;}
.ws5f{word-spacing:1311.336000px;}
.ws5a{word-spacing:1339.891200px;}
._3{margin-left:-779.760000px;}
._42{margin-left:-710.208000px;}
._1a{margin-left:-707.832000px;}
._2e{margin-left:-690.552000px;}
._46{margin-left:-640.728000px;}
._1e{margin-left:-633.528000px;}
._2a{margin-left:-632.160000px;}
._13{margin-left:-625.857120px;}
._33{margin-left:-623.518560px;}
._a{margin-left:-614.160144px;}
._41{margin-left:-593.280000px;}
._14{margin-left:-572.337648px;}
._3a{margin-left:-570.926304px;}
._19{margin-left:-565.920000px;}
._44{margin-left:-554.328000px;}
._2f{margin-left:-536.398848px;}
._3e{margin-left:-518.544000px;}
._3d{margin-left:-506.448000px;}
._17{margin-left:-502.704000px;}
._1f{margin-left:-486.648000px;}
._43{margin-left:-485.208000px;}
._36{margin-left:-482.578560px;}
._1b{margin-left:-475.128000px;}
._b{margin-left:-472.318128px;}
._21{margin-left:-467.340680px;}
._e{margin-left:-459.539568px;}
._1c{margin-left:-457.848000px;}
._3c{margin-left:-450.360000px;}
._f{margin-left:-441.536832px;}
._8{margin-left:-439.920720px;}
._47{margin-left:-429.768000px;}
._3f{margin-left:-420.840000px;}
._39{margin-left:-413.457696px;}
._34{margin-left:-409.678128px;}
._10{margin-left:-402.658272px;}
._16{margin-left:-399.024000px;}
._12{margin-left:-395.371152px;}
._31{margin-left:-393.838560px;}
._49{margin-left:-370.304688px;}
._48{margin-left:-365.817018px;}
._22{margin-left:-359.872198px;}
._45{margin-left:-357.768000px;}
._1d{margin-left:-351.288000px;}
._32{margin-left:-342.720144px;}
._38{margin-left:-341.458992px;}
._30{margin-left:-337.679712px;}
._9{margin-left:-331.198560px;}
._37{margin-left:-328.285008px;}
._40{margin-left:-303.120000px;}
._6{margin-left:-301.752000px;}
._18{margin-left:-296.640000px;}
._3b{margin-left:-280.440000px;}
._2d{margin-left:-265.680000px;}
._5{margin-left:-259.200000px;}
._7{margin-left:-256.536000px;}
._15{margin-left:-238.248000px;}
._2c{margin-left:-216.216000px;}
._4{margin-left:-213.336000px;}
._11{margin-left:-209.610144px;}
._2b{margin-left:-196.776000px;}
._20{margin-left:-190.728000px;}
._35{margin-left:-169.378560px;}
._c{margin-left:-165.599280px;}
._d{margin-left:-164.338128px;}
._29{margin-left:-2.503728px;}
._0{margin-left:-1.311912px;}
._1{width:1.080000px;}
._2{width:2.397312px;}
._4d{width:64.800000px;}
._4c{width:75.600000px;}
._4e{width:79.920000px;}
._4b{width:84.960000px;}
._55{width:90.705600px;}
._50{width:92.865600px;}
._51{width:100.785600px;}
._52{width:109.425600px;}
._24{width:112.320000px;}
._61{width:114.415200px;}
._58{width:116.344800px;}
._26{width:118.080000px;}
._60{width:122.875200px;}
._54{width:128.145600px;}
._4f{width:132.451200px;}
._4a{width:134.366400px;}
._25{width:140.400000px;}
._6f{width:144.244800px;}
._53{width:146.145600px;}
._27{width:147.600000px;}
._5f{width:149.025600px;}
._28{width:160.264800px;}
._23{width:172.526400px;}
._78{width:175.492800px;}
._74{width:210.002400px;}
._79{width:223.322400px;}
._64{width:225.360000px;}
._6b{width:242.006400px;}
._82{width:244.526400px;}
._6d{width:251.388000px;}
._5e{width:252.547200px;}
._7b{width:269.992800px;}
._63{width:278.625600px;}
._73{width:287.467200px;}
._57{width:291.585600px;}
._8d{width:296.128800px;}
._80{width:306.036000px;}
._76{width:312.537600px;}
._6c{width:315.806400px;}
._56{width:321.825600px;}
._87{width:324.446400px;}
._5a{width:326.829600px;}
._71{width:331.315200px;}
._59{width:333.338400px;}
._77{width:335.736000px;}
._7f{width:338.112000px;}
._83{width:342.007200px;}
._68{width:347.767200px;}
._6e{width:352.108800px;}
._84{width:356.400000px;}
._8c{width:358.063200px;}
._70{width:359.733600px;}
._89{width:360.741600px;}
._8f{width:362.332800px;}
._6a{width:364.082400px;}
._8a{width:368.373600px;}
._75{width:377.020800px;}
._67{width:384.638400px;}
._7c{width:387.612000px;}
._86{width:390.693600px;}
._90{width:402.811200px;}
._72{width:403.891200px;}
._81{width:411.048000px;}
._65{width:416.030400px;}
._7d{width:424.605600px;}
._8b{width:431.028000px;}
._62{width:435.427200px;}
._5b{width:437.788800px;}
._88{width:442.072800px;}
._7a{width:444.074400px;}
._69{width:447.235200px;}
._8e{width:458.136000px;}
._85{width:474.667200px;}
._66{width:475.812000px;}
._7e{width:484.416000px;}
._5d{width:1092.002400px;}
._5c{width:1124.006400px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:73.608549px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.960000px;}
.y61{bottom:3.960150px;}
.y18{bottom:57.600000px;}
.y5c{bottom:100.619850px;}
.y5b{bottom:111.600000px;}
.y7d{bottom:111.781296px;}
.y46{bottom:111.781914px;}
.y38{bottom:116.820000px;}
.y7a{bottom:121.680000px;}
.y45{bottom:129.061518px;}
.y17{bottom:129.062310px;}
.y7c{bottom:135.899850px;}
.y44{bottom:146.341122px;}
.y16{bottom:146.341914px;}
.y7b{bottom:147.060000px;}
.y2c{bottom:153.000000px;}
.y37{bottom:158.220000px;}
.y79{bottom:163.080000px;}
.y43{bottom:163.441446px;}
.y15{bottom:163.442238px;}
.ye5{bottom:173.700000px;}
.y14{bottom:180.721842px;}
.y42{bottom:187.559850px;}
.y2b{bottom:194.400000px;}
.y13{bottom:198.001446px;}
.y41{bottom:198.720000px;}
.y36{bottom:199.620000px;}
.y78{bottom:204.480000px;}
.ye4{bottom:215.100000px;}
.y12{bottom:222.119850px;}
.y11{bottom:233.280000px;}
.y2a{bottom:235.800000px;}
.y5a{bottom:241.020000px;}
.y77{bottom:245.880000px;}
.ye3{bottom:256.500000px;}
.y29{bottom:277.200000px;}
.y7e{bottom:277.200450px;}
.y59{bottom:282.420000px;}
.y31{bottom:283.859850px;}
.y40{bottom:284.040000px;}
.y76{bottom:287.280000px;}
.ydc{bottom:287.820018px;}
.y2f{bottom:288.360000px;}
.ye2{bottom:297.900000px;}
.y35{bottom:302.040000px;}
.ydb{bottom:305.099622px;}
.y3f{bottom:305.460000px;}
.y32{bottom:313.379994px;}
.y33{bottom:313.920000px;}
.y30{bottom:317.880000px;}
.y28{bottom:318.600000px;}
.yda{bottom:322.379226px;}
.y58{bottom:323.820000px;}
.y3e{bottom:326.880000px;}
.y75{bottom:328.680000px;}
.ye1{bottom:339.300000px;}
.yd9{bottom:339.479550px;}
.y3a{bottom:351.359850px;}
.y3c{bottom:351.540000px;}
.y3b{bottom:351.900000px;}
.y3d{bottom:352.080000px;}
.yd8{bottom:359.640000px;}
.y27{bottom:360.000000px;}
.y47{bottom:360.000450px;}
.y57{bottom:365.220000px;}
.ybb{bottom:367.921854px;}
.y74{bottom:370.080000px;}
.y9d{bottom:380.159550px;}
.y39{bottom:380.700000px;}
.yd7{bottom:381.060000px;}
.yba{bottom:387.901116px;}
.y9c{bottom:398.340000px;}
.y26{bottom:401.400000px;}
.y2d{bottom:401.400450px;}
.yd6{bottom:402.480000px;}
.yb9{bottom:405.001440px;}
.y56{bottom:406.620000px;}
.y73{bottom:411.480000px;}
.y9b{bottom:421.740000px;}
.ye0{bottom:422.100000px;}
.yb8{bottom:422.279550px;}
.yd5{bottom:423.900000px;}
.yb7{bottom:442.440000px;}
.y25{bottom:442.800000px;}
.y9a{bottom:443.160000px;}
.yd4{bottom:445.320000px;}
.y55{bottom:448.020000px;}
.y72{bottom:452.880000px;}
.ydf{bottom:463.500000px;}
.yb6{bottom:463.860000px;}
.y99{bottom:464.580000px;}
.yd3{bottom:466.920000px;}
.y10{bottom:484.200000px;}
.yb5{bottom:485.280000px;}
.y98{bottom:486.000000px;}
.yd2{bottom:488.340000px;}
.y54{bottom:489.420000px;}
.y71{bottom:494.280000px;}
.yf{bottom:504.900000px;}
.yb4{bottom:506.700000px;}
.y97{bottom:507.420000px;}
.yd1{bottom:509.760000px;}
.ye{bottom:525.600000px;}
.yb3{bottom:528.120000px;}
.y96{bottom:529.020000px;}
.y53{bottom:530.820000px;}
.yd0{bottom:531.180000px;}
.y70{bottom:535.680000px;}
.yd{bottom:546.300000px;}
.yb2{bottom:549.720000px;}
.y95{bottom:550.440000px;}
.ycf{bottom:552.600000px;}
.yc{bottom:567.000000px;}
.yb1{bottom:571.140000px;}
.y94{bottom:571.860000px;}
.y52{bottom:572.220000px;}
.yce{bottom:574.020000px;}
.y6f{bottom:577.080000px;}
.yb{bottom:587.700000px;}
.yb0{bottom:592.560000px;}
.y93{bottom:593.280000px;}
.ycd{bottom:595.620000px;}
.ya{bottom:608.400000px;}
.y2e{bottom:608.400450px;}
.y51{bottom:613.620000px;}
.yaf{bottom:613.980000px;}
.y92{bottom:614.700000px;}
.ycc{bottom:617.040000px;}
.y6e{bottom:618.480000px;}
.y9{bottom:629.100000px;}
.yae{bottom:635.400000px;}
.y91{bottom:636.120000px;}
.ycb{bottom:638.460000px;}
.y24{bottom:649.800000px;}
.y50{bottom:655.020000px;}
.yad{bottom:656.820000px;}
.y90{bottom:657.720000px;}
.y6d{bottom:659.880000px;}
.yde{bottom:670.500000px;}
.yac{bottom:678.420000px;}
.y8f{bottom:679.140000px;}
.yca{bottom:681.300000px;}
.y23{bottom:691.200000px;}
.y4f{bottom:696.240000px;}
.yab{bottom:699.840000px;}
.y8e{bottom:700.560000px;}
.y6c{bottom:701.280000px;}
.yc9{bottom:702.720000px;}
.y8{bottom:711.900000px;}
.yaa{bottom:721.260000px;}
.y8d{bottom:721.980000px;}
.yc8{bottom:724.140000px;}
.y22{bottom:732.600000px;}
.y4e{bottom:737.640000px;}
.y6b{bottom:742.680000px;}
.y8c{bottom:743.400000px;}
.yc7{bottom:745.740000px;}
.y7{bottom:753.300000px;}
.ya9{bottom:764.100000px;}
.y8b{bottom:764.820000px;}
.yc6{bottom:767.160000px;}
.y21{bottom:774.000000px;}
.ya8{bottom:785.520000px;}
.y8a{bottom:786.240000px;}
.yc5{bottom:788.580000px;}
.y6{bottom:794.700000px;}
.y6a{bottom:806.940000px;}
.y89{bottom:807.840000px;}
.yc4{bottom:810.000000px;}
.y20{bottom:815.400000px;}
.y4a{bottom:821.880000px;}
.y48{bottom:826.380000px;}
.y69{bottom:828.360000px;}
.ya7{bottom:828.540000px;}
.y88{bottom:829.260000px;}
.yc3{bottom:831.420000px;}
.y5{bottom:836.100000px;}
.y4d{bottom:840.060000px;}
.y68{bottom:849.780000px;}
.ya6{bottom:849.960000px;}
.y87{bottom:850.680000px;}
.y4b{bottom:851.400144px;}
.y4c{bottom:851.940000px;}
.yc2{bottom:852.840000px;}
.y49{bottom:855.900000px;}
.y1f{bottom:856.800000px;}
.ya5{bottom:871.380000px;}
.y86{bottom:872.100000px;}
.y66{bottom:874.440000px;}
.y67{bottom:874.980000px;}
.y4{bottom:877.500000px;}
.ya4{bottom:892.800000px;}
.y85{bottom:893.520000px;}
.yc1{bottom:895.860000px;}
.y1e{bottom:898.200000px;}
.y65{bottom:901.440000px;}
.ya3{bottom:914.220000px;}
.y84{bottom:914.940000px;}
.yc0{bottom:917.280000px;}
.y3{bottom:918.900000px;}
.y64{bottom:924.840000px;}
.ya2{bottom:935.640000px;}
.y83{bottom:936.540000px;}
.ybf{bottom:938.700000px;}
.y1d{bottom:939.600000px;}
.y63{bottom:946.440000px;}
.ya1{bottom:957.240000px;}
.y82{bottom:957.960000px;}
.ybe{bottom:959.400000px;}
.ydd{bottom:960.300000px;}
.y62{bottom:967.860000px;}
.ya0{bottom:978.660000px;}
.y81{bottom:979.380000px;}
.ybd{bottom:980.100000px;}
.y1c{bottom:981.000000px;}
.y5f{bottom:992.519850px;}
.y60{bottom:993.060000px;}
.y9f{bottom:1000.080000px;}
.y80{bottom:1000.440000px;}
.ybc{bottom:1001.700000px;}
.y2{bottom:1002.960198px;}
.y5e{bottom:1019.520150px;}
.y9e{bottom:1021.500000px;}
.y1b{bottom:1022.400000px;}
.y7f{bottom:1022.400396px;}
.y5d{bottom:1043.100000px;}
.y1{bottom:1058.220900px;}
.y19{bottom:1063.800000px;}
.y1a{bottom:1063.800450px;}
.he{height:21.240000px;}
.hf{height:21.960000px;}
.h4{height:38.158594px;}
.ha{height:40.964766px;}
.h9{height:40.985156px;}
.h6{height:55.824609px;}
.h5{height:58.651172px;}
.h12{height:58.657148px;}
.hc{height:66.691406px;}
.hd{height:68.181357px;}
.hb{height:70.628906px;}
.h14{height:70.656647px;}
.h7{height:70.662263px;}
.h11{height:70.662479px;}
.h2{height:70.664062px;}
.h13{height:71.122500px;}
.h10{height:72.562500px;}
.h8{height:74.004654px;}
.h3{height:80.466122px;}
.h1{height:93.983203px;}
.h15{height:153.464063px;}
.h0{height:1188.000000px;}
.w5{width:22.500000px;}
.w2{width:23.940000px;}
.w3{width:28.440000px;}
.w4{width:30.060000px;}
.w1{width:82.620000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:3.240300px;}
.x1a{left:27.540300px;}
.x5e{left:102.600000px;}
.x5c{left:116.100000px;}
.x9{left:135.000000px;}
.x52{left:156.600000px;}
.xc{left:175.500000px;}
.xb{left:181.260000px;}
.x2f{left:183.600000px;}
.xd{left:185.580000px;}
.x31{left:188.460000px;}
.x5a{left:202.500000px;}
.x40{left:206.100000px;}
.x5f{left:209.160000px;}
.x59{left:210.600000px;}
.x56{left:227.340000px;}
.x5b{left:237.420000px;}
.x3f{left:243.180000px;}
.x5d{left:255.420000px;}
.x1d{left:259.380000px;}
.x43{left:274.860000px;}
.x1{left:277.380000px;}
.x58{left:284.760000px;}
.x21{left:293.580000px;}
.x1c{left:296.460000px;}
.x8{left:308.880000px;}
.x41{left:311.400000px;}
.x45{left:317.880000px;}
.x2{left:325.980594px;}
.x44{left:331.740000px;}
.x57{left:342.899694px;}
.x20{left:344.700000px;}
.x3e{left:354.960000px;}
.x24{left:362.700000px;}
.x47{left:371.880000px;}
.x23{left:376.560000px;}
.x46{left:387.000000px;}
.x5{left:390.960000px;}
.x7{left:392.220000px;}
.x4{left:394.380000px;}
.x1b{left:408.060000px;}
.x63{left:413.100000px;}
.x1f{left:428.220000px;}
.x26{left:433.440000px;}
.x30{left:438.120000px;}
.x42{left:442.260000px;}
.x6{left:446.040000px;}
.x25{left:448.560000px;}
.x3{left:450.180000px;}
.x3d{left:452.520000px;}
.xa{left:454.500000px;}
.x18{left:473.040300px;}
.x10{left:484.740000px;}
.x49{left:486.360000px;}
.x48{left:501.300000px;}
.x28{left:505.440000px;}
.x27{left:520.200000px;}
.x4a{left:541.620000px;}
.x60{left:543.960000px;}
.x19{left:556.740000px;}
.xf{left:560.340000px;}
.x16{left:567.720000px;}
.x17{left:569.880000px;}
.x2a{left:579.060000px;}
.x14{left:581.040000px;}
.x12{left:590.760288px;}
.x29{left:594.000000px;}
.x11{left:595.799676px;}
.xe{left:598.860000px;}
.x15{left:601.560000px;}
.x3c{left:602.640000px;}
.x33{left:606.420000px;}
.x4b{left:610.200000px;}
.x3a{left:615.960000px;}
.x3b{left:619.020300px;}
.x34{left:630.540000px;}
.x35{left:642.060540px;}
.x13{left:649.260828px;}
.x2c{left:651.060000px;}
.x4d{left:654.480000px;}
.x53{left:664.560000px;}
.x2b{left:665.820000px;}
.x4c{left:669.240000px;}
.x37{left:677.521044px;}
.x61{left:691.200000px;}
.x55{left:704.880000px;}
.x4f{left:709.740000px;}
.x39{left:716.220000px;}
.x54{left:719.460000px;}
.x2e{left:721.800000px;}
.x4e{left:724.320000px;}
.x38{left:730.080000px;}
.x2d{left:736.560000px;}
.x36{left:740.522268px;}
.x32{left:748.620000px;}
.x51{left:759.420000px;}
.x1e{left:762.120000px;}
.x50{left:774.180000px;}
.x62{left:796.140000px;}
@media print{
.v2{vertical-align:-24.315733pt;}
.v3{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.441067pt;}
.v4{vertical-align:73.600000pt;}
.ls62{letter-spacing:-0.832000pt;}
.ls4f{letter-spacing:-0.829184pt;}
.ls24{letter-spacing:-0.803904pt;}
.ls44{letter-spacing:-0.691200pt;}
.ls13{letter-spacing:-0.302784pt;}
.ls68{letter-spacing:-0.211200pt;}
.ls54{letter-spacing:-0.172800pt;}
.ls52{letter-spacing:-0.161792pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls55{letter-spacing:-0.154048pt;}
.ls1e{letter-spacing:-0.153600pt;}
.lsa{letter-spacing:-0.147200pt;}
.ls8{letter-spacing:-0.140800pt;}
.ls66{letter-spacing:-0.134400pt;}
.ls63{letter-spacing:-0.132800pt;}
.ls65{letter-spacing:-0.131456pt;}
.ls3b{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.121600pt;}
.ls5b{letter-spacing:-0.116288pt;}
.ls2f{letter-spacing:-0.115200pt;}
.ls4e{letter-spacing:-0.111232pt;}
.ls1d{letter-spacing:-0.108800pt;}
.ls2e{letter-spacing:-0.102400pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.089600pt;}
.ls59{letter-spacing:-0.085952pt;}
.ls2c{letter-spacing:-0.083200pt;}
.ls3c{letter-spacing:-0.076800pt;}
.ls5a{letter-spacing:-0.070784pt;}
.ls39{letter-spacing:-0.070400pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls42{letter-spacing:-0.060672pt;}
.ls1c{letter-spacing:-0.057600pt;}
.ls53{letter-spacing:-0.055616pt;}
.lsf{letter-spacing:-0.051200pt;}
.lsc{letter-spacing:-0.044800pt;}
.ls37{letter-spacing:-0.040448pt;}
.lse{letter-spacing:-0.038400pt;}
.ls25{letter-spacing:-0.035392pt;}
.ls1b{letter-spacing:-0.032000pt;}
.ls3e{letter-spacing:-0.030336pt;}
.ls20{letter-spacing:-0.025600pt;}
.ls1a{letter-spacing:-0.020224pt;}
.ls7{letter-spacing:-0.019200pt;}
.ls10{letter-spacing:-0.012800pt;}
.lsd{letter-spacing:-0.006400pt;}
.lsb{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.005056pt;}
.ls41{letter-spacing:0.006400pt;}
.ls64{letter-spacing:0.010624pt;}
.ls40{letter-spacing:0.012800pt;}
.ls48{letter-spacing:0.015168pt;}
.ls31{letter-spacing:0.019200pt;}
.ls5d{letter-spacing:0.025280pt;}
.ls4c{letter-spacing:0.025600pt;}
.ls5c{letter-spacing:0.030336pt;}
.ls35{letter-spacing:0.037184pt;}
.ls27{letter-spacing:0.038400pt;}
.ls3d{letter-spacing:0.040448pt;}
.ls46{letter-spacing:0.042496pt;}
.ls4b{letter-spacing:0.044800pt;}
.ls4d{letter-spacing:0.047808pt;}
.ls21{letter-spacing:0.051200pt;}
.ls57{letter-spacing:0.053120pt;}
.ls3a{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058432pt;}
.ls2{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.070400pt;}
.ls18{letter-spacing:0.076800pt;}
.ls3f{letter-spacing:0.079680pt;}
.ls26{letter-spacing:0.080896pt;}
.ls17{letter-spacing:0.083200pt;}
.ls2b{letter-spacing:0.085952pt;}
.ls14{letter-spacing:0.089600pt;}
.ls15{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.102400pt;}
.ls45{letter-spacing:0.111552pt;}
.ls49{letter-spacing:0.115200pt;}
.ls56{letter-spacing:0.122176pt;}
.ls51{letter-spacing:0.126400pt;}
.ls12{letter-spacing:0.127488pt;}
.ls29{letter-spacing:0.128000pt;}
.ls36{letter-spacing:0.132800pt;}
.ls1{letter-spacing:0.136192pt;}
.ls5{letter-spacing:0.138112pt;}
.ls33{letter-spacing:0.148736pt;}
.ls34{letter-spacing:0.154048pt;}
.ls0{letter-spacing:0.161728pt;}
.ls60{letter-spacing:0.175296pt;}
.ls47{letter-spacing:0.185600pt;}
.ls30{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.196544pt;}
.ls11{letter-spacing:0.212480pt;}
.ls5f{letter-spacing:0.228416pt;}
.ls67{letter-spacing:0.313600pt;}
.ls32{letter-spacing:0.320000pt;}
.ls58{letter-spacing:0.485376pt;}
.ls4a{letter-spacing:0.512000pt;}
.ls38{letter-spacing:0.606720pt;}
.ls6{letter-spacing:0.640000pt;}
.ls43{letter-spacing:0.672448pt;}
.ls50{letter-spacing:0.697728pt;}
.ls61{letter-spacing:0.723008pt;}
.ls28{letter-spacing:46.208000pt;}
.ls19{letter-spacing:112.000000pt;}
.ws2a{word-spacing:-16.357455pt;}
.ws33{word-spacing:-16.128000pt;}
.wsaf{word-spacing:-16.102400pt;}
.ws45{word-spacing:-16.083200pt;}
.ws32{word-spacing:-16.051200pt;}
.ws27{word-spacing:-16.000000pt;}
.wsb0{word-spacing:-15.974400pt;}
.wsb1{word-spacing:-15.955200pt;}
.wsb9{word-spacing:-15.948800pt;}
.ws44{word-spacing:-15.904000pt;}
.ws29{word-spacing:-15.891200pt;}
.ws43{word-spacing:-15.859200pt;}
.wsb2{word-spacing:-15.788800pt;}
.ws9e{word-spacing:-15.168000pt;}
.ws9b{word-spacing:-13.363008pt;}
.ws55{word-spacing:-13.337728pt;}
.wsaa{word-spacing:-13.290624pt;}
.ws54{word-spacing:-13.246720pt;}
.wsa9{word-spacing:-13.147200pt;}
.ws72{word-spacing:-13.125952pt;}
.ws75{word-spacing:-13.125376pt;}
.ws26{word-spacing:-12.725952pt;}
.ws21{word-spacing:-12.720896pt;}
.ws3f{word-spacing:-12.680448pt;}
.ws98{word-spacing:-12.670336pt;}
.ws99{word-spacing:-12.665280pt;}
.ws50{word-spacing:-12.655168pt;}
.ws9a{word-spacing:-12.645056pt;}
.ws13{word-spacing:-12.619776pt;}
.ws40{word-spacing:-12.609664pt;}
.ws20{word-spacing:-12.604608pt;}
.ws34{word-spacing:-12.599552pt;}
.ws57{word-spacing:-12.584384pt;}
.ws47{word-spacing:-12.579328pt;}
.ws77{word-spacing:-12.569216pt;}
.ws76{word-spacing:-12.554048pt;}
.ws78{word-spacing:-12.523712pt;}
.wsae{word-spacing:-12.508544pt;}
.ws56{word-spacing:-12.478208pt;}
.ws1f{word-spacing:-11.836096pt;}
.ws53{word-spacing:-11.810816pt;}
.ws28{word-spacing:-9.280000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws37{word-spacing:-0.444928pt;}
.ws1{word-spacing:-0.323456pt;}
.wsb4{word-spacing:-0.313600pt;}
.ws2{word-spacing:-0.297920pt;}
.ws52{word-spacing:-0.185600pt;}
.ws51{word-spacing:-0.115200pt;}
.ws2e{word-spacing:-0.102400pt;}
.ws17{word-spacing:-0.096000pt;}
.ws16{word-spacing:-0.089600pt;}
.ws1a{word-spacing:-0.083200pt;}
.ws1b{word-spacing:-0.076800pt;}
.ws18{word-spacing:-0.070400pt;}
.ws9{word-spacing:-0.064000pt;}
.ws3d{word-spacing:-0.057600pt;}
.wsf{word-spacing:-0.053120pt;}
.ws25{word-spacing:-0.051200pt;}
.ws2b{word-spacing:-0.038400pt;}
.wse{word-spacing:-0.037184pt;}
.ws42{word-spacing:-0.037120pt;}
.wsb7{word-spacing:-0.025600pt;}
.ws4d{word-spacing:-0.019200pt;}
.ws4c{word-spacing:-0.012800pt;}
.wsb6{word-spacing:-0.006400pt;}
.ws3{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.005312pt;}
.ws8{word-spacing:0.006400pt;}
.ws39{word-spacing:0.010624pt;}
.wsc{word-spacing:0.012800pt;}
.ws4{word-spacing:0.019200pt;}
.ws10{word-spacing:0.021248pt;}
.ws1e{word-spacing:0.025600pt;}
.ws3c{word-spacing:0.026560pt;}
.ws11{word-spacing:0.031872pt;}
.ws14{word-spacing:0.032000pt;}
.ws73{word-spacing:0.035392pt;}
.wsa{word-spacing:0.038400pt;}
.ws7{word-spacing:0.044800pt;}
.ws4e{word-spacing:0.047808pt;}
.wsb{word-spacing:0.051200pt;}
.ws15{word-spacing:0.057600pt;}
.ws24{word-spacing:0.064000pt;}
.ws38{word-spacing:0.070400pt;}
.ws41{word-spacing:0.076800pt;}
.ws46{word-spacing:0.079680pt;}
.ws2c{word-spacing:0.083200pt;}
.ws23{word-spacing:0.089600pt;}
.ws1d{word-spacing:0.096000pt;}
.wsd{word-spacing:0.100928pt;}
.ws30{word-spacing:0.102400pt;}
.ws97{word-spacing:0.106240pt;}
.ws19{word-spacing:0.108800pt;}
.ws74{word-spacing:0.111552pt;}
.ws31{word-spacing:0.115200pt;}
.ws4f{word-spacing:0.116864pt;}
.ws22{word-spacing:0.121600pt;}
.ws3b{word-spacing:0.122176pt;}
.ws4a{word-spacing:0.126400pt;}
.ws3e{word-spacing:0.128000pt;}
.wsb3{word-spacing:0.134400pt;}
.ws5{word-spacing:0.140800pt;}
.ws6{word-spacing:0.147200pt;}
.ws1c{word-spacing:0.153600pt;}
.ws2d{word-spacing:0.160000pt;}
.ws12{word-spacing:0.462144pt;}
.wsb5{word-spacing:0.582400pt;}
.ws4b{word-spacing:0.691200pt;}
.wsb8{word-spacing:1.337600pt;}
.wsab{word-spacing:2.491328pt;}
.ws96{word-spacing:3.240320pt;}
.wsad{word-spacing:6.969344pt;}
.wsac{word-spacing:8.945408pt;}
.ws95{word-spacing:11.532352pt;}
.ws94{word-spacing:11.643904pt;}
.ws2f{word-spacing:48.000000pt;}
.ws49{word-spacing:49.907200pt;}
.ws48{word-spacing:49.920000pt;}
.ws79{word-spacing:80.089600pt;}
.ws35{word-spacing:99.200000pt;}
.ws7c{word-spacing:112.000000pt;}
.ws9c{word-spacing:124.108800pt;}
.ws36{word-spacing:125.401600pt;}
.ws9d{word-spacing:168.332800pt;}
.wsa2{word-spacing:176.000000pt;}
.wsa3{word-spacing:176.012800pt;}
.wsa6{word-spacing:176.038400pt;}
.ws81{word-spacing:184.320000pt;}
.ws9f{word-spacing:191.987200pt;}
.wsa4{word-spacing:192.000000pt;}
.ws80{word-spacing:193.280000pt;}
.ws91{word-spacing:207.840000pt;}
.wsa5{word-spacing:207.987200pt;}
.ws7b{word-spacing:208.000000pt;}
.ws7a{word-spacing:208.012800pt;}
.wsa0{word-spacing:208.025600pt;}
.ws8c{word-spacing:208.038400pt;}
.wsa7{word-spacing:208.044800pt;}
.ws87{word-spacing:208.051200pt;}
.wsa1{word-spacing:208.064000pt;}
.wsa8{word-spacing:208.089600pt;}
.ws8e{word-spacing:208.172800pt;}
.ws7f{word-spacing:208.320000pt;}
.ws85{word-spacing:231.539200pt;}
.ws8b{word-spacing:231.590400pt;}
.ws82{word-spacing:231.622400pt;}
.ws86{word-spacing:231.635200pt;}
.ws8d{word-spacing:231.654400pt;}
.ws84{word-spacing:231.667200pt;}
.ws8a{word-spacing:231.680000pt;}
.ws93{word-spacing:231.699200pt;}
.ws7d{word-spacing:231.833600pt;}
.ws92{word-spacing:231.884800pt;}
.ws83{word-spacing:231.897600pt;}
.ws90{word-spacing:231.974400pt;}
.ws7e{word-spacing:260.851200pt;}
.ws88{word-spacing:308.160000pt;}
.ws89{word-spacing:343.731200pt;}
.ws8f{word-spacing:368.288000pt;}
.ws5d{word-spacing:977.100800pt;}
.ws69{word-spacing:1023.731200pt;}
.ws5b{word-spacing:1044.684800pt;}
.ws6d{word-spacing:1045.913600pt;}
.ws61{word-spacing:1048.627200pt;}
.ws6e{word-spacing:1048.691200pt;}
.ws67{word-spacing:1063.129600pt;}
.ws6f{word-spacing:1067.072000pt;}
.ws5e{word-spacing:1077.145600pt;}
.ws63{word-spacing:1081.164800pt;}
.ws6a{word-spacing:1087.552000pt;}
.ws65{word-spacing:1088.025600pt;}
.ws60{word-spacing:1091.660800pt;}
.ws64{word-spacing:1092.019200pt;}
.ws6c{word-spacing:1102.771200pt;}
.ws70{word-spacing:1102.924800pt;}
.ws5c{word-spacing:1109.862400pt;}
.ws59{word-spacing:1121.356800pt;}
.ws71{word-spacing:1121.420800pt;}
.ws68{word-spacing:1127.244800pt;}
.ws66{word-spacing:1127.603200pt;}
.ws62{word-spacing:1137.241600pt;}
.ws58{word-spacing:1139.020800pt;}
.ws6b{word-spacing:1152.345600pt;}
.ws5f{word-spacing:1165.632000pt;}
.ws5a{word-spacing:1191.014400pt;}
._3{margin-left:-693.120000pt;}
._42{margin-left:-631.296000pt;}
._1a{margin-left:-629.184000pt;}
._2e{margin-left:-613.824000pt;}
._46{margin-left:-569.536000pt;}
._1e{margin-left:-563.136000pt;}
._2a{margin-left:-561.920000pt;}
._13{margin-left:-556.317440pt;}
._33{margin-left:-554.238720pt;}
._a{margin-left:-545.920128pt;}
._41{margin-left:-527.360000pt;}
._14{margin-left:-508.744576pt;}
._3a{margin-left:-507.490048pt;}
._19{margin-left:-503.040000pt;}
._44{margin-left:-492.736000pt;}
._2f{margin-left:-476.798976pt;}
._3e{margin-left:-460.928000pt;}
._3d{margin-left:-450.176000pt;}
._17{margin-left:-446.848000pt;}
._1f{margin-left:-432.576000pt;}
._43{margin-left:-431.296000pt;}
._36{margin-left:-428.958720pt;}
._1b{margin-left:-422.336000pt;}
._b{margin-left:-419.838336pt;}
._21{margin-left:-415.413938pt;}
._e{margin-left:-408.479616pt;}
._1c{margin-left:-406.976000pt;}
._3c{margin-left:-400.320000pt;}
._f{margin-left:-392.477184pt;}
._8{margin-left:-391.040640pt;}
._47{margin-left:-382.016000pt;}
._3f{margin-left:-374.080000pt;}
._39{margin-left:-367.517952pt;}
._34{margin-left:-364.158336pt;}
._10{margin-left:-357.918464pt;}
._16{margin-left:-354.688000pt;}
._12{margin-left:-351.441024pt;}
._31{margin-left:-350.078720pt;}
._49{margin-left:-329.159723pt;}
._48{margin-left:-325.170682pt;}
._22{margin-left:-319.886398pt;}
._45{margin-left:-318.016000pt;}
._1d{margin-left:-312.256000pt;}
._32{margin-left:-304.640128pt;}
._38{margin-left:-303.519104pt;}
._30{margin-left:-300.159744pt;}
._9{margin-left:-294.398720pt;}
._37{margin-left:-291.808896pt;}
._40{margin-left:-269.440000pt;}
._6{margin-left:-268.224000pt;}
._18{margin-left:-263.680000pt;}
._3b{margin-left:-249.280000pt;}
._2d{margin-left:-236.160000pt;}
._5{margin-left:-230.400000pt;}
._7{margin-left:-228.032000pt;}
._15{margin-left:-211.776000pt;}
._2c{margin-left:-192.192000pt;}
._4{margin-left:-189.632000pt;}
._11{margin-left:-186.320128pt;}
._2b{margin-left:-174.912000pt;}
._20{margin-left:-169.536000pt;}
._35{margin-left:-150.558720pt;}
._c{margin-left:-147.199360pt;}
._d{margin-left:-146.078336pt;}
._29{margin-left:-2.225536pt;}
._0{margin-left:-1.166144pt;}
._1{width:0.960000pt;}
._2{width:2.130944pt;}
._4d{width:57.600000pt;}
._4c{width:67.200000pt;}
._4e{width:71.040000pt;}
._4b{width:75.520000pt;}
._55{width:80.627200pt;}
._50{width:82.547200pt;}
._51{width:89.587200pt;}
._52{width:97.267200pt;}
._24{width:99.840000pt;}
._61{width:101.702400pt;}
._58{width:103.417600pt;}
._26{width:104.960000pt;}
._60{width:109.222400pt;}
._54{width:113.907200pt;}
._4f{width:117.734400pt;}
._4a{width:119.436800pt;}
._25{width:124.800000pt;}
._6f{width:128.217600pt;}
._53{width:129.907200pt;}
._27{width:131.200000pt;}
._5f{width:132.467200pt;}
._28{width:142.457600pt;}
._23{width:153.356800pt;}
._78{width:155.993600pt;}
._74{width:186.668800pt;}
._79{width:198.508800pt;}
._64{width:200.320000pt;}
._6b{width:215.116800pt;}
._82{width:217.356800pt;}
._6d{width:223.456000pt;}
._5e{width:224.486400pt;}
._7b{width:239.993600pt;}
._63{width:247.667200pt;}
._73{width:255.526400pt;}
._57{width:259.187200pt;}
._8d{width:263.225600pt;}
._80{width:272.032000pt;}
._76{width:277.811200pt;}
._6c{width:280.716800pt;}
._56{width:286.067200pt;}
._87{width:288.396800pt;}
._5a{width:290.515200pt;}
._71{width:294.502400pt;}
._59{width:296.300800pt;}
._77{width:298.432000pt;}
._7f{width:300.544000pt;}
._83{width:304.006400pt;}
._68{width:309.126400pt;}
._6e{width:312.985600pt;}
._84{width:316.800000pt;}
._8c{width:318.278400pt;}
._70{width:319.763200pt;}
._89{width:320.659200pt;}
._8f{width:322.073600pt;}
._6a{width:323.628800pt;}
._8a{width:327.443200pt;}
._75{width:335.129600pt;}
._67{width:341.900800pt;}
._7c{width:344.544000pt;}
._86{width:347.283200pt;}
._90{width:358.054400pt;}
._72{width:359.014400pt;}
._81{width:365.376000pt;}
._65{width:369.804800pt;}
._7d{width:377.427200pt;}
._8b{width:383.136000pt;}
._62{width:387.046400pt;}
._5b{width:389.145600pt;}
._88{width:392.953600pt;}
._7a{width:394.732800pt;}
._69{width:397.542400pt;}
._8e{width:407.232000pt;}
._85{width:421.926400pt;}
._66{width:422.944000pt;}
._7e{width:430.592000pt;}
._5d{width:970.668800pt;}
._5c{width:999.116800pt;}
.fs3{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:65.429822pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.520000pt;}
.y61{bottom:3.520133pt;}
.y18{bottom:51.200000pt;}
.y5c{bottom:89.439867pt;}
.y5b{bottom:99.200000pt;}
.y7d{bottom:99.361152pt;}
.y46{bottom:99.361701pt;}
.y38{bottom:103.840000pt;}
.y7a{bottom:108.160000pt;}
.y45{bottom:114.721349pt;}
.y17{bottom:114.722053pt;}
.y7c{bottom:120.799867pt;}
.y44{bottom:130.080997pt;}
.y16{bottom:130.081701pt;}
.y7b{bottom:130.720000pt;}
.y2c{bottom:136.000000pt;}
.y37{bottom:140.640000pt;}
.y79{bottom:144.960000pt;}
.y43{bottom:145.281285pt;}
.y15{bottom:145.281989pt;}
.ye5{bottom:154.400000pt;}
.y14{bottom:160.641637pt;}
.y42{bottom:166.719867pt;}
.y2b{bottom:172.800000pt;}
.y13{bottom:176.001285pt;}
.y41{bottom:176.640000pt;}
.y36{bottom:177.440000pt;}
.y78{bottom:181.760000pt;}
.ye4{bottom:191.200000pt;}
.y12{bottom:197.439867pt;}
.y11{bottom:207.360000pt;}
.y2a{bottom:209.600000pt;}
.y5a{bottom:214.240000pt;}
.y77{bottom:218.560000pt;}
.ye3{bottom:228.000000pt;}
.y29{bottom:246.400000pt;}
.y7e{bottom:246.400400pt;}
.y59{bottom:251.040000pt;}
.y31{bottom:252.319867pt;}
.y40{bottom:252.480000pt;}
.y76{bottom:255.360000pt;}
.ydc{bottom:255.840016pt;}
.y2f{bottom:256.320000pt;}
.ye2{bottom:264.800000pt;}
.y35{bottom:268.480000pt;}
.ydb{bottom:271.199664pt;}
.y3f{bottom:271.520000pt;}
.y32{bottom:278.559995pt;}
.y33{bottom:279.040000pt;}
.y30{bottom:282.560000pt;}
.y28{bottom:283.200000pt;}
.yda{bottom:286.559312pt;}
.y58{bottom:287.840000pt;}
.y3e{bottom:290.560000pt;}
.y75{bottom:292.160000pt;}
.ye1{bottom:301.600000pt;}
.yd9{bottom:301.759600pt;}
.y3a{bottom:312.319867pt;}
.y3c{bottom:312.480000pt;}
.y3b{bottom:312.800000pt;}
.y3d{bottom:312.960000pt;}
.yd8{bottom:319.680000pt;}
.y27{bottom:320.000000pt;}
.y47{bottom:320.000400pt;}
.y57{bottom:324.640000pt;}
.ybb{bottom:327.041648pt;}
.y74{bottom:328.960000pt;}
.y9d{bottom:337.919600pt;}
.y39{bottom:338.400000pt;}
.yd7{bottom:338.720000pt;}
.yba{bottom:344.800992pt;}
.y9c{bottom:354.080000pt;}
.y26{bottom:356.800000pt;}
.y2d{bottom:356.800400pt;}
.yd6{bottom:357.760000pt;}
.yb9{bottom:360.001280pt;}
.y56{bottom:361.440000pt;}
.y73{bottom:365.760000pt;}
.y9b{bottom:374.880000pt;}
.ye0{bottom:375.200000pt;}
.yb8{bottom:375.359600pt;}
.yd5{bottom:376.800000pt;}
.yb7{bottom:393.280000pt;}
.y25{bottom:393.600000pt;}
.y9a{bottom:393.920000pt;}
.yd4{bottom:395.840000pt;}
.y55{bottom:398.240000pt;}
.y72{bottom:402.560000pt;}
.ydf{bottom:412.000000pt;}
.yb6{bottom:412.320000pt;}
.y99{bottom:412.960000pt;}
.yd3{bottom:415.040000pt;}
.y10{bottom:430.400000pt;}
.yb5{bottom:431.360000pt;}
.y98{bottom:432.000000pt;}
.yd2{bottom:434.080000pt;}
.y54{bottom:435.040000pt;}
.y71{bottom:439.360000pt;}
.yf{bottom:448.800000pt;}
.yb4{bottom:450.400000pt;}
.y97{bottom:451.040000pt;}
.yd1{bottom:453.120000pt;}
.ye{bottom:467.200000pt;}
.yb3{bottom:469.440000pt;}
.y96{bottom:470.240000pt;}
.y53{bottom:471.840000pt;}
.yd0{bottom:472.160000pt;}
.y70{bottom:476.160000pt;}
.yd{bottom:485.600000pt;}
.yb2{bottom:488.640000pt;}
.y95{bottom:489.280000pt;}
.ycf{bottom:491.200000pt;}
.yc{bottom:504.000000pt;}
.yb1{bottom:507.680000pt;}
.y94{bottom:508.320000pt;}
.y52{bottom:508.640000pt;}
.yce{bottom:510.240000pt;}
.y6f{bottom:512.960000pt;}
.yb{bottom:522.400000pt;}
.yb0{bottom:526.720000pt;}
.y93{bottom:527.360000pt;}
.ycd{bottom:529.440000pt;}
.ya{bottom:540.800000pt;}
.y2e{bottom:540.800400pt;}
.y51{bottom:545.440000pt;}
.yaf{bottom:545.760000pt;}
.y92{bottom:546.400000pt;}
.ycc{bottom:548.480000pt;}
.y6e{bottom:549.760000pt;}
.y9{bottom:559.200000pt;}
.yae{bottom:564.800000pt;}
.y91{bottom:565.440000pt;}
.ycb{bottom:567.520000pt;}
.y24{bottom:577.600000pt;}
.y50{bottom:582.240000pt;}
.yad{bottom:583.840000pt;}
.y90{bottom:584.640000pt;}
.y6d{bottom:586.560000pt;}
.yde{bottom:596.000000pt;}
.yac{bottom:603.040000pt;}
.y8f{bottom:603.680000pt;}
.yca{bottom:605.600000pt;}
.y23{bottom:614.400000pt;}
.y4f{bottom:618.880000pt;}
.yab{bottom:622.080000pt;}
.y8e{bottom:622.720000pt;}
.y6c{bottom:623.360000pt;}
.yc9{bottom:624.640000pt;}
.y8{bottom:632.800000pt;}
.yaa{bottom:641.120000pt;}
.y8d{bottom:641.760000pt;}
.yc8{bottom:643.680000pt;}
.y22{bottom:651.200000pt;}
.y4e{bottom:655.680000pt;}
.y6b{bottom:660.160000pt;}
.y8c{bottom:660.800000pt;}
.yc7{bottom:662.880000pt;}
.y7{bottom:669.600000pt;}
.ya9{bottom:679.200000pt;}
.y8b{bottom:679.840000pt;}
.yc6{bottom:681.920000pt;}
.y21{bottom:688.000000pt;}
.ya8{bottom:698.240000pt;}
.y8a{bottom:698.880000pt;}
.yc5{bottom:700.960000pt;}
.y6{bottom:706.400000pt;}
.y6a{bottom:717.280000pt;}
.y89{bottom:718.080000pt;}
.yc4{bottom:720.000000pt;}
.y20{bottom:724.800000pt;}
.y4a{bottom:730.560000pt;}
.y48{bottom:734.560000pt;}
.y69{bottom:736.320000pt;}
.ya7{bottom:736.480000pt;}
.y88{bottom:737.120000pt;}
.yc3{bottom:739.040000pt;}
.y5{bottom:743.200000pt;}
.y4d{bottom:746.720000pt;}
.y68{bottom:755.360000pt;}
.ya6{bottom:755.520000pt;}
.y87{bottom:756.160000pt;}
.y4b{bottom:756.800128pt;}
.y4c{bottom:757.280000pt;}
.yc2{bottom:758.080000pt;}
.y49{bottom:760.800000pt;}
.y1f{bottom:761.600000pt;}
.ya5{bottom:774.560000pt;}
.y86{bottom:775.200000pt;}
.y66{bottom:777.280000pt;}
.y67{bottom:777.760000pt;}
.y4{bottom:780.000000pt;}
.ya4{bottom:793.600000pt;}
.y85{bottom:794.240000pt;}
.yc1{bottom:796.320000pt;}
.y1e{bottom:798.400000pt;}
.y65{bottom:801.280000pt;}
.ya3{bottom:812.640000pt;}
.y84{bottom:813.280000pt;}
.yc0{bottom:815.360000pt;}
.y3{bottom:816.800000pt;}
.y64{bottom:822.080000pt;}
.ya2{bottom:831.680000pt;}
.y83{bottom:832.480000pt;}
.ybf{bottom:834.400000pt;}
.y1d{bottom:835.200000pt;}
.y63{bottom:841.280000pt;}
.ya1{bottom:850.880000pt;}
.y82{bottom:851.520000pt;}
.ybe{bottom:852.800000pt;}
.ydd{bottom:853.600000pt;}
.y62{bottom:860.320000pt;}
.ya0{bottom:869.920000pt;}
.y81{bottom:870.560000pt;}
.ybd{bottom:871.200000pt;}
.y1c{bottom:872.000000pt;}
.y5f{bottom:882.239867pt;}
.y60{bottom:882.720000pt;}
.y9f{bottom:888.960000pt;}
.y80{bottom:889.280000pt;}
.ybc{bottom:890.400000pt;}
.y2{bottom:891.520176pt;}
.y5e{bottom:906.240133pt;}
.y9e{bottom:908.000000pt;}
.y1b{bottom:908.800000pt;}
.y7f{bottom:908.800352pt;}
.y5d{bottom:927.200000pt;}
.y1{bottom:940.640800pt;}
.y19{bottom:945.600000pt;}
.y1a{bottom:945.600400pt;}
.he{height:18.880000pt;}
.hf{height:19.520000pt;}
.h4{height:33.918750pt;}
.ha{height:36.413125pt;}
.h9{height:36.431250pt;}
.h6{height:49.621875pt;}
.h5{height:52.134375pt;}
.h12{height:52.139687pt;}
.hc{height:59.281250pt;}
.hd{height:60.605650pt;}
.hb{height:62.781250pt;}
.h14{height:62.805908pt;}
.h7{height:62.810900pt;}
.h11{height:62.811092pt;}
.h2{height:62.812500pt;}
.h13{height:63.220000pt;}
.h10{height:64.500000pt;}
.h8{height:65.781915pt;}
.h3{height:71.525442pt;}
.h1{height:83.540625pt;}
.h15{height:136.412500pt;}
.h0{height:1056.000000pt;}
.w5{width:20.000000pt;}
.w2{width:21.280000pt;}
.w3{width:25.280000pt;}
.w4{width:26.720000pt;}
.w1{width:73.440000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:2.880267pt;}
.x1a{left:24.480267pt;}
.x5e{left:91.200000pt;}
.x5c{left:103.200000pt;}
.x9{left:120.000000pt;}
.x52{left:139.200000pt;}
.xc{left:156.000000pt;}
.xb{left:161.120000pt;}
.x2f{left:163.200000pt;}
.xd{left:164.960000pt;}
.x31{left:167.520000pt;}
.x5a{left:180.000000pt;}
.x40{left:183.200000pt;}
.x5f{left:185.920000pt;}
.x59{left:187.200000pt;}
.x56{left:202.080000pt;}
.x5b{left:211.040000pt;}
.x3f{left:216.160000pt;}
.x5d{left:227.040000pt;}
.x1d{left:230.560000pt;}
.x43{left:244.320000pt;}
.x1{left:246.560000pt;}
.x58{left:253.120000pt;}
.x21{left:260.960000pt;}
.x1c{left:263.520000pt;}
.x8{left:274.560000pt;}
.x41{left:276.800000pt;}
.x45{left:282.560000pt;}
.x2{left:289.760528pt;}
.x44{left:294.880000pt;}
.x57{left:304.799728pt;}
.x20{left:306.400000pt;}
.x3e{left:315.520000pt;}
.x24{left:322.400000pt;}
.x47{left:330.560000pt;}
.x23{left:334.720000pt;}
.x46{left:344.000000pt;}
.x5{left:347.520000pt;}
.x7{left:348.640000pt;}
.x4{left:350.560000pt;}
.x1b{left:362.720000pt;}
.x63{left:367.200000pt;}
.x1f{left:380.640000pt;}
.x26{left:385.280000pt;}
.x30{left:389.440000pt;}
.x42{left:393.120000pt;}
.x6{left:396.480000pt;}
.x25{left:398.720000pt;}
.x3{left:400.160000pt;}
.x3d{left:402.240000pt;}
.xa{left:404.000000pt;}
.x18{left:420.480267pt;}
.x10{left:430.880000pt;}
.x49{left:432.320000pt;}
.x48{left:445.600000pt;}
.x28{left:449.280000pt;}
.x27{left:462.400000pt;}
.x4a{left:481.440000pt;}
.x60{left:483.520000pt;}
.x19{left:494.880000pt;}
.xf{left:498.080000pt;}
.x16{left:504.640000pt;}
.x17{left:506.560000pt;}
.x2a{left:514.720000pt;}
.x14{left:516.480000pt;}
.x12{left:525.120256pt;}
.x29{left:528.000000pt;}
.x11{left:529.599712pt;}
.xe{left:532.320000pt;}
.x15{left:534.720000pt;}
.x3c{left:535.680000pt;}
.x33{left:539.040000pt;}
.x4b{left:542.400000pt;}
.x3a{left:547.520000pt;}
.x3b{left:550.240267pt;}
.x34{left:560.480000pt;}
.x35{left:570.720480pt;}
.x13{left:577.120736pt;}
.x2c{left:578.720000pt;}
.x4d{left:581.760000pt;}
.x53{left:590.720000pt;}
.x2b{left:591.840000pt;}
.x4c{left:594.880000pt;}
.x37{left:602.240928pt;}
.x61{left:614.400000pt;}
.x55{left:626.560000pt;}
.x4f{left:630.880000pt;}
.x39{left:636.640000pt;}
.x54{left:639.520000pt;}
.x2e{left:641.600000pt;}
.x4e{left:643.840000pt;}
.x38{left:648.960000pt;}
.x2d{left:654.720000pt;}
.x36{left:658.242016pt;}
.x32{left:665.440000pt;}
.x51{left:675.040000pt;}
.x1e{left:677.440000pt;}
.x50{left:688.160000pt;}
.x62{left:707.680000pt;}
}




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