
    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_aa42b29c0883cb1ed95a009a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7a1294a3a9f8e6e190df5eda.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1f2e605178fa86f0a9a98ed6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972000;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_9d039a6807887945c3cb6a52.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967000;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_865b8f4c277fd39b0a2d7267.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.450000;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_8da7a61e0c803c89cf01ca7e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.453000;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_2876372d5e9b6f52aeec8b8e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746000;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_f8108f9ec42bbb25f3dc0b94.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.298000;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_3b0d8110d6cc78344387706e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_0f674533f65762e0a4c23573.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1430d708f5be0fa21a85b523.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.454000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_486aee2b3a164d05d5f83c6e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.756000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2ca16e9e30e695ea63a3f429.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.188000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3647747308723cee802309dc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.197000;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;}
.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);}
.m3{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-5.101244px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.444337px;}
.lsd{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.075317px;}
.ls26{letter-spacing:0.096824px;}
.ls1d{letter-spacing:0.111780px;}
.ls21{letter-spacing:0.116861px;}
.ls23{letter-spacing:0.142266px;}
.ls1{letter-spacing:0.161393px;}
.ls3{letter-spacing:0.182913px;}
.ls1c{letter-spacing:0.187994px;}
.ls1e{letter-spacing:0.193075px;}
.ls24{letter-spacing:0.200849px;}
.ls27{letter-spacing:0.247440px;}
.ls25{letter-spacing:0.253452px;}
.lsb{letter-spacing:0.258229px;}
.ls1a{letter-spacing:0.532598px;}
.ls18{letter-spacing:0.537978px;}
.lse{letter-spacing:0.543358px;}
.lsf{letter-spacing:0.548738px;}
.ls16{letter-spacing:0.554117px;}
.ls5{letter-spacing:0.564877px;}
.ls13{letter-spacing:0.570257px;}
.ls12{letter-spacing:0.575636px;}
.ls7{letter-spacing:0.586396px;}
.ls14{letter-spacing:0.597156px;}
.ls1b{letter-spacing:0.602535px;}
.lsa{letter-spacing:0.613295px;}
.ls9{letter-spacing:0.624054px;}
.ls6{letter-spacing:0.629434px;}
.ls8{letter-spacing:0.650953px;}
.ls11{letter-spacing:0.710131px;}
.ls19{letter-spacing:0.747789px;}
.ls17{letter-spacing:0.860765px;}
.ls10{letter-spacing:0.936082px;}
.ls2{letter-spacing:10.705762px;}
.ls0{letter-spacing:10.711142px;}
.ls1f{letter-spacing:12.001370px;}
.ls22{letter-spacing:12.001970px;}
.ls28{letter-spacing:13.072865px;}
.ls20{letter-spacing:13.713403px;}
.lsc{letter-spacing:21.346967px;}
.ls15{letter-spacing:23.046978px;}
.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;}
}
.wsfb{word-spacing:-13.126663px;}
.wsd7{word-spacing:-0.065754px;}
.wsa{word-spacing:-0.053798px;}
.wsa3{word-spacing:-0.050809px;}
.ws7b{word-spacing:-0.047821px;}
.wsf9{word-spacing:-0.035861px;}
.ws7d{word-spacing:0.000000px;}
.ws3a{word-spacing:10.555128px;}
.ws1a{word-spacing:10.635825px;}
.ws19{word-spacing:10.877915px;}
.ws17{word-spacing:10.904814px;}
.ws2c{word-spacing:10.990891px;}
.wse7{word-spacing:11.314496px;}
.wsf8{word-spacing:11.381446px;}
.wse9{word-spacing:11.386228px;}
.ws7c{word-spacing:11.443613px;}
.wsa2{word-spacing:11.447313px;}
.ws7a{word-spacing:11.453177px;}
.wse5{word-spacing:11.515345px;}
.wsf1{word-spacing:11.620552px;}
.ws10e{word-spacing:11.687501px;}
.wsa1{word-spacing:11.701359px;}
.wsb6{word-spacing:11.914757px;}
.wsb5{word-spacing:11.950324px;}
.wsaf{word-spacing:11.960486px;}
.wsa0{word-spacing:11.965567px;}
.ws9f{word-spacing:11.980809px;}
.wsc6{word-spacing:11.990971px;}
.ws3c{word-spacing:12.002289px;}
.wsc9{word-spacing:12.006214px;}
.wsb0{word-spacing:12.011295px;}
.wsa8{word-spacing:12.021457px;}
.wsbf{word-spacing:12.026538px;}
.wsbd{word-spacing:12.036699px;}
.wsa7{word-spacing:12.041780px;}
.wscd{word-spacing:12.051942px;}
.wsa9{word-spacing:12.057023px;}
.wsb8{word-spacing:12.062104px;}
.wsa5{word-spacing:12.067185px;}
.wsb1{word-spacing:12.077347px;}
.wsc7{word-spacing:12.082428px;}
.wsab{word-spacing:12.087509px;}
.wsc2{word-spacing:12.097671px;}
.wsbc{word-spacing:12.102751px;}
.wsb2{word-spacing:12.112913px;}
.wsc5{word-spacing:12.117994px;}
.wsca{word-spacing:12.123075px;}
.ws10d{word-spacing:12.128156px;}
.wsb4{word-spacing:12.133237px;}
.wsbe{word-spacing:12.148480px;}
.wsb7{word-spacing:12.163722px;}
.wsad{word-spacing:12.173884px;}
.wsaa{word-spacing:12.178965px;}
.wsc0{word-spacing:12.184046px;}
.wsba{word-spacing:12.189127px;}
.wscc{word-spacing:12.199289px;}
.wsa6{word-spacing:12.209451px;}
.wsae{word-spacing:12.219613px;}
.wsa4{word-spacing:12.224694px;}
.wscb{word-spacing:12.234855px;}
.wsd0{word-spacing:12.255179px;}
.wsb9{word-spacing:12.260260px;}
.wsac{word-spacing:12.300907px;}
.wsbb{word-spacing:12.321231px;}
.wsc8{word-spacing:12.331393px;}
.wsee{word-spacing:12.337870px;}
.wsb3{word-spacing:12.341555px;}
.wsce{word-spacing:12.366959px;}
.wsc3{word-spacing:12.372040px;}
.ws10c{word-spacing:12.377121px;}
.wsc1{word-spacing:12.407607px;}
.wsc4{word-spacing:12.499063px;}
.wscf{word-spacing:12.575277px;}
.wsfc{word-spacing:12.680141px;}
.ws90{word-spacing:12.685521px;}
.ws15{word-spacing:12.717800px;}
.ws36{word-spacing:12.750079px;}
.ws102{word-spacing:12.766218px;}
.wsff{word-spacing:12.776977px;}
.ws108{word-spacing:12.793117px;}
.ws91{word-spacing:12.803876px;}
.wsd1{word-spacing:12.830775px;}
.ws26{word-spacing:12.836155px;}
.ws100{word-spacing:12.879193px;}
.ws101{word-spacing:12.889953px;}
.wsfd{word-spacing:12.906092px;}
.ws109{word-spacing:12.927611px;}
.wsde{word-spacing:12.938371px;}
.ws75{word-spacing:12.959890px;}
.ws106{word-spacing:12.965270px;}
.ws49{word-spacing:13.008308px;}
.wsfa{word-spacing:13.019068px;}
.ws56{word-spacing:13.024447px;}
.ws6b{word-spacing:13.029827px;}
.ws48{word-spacing:13.067486px;}
.ws10a{word-spacing:13.089005px;}
.wsfe{word-spacing:13.099764px;}
.ws59{word-spacing:13.110524px;}
.ws107{word-spacing:13.121283px;}
.ws103{word-spacing:13.142803px;}
.ws6d{word-spacing:13.196600px;}
.ws25{word-spacing:13.207360px;}
.wsd3{word-spacing:13.245018px;}
.ws104{word-spacing:13.250398px;}
.ws105{word-spacing:13.255778px;}
.ws6c{word-spacing:13.282677px;}
.ws51{word-spacing:13.336475px;}
.ws6a{word-spacing:13.347234px;}
.wse6{word-spacing:13.504707px;}
.ws58{word-spacing:13.589324px;}
.wse{word-spacing:13.610843px;}
.wsd{word-spacing:13.626983px;}
.ws10b{word-spacing:13.729199px;}
.ws1e{word-spacing:13.739958px;}
.ws79{word-spacing:13.887276px;}
.ws7{word-spacing:14.251037px;}
.ws9e{word-spacing:14.307871px;}
.ws24{word-spacing:14.729838px;}
.wsf2{word-spacing:14.757622px;}
.wsef{word-spacing:14.776751px;}
.wse4{word-spacing:14.996728px;}
.ws77{word-spacing:15.101042px;}
.ws83{word-spacing:15.144081px;}
.ws0{word-spacing:15.156676px;}
.wsf7{word-spacing:15.259745px;}
.ws30{word-spacing:15.289335px;}
.ws76{word-spacing:15.321613px;}
.ws47{word-spacing:15.456108px;}
.ws9d{word-spacing:15.705124px;}
.ws46{word-spacing:15.708958px;}
.ws9c{word-spacing:15.725447px;}
.ws9b{word-spacing:15.787535px;}
.wse0{word-spacing:15.881421px;}
.wsd8{word-spacing:15.919043px;}
.wse2{word-spacing:15.996191px;}
.wsd2{word-spacing:16.076853px;}
.ws35{word-spacing:16.117821px;}
.wsec{word-spacing:16.574828px;}
.wsf4{word-spacing:16.636995px;}
.ws86{word-spacing:16.747255px;}
.ws78{word-spacing:16.887129px;}
.ws31{word-spacing:16.930168px;}
.ws37{word-spacing:17.139979px;}
.wsf6{word-spacing:17.239543px;}
.ws4{word-spacing:17.380324px;}
.ws3{word-spacing:17.437709px;}
.ws67{word-spacing:17.554222px;}
.ws13{word-spacing:17.597260px;}
.ws38{word-spacing:17.667198px;}
.ws1{word-spacing:17.674420px;}
.ws63{word-spacing:17.753274px;}
.ws2{word-spacing:17.767670px;}
.ws2d{word-spacing:17.785553px;}
.wsd5{word-spacing:17.823211px;}
.wse1{word-spacing:18.038157px;}
.ws65{word-spacing:18.124479px;}
.ws66{word-spacing:18.253594px;}
.ws9a{word-spacing:18.495684px;}
.ws8b{word-spacing:18.587140px;}
.wsd6{word-spacing:18.619419px;}
.ws92{word-spacing:18.673216px;}
.ws27{word-spacing:18.791572px;}
.ws43{word-spacing:18.877648px;}
.ws57{word-spacing:18.958345px;}
.ws64{word-spacing:18.990623px;}
.ws4a{word-spacing:19.103599px;}
.ws3f{word-spacing:19.173536px;}
.ws42{word-spacing:19.205815px;}
.ws4b{word-spacing:19.216574px;}
.ws55{word-spacing:19.270372px;}
.ws3e{word-spacing:19.275752px;}
.ws74{word-spacing:19.286511px;}
.ws88{word-spacing:19.377968px;}
.ws87{word-spacing:19.442525px;}
.ws4e{word-spacing:19.469424px;}
.ws73{word-spacing:19.533981px;}
.ws4c{word-spacing:19.603918px;}
.ws4d{word-spacing:19.630817px;}
.wsd4{word-spacing:19.975123px;}
.wsf{word-spacing:20.152656px;}
.ws5c{word-spacing:20.265631px;}
.ws5b{word-spacing:20.475443px;}
.ws14{word-spacing:20.830508px;}
.wsf5{word-spacing:21.227831px;}
.ws6{word-spacing:21.298549px;}
.ws70{word-spacing:21.368486px;}
.ws22{word-spacing:21.379246px;}
.wse3{word-spacing:21.443026px;}
.ws6f{word-spacing:21.497601px;}
.ws94{word-spacing:21.583677px;}
.ws23{word-spacing:21.777349px;}
.ws5{word-spacing:21.788109px;}
.wse8{word-spacing:21.868635px;}
.ws95{word-spacing:22.073237px;}
.ws34{word-spacing:22.202352px;}
.ws5e{word-spacing:22.476721px;}
.wseb{word-spacing:22.672031px;}
.wsdd{word-spacing:22.691912px;}
.ws29{word-spacing:22.777989px;}
.ws7f{word-spacing:22.810267px;}
.ws7e{word-spacing:22.874825px;}
.wsdc{word-spacing:23.127674px;}
.wsea{word-spacing:23.365438px;}
.ws10{word-spacing:23.412803px;}
.wsda{word-spacing:23.509639px;}
.ws8d{word-spacing:23.568816px;}
.wsd9{word-spacing:23.692551px;}
.ws62{word-spacing:23.751729px;}
.wsdf{word-spacing:24.011025px;}
.wsf3{word-spacing:24.106667px;}
.ws8c{word-spacing:24.225149px;}
.ws28{word-spacing:24.246668px;}
.ws2b{word-spacing:24.913761px;}
.wsed{word-spacing:25.029616px;}
.ws82{word-spacing:25.048256px;}
.ws3d{word-spacing:25.080534px;}
.ws8f{word-spacing:25.387182px;}
.ws72{word-spacing:26.167250px;}
.ws71{word-spacing:26.274846px;}
.ws1b{word-spacing:26.855862px;}
.ws96{word-spacing:26.877381px;}
.ws97{word-spacing:26.920419px;}
.ws3b{word-spacing:27.001116px;}
.ws4f{word-spacing:27.119471px;}
.ws93{word-spacing:27.205547px;}
.ws84{word-spacing:27.528334px;}
.ws20{word-spacing:27.974856px;}
.ws85{word-spacing:27.985616px;}
.wsb{word-spacing:28.437517px;}
.ws8e{word-spacing:28.480555px;}
.ws2e{word-spacing:28.738785px;}
.ws2f{word-spacing:28.744165px;}
.ws1c{word-spacing:28.959356px;}
.ws1d{word-spacing:29.131509px;}
.ws68{word-spacing:29.470435px;}
.ws60{word-spacing:29.513473px;}
.ws69{word-spacing:29.599550px;}
.ws61{word-spacing:30.083730px;}
.ws5f{word-spacing:30.320440px;}
.wsdb{word-spacing:30.401137px;}
.ws99{word-spacing:30.600189px;}
.ws53{word-spacing:30.610948px;}
.ws9{word-spacing:30.659366px;}
.ws1f{word-spacing:31.498612px;}
.ws52{word-spacing:32.058109px;}
.ws12{word-spacing:32.063489px;}
.ws40{word-spacing:32.520770px;}
.ws41{word-spacing:32.827418px;}
.ws98{word-spacing:33.585967px;}
.ws50{word-spacing:35.511928px;}
.ws21{word-spacing:35.705600px;}
.ws2a{word-spacing:36.152122px;}
.ws39{word-spacing:37.782195px;}
.ws16{word-spacing:38.519225px;}
.ws80{word-spacing:38.653719px;}
.ws5a{word-spacing:38.793594px;}
.ws81{word-spacing:38.863531px;}
.ws11{word-spacing:39.288533px;}
.ws33{word-spacing:39.880309px;}
.ws32{word-spacing:40.047082px;}
.ws8{word-spacing:42.290451px;}
.wsf0{word-spacing:42.742589px;}
.ws18{word-spacing:46.050917px;}
.ws44{word-spacing:46.196171px;}
.ws45{word-spacing:46.594275px;}
.wsc{word-spacing:47.498078px;}
.ws89{word-spacing:47.632572px;}
.ws5d{word-spacing:50.994935px;}
.ws6e{word-spacing:51.005694px;}
.ws54{word-spacing:52.065511px;}
.ws8a{word-spacing:58.639602px;}
._23{margin-left:-18.883028px;}
._22{margin-left:-13.072865px;}
._1d{margin-left:-8.925055px;}
._d{margin-left:-7.165867px;}
._5{margin-left:-5.638009px;}
._21{margin-left:-4.628233px;}
._0{margin-left:-3.615222px;}
._2{margin-left:-2.087360px;}
._20{margin-left:-1.008150px;}
._17{width:1.188931px;}
._24{width:2.948119px;}
._1f{width:7.300729px;}
._10{width:11.066207px;}
._18{width:12.131404px;}
._13{width:13.637742px;}
._4{width:15.402310px;}
._1{width:17.193825px;}
._f{width:18.947585px;}
._15{width:20.432404px;}
._3{width:22.487480px;}
._11{width:23.703311px;}
._9{width:24.833064px;}
._1a{width:26.210288px;}
._c{width:27.393840px;}
._8{width:29.561897px;}
._19{width:30.740063px;}
._7{width:31.805259px;}
._14{width:33.779639px;}
._1b{width:35.334405px;}
._e{width:37.529345px;}
._12{width:38.976506px;}
._a{width:40.595820px;}
._6{width:43.387926px;}
._b{width:46.088575px;}
._16{width:53.200644px;}
._1c{width:71.747671px;}
._1e{width:1797.741276px;}
.fc2{color:rgb(63,121,162);}
.fc1{color:rgb(0,128,171);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.876200px;}
.fs7{font-size:33.869400px;}
.fs2{font-size:35.860800px;}
.fs6{font-size:45.727200px;}
.fs3{font-size:47.821200px;}
.fs5{font-size:50.809200px;}
.fs1{font-size:53.797800px;}
.fs4{font-size:65.754000px;}
.fs0{font-size:71.730600px;}
.y0{bottom:0.000000px;}
.y97{bottom:59.867700px;}
.y93{bottom:92.948100px;}
.y85{bottom:92.949367px;}
.y6d{bottom:93.118052px;}
.y146{bottom:95.924400px;}
.y145{bottom:101.196900px;}
.yf4{bottom:105.108600px;}
.y6c{bottom:108.084893px;}
.y84{bottom:109.361731px;}
.yf9{bottom:121.521242px;}
.yf3{bottom:121.521300px;}
.y6b{bottom:122.966850px;}
.y92{bottom:123.987450px;}
.y83{bottom:125.774095px;}
.yf2{bottom:137.933850px;}
.yf8{bottom:137.933884px;}
.y82{bottom:142.186459px;}
.yf1{bottom:154.431450px;}
.yf7{bottom:154.431631px;}
.y33{bottom:155.203620px;}
.y81{bottom:158.683554px;}
.y6a{bottom:158.938500px;}
.y68{bottom:158.939022px;}
.y69{bottom:164.891400px;}
.yf0{bottom:170.844150px;}
.yf6{bottom:170.844273px;}
.y32{bottom:171.615984px;}
.y80{bottom:175.095918px;}
.y91{bottom:175.096945px;}
.y67{bottom:175.351386px;}
.yef{bottom:187.256700px;}
.yf5{bottom:187.256915px;}
.y31{bottom:188.028348px;}
.y7f{bottom:191.508282px;}
.y90{bottom:191.509309px;}
.y66{bottom:191.763750px;}
.yee{bottom:203.750671px;}
.y30{bottom:204.525443px;}
.y7e{bottom:208.006722px;}
.y8f{bottom:208.007749px;}
.y64{bottom:208.261536px;}
.y65{bottom:214.214100px;}
.yed{bottom:220.163313px;}
.y2f{bottom:220.937807px;}
.y7d{bottom:224.419086px;}
.y8e{bottom:224.420113px;}
.y63{bottom:224.673900px;}
.y61{bottom:224.679407px;}
.y62{bottom:230.626800px;}
.yec{bottom:236.575955px;}
.y2e{bottom:237.350171px;}
.y7c{bottom:240.831450px;}
.y7a{bottom:240.832291px;}
.y8d{bottom:240.832477px;}
.y60{bottom:241.091771px;}
.y7b{bottom:246.869250px;}
.yeb{bottom:253.073702px;}
.ye0{bottom:253.074973px;}
.y2d{bottom:253.847266px;}
.y79{bottom:257.329386px;}
.y8c{bottom:257.329572px;}
.y5f{bottom:257.504135px;}
.yea{bottom:269.486344px;}
.ydf{bottom:269.487614px;}
.y2c{bottom:270.259630px;}
.y78{bottom:273.741750px;}
.y8b{bottom:273.741936px;}
.y76{bottom:273.742627px;}
.y5e{bottom:274.001230px;}
.y77{bottom:279.694500px;}
.ye9{bottom:285.898986px;}
.yde{bottom:285.900256px;}
.y2b{bottom:286.671994px;}
.y8a{bottom:290.154300px;}
.y75{bottom:290.154991px;}
.y5d{bottom:290.413594px;}
.ydd{bottom:302.312898px;}
.y2a{bottom:303.084358px;}
.y74{bottom:306.652086px;}
.y88{bottom:306.654403px;}
.y5c{bottom:306.825958px;}
.y89{bottom:312.604650px;}
.ye8{bottom:318.809375px;}
.ydc{bottom:318.810645px;}
.y29{bottom:319.581453px;}
.y73{bottom:323.064450px;}
.y71{bottom:323.064786px;}
.y87{bottom:323.066767px;}
.y5b{bottom:323.323053px;}
.y72{bottom:329.017200px;}
.ye7{bottom:335.222017px;}
.ydb{bottom:335.223287px;}
.y28{bottom:335.993817px;}
.y70{bottom:339.477150px;}
.y86{bottom:339.479131px;}
.y5a{bottom:339.735417px;}
.ye6{bottom:351.634659px;}
.yda{bottom:351.635929px;}
.y27{bottom:352.406181px;}
.y59{bottom:356.147781px;}
.ye5{bottom:368.132406px;}
.yd9{bottom:368.133676px;}
.y26{bottom:368.903276px;}
.y58{bottom:372.644876px;}
.ye4{bottom:384.545048px;}
.yd8{bottom:384.546318px;}
.y25{bottom:385.315640px;}
.y57{bottom:389.057240px;}
.y96{bottom:391.436011px;}
.ye3{bottom:400.957690px;}
.yd7{bottom:400.958960px;}
.y24{bottom:401.728004px;}
.y56{bottom:405.469604px;}
.y95{bottom:407.848653px;}
.ye2{bottom:417.455437px;}
.yd6{bottom:417.456707px;}
.y23{bottom:418.225099px;}
.y55{bottom:421.966699px;}
.y94{bottom:424.346400px;}
.ye1{bottom:433.868079px;}
.yd5{bottom:433.869349px;}
.y22{bottom:434.637463px;}
.y54{bottom:438.379063px;}
.yd4{bottom:450.281991px;}
.y21{bottom:451.049827px;}
.y53{bottom:454.791427px;}
.yd3{bottom:466.694633px;}
.y20{bottom:467.546922px;}
.y52{bottom:471.203791px;}
.yd2{bottom:483.192380px;}
.ycb{bottom:483.193650px;}
.y1f{bottom:483.959286px;}
.y51{bottom:487.700886px;}
.yd1{bottom:499.605022px;}
.yca{bottom:499.606200px;}
.y1e{bottom:500.371650px;}
.y1c{bottom:500.371836px;}
.y50{bottom:504.113250px;}
.y4e{bottom:504.119970px;}
.y1d{bottom:506.324250px;}
.y4f{bottom:510.066000px;}
.yd0{bottom:516.017663px;}
.yc9{bottom:516.018750px;}
.y1b{bottom:516.784200px;}
.y19{bottom:516.788158px;}
.y119{bottom:520.271652px;}
.y4d{bottom:520.532334px;}
.y1a{bottom:522.822000px;}
.yc8{bottom:532.516408px;}
.y18{bottom:533.285253px;}
.y118{bottom:535.238492px;}
.y144{bottom:536.003008px;}
.y4c{bottom:537.029429px;}
.ycf{bottom:548.928053px;}
.yc7{bottom:548.929050px;}
.y17{bottom:549.697617px;}
.y117{bottom:550.205332px;}
.y143{bottom:552.415650px;}
.y4b{bottom:553.441793px;}
.y116{bottom:565.172172px;}
.yce{bottom:565.340694px;}
.yc6{bottom:565.341600px;}
.y16{bottom:566.109981px;}
.y142{bottom:568.915259px;}
.y4a{bottom:569.854157px;}
.y115{bottom:580.054129px;}
.yc5{bottom:581.839258px;}
.y15{bottom:582.607076px;}
.y141{bottom:585.327623px;}
.y49{bottom:586.351253px;}
.y114{bottom:595.020970px;}
.ycd{bottom:598.251083px;}
.yc4{bottom:598.251900px;}
.y14{bottom:599.019440px;}
.y140{bottom:601.739987px;}
.y48{bottom:602.763616px;}
.y113{bottom:609.987810px;}
.ycc{bottom:614.663725px;}
.yc3{bottom:614.664450px;}
.y13{bottom:615.431804px;}
.y13f{bottom:618.237082px;}
.y47{bottom:619.175980px;}
.y112{bottom:624.954650px;}
.yc2{bottom:631.160234px;}
.y12{bottom:631.928899px;}
.y46{bottom:635.588344px;}
.y13e{bottom:635.754991px;}
.y111{bottom:639.836607px;}
.yc1{bottom:647.572876px;}
.y11{bottom:648.341263px;}
.y45{bottom:652.085439px;}
.y13d{bottom:652.167355px;}
.y110{bottom:654.803447px;}
.yb4{bottom:663.986788px;}
.y10{bottom:664.753627px;}
.y44{bottom:668.497803px;}
.y13c{bottom:668.664450px;}
.y10f{bottom:669.770287px;}
.y13b{bottom:674.617200px;}
.yb3{bottom:680.399430px;}
.yf{bottom:681.165991px;}
.y10e{bottom:684.737127px;}
.y43{bottom:684.910167px;}
.yc0{bottom:696.895907px;}
.yb2{bottom:696.897177px;}
.ye{bottom:697.663086px;}
.y13a{bottom:697.747950px;}
.y10d{bottom:699.619085px;}
.y42{bottom:701.407262px;}
.y139{bottom:703.785600px;}
.yd{bottom:714.075450px;}
.yb{bottom:714.076663px;}
.yb1{bottom:714.585130px;}
.y10c{bottom:714.585925px;}
.y41{bottom:717.819626px;}
.yc{bottom:720.028200px;}
.y10b{bottom:729.552765px;}
.ya{bottom:730.489027px;}
.y138{bottom:730.658941px;}
.yb0{bottom:730.997772px;}
.y40{bottom:734.231990px;}
.y10a{bottom:744.434722px;}
.y9{bottom:746.986122px;}
.y137{bottom:747.071305px;}
.yaf{bottom:747.495519px;}
.y3f{bottom:750.729085px;}
.y109{bottom:759.401562px;}
.yae{bottom:762.632850px;}
.y8{bottom:763.398486px;}
.y136{bottom:763.568400px;}
.yac{bottom:763.907891px;}
.y3e{bottom:767.141449px;}
.yad{bottom:768.245550px;}
.y135{bottom:769.521000px;}
.y108{bottom:774.368402px;}
.yab{bottom:779.045222px;}
.y7{bottom:779.810850px;}
.y134{bottom:779.980950px;}
.y3d{bottom:783.553813px;}
.y133{bottom:785.933700px;}
.y107{bottom:789.335243px;}
.ybf{bottom:795.540699px;}
.yaa{bottom:795.542969px;}
.y132{bottom:796.393686px;}
.y3c{bottom:800.050908px;}
.y106{bottom:804.217200px;}
.y6{bottom:811.613432px;}
.ybe{bottom:811.953340px;}
.ya9{bottom:811.955611px;}
.y131{bottom:812.806050px;}
.y3b{bottom:816.463272px;}
.y130{bottom:818.843850px;}
.ybd{bottom:828.365982px;}
.ya8{bottom:828.368253px;}
.y12f{bottom:829.303986px;}
.y5{bottom:832.533662px;}
.y3a{bottom:832.875636px;}
.y105{bottom:834.235950px;}
.ya7{bottom:844.866000px;}
.y12e{bottom:845.716350px;}
.y39{bottom:849.288000px;}
.y37{bottom:849.298801px;}
.y12d{bottom:851.669100px;}
.y4{bottom:853.453891px;}
.y38{bottom:855.325800px;}
.ybc{bottom:861.276371px;}
.ya6{bottom:861.278550px;}
.y12c{bottom:862.129405px;}
.y36{bottom:865.795896px;}
.y3{bottom:874.374121px;}
.y104{bottom:876.331477px;}
.ybb{bottom:877.689013px;}
.ya5{bottom:877.691100px;}
.y12b{bottom:878.626500px;}
.y35{bottom:882.208260px;}
.y12a{bottom:884.579250px;}
.y103{bottom:892.743841px;}
.yba{bottom:894.101655px;}
.ya4{bottom:894.103800px;}
.y129{bottom:895.039386px;}
.y2{bottom:895.294350px;}
.y34{bottom:898.620624px;}
.y102{bottom:909.156205px;}
.yb9{bottom:910.599402px;}
.ya3{bottom:910.601400px;}
.y128{bottom:911.451750px;}
.y127{bottom:917.489941px;}
.y101{bottom:925.653300px;}
.yb8{bottom:927.012044px;}
.ya2{bottom:927.013858px;}
.y1{bottom:937.133550px;}
.y126{bottom:940.620300px;}
.y124{bottom:940.620486px;}
.ya1{bottom:943.426500px;}
.y125{bottom:946.573050px;}
.y100{bottom:956.692800px;}
.y122{bottom:957.032850px;}
.yb7{bottom:959.922433px;}
.ya0{bottom:959.924250px;}
.y123{bottom:963.070650px;}
.yb6{bottom:976.335075px;}
.y9f{bottom:976.335812px;}
.y121{bottom:991.052237px;}
.yb5{bottom:992.747717px;}
.y9e{bottom:992.748453px;}
.y6f{bottom:994.875300px;}
.yff{bottom:998.788682px;}
.y120{bottom:1006.019077px;}
.y9d{bottom:1009.246201px;}
.yfe{bottom:1015.285777px;}
.y11f{bottom:1020.985917px;}
.y9c{bottom:1025.658842px;}
.yfd{bottom:1031.698141px;}
.y11e{bottom:1035.867875px;}
.yfc{bottom:1048.110505px;}
.y9b{bottom:1048.959942px;}
.y11d{bottom:1050.834715px;}
.yfb{bottom:1064.607600px;}
.y11c{bottom:1065.801555px;}
.y9a{bottom:1070.645308px;}
.y11b{bottom:1080.683513px;}
.y99{bottom:1087.057950px;}
.yfa{bottom:1095.646950px;}
.y11a{bottom:1095.650353px;}
.y98{bottom:1129.747800px;}
.y6e{bottom:1131.023400px;}
.h14{height:23.492759px;}
.he{height:24.961748px;}
.h7{height:26.429410px;}
.h11{height:26.788018px;}
.hd{height:32.345137px;}
.h9{height:34.479085px;}
.h8{height:35.244224px;}
.hc{height:37.446380px;}
.hb{height:37.954472px;}
.hf{height:38.614992px;}
.h6{height:39.648979px;}
.h12{height:40.186957px;}
.h5{height:40.886328px;}
.h13{height:42.650896px;}
.h10{height:42.995202px;}
.ha{height:49.118238px;}
.h2{height:52.865452px;}
.h3{height:53.582758px;}
.h4{height:55.017370px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:74.324400px;}
.x20{left:83.338500px;}
.x28{left:84.787209px;}
.x2a{left:90.907597px;}
.x4{left:92.267290px;}
.x22{left:93.798450px;}
.x21{left:101.281769px;}
.x23{left:103.577850px;}
.x26{left:104.600257px;}
.x2{left:118.374750px;}
.x3{left:130.790550px;}
.x7{left:135.042450px;}
.x8{left:140.229900px;}
.x5{left:282.245550px;}
.x6{left:287.433000px;}
.x9{left:302.144850px;}
.xa{left:307.417200px;}
.x18{left:315.325950px;}
.x1f{left:327.146400px;}
.x1a{left:328.251900px;}
.x19{left:330.292800px;}
.x29{left:351.637650px;}
.x17{left:360.311700px;}
.x16{left:362.182500px;}
.x1b{left:370.431450px;}
.x1c{left:380.636100px;}
.x24{left:389.905500px;}
.x25{left:394.837650px;}
.x1e{left:435.911700px;}
.xc{left:459.894960px;}
.x41{left:466.355850px;}
.x3d{left:467.971500px;}
.x2b{left:476.479172px;}
.xb{left:477.837871px;}
.x14{left:489.146250px;}
.x35{left:496.459093px;}
.x15{left:498.670650px;}
.x36{left:510.661350px;}
.x3e{left:514.147497px;}
.x37{left:516.188850px;}
.x11{left:546.292800px;}
.x2c{left:554.456550px;}
.x12{left:556.412400px;}
.x2d{left:563.385750px;}
.x2e{left:568.318050px;}
.x38{left:574.100700px;}
.x2f{left:577.247100px;}
.x39{left:579.628200px;}
.xf{left:589.747950px;}
.x10{left:595.020300px;}
.x42{left:620.618352px;}
.x30{left:636.944700px;}
.xd{left:646.554150px;}
.xe{left:651.826650px;}
.x3a{left:668.069100px;}
.x3b{left:673.596750px;}
.x1d{left:687.968400px;}
.x31{left:700.894350px;}
.x27{left:702.680431px;}
.x32{left:705.826650px;}
.x40{left:755.066079px;}
.x3c{left:762.888000px;}
.x33{left:776.494200px;}
.x34{left:782.021850px;}
.x3f{left:790.697706px;}
.x13{left:813.316350px;}
@media print{
.v1{vertical-align:-4.534439pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.839411pt;}
.lsd{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.066948pt;}
.ls26{letter-spacing:0.086066pt;}
.ls1d{letter-spacing:0.099360pt;}
.ls21{letter-spacing:0.103877pt;}
.ls23{letter-spacing:0.126458pt;}
.ls1{letter-spacing:0.143461pt;}
.ls3{letter-spacing:0.162589pt;}
.ls1c{letter-spacing:0.167106pt;}
.ls1e{letter-spacing:0.171622pt;}
.ls24{letter-spacing:0.178532pt;}
.ls27{letter-spacing:0.219946pt;}
.ls25{letter-spacing:0.225291pt;}
.lsb{letter-spacing:0.229537pt;}
.ls1a{letter-spacing:0.473421pt;}
.ls18{letter-spacing:0.478203pt;}
.lse{letter-spacing:0.482985pt;}
.lsf{letter-spacing:0.487767pt;}
.ls16{letter-spacing:0.492549pt;}
.ls5{letter-spacing:0.502113pt;}
.ls13{letter-spacing:0.506895pt;}
.ls12{letter-spacing:0.511677pt;}
.ls7{letter-spacing:0.521241pt;}
.ls14{letter-spacing:0.530805pt;}
.ls1b{letter-spacing:0.535587pt;}
.lsa{letter-spacing:0.545151pt;}
.ls9{letter-spacing:0.554715pt;}
.ls6{letter-spacing:0.559497pt;}
.ls8{letter-spacing:0.578625pt;}
.ls11{letter-spacing:0.631228pt;}
.ls19{letter-spacing:0.664702pt;}
.ls17{letter-spacing:0.765124pt;}
.ls10{letter-spacing:0.832073pt;}
.ls2{letter-spacing:9.516233pt;}
.ls0{letter-spacing:9.521015pt;}
.ls1f{letter-spacing:10.667885pt;}
.ls22{letter-spacing:10.668418pt;}
.ls28{letter-spacing:11.620325pt;}
.ls20{letter-spacing:12.189692pt;}
.lsc{letter-spacing:18.975082pt;}
.ls15{letter-spacing:20.486202pt;}
.wsfb{word-spacing:-11.668145pt;}
.wsd7{word-spacing:-0.058448pt;}
.wsa{word-spacing:-0.047820pt;}
.wsa3{word-spacing:-0.045164pt;}
.ws7b{word-spacing:-0.042508pt;}
.wsf9{word-spacing:-0.031876pt;}
.ws7d{word-spacing:0.000000pt;}
.ws3a{word-spacing:9.382336pt;}
.ws1a{word-spacing:9.454067pt;}
.ws19{word-spacing:9.669258pt;}
.ws17{word-spacing:9.693168pt;}
.ws2c{word-spacing:9.769680pt;}
.wse7{word-spacing:10.057330pt;}
.wsf8{word-spacing:10.116841pt;}
.wse9{word-spacing:10.121091pt;}
.ws7c{word-spacing:10.172101pt;}
.wsa2{word-spacing:10.175389pt;}
.ws7a{word-spacing:10.180602pt;}
.wse5{word-spacing:10.235862pt;}
.wsf1{word-spacing:10.329379pt;}
.ws10e{word-spacing:10.388890pt;}
.wsa1{word-spacing:10.401208pt;}
.wsb6{word-spacing:10.590895pt;}
.wsb5{word-spacing:10.622510pt;}
.wsaf{word-spacing:10.631543pt;}
.wsa0{word-spacing:10.636059pt;}
.ws9f{word-spacing:10.649608pt;}
.wsc6{word-spacing:10.658641pt;}
.ws3c{word-spacing:10.668701pt;}
.wsc9{word-spacing:10.672190pt;}
.wsb0{word-spacing:10.676707pt;}
.wsa8{word-spacing:10.685739pt;}
.wsbf{word-spacing:10.690256pt;}
.wsbd{word-spacing:10.699288pt;}
.wsa7{word-spacing:10.703805pt;}
.wscd{word-spacing:10.712838pt;}
.wsa9{word-spacing:10.717354pt;}
.wsb8{word-spacing:10.721870pt;}
.wsa5{word-spacing:10.726387pt;}
.wsb1{word-spacing:10.735419pt;}
.wsc7{word-spacing:10.739936pt;}
.wsab{word-spacing:10.744452pt;}
.wsc2{word-spacing:10.753485pt;}
.wsbc{word-spacing:10.758001pt;}
.wsb2{word-spacing:10.767034pt;}
.wsc5{word-spacing:10.771550pt;}
.wsca{word-spacing:10.776067pt;}
.ws10d{word-spacing:10.780583pt;}
.wsb4{word-spacing:10.785100pt;}
.wsbe{word-spacing:10.798649pt;}
.wsb7{word-spacing:10.812198pt;}
.wsad{word-spacing:10.821231pt;}
.wsaa{word-spacing:10.825747pt;}
.wsc0{word-spacing:10.830263pt;}
.wsba{word-spacing:10.834780pt;}
.wscc{word-spacing:10.843812pt;}
.wsa6{word-spacing:10.852845pt;}
.wsae{word-spacing:10.861878pt;}
.wsa4{word-spacing:10.866394pt;}
.wscb{word-spacing:10.875427pt;}
.wsd0{word-spacing:10.893492pt;}
.wsb9{word-spacing:10.898009pt;}
.wsac{word-spacing:10.934140pt;}
.wsbb{word-spacing:10.952205pt;}
.wsc8{word-spacing:10.961238pt;}
.wsee{word-spacing:10.966995pt;}
.wsb3{word-spacing:10.970271pt;}
.wsce{word-spacing:10.992853pt;}
.wsc3{word-spacing:10.997369pt;}
.ws10c{word-spacing:11.001885pt;}
.wsc1{word-spacing:11.028984pt;}
.wsc4{word-spacing:11.110278pt;}
.wscf{word-spacing:11.178024pt;}
.wsfc{word-spacing:11.271237pt;}
.ws90{word-spacing:11.276019pt;}
.ws15{word-spacing:11.304711pt;}
.ws36{word-spacing:11.333403pt;}
.ws102{word-spacing:11.347749pt;}
.wsff{word-spacing:11.357313pt;}
.ws108{word-spacing:11.371659pt;}
.ws91{word-spacing:11.381223pt;}
.wsd1{word-spacing:11.405134pt;}
.ws26{word-spacing:11.409916pt;}
.ws100{word-spacing:11.448172pt;}
.ws101{word-spacing:11.457736pt;}
.wsfd{word-spacing:11.472082pt;}
.ws109{word-spacing:11.491210pt;}
.wsde{word-spacing:11.500774pt;}
.ws75{word-spacing:11.519902pt;}
.ws106{word-spacing:11.524684pt;}
.ws49{word-spacing:11.562940pt;}
.wsfa{word-spacing:11.572505pt;}
.ws56{word-spacing:11.577287pt;}
.ws6b{word-spacing:11.582069pt;}
.ws48{word-spacing:11.615543pt;}
.ws10a{word-spacing:11.634671pt;}
.wsfe{word-spacing:11.644235pt;}
.ws59{word-spacing:11.653799pt;}
.ws107{word-spacing:11.663363pt;}
.ws103{word-spacing:11.682491pt;}
.ws6d{word-spacing:11.730311pt;}
.ws25{word-spacing:11.739875pt;}
.wsd3{word-spacing:11.773350pt;}
.ws104{word-spacing:11.778132pt;}
.ws105{word-spacing:11.782914pt;}
.ws6c{word-spacing:11.806824pt;}
.ws51{word-spacing:11.854644pt;}
.ws6a{word-spacing:11.864208pt;}
.wse6{word-spacing:12.004184pt;}
.ws58{word-spacing:12.079399pt;}
.wse{word-spacing:12.098527pt;}
.wsd{word-spacing:12.112874pt;}
.ws10b{word-spacing:12.203732pt;}
.ws1e{word-spacing:12.213296pt;}
.ws79{word-spacing:12.344246pt;}
.ws7{word-spacing:12.667589pt;}
.ws9e{word-spacing:12.718107pt;}
.ws24{word-spacing:13.093189pt;}
.wsf2{word-spacing:13.117887pt;}
.wsef{word-spacing:13.134890pt;}
.wse4{word-spacing:13.330425pt;}
.ws77{word-spacing:13.423149pt;}
.ws83{word-spacing:13.461405pt;}
.ws0{word-spacing:13.472601pt;}
.wsf7{word-spacing:13.564218pt;}
.ws30{word-spacing:13.590520pt;}
.ws76{word-spacing:13.619212pt;}
.ws47{word-spacing:13.738763pt;}
.ws9d{word-spacing:13.960110pt;}
.ws46{word-spacing:13.963518pt;}
.ws9c{word-spacing:13.978175pt;}
.ws9b{word-spacing:14.033365pt;}
.wse0{word-spacing:14.116818pt;}
.wsd8{word-spacing:14.150261pt;}
.wse2{word-spacing:14.218837pt;}
.wsd2{word-spacing:14.290536pt;}
.ws35{word-spacing:14.326952pt;}
.wsec{word-spacing:14.733180pt;}
.wsf4{word-spacing:14.788440pt;}
.ws86{word-spacing:14.886449pt;}
.ws78{word-spacing:15.010782pt;}
.ws31{word-spacing:15.049038pt;}
.ws37{word-spacing:15.235537pt;}
.wsf6{word-spacing:15.324038pt;}
.ws4{word-spacing:15.449177pt;}
.ws3{word-spacing:15.500186pt;}
.ws67{word-spacing:15.603753pt;}
.ws13{word-spacing:15.642009pt;}
.ws38{word-spacing:15.704176pt;}
.ws1{word-spacing:15.710595pt;}
.ws63{word-spacing:15.780688pt;}
.ws2{word-spacing:15.793484pt;}
.ws2d{word-spacing:15.809380pt;}
.wsd5{word-spacing:15.842854pt;}
.wse1{word-spacing:16.033917pt;}
.ws65{word-spacing:16.110648pt;}
.ws66{word-spacing:16.225416pt;}
.ws9a{word-spacing:16.440608pt;}
.ws8b{word-spacing:16.521902pt;}
.wsd6{word-spacing:16.550594pt;}
.ws92{word-spacing:16.598415pt;}
.ws27{word-spacing:16.703619pt;}
.ws43{word-spacing:16.780132pt;}
.ws57{word-spacing:16.851862pt;}
.ws64{word-spacing:16.880554pt;}
.ws4a{word-spacing:16.980977pt;}
.ws3f{word-spacing:17.043143pt;}
.ws42{word-spacing:17.071835pt;}
.ws4b{word-spacing:17.081399pt;}
.ws55{word-spacing:17.129220pt;}
.ws3e{word-spacing:17.134002pt;}
.ws74{word-spacing:17.143566pt;}
.ws88{word-spacing:17.224860pt;}
.ws87{word-spacing:17.282244pt;}
.ws4e{word-spacing:17.306155pt;}
.ws73{word-spacing:17.363539pt;}
.ws4c{word-spacing:17.425705pt;}
.ws4d{word-spacing:17.449615pt;}
.wsd4{word-spacing:17.755665pt;}
.wsf{word-spacing:17.913472pt;}
.ws5c{word-spacing:18.013894pt;}
.ws5b{word-spacing:18.200393pt;}
.ws14{word-spacing:18.516007pt;}
.wsf5{word-spacing:18.869183pt;}
.ws6{word-spacing:18.932044pt;}
.ws70{word-spacing:18.994210pt;}
.ws22{word-spacing:19.003774pt;}
.wse3{word-spacing:19.060468pt;}
.ws6f{word-spacing:19.108979pt;}
.ws94{word-spacing:19.185491pt;}
.ws23{word-spacing:19.357644pt;}
.ws5{word-spacing:19.367208pt;}
.wse8{word-spacing:19.438786pt;}
.ws95{word-spacing:19.620655pt;}
.ws34{word-spacing:19.735424pt;}
.ws5e{word-spacing:19.979307pt;}
.wseb{word-spacing:20.152916pt;}
.wsdd{word-spacing:20.170588pt;}
.ws29{word-spacing:20.247101pt;}
.ws7f{word-spacing:20.275793pt;}
.ws7e{word-spacing:20.333177pt;}
.wsdc{word-spacing:20.557933pt;}
.wsea{word-spacing:20.769279pt;}
.ws10{word-spacing:20.811380pt;}
.wsda{word-spacing:20.897457pt;}
.ws8d{word-spacing:20.950059pt;}
.wsd9{word-spacing:21.060045pt;}
.ws62{word-spacing:21.112648pt;}
.wsdf{word-spacing:21.343133pt;}
.wsf3{word-spacing:21.428148pt;}
.ws8c{word-spacing:21.533466pt;}
.ws28{word-spacing:21.552594pt;}
.ws2b{word-spacing:22.145565pt;}
.wsed{word-spacing:22.248548pt;}
.ws82{word-spacing:22.265116pt;}
.ws3d{word-spacing:22.293808pt;}
.ws8f{word-spacing:22.566384pt;}
.ws72{word-spacing:23.259778pt;}
.ws71{word-spacing:23.355418pt;}
.ws1b{word-spacing:23.871877pt;}
.ws96{word-spacing:23.891005pt;}
.ws97{word-spacing:23.929261pt;}
.ws3b{word-spacing:24.000992pt;}
.ws4f{word-spacing:24.106196pt;}
.ws93{word-spacing:24.182709pt;}
.ws84{word-spacing:24.469630pt;}
.ws20{word-spacing:24.866539pt;}
.ws85{word-spacing:24.876103pt;}
.wsb{word-spacing:25.277793pt;}
.ws8e{word-spacing:25.316049pt;}
.ws2e{word-spacing:25.545586pt;}
.ws2f{word-spacing:25.550368pt;}
.ws1c{word-spacing:25.741650pt;}
.ws1d{word-spacing:25.894674pt;}
.ws68{word-spacing:26.195942pt;}
.ws60{word-spacing:26.234198pt;}
.ws69{word-spacing:26.310711pt;}
.ws61{word-spacing:26.741093pt;}
.ws5f{word-spacing:26.951502pt;}
.wsdb{word-spacing:27.023233pt;}
.ws99{word-spacing:27.200168pt;}
.ws53{word-spacing:27.209732pt;}
.ws9{word-spacing:27.252770pt;}
.ws1f{word-spacing:27.998766pt;}
.ws52{word-spacing:28.496097pt;}
.ws12{word-spacing:28.500879pt;}
.ws40{word-spacing:28.907351pt;}
.ws41{word-spacing:29.179927pt;}
.ws98{word-spacing:29.854192pt;}
.ws50{word-spacing:31.566158pt;}
.ws21{word-spacing:31.738311pt;}
.ws2a{word-spacing:32.135219pt;}
.ws39{word-spacing:33.584173pt;}
.ws16{word-spacing:34.239311pt;}
.ws80{word-spacing:34.358862pt;}
.ws5a{word-spacing:34.483194pt;}
.ws81{word-spacing:34.545361pt;}
.ws11{word-spacing:34.923141pt;}
.ws33{word-spacing:35.449164pt;}
.ws32{word-spacing:35.597407pt;}
.ws8{word-spacing:37.591512pt;}
.wsf0{word-spacing:37.993412pt;}
.ws18{word-spacing:40.934148pt;}
.ws44{word-spacing:41.063263pt;}
.ws45{word-spacing:41.417133pt;}
.wsc{word-spacing:42.220513pt;}
.ws89{word-spacing:42.340064pt;}
.ws5d{word-spacing:45.328831pt;}
.ws6e{word-spacing:45.338395pt;}
.ws54{word-spacing:46.280454pt;}
.ws8a{word-spacing:52.124091pt;}
._23{margin-left:-16.784914pt;}
._22{margin-left:-11.620325pt;}
._1d{margin-left:-7.933382pt;}
._d{margin-left:-6.369660pt;}
._5{margin-left:-5.011564pt;}
._21{margin-left:-4.113985pt;}
._0{margin-left:-3.213531pt;}
._2{margin-left:-1.855432pt;}
._20{margin-left:-0.896133pt;}
._17{width:1.056828pt;}
._24{width:2.620551pt;}
._1f{width:6.489537pt;}
._10{width:9.836629pt;}
._18{width:10.783470pt;}
._13{width:12.122438pt;}
._4{width:13.690942pt;}
._1{width:15.283400pt;}
._f{width:16.842298pt;}
._15{width:18.162137pt;}
._3{width:19.988871pt;}
._11{width:21.069609pt;}
._9{width:22.073835pt;}
._1a{width:23.298034pt;}
._c{width:24.350080pt;}
._8{width:26.277242pt;}
._19{width:27.324500pt;}
._7{width:28.271342pt;}
._14{width:30.026345pt;}
._1b{width:31.408360pt;}
._e{width:33.359418pt;}
._12{width:34.645783pt;}
._a{width:36.085173pt;}
._6{width:38.567045pt;}
._b{width:40.967622pt;}
._16{width:47.289462pt;}
._1c{width:63.775708pt;}
._1e{width:1597.992246pt;}
.fs8{font-size:28.334400pt;}
.fs7{font-size:30.106133pt;}
.fs2{font-size:31.876267pt;}
.fs6{font-size:40.646400pt;}
.fs3{font-size:42.507733pt;}
.fs5{font-size:45.163733pt;}
.fs1{font-size:47.820267pt;}
.fs4{font-size:58.448000pt;}
.fs0{font-size:63.760533pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:53.215733pt;}
.y93{bottom:82.620533pt;}
.y85{bottom:82.621660pt;}
.y6d{bottom:82.771602pt;}
.y146{bottom:85.266133pt;}
.y145{bottom:89.952800pt;}
.yf4{bottom:93.429867pt;}
.y6c{bottom:96.075460pt;}
.y84{bottom:97.210428pt;}
.yf9{bottom:108.018882pt;}
.yf3{bottom:108.018933pt;}
.y6b{bottom:109.303867pt;}
.y92{bottom:110.211067pt;}
.y83{bottom:111.799196pt;}
.yf2{bottom:122.607867pt;}
.yf8{bottom:122.607897pt;}
.y82{bottom:126.387964pt;}
.yf1{bottom:137.272400pt;}
.yf7{bottom:137.272561pt;}
.y33{bottom:137.958774pt;}
.y81{bottom:141.052048pt;}
.y6a{bottom:141.278667pt;}
.y68{bottom:141.279131pt;}
.y69{bottom:146.570133pt;}
.yf0{bottom:151.861467pt;}
.yf6{bottom:151.861576pt;}
.y32{bottom:152.547541pt;}
.y80{bottom:155.640816pt;}
.y91{bottom:155.641729pt;}
.y67{bottom:155.867899pt;}
.yef{bottom:166.450400pt;}
.yf5{bottom:166.450591pt;}
.y31{bottom:167.136309pt;}
.y7f{bottom:170.229584pt;}
.y90{bottom:170.230497pt;}
.y66{bottom:170.456667pt;}
.yee{bottom:181.111708pt;}
.y30{bottom:181.800394pt;}
.y7e{bottom:184.894864pt;}
.y8f{bottom:184.895777pt;}
.y64{bottom:185.121365pt;}
.y65{bottom:190.412533pt;}
.yed{bottom:195.700723pt;}
.y2f{bottom:196.389162pt;}
.y7d{bottom:199.483632pt;}
.y8e{bottom:199.484545pt;}
.y63{bottom:199.710133pt;}
.y61{bottom:199.715029pt;}
.y62{bottom:205.001600pt;}
.yec{bottom:210.289738pt;}
.y2e{bottom:210.977930pt;}
.y7c{bottom:214.072400pt;}
.y7a{bottom:214.073147pt;}
.y8d{bottom:214.073313pt;}
.y60{bottom:214.303796pt;}
.y7b{bottom:219.439333pt;}
.yeb{bottom:224.954402pt;}
.ye0{bottom:224.955531pt;}
.y2d{bottom:225.642015pt;}
.y79{bottom:228.737232pt;}
.y8c{bottom:228.737398pt;}
.y5f{bottom:228.892564pt;}
.yea{bottom:239.543417pt;}
.ydf{bottom:239.544546pt;}
.y2c{bottom:240.230782pt;}
.y78{bottom:243.326000pt;}
.y8b{bottom:243.326165pt;}
.y76{bottom:243.326780pt;}
.y5e{bottom:243.556649pt;}
.y77{bottom:248.617333pt;}
.ye9{bottom:254.132432pt;}
.yde{bottom:254.133561pt;}
.y2b{bottom:254.819550pt;}
.y8a{bottom:257.914933pt;}
.y75{bottom:257.915547pt;}
.y5d{bottom:258.145417pt;}
.ydd{bottom:268.722576pt;}
.y2a{bottom:269.408318pt;}
.y74{bottom:272.579632pt;}
.y88{bottom:272.581692pt;}
.y5c{bottom:272.734185pt;}
.y89{bottom:277.870800pt;}
.ye8{bottom:283.386111pt;}
.ydc{bottom:283.387240pt;}
.y29{bottom:284.072403pt;}
.y73{bottom:287.168400pt;}
.y71{bottom:287.168699pt;}
.y87{bottom:287.170460pt;}
.y5b{bottom:287.398270pt;}
.y72{bottom:292.459733pt;}
.ye7{bottom:297.975126pt;}
.ydb{bottom:297.976255pt;}
.y28{bottom:298.661171pt;}
.y70{bottom:301.757467pt;}
.y86{bottom:301.759227pt;}
.y5a{bottom:301.987037pt;}
.ye6{bottom:312.564141pt;}
.yda{bottom:312.565270pt;}
.y27{bottom:313.249939pt;}
.y59{bottom:316.575805pt;}
.ye5{bottom:327.228805pt;}
.yd9{bottom:327.229934pt;}
.y26{bottom:327.914023pt;}
.y58{bottom:331.239890pt;}
.ye4{bottom:341.817820pt;}
.yd8{bottom:341.818949pt;}
.y25{bottom:342.502791pt;}
.y57{bottom:345.828658pt;}
.y96{bottom:347.943121pt;}
.ye3{bottom:356.406835pt;}
.yd7{bottom:356.407964pt;}
.y24{bottom:357.091559pt;}
.y56{bottom:360.417426pt;}
.y95{bottom:362.532136pt;}
.ye2{bottom:371.071499pt;}
.yd6{bottom:371.072628pt;}
.y23{bottom:371.755644pt;}
.y55{bottom:375.081510pt;}
.y94{bottom:377.196800pt;}
.ye1{bottom:385.660514pt;}
.yd5{bottom:385.661643pt;}
.y22{bottom:386.344412pt;}
.y54{bottom:389.670278pt;}
.yd4{bottom:400.250658pt;}
.y21{bottom:400.933180pt;}
.y53{bottom:404.259046pt;}
.yd3{bottom:414.839673pt;}
.y20{bottom:415.597264pt;}
.y52{bottom:418.847814pt;}
.yd2{bottom:429.504338pt;}
.ycb{bottom:429.505467pt;}
.y1f{bottom:430.186032pt;}
.y51{bottom:433.511899pt;}
.yd1{bottom:444.093353pt;}
.yca{bottom:444.094400pt;}
.y1e{bottom:444.774800pt;}
.y1c{bottom:444.774965pt;}
.y50{bottom:448.100667pt;}
.y4e{bottom:448.106640pt;}
.y1d{bottom:450.066000pt;}
.y4f{bottom:453.392000pt;}
.yd0{bottom:458.682367pt;}
.yc9{bottom:458.683333pt;}
.y1b{bottom:459.363733pt;}
.y19{bottom:459.367251pt;}
.y119{bottom:462.463691pt;}
.y4d{bottom:462.695408pt;}
.y1a{bottom:464.730667pt;}
.yc8{bottom:473.347918pt;}
.y18{bottom:474.031336pt;}
.y118{bottom:475.767548pt;}
.y144{bottom:476.447118pt;}
.y4c{bottom:477.359493pt;}
.ycf{bottom:487.936047pt;}
.yc7{bottom:487.936933pt;}
.y17{bottom:488.620104pt;}
.y117{bottom:489.071406pt;}
.y143{bottom:491.036133pt;}
.y4b{bottom:491.948261pt;}
.y116{bottom:502.375264pt;}
.yce{bottom:502.525062pt;}
.yc6{bottom:502.525867pt;}
.y16{bottom:503.208872pt;}
.y142{bottom:505.702453pt;}
.y4a{bottom:506.537029pt;}
.y115{bottom:515.603671pt;}
.yc5{bottom:517.190452pt;}
.y15{bottom:517.872957pt;}
.y141{bottom:520.291220pt;}
.y49{bottom:521.201113pt;}
.y114{bottom:528.907528pt;}
.ycd{bottom:531.778741pt;}
.yc4{bottom:531.779467pt;}
.y14{bottom:532.461725pt;}
.y140{bottom:534.879988pt;}
.y48{bottom:535.789881pt;}
.y113{bottom:542.211386pt;}
.ycc{bottom:546.367756pt;}
.yc3{bottom:546.368400pt;}
.y13{bottom:547.050492pt;}
.y13f{bottom:549.544073pt;}
.y47{bottom:550.378649pt;}
.y112{bottom:555.515244pt;}
.yc2{bottom:561.031319pt;}
.y12{bottom:561.714577pt;}
.y46{bottom:564.967417pt;}
.y13e{bottom:565.115547pt;}
.y111{bottom:568.743651pt;}
.yc1{bottom:575.620334pt;}
.y11{bottom:576.303345pt;}
.y45{bottom:579.631502pt;}
.y13d{bottom:579.704315pt;}
.y110{bottom:582.047509pt;}
.yb4{bottom:590.210478pt;}
.y10{bottom:590.892113pt;}
.y44{bottom:594.220270pt;}
.y13c{bottom:594.368400pt;}
.y10f{bottom:595.351366pt;}
.y13b{bottom:599.659733pt;}
.yb3{bottom:604.799493pt;}
.yf{bottom:605.480881pt;}
.y10e{bottom:608.655224pt;}
.y43{bottom:608.809037pt;}
.yc0{bottom:619.463028pt;}
.yb2{bottom:619.464158pt;}
.ye{bottom:620.144965pt;}
.y13a{bottom:620.220400pt;}
.y10d{bottom:621.883631pt;}
.y42{bottom:623.473122pt;}
.y139{bottom:625.587200pt;}
.yd{bottom:634.733733pt;}
.yb{bottom:634.734812pt;}
.yb1{bottom:635.186782pt;}
.y10c{bottom:635.187489pt;}
.y41{bottom:638.061890pt;}
.yc{bottom:640.025067pt;}
.y10b{bottom:648.491347pt;}
.ya{bottom:649.323580pt;}
.y138{bottom:649.474614pt;}
.yb0{bottom:649.775797pt;}
.y40{bottom:652.650658pt;}
.y10a{bottom:661.719753pt;}
.y9{bottom:663.987664pt;}
.y137{bottom:664.063382pt;}
.yaf{bottom:664.440461pt;}
.y3f{bottom:667.314743pt;}
.y109{bottom:675.023611pt;}
.yae{bottom:677.895867pt;}
.y8{bottom:678.576432pt;}
.y136{bottom:678.727467pt;}
.yac{bottom:679.029236pt;}
.y3e{bottom:681.903510pt;}
.yad{bottom:682.884933pt;}
.y135{bottom:684.018667pt;}
.y108{bottom:688.327469pt;}
.yab{bottom:692.484642pt;}
.y7{bottom:693.165200pt;}
.y134{bottom:693.316400pt;}
.y3d{bottom:696.492278pt;}
.y133{bottom:698.607733pt;}
.y107{bottom:701.631327pt;}
.ybf{bottom:707.147288pt;}
.yaa{bottom:707.149306pt;}
.y132{bottom:707.905499pt;}
.y3c{bottom:711.156363pt;}
.y106{bottom:714.859733pt;}
.y6{bottom:721.434162pt;}
.ybe{bottom:721.736303pt;}
.ya9{bottom:721.738321pt;}
.y131{bottom:722.494267pt;}
.y3b{bottom:725.745131pt;}
.y130{bottom:727.861200pt;}
.ybd{bottom:736.325318pt;}
.ya8{bottom:736.327336pt;}
.y12f{bottom:737.159099pt;}
.y5{bottom:740.029921pt;}
.y3a{bottom:740.333899pt;}
.y105{bottom:741.543067pt;}
.ya7{bottom:750.992000pt;}
.y12e{bottom:751.747867pt;}
.y39{bottom:754.922667pt;}
.y37{bottom:754.932268pt;}
.y12d{bottom:757.039200pt;}
.y4{bottom:758.625681pt;}
.y38{bottom:760.289600pt;}
.ybc{bottom:765.578997pt;}
.ya6{bottom:765.580933pt;}
.y12c{bottom:766.337249pt;}
.y36{bottom:769.596352pt;}
.y3{bottom:777.221440pt;}
.y104{bottom:778.961313pt;}
.ybb{bottom:780.168012pt;}
.ya5{bottom:780.169867pt;}
.y12b{bottom:781.001333pt;}
.y35{bottom:784.185120pt;}
.y12a{bottom:786.292667pt;}
.y103{bottom:793.550081pt;}
.yba{bottom:794.757027pt;}
.ya4{bottom:794.758933pt;}
.y129{bottom:795.590565pt;}
.y2{bottom:795.817200pt;}
.y34{bottom:798.773888pt;}
.y102{bottom:808.138849pt;}
.yb9{bottom:809.421691pt;}
.ya3{bottom:809.423467pt;}
.y128{bottom:810.179333pt;}
.y127{bottom:815.546614pt;}
.y101{bottom:822.802933pt;}
.yb8{bottom:824.010706pt;}
.ya2{bottom:824.012318pt;}
.y1{bottom:833.007600pt;}
.y126{bottom:836.106933pt;}
.y124{bottom:836.107099pt;}
.ya1{bottom:838.601333pt;}
.y125{bottom:841.398267pt;}
.y100{bottom:850.393600pt;}
.y122{bottom:850.695867pt;}
.yb7{bottom:853.264385pt;}
.ya0{bottom:853.266000pt;}
.y123{bottom:856.062800pt;}
.yb6{bottom:867.853400pt;}
.y9f{bottom:867.854055pt;}
.y121{bottom:880.935322pt;}
.yb5{bottom:882.442415pt;}
.y9e{bottom:882.443070pt;}
.y6f{bottom:884.333600pt;}
.yff{bottom:887.812161pt;}
.y120{bottom:894.239180pt;}
.y9d{bottom:897.107734pt;}
.yfe{bottom:902.476246pt;}
.y11f{bottom:907.543038pt;}
.y9c{bottom:911.696749pt;}
.yfd{bottom:917.065014pt;}
.y11e{bottom:920.771444pt;}
.yfc{bottom:931.653782pt;}
.y9b{bottom:932.408837pt;}
.y11d{bottom:934.075302pt;}
.yfb{bottom:946.317867pt;}
.y11c{bottom:947.379160pt;}
.y9a{bottom:951.684718pt;}
.y11b{bottom:960.607567pt;}
.y99{bottom:966.273733pt;}
.yfa{bottom:973.908400pt;}
.y11a{bottom:973.911425pt;}
.y98{bottom:1004.220267pt;}
.y6e{bottom:1005.354133pt;}
.h14{height:20.882453pt;}
.he{height:22.188220pt;}
.h7{height:23.492809pt;}
.h11{height:23.811571pt;}
.hd{height:28.751233pt;}
.h9{height:30.648076pt;}
.h8{height:31.328199pt;}
.hc{height:33.285671pt;}
.hb{height:33.737309pt;}
.hf{height:34.324437pt;}
.h6{height:35.243537pt;}
.h12{height:35.721739pt;}
.h5{height:36.343403pt;}
.h13{height:37.911907pt;}
.h10{height:38.217957pt;}
.ha{height:43.660656pt;}
.h2{height:46.991513pt;}
.h3{height:47.629118pt;}
.h4{height:48.904329pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.066133pt;}
.x20{left:74.078667pt;}
.x28{left:75.366408pt;}
.x2a{left:80.806753pt;}
.x4{left:82.015369pt;}
.x22{left:83.376400pt;}
.x21{left:90.028239pt;}
.x23{left:92.069200pt;}
.x26{left:92.978006pt;}
.x2{left:105.222000pt;}
.x3{left:116.258267pt;}
.x7{left:120.037733pt;}
.x8{left:124.648800pt;}
.x5{left:250.884933pt;}
.x6{left:255.496000pt;}
.x9{left:268.573200pt;}
.xa{left:273.259733pt;}
.x18{left:280.289733pt;}
.x1f{left:290.796800pt;}
.x1a{left:291.779467pt;}
.x19{left:293.593600pt;}
.x29{left:312.566800pt;}
.x17{left:320.277067pt;}
.x16{left:321.940000pt;}
.x1b{left:329.272400pt;}
.x1c{left:338.343200pt;}
.x24{left:346.582667pt;}
.x25{left:350.966800pt;}
.x1e{left:387.477067pt;}
.xc{left:408.795520pt;}
.x41{left:414.538533pt;}
.x3d{left:415.974667pt;}
.x2b{left:423.537042pt;}
.xb{left:424.744774pt;}
.x14{left:434.796667pt;}
.x35{left:441.296971pt;}
.x15{left:443.262800pt;}
.x36{left:453.921200pt;}
.x3e{left:457.019997pt;}
.x37{left:458.834533pt;}
.x11{left:485.593600pt;}
.x2c{left:492.850267pt;}
.x12{left:494.588800pt;}
.x2d{left:500.787333pt;}
.x2e{left:505.171600pt;}
.x38{left:510.311733pt;}
.x2f{left:513.108533pt;}
.x39{left:515.225067pt;}
.xf{left:524.220400pt;}
.x10{left:528.906933pt;}
.x42{left:551.660757pt;}
.x30{left:566.173067pt;}
.xd{left:574.714800pt;}
.xe{left:579.401467pt;}
.x3a{left:593.839200pt;}
.x3b{left:598.752667pt;}
.x1d{left:611.527467pt;}
.x31{left:623.017200pt;}
.x27{left:624.604828pt;}
.x32{left:627.401467pt;}
.x40{left:671.169848pt;}
.x3c{left:678.122667pt;}
.x33{left:690.217067pt;}
.x34{left:695.130533pt;}
.x3f{left:702.842406pt;}
.x13{left:722.947867pt;}
}




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