
    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_8edcd3c1d695607ccc4106bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_3a1f928c6ffab3c90544bedb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_d95d5ea92c2f82a55ef67c78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.710000;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_4d2e7eb358e45182eac49ad9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.104000;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_1c8597dd0a1a77fa6ba09b85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_ecccd15f577801f997aeb9b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_29e0de2b800121ce8a7b018a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a18c13f31dfffae076c741fb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_93813c74abafc33380db36ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.440000;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_3c4ee4fdf9cea5e0e68dd46e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773000;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_f1c6ff392754299eab707593.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.m3{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:-2.722169px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.005918px;}
.lse{letter-spacing:-0.003506px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.003945px;}
.lsb{letter-spacing:0.004603px;}
.ls3{letter-spacing:0.005918px;}
.lsc{letter-spacing:2.987576px;}
.lsa{letter-spacing:3.841163px;}
.ls9{letter-spacing:4.185469px;}
.ls1{letter-spacing:6.054063px;}
.ls2{letter-spacing:6.061236px;}
.ls11{letter-spacing:6.283706px;}
.ls12{letter-spacing:8.665201px;}
.ls10{letter-spacing:12.744350px;}
.lsf{letter-spacing:16.807683px;}
.ls14{letter-spacing:16.975862px;}
.ls4{letter-spacing:19.152017px;}
.ls13{letter-spacing:20.084904px;}
.ls0{letter-spacing:22.414414px;}
.ls8{letter-spacing:26.635291px;}
.ls7{letter-spacing:47.594914px;}
.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;}
}
.ws11b{word-spacing:-17.026671px;}
.ws7b{word-spacing:-12.000000px;}
.ws7{word-spacing:-6.132966px;}
.ws6{word-spacing:-6.125793px;}
.ws66{word-spacing:-0.053798px;}
.ws108{word-spacing:-0.047821px;}
.ws7c{word-spacing:0.000000px;}
.wsd9{word-spacing:0.020921px;}
.ws8f{word-spacing:0.344306px;}
.wse8{word-spacing:0.368217px;}
.ws1b{word-spacing:0.521839px;}
.ws28{word-spacing:0.720891px;}
.ws2b{word-spacing:0.812347px;}
.ws42{word-spacing:0.914563px;}
.wse4{word-spacing:0.933094px;}
.wse3{word-spacing:1.162811px;}
.wsea{word-spacing:1.292943px;}
.ws43{word-spacing:1.587035px;}
.ws17{word-spacing:1.839885px;}
.ws7d{word-spacing:2.022797px;}
.ws22{word-spacing:2.420901px;}
.ws23{word-spacing:2.539256px;}
.ws41{word-spacing:2.711409px;}
.wsb8{word-spacing:2.824385px;}
.ws24{word-spacing:2.975018px;}
.wsa9{word-spacing:3.066475px;}
.ws87{word-spacing:3.093373px;}
.wsa0{word-spacing:3.281666px;}
.ws59{word-spacing:3.287046px;}
.wsaa{word-spacing:3.443059px;}
.wsde{word-spacing:3.711456px;}
.ws2c{word-spacing:3.776606px;}
.wsc3{word-spacing:3.846543px;}
.ws54{word-spacing:3.975657px;}
.ws36{word-spacing:4.029455px;}
.wsd2{word-spacing:4.104779px;}
.wseb{word-spacing:4.159174px;}
.wsd8{word-spacing:4.175911px;}
.wsd6{word-spacing:4.180096px;}
.ws49{word-spacing:4.190849px;}
.wsdb{word-spacing:4.192649px;}
.wsdc{word-spacing:4.196833px;}
.wsdd{word-spacing:4.247044px;}
.wse1{word-spacing:4.255413px;}
.wse7{word-spacing:4.263781px;}
.wscd{word-spacing:4.303824px;}
.wsed{word-spacing:4.326546px;}
.wsec{word-spacing:4.355835px;}
.wse5{word-spacing:4.376757px;}
.wsdf{word-spacing:4.380941px;}
.wse2{word-spacing:4.406047px;}
.wsd5{word-spacing:4.443705px;}
.ws69{word-spacing:4.481357px;}
.ws96{word-spacing:4.599712px;}
.ws118{word-spacing:4.920801px;}
.ws4c{word-spacing:4.938638px;}
.ws117{word-spacing:4.939930px;}
.ws115{word-spacing:4.949494px;}
.ws116{word-spacing:5.030790px;}
.ws11{word-spacing:5.100031px;}
.ws119{word-spacing:5.250768px;}
.ws19{word-spacing:5.325982px;}
.ws8e{word-spacing:5.417438px;}
.wsac{word-spacing:5.449717px;}
.ws1a{word-spacing:5.481996px;}
.ws5f{word-spacing:5.605731px;}
.ws2a{word-spacing:5.616490px;}
.ws4e{word-spacing:5.648769px;}
.ws3b{word-spacing:5.756365px;}
.wsbe{word-spacing:5.761744px;}
.ws9d{word-spacing:5.772504px;}
.wscf{word-spacing:5.826302px;}
.ws9f{word-spacing:5.863960px;}
.ws44{word-spacing:5.906998px;}
.ws32{word-spacing:6.030733px;}
.ws75{word-spacing:6.138329px;}
.ws79{word-spacing:6.143709px;}
.ws4f{word-spacing:6.466496px;}
.wsa8{word-spacing:6.498774px;}
.ws15{word-spacing:6.617129px;}
.wsa5{word-spacing:6.638649px;}
.ws7a{word-spacing:6.670927px;}
.ws93{word-spacing:6.681687px;}
.ws4d{word-spacing:6.687067px;}
.ws98{word-spacing:6.692446px;}
.wscc{word-spacing:6.757004px;}
.ws58{word-spacing:6.800042px;}
.wsbc{word-spacing:6.982954px;}
.ws3f{word-spacing:7.128208px;}
.ws21{word-spacing:7.160487px;}
.ws10{word-spacing:7.208905px;}
.ws9a{word-spacing:7.354159px;}
.ws89{word-spacing:7.370299px;}
.wsa4{word-spacing:7.467135px;}
.ws68{word-spacing:7.493496px;}
.wsb{word-spacing:7.639288px;}
.ws12{word-spacing:7.660807px;}
.wsc7{word-spacing:7.687706px;}
.wsa{word-spacing:7.865238px;}
.ws5e{word-spacing:7.892137px;}
.ws88{word-spacing:8.064828px;}
.ws4b{word-spacing:8.327899px;}
.ws16{word-spacing:8.387077px;}
.ws62{word-spacing:8.553850px;}
.ws61{word-spacing:8.586129px;}
.ws86{word-spacing:8.726003px;}
.ws3c{word-spacing:8.908916px;}
.ws35{word-spacing:8.946574px;}
.ws78{word-spacing:8.962713px;}
.ws48{word-spacing:9.038030px;}
.ws37{word-spacing:9.215563px;}
.ws39{word-spacing:9.296260px;}
.ws14{word-spacing:9.312399px;}
.wsb5{word-spacing:9.360817px;}
.ws9{word-spacing:9.506071px;}
.wsae{word-spacing:9.532970px;}
.ws45{word-spacing:9.592148px;}
.ws8d{word-spacing:9.678224px;}
.ws72{word-spacing:9.893415px;}
.ws94{word-spacing:9.904175px;}
.wse9{word-spacing:9.966955px;}
.ws71{word-spacing:10.011771px;}
.wsc6{word-spacing:10.022530px;}
.ws80{word-spacing:10.038669px;}
.wsc5{word-spacing:10.243101px;}
.ws27{word-spacing:10.270000px;}
.ws7f{word-spacing:10.377596px;}
.wsb7{word-spacing:10.576647px;}
.ws40{word-spacing:10.699844px;}
.wsc4{word-spacing:10.856396px;}
.ws31{word-spacing:10.867156px;}
.ws56{word-spacing:10.888675px;}
.ws82{word-spacing:10.926333px;}
.wsb6{word-spacing:10.953232px;}
.ws20{word-spacing:11.022631px;}
.wsad{word-spacing:11.071587px;}
.ws10b{word-spacing:11.204507px;}
.wsc9{word-spacing:11.227601px;}
.wsbd{word-spacing:11.292158px;}
.wsb2{word-spacing:11.399754px;}
.wsaf{word-spacing:11.405134px;}
.ws99{word-spacing:11.545008px;}
.ws105{word-spacing:11.639680px;}
.ws1{word-spacing:11.692592px;}
.ws3{word-spacing:11.705594px;}
.ws106{word-spacing:11.716194px;}
.wsb9{word-spacing:11.738680px;}
.ws4{word-spacing:11.757599px;}
.ws104{word-spacing:11.778362px;}
.ws2{word-spacing:11.779268px;}
.ws2d{word-spacing:11.948491px;}
.ws5{word-spacing:12.138974px;}
.wsd{word-spacing:12.179822px;}
.wse{word-spacing:12.239000px;}
.ws63{word-spacing:12.351975px;}
.ws46{word-spacing:12.410614px;}
.ws13{word-spacing:12.421912px;}
.ws18{word-spacing:12.497229px;}
.ws9e{word-spacing:12.642483px;}
.ws67{word-spacing:12.906092px;}
.ws100{word-spacing:12.945199px;}
.wsb4{word-spacing:12.981409px;}
.wsba{word-spacing:13.148182px;}
.ws5a{word-spacing:13.395652px;}
.ws64{word-spacing:13.514007px;}
.ws10d{word-spacing:13.533400px;}
.wsd3{word-spacing:13.690546px;}
.wse0{word-spacing:13.699333px;}
.wse6{word-spacing:13.745360px;}
.ws6a{word-spacing:13.782996px;}
.wsda{word-spacing:13.858335px;}
.ws107{word-spacing:13.896841px;}
.wsd4{word-spacing:13.925284px;}
.ws109{word-spacing:13.987701px;}
.ws25{word-spacing:14.127302px;}
.ws85{word-spacing:14.175720px;}
.wsd7{word-spacing:14.176341px;}
.ws50{word-spacing:14.294075px;}
.ws52{word-spacing:14.342493px;}
.ws8a{word-spacing:14.471608px;}
.ws60{word-spacing:14.751357px;}
.ws92{word-spacing:15.009586px;}
.wsc{word-spacing:15.197879px;}
.ws101{word-spacing:15.326695px;}
.ws33{word-spacing:15.348512px;}
.ws90{word-spacing:15.467405px;}
.ws95{word-spacing:15.531425px;}
.ws84{word-spacing:15.639020px;}
.ws10e{word-spacing:15.661443px;}
.ws102{word-spacing:15.666225px;}
.wsf7{word-spacing:15.728393px;}
.wsf2{word-spacing:15.737957px;}
.ws113{word-spacing:15.766650px;}
.wsfe{word-spacing:15.776214px;}
.wsf5{word-spacing:15.790560px;}
.ws10a{word-spacing:15.814471px;}
.ws111{word-spacing:15.819253px;}
.ws10c{word-spacing:15.838381px;}
.wsfb{word-spacing:15.862292px;}
.wsef{word-spacing:15.876638px;}
.wsa1{word-spacing:15.881649px;}
.wsfa{word-spacing:15.890985px;}
.wsff{word-spacing:15.914895px;}
.ws10f{word-spacing:15.948370px;}
.wsf6{word-spacing:15.953152px;}
.ws112{word-spacing:15.981845px;}
.wsf8{word-spacing:15.986627px;}
.wsf3{word-spacing:15.991409px;}
.wsf9{word-spacing:15.996191px;}
.wsfd{word-spacing:16.005756px;}
.wsf0{word-spacing:16.010538px;}
.ws103{word-spacing:16.020102px;}
.wsf1{word-spacing:16.044013px;}
.wsee{word-spacing:16.063141px;}
.ws76{word-spacing:16.160859px;}
.wsf4{word-spacing:16.182694px;}
.ws110{word-spacing:16.235297px;}
.ws114{word-spacing:16.541353px;}
.wscb{word-spacing:16.602001px;}
.ws81{word-spacing:16.650419px;}
.wsc1{word-spacing:16.811813px;}
.wsce{word-spacing:16.892509px;}
.ws4a{word-spacing:16.897889px;}
.ws2e{word-spacing:17.123840px;}
.ws5d{word-spacing:17.312132px;}
.ws9c{word-spacing:17.408968px;}
.ws29{word-spacing:17.419728px;}
.ws3a{word-spacing:17.575741px;}
.ws6b{word-spacing:17.581121px;}
.wsbb{word-spacing:17.682799px;}
.ws73{word-spacing:17.850110px;}
.wsa3{word-spacing:17.882389px;}
.wsd1{word-spacing:17.946946px;}
.ws2f{word-spacing:18.129859px;}
.ws53{word-spacing:18.253594px;}
.wsf{word-spacing:18.258973px;}
.wsb1{word-spacing:18.377328px;}
.ws47{word-spacing:18.398310px;}
.ws70{word-spacing:19.614678px;}
.ws1f{word-spacing:19.733571px;}
.ws1c{word-spacing:19.797590px;}
.ws8c{word-spacing:19.953604px;}
.ws8b{word-spacing:20.265631px;}
.wsab{word-spacing:20.744432px;}
.wsa7{word-spacing:20.975762px;}
.ws26{word-spacing:20.981142px;}
.ws34{word-spacing:21.077978px;}
.ws97{word-spacing:21.266270px;}
.ws38{word-spacing:21.567538px;}
.ws0{word-spacing:21.608327px;}
.ws6f{word-spacing:21.658994px;}
.wsb3{word-spacing:21.750451px;}
.wsd0{word-spacing:22.229251px;}
.ws91{word-spacing:22.492860px;}
.ws6e{word-spacing:22.821027px;}
.ws1e{word-spacing:23.014699px;}
.ws3e{word-spacing:23.127674px;}
.ws6d{word-spacing:23.789387px;}
.ws65{word-spacing:23.821666px;}
.wsca{word-spacing:24.058376px;}
.ws1d{word-spacing:24.375783px;}
.wsa6{word-spacing:24.720089px;}
.wsa2{word-spacing:24.967559px;}
.ws6c{word-spacing:25.553955px;}
.ws83{word-spacing:25.736868px;}
.wsbf{word-spacing:26.075794px;}
.ws51{word-spacing:26.253326px;}
.wsc2{word-spacing:26.705228px;}
.ws5c{word-spacing:28.604290px;}
.ws8{word-spacing:28.742451px;}
.ws77{word-spacing:30.643227px;}
.ws9b{word-spacing:30.836899px;}
.wsb0{word-spacing:31.288800px;}
.ws3d{word-spacing:32.138806px;}
.wsc8{word-spacing:34.037868px;}
.wsc0{word-spacing:35.312876px;}
.ws57{word-spacing:35.721739px;}
.ws55{word-spacing:39.111001px;}
.ws7e{word-spacing:39.401509px;}
.ws30{word-spacing:41.386648px;}
.ws5b{word-spacing:41.494243px;}
.ws74{word-spacing:47.094594px;}
.wsfc{word-spacing:47.137002px;}
.ws11a{word-spacing:80.933975px;}
._19{margin-left:-2626.128120px;}
._1a{margin-left:-2332.990560px;}
._1b{margin-left:-994.559520px;}
._20{margin-left:-16.807683px;}
._21{margin-left:-5.623773px;}
._1{margin-left:-1.047267px;}
._14{width:1.522478px;}
._1e{width:10.648993px;}
._1f{width:11.669957px;}
._8{width:14.041226px;}
._7{width:15.273195px;}
._d{width:16.392190px;}
._10{width:17.425107px;}
._4{width:18.597899px;}
._6{width:20.405506px;}
._2{width:21.438423px;}
._0{width:22.657106px;}
._c{width:24.370403px;}
._5{width:26.070414px;}
._e{width:27.447638px;}
._3{width:28.760304px;}
._f{width:30.761582px;}
._13{width:32.106527px;}
._9{width:33.365396px;}
._16{width:35.253698px;}
._b{width:36.421111px;}
._a{width:37.884411px;}
._1d{width:39.939487px;}
._18{width:43.979701px;}
._12{width:45.706611px;}
._15{width:49.165809px;}
._1c{width:52.845579px;}
._11{width:54.992111px;}
._17{width:60.522525px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(46,49,146);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.876200px;}
.fs4{font-size:35.860800px;}
.fs7{font-size:41.842800px;}
.fs0{font-size:43.338000px;}
.fs8{font-size:47.821200px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:50.809200px;}
.fs3{font-size:53.797800px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:71.730600px;}
.fs2{font-size:95.641800px;}
.y0{bottom:0.000000px;}
.ycc{bottom:51.425437px;}
.y115{bottom:51.448800px;}
.y113{bottom:51.449295px;}
.y46{bottom:51.866215px;}
.y84{bottom:51.872302px;}
.y86{bottom:51.874050px;}
.y114{bottom:56.806200px;}
.y85{bottom:57.911850px;}
.y112{bottom:66.585900px;}
.y110{bottom:66.586245px;}
.ycb{bottom:67.243335px;}
.y45{bottom:67.768845px;}
.y83{bottom:67.774932px;}
.y111{bottom:71.858250px;}
.y10f{bottom:81.722850px;}
.y10d{bottom:81.723027px;}
.yca{bottom:83.061234px;}
.y44{bottom:83.671474px;}
.y82{bottom:83.677561px;}
.y10e{bottom:86.995350px;}
.y10c{bottom:96.774750px;}
.y10a{bottom:96.775095px;}
.yc9{bottom:98.879132px;}
.y43{bottom:99.574104px;}
.y81{bottom:99.580191px;}
.y10b{bottom:102.132300px;}
.y108{bottom:111.911700px;}
.yc8{bottom:114.697030px;}
.y42{bottom:115.392002px;}
.y80{bottom:115.482821px;}
.y109{bottom:117.184200px;}
.yc7{bottom:130.599660px;}
.y7f{bottom:131.129911px;}
.y41{bottom:131.294632px;}
.y107{bottom:145.506697px;}
.yc6{bottom:146.417558px;}
.y40{bottom:147.026454px;}
.y7e{bottom:147.032541px;}
.y106{bottom:160.643330px;}
.yc5{bottom:162.235456px;}
.y3f{bottom:162.844352px;}
.y7d{bottom:162.935170px;}
.y105{bottom:175.695231px;}
.yc4{bottom:178.053354px;}
.y3e{bottom:178.746981px;}
.y7a{bottom:178.833029px;}
.y7c{bottom:178.837800px;}
.y7b{bottom:184.790550px;}
.y104{bottom:193.638470px;}
.yc3{bottom:193.871252px;}
.y3d{bottom:194.649611px;}
.y79{bottom:194.650927px;}
.y103{bottom:208.775103px;}
.yc2{bottom:209.689150px;}
.y3c{bottom:210.467509px;}
.y78{bottom:210.553557px;}
.y102{bottom:223.911736px;}
.yc1{bottom:225.507048px;}
.y3b{bottom:226.370139px;}
.y77{bottom:226.456187px;}
.yc0{bottom:241.324947px;}
.y101{bottom:241.854974px;}
.y3a{bottom:242.272769px;}
.y76{bottom:242.358816px;}
.y100{bottom:256.906875px;}
.ybf{bottom:257.142845px;}
.y39{bottom:258.175398px;}
.y75{bottom:258.261446px;}
.yff{bottom:272.043508px;}
.ybe{bottom:272.960743px;}
.y38{bottom:273.993296px;}
.y74{bottom:274.164076px;}
.ybd{bottom:288.692565px;}
.y37{bottom:289.895926px;}
.y73{bottom:289.981974px;}
.yfe{bottom:289.986747px;}
.ybc{bottom:304.510463px;}
.yfc{bottom:305.038648px;}
.yfd{bottom:305.633862px;}
.y36{bottom:305.798556px;}
.y72{bottom:305.884603px;}
.ybb{bottom:320.328361px;}
.y35{bottom:321.701186px;}
.y71{bottom:321.787233px;}
.yfb{bottom:322.981887px;}
.yba{bottom:336.146259px;}
.y34{bottom:337.519084px;}
.y70{bottom:337.689863px;}
.yfa{bottom:338.118520px;}
.yb9{bottom:351.964157px;}
.y33{bottom:353.421713px;}
.y6f{bottom:353.592492px;}
.yf9{bottom:356.061759px;}
.yb8{bottom:367.782055px;}
.y32{bottom:369.324343px;}
.y6e{bottom:369.410391px;}
.yf8{bottom:371.113660px;}
.yb7{bottom:383.599953px;}
.y31{bottom:385.142241px;}
.y6d{bottom:385.313020px;}
.yf7{bottom:389.056899px;}
.yb6{bottom:399.417852px;}
.y30{bottom:400.874063px;}
.y6a{bottom:401.215420px;}
.y6c{bottom:401.215650px;}
.yf6{bottom:404.193531px;}
.y6b{bottom:407.168400px;}
.yb5{bottom:415.235750px;}
.y2f{bottom:416.776692px;}
.y69{bottom:417.118050px;}
.yf5{bottom:419.330164px;}
.yb4{bottom:431.053648px;}
.y2e{bottom:432.594591px;}
.y67{bottom:432.760848px;}
.yf4{bottom:434.382066px;}
.y68{bottom:438.802950px;}
.yb3{bottom:446.871546px;}
.y2d{bottom:448.497220px;}
.y66{bottom:448.663477px;}
.yf3{bottom:452.325304px;}
.yb2{bottom:462.774176px;}
.y2c{bottom:464.399850px;}
.y65{bottom:464.566107px;}
.yf2{bottom:467.461937px;}
.y2a{bottom:480.296083px;}
.y64{bottom:480.468737px;}
.yf1{bottom:482.513838px;}
.y2b{bottom:486.255000px;}
.y29{bottom:496.113981px;}
.yb1{bottom:496.194714px;}
.y63{bottom:496.371366px;}
.yf0{bottom:500.457077px;}
.yb0{bottom:511.247338px;}
.y28{bottom:512.016611px;}
.y62{bottom:512.273996px;}
.yef{bottom:515.593710px;}
.yaf{bottom:526.213886px;}
.y26{bottom:527.919241px;}
.y61{bottom:528.091894px;}
.y27{bottom:528.599783px;}
.yee{bottom:533.536949px;}
.yae{bottom:541.266511px;}
.y25{bottom:543.821870px;}
.y60{bottom:543.994524px;}
.yed{bottom:548.588850px;}
.y24{bottom:559.639769px;}
.y5f{bottom:559.897153px;}
.yad{bottom:565.332957px;}
.yec{bottom:574.015650px;}
.y23{bottom:575.542398px;}
.y5e{bottom:575.799783px;}
.yac{bottom:581.235586px;}
.y22{bottom:591.445028px;}
.y5d{bottom:591.702413px;}
.yab{bottom:597.053484px;}
.y21{bottom:607.262926px;}
.y5c{bottom:607.520311px;}
.yaa{bottom:612.871383px;}
.y20{bottom:623.165556px;}
.y5b{bottom:623.422941px;}
.yeb{bottom:626.901423px;}
.ya9{bottom:628.689281px;}
.y1f{bottom:639.068186px;}
.y5a{bottom:639.325570px;}
.yea{bottom:642.719321px;}
.ya8{bottom:644.507179px;}
.y1e{bottom:654.715276px;}
.y57{bottom:655.220647px;}
.y59{bottom:655.228200px;}
.ya7{bottom:660.154269px;}
.y58{bottom:661.180950px;}
.ye9{bottom:667.380233px;}
.y1d{bottom:670.617905px;}
.y56{bottom:671.123276px;}
.ya6{bottom:675.972167px;}
.y88{bottom:680.808015px;}
.ye8{bottom:683.198131px;}
.y1c{bottom:686.520535px;}
.y55{bottom:686.770366px;}
.ya5{bottom:691.790065px;}
.ye7{bottom:699.100761px;}
.y1b{bottom:702.423165px;}
.y54{bottom:702.672996px;}
.ya4{bottom:707.692695px;}
.ye6{bottom:714.918659px;}
.y1a{bottom:718.241063px;}
.y53{bottom:718.575626px;}
.ya3{bottom:723.510593px;}
.ye5{bottom:730.821289px;}
.y19{bottom:734.143692px;}
.y52{bottom:734.478255px;}
.ya2{bottom:739.328491px;}
.ye4{bottom:746.639187px;}
.y18{bottom:750.046322px;}
.y51{bottom:750.125346px;}
.ya1{bottom:755.146389px;}
.ye3{bottom:762.541816px;}
.y17{bottom:765.948952px;}
.y50{bottom:766.027975px;}
.ya0{bottom:770.964288px;}
.ye2{bottom:778.359715px;}
.y16{bottom:781.766850px;}
.y4f{bottom:781.930605px;}
.y9f{bottom:786.782186px;}
.ye0{bottom:794.177613px;}
.ye1{bottom:794.942886px;}
.y14{bottom:797.667942px;}
.y4e{bottom:797.833235px;}
.y9e{bottom:802.600084px;}
.y15{bottom:803.621850px;}
.ydf{bottom:810.080242px;}
.y13{bottom:813.570572px;}
.y4d{bottom:813.735864px;}
.y9d{bottom:818.417982px;}
.yde{bottom:825.898141px;}
.y12{bottom:829.473202px;}
.y4c{bottom:829.553762px;}
.y9c{bottom:834.149804px;}
.ydd{bottom:841.800770px;}
.yf{bottom:845.289713px;}
.y11{bottom:845.291100px;}
.y4b{bottom:845.456392px;}
.y9b{bottom:849.967702px;}
.y10{bottom:851.328900px;}
.ydb{bottom:857.618668px;}
.ydc{bottom:858.299211px;}
.y4a{bottom:861.188214px;}
.ye{bottom:861.192342px;}
.y98{bottom:865.777954px;}
.y9a{bottom:865.785600px;}
.y99{bottom:871.738350px;}
.yda{bottom:873.521298px;}
.y49{bottom:877.090843px;}
.yd{bottom:877.094972px;}
.y97{bottom:881.595852px;}
.yd9{bottom:889.339196px;}
.y48{bottom:892.908742px;}
.yc{bottom:892.912870px;}
.y96{bottom:897.413751px;}
.yd8{bottom:905.157094px;}
.y47{bottom:908.811371px;}
.yb{bottom:908.815500px;}
.y138{bottom:909.495743px;}
.y13a{bottom:909.495900px;}
.y95{bottom:913.231649px;}
.y139{bottom:914.768250px;}
.yd7{bottom:921.059724px;}
.y137{bottom:924.377700px;}
.y135{bottom:924.377710px;}
.y145{bottom:924.378045px;}
.y94{bottom:929.049547px;}
.y136{bottom:929.735250px;}
.yd6{bottom:936.877622px;}
.y134{bottom:939.344550px;}
.y132{bottom:939.344860px;}
.y133{bottom:944.702100px;}
.y93{bottom:944.867445px;}
.yd5{bottom:952.780252px;}
.y131{bottom:954.311700px;}
.y12f{bottom:954.311710px;}
.y144{bottom:954.311725px;}
.y130{bottom:959.584050px;}
.ya{bottom:959.838406px;}
.y92{bottom:960.685343px;}
.yd4{bottom:968.598150px;}
.y12e{bottom:969.278550px;}
.y143{bottom:969.278565px;}
.y12c{bottom:969.278712px;}
.y12d{bottom:974.551050px;}
.y91{bottom:976.503241px;}
.y9{bottom:980.758635px;}
.y141{bottom:984.160522px;}
.y12b{bottom:984.160670px;}
.y142{bottom:984.840779px;}
.y90{bottom:992.321139px;}
.yd3{bottom:994.195200px;}
.y140{bottom:999.127362px;}
.y129{bottom:999.127510px;}
.y12a{bottom:999.722884px;}
.y8f{bottom:1008.139038px;}
.y125{bottom:1014.094202px;}
.y127{bottom:1014.094350px;}
.y128{bottom:1014.689724px;}
.y8{bottom:1018.856550px;}
.y126{bottom:1019.366700px;}
.y8e{bottom:1023.870859px;}
.y124{bottom:1028.976160px;}
.y7{bottom:1031.527350px;}
.yd2{bottom:1039.604954px;}
.y8d{bottom:1039.688757px;}
.y123{bottom:1043.943000px;}
.y121{bottom:1043.943160px;}
.y122{bottom:1049.300550px;}
.y6{bottom:1054.743000px;}
.yd1{bottom:1055.422852px;}
.y8c{bottom:1055.506656px;}
.y120{bottom:1058.910000px;}
.y11e{bottom:1058.910002px;}
.y13f{bottom:1058.910010px;}
.y11f{bottom:1064.182500px;}
.yd0{bottom:1071.240750px;}
.y8b{bottom:1071.324554px;}
.y11d{bottom:1073.876843px;}
.y13e{bottom:1073.876850px;}
.y13c{bottom:1073.876852px;}
.y13d{bottom:1079.149350px;}
.y5{bottom:1085.018446px;}
.yce{bottom:1087.123199px;}
.y8a{bottom:1087.142452px;}
.y11c{bottom:1088.758800px;}
.y119{bottom:1088.758810px;}
.y11a{bottom:1089.439066px;}
.ycf{bottom:1093.095750px;}
.y11b{bottom:1094.116200px;}
.y4{bottom:1098.454310px;}
.ycd{bottom:1102.941097px;}
.y89{bottom:1102.960350px;}
.y118{bottom:1103.725650px;}
.y13b{bottom:1103.726486px;}
.y117{bottom:1109.083200px;}
.y3{bottom:1111.890173px;}
.y2{bottom:1125.326037px;}
.y116{bottom:1138.081650px;}
.y1{bottom:1138.761900px;}
.y87{bottom:1150.500000px;}
.h3{height:6.957868px;}
.hc{height:22.855235px;}
.h7{height:25.712194px;}
.ha{height:30.001288px;}
.h2{height:31.073346px;}
.hb{height:34.287800px;}
.h6{height:38.573023px;}
.hd{height:38.716610px;}
.h9{height:47.109375px;}
.h5{height:54.658717px;}
.h4{height:67.905678px;}
.h8{height:68.835938px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:918.424500px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x15{left:71.773200px;}
.x2{left:82.233150px;}
.x16{left:85.209201px;}
.x44{left:86.400000px;}
.x19{left:90.396517px;}
.x6{left:95.669151px;}
.x48{left:105.278700px;}
.x49{left:109.445700px;}
.x4c{left:114.122850px;}
.x52{left:119.310150px;}
.x53{left:123.477150px;}
.x45{left:126.794568px;}
.x50{left:143.375624px;}
.x17{left:166.167000px;}
.x18{left:179.092950px;}
.x1{left:180.793650px;}
.x4a{left:192.614100px;}
.x56{left:193.804650px;}
.x4b{left:196.866150px;}
.x57{left:197.971650px;}
.x51{left:242.701452px;}
.x4d{left:280.119600px;}
.x4e{left:284.371650px;}
.x5a{left:318.047250px;}
.x46{left:324.680250px;}
.x5b{left:326.466150px;}
.x47{left:328.847100px;}
.x7{left:343.304459px;}
.x54{left:359.631450px;}
.x55{left:363.883350px;}
.x3{left:370.176300px;}
.x4{left:381.146400px;}
.x4f{left:413.971884px;}
.x58{left:421.369950px;}
.x59{left:429.788850px;}
.x5{left:448.922700px;}
.x1a{left:464.486244px;}
.x8{left:474.946330px;}
.x1f{left:481.747465px;}
.x9{left:488.467063px;}
.x1d{left:515.338615px;}
.x32{left:516.954300px;}
.x33{left:521.121150px;}
.x1e{left:528.264882px;}
.x2a{left:531.240900px;}
.x40{left:532.261350px;}
.x2b{left:535.492800px;}
.x22{left:536.513250px;}
.x23{left:540.680250px;}
.x20{left:551.819510px;}
.x21{left:561.853414px;}
.x3a{left:576.821850px;}
.x3b{left:585.240900px;}
.x41{left:611.432850px;}
.x42{left:615.599850px;}
.x24{left:620.787300px;}
.x25{left:624.954150px;}
.xa{left:631.077000px;}
.x61{left:636.519600px;}
.x34{left:640.941600px;}
.xb{left:642.472350px;}
.x35{left:645.193500px;}
.xf{left:649.445550px;}
.x3c{left:652.336800px;}
.x2c{left:657.864450px;}
.x10{left:659.820300px;}
.x2d{left:662.116350px;}
.x5e{left:674.106900px;}
.x5f{left:682.525800px;}
.x26{left:689.499000px;}
.x27{left:693.666000px;}
.x62{left:696.132290px;}
.x43{left:700.044000px;}
.x63{left:713.651587px;}
.x1c{left:719.943753px;}
.xc{left:722.409300px;}
.x64{left:726.151050px;}
.x36{left:727.426650px;}
.x5c{left:729.552600px;}
.x3d{left:734.399850px;}
.x37{left:735.845550px;}
.x5d{left:737.886450px;}
.x3e{left:742.818750px;}
.x2e{left:757.870650px;}
.x2f{left:762.037650px;}
.x28{left:766.799850px;}
.x29{left:770.966700px;}
.xd{left:778.705350px;}
.x13{left:784.972500px;}
.x11{left:786.273900px;}
.xe{left:788.740050px;}
.x60{left:794.352600px;}
.x12{left:795.713250px;}
.x38{left:813.741600px;}
.x30{left:820.204500px;}
.x39{left:822.075450px;}
.x31{left:824.456400px;}
.x1b{left:826.327350px;}
.x3f{left:830.749350px;}
.x14{left:894.000000px;}
@media print{
.v1{vertical-align:-2.419705pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.005260pt;}
.lse{letter-spacing:-0.003117pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.003506pt;}
.lsb{letter-spacing:0.004091pt;}
.ls3{letter-spacing:0.005260pt;}
.lsc{letter-spacing:2.655623pt;}
.lsa{letter-spacing:3.414367pt;}
.ls9{letter-spacing:3.720417pt;}
.ls1{letter-spacing:5.381389pt;}
.ls2{letter-spacing:5.387765pt;}
.ls11{letter-spacing:5.585516pt;}
.ls12{letter-spacing:7.702401pt;}
.ls10{letter-spacing:11.328311pt;}
.lsf{letter-spacing:14.940163pt;}
.ls14{letter-spacing:15.089655pt;}
.ls4{letter-spacing:17.024015pt;}
.ls13{letter-spacing:17.853248pt;}
.ls0{letter-spacing:19.923923pt;}
.ls8{letter-spacing:23.675814pt;}
.ls7{letter-spacing:42.306590pt;}
.ws11b{word-spacing:-15.134819pt;}
.ws7b{word-spacing:-10.666667pt;}
.ws7{word-spacing:-5.451526pt;}
.ws6{word-spacing:-5.445150pt;}
.ws66{word-spacing:-0.047820pt;}
.ws108{word-spacing:-0.042508pt;}
.ws7c{word-spacing:0.000000pt;}
.wsd9{word-spacing:0.018597pt;}
.ws8f{word-spacing:0.306050pt;}
.wse8{word-spacing:0.327304pt;}
.ws1b{word-spacing:0.463857pt;}
.ws28{word-spacing:0.640792pt;}
.ws2b{word-spacing:0.722086pt;}
.ws42{word-spacing:0.812945pt;}
.wse4{word-spacing:0.829417pt;}
.wse3{word-spacing:1.033610pt;}
.wsea{word-spacing:1.149282pt;}
.ws43{word-spacing:1.410698pt;}
.ws17{word-spacing:1.635453pt;}
.ws7d{word-spacing:1.798042pt;}
.ws22{word-spacing:2.151912pt;}
.ws23{word-spacing:2.257117pt;}
.ws41{word-spacing:2.410141pt;}
.wsb8{word-spacing:2.510564pt;}
.ws24{word-spacing:2.644461pt;}
.wsa9{word-spacing:2.725755pt;}
.ws87{word-spacing:2.749665pt;}
.wsa0{word-spacing:2.917036pt;}
.ws59{word-spacing:2.921818pt;}
.wsaa{word-spacing:3.060497pt;}
.wsde{word-spacing:3.299072pt;}
.ws2c{word-spacing:3.356983pt;}
.wsc3{word-spacing:3.419149pt;}
.ws54{word-spacing:3.533918pt;}
.ws36{word-spacing:3.581738pt;}
.wsd2{word-spacing:3.648692pt;}
.wseb{word-spacing:3.697044pt;}
.wsd8{word-spacing:3.711921pt;}
.wsd6{word-spacing:3.715641pt;}
.ws49{word-spacing:3.725199pt;}
.wsdb{word-spacing:3.726799pt;}
.wsdc{word-spacing:3.730518pt;}
.wsdd{word-spacing:3.775150pt;}
.wse1{word-spacing:3.782589pt;}
.wse7{word-spacing:3.790028pt;}
.wscd{word-spacing:3.825621pt;}
.wsed{word-spacing:3.845818pt;}
.wsec{word-spacing:3.871854pt;}
.wse5{word-spacing:3.890451pt;}
.wsdf{word-spacing:3.894170pt;}
.wse2{word-spacing:3.916486pt;}
.wsd5{word-spacing:3.949960pt;}
.ws69{word-spacing:3.983428pt;}
.ws96{word-spacing:4.088633pt;}
.ws118{word-spacing:4.374046pt;}
.ws4c{word-spacing:4.389900pt;}
.ws117{word-spacing:4.391049pt;}
.ws115{word-spacing:4.399550pt;}
.ws116{word-spacing:4.471814pt;}
.ws11{word-spacing:4.533361pt;}
.ws119{word-spacing:4.667349pt;}
.ws19{word-spacing:4.734206pt;}
.ws8e{word-spacing:4.815501pt;}
.wsac{word-spacing:4.844193pt;}
.ws1a{word-spacing:4.872885pt;}
.ws5f{word-spacing:4.982872pt;}
.ws2a{word-spacing:4.992436pt;}
.ws4e{word-spacing:5.021128pt;}
.ws3b{word-spacing:5.116769pt;}
.wsbe{word-spacing:5.121551pt;}
.ws9d{word-spacing:5.131115pt;}
.wscf{word-spacing:5.178935pt;}
.ws9f{word-spacing:5.212409pt;}
.ws44{word-spacing:5.250665pt;}
.ws32{word-spacing:5.360652pt;}
.ws75{word-spacing:5.456292pt;}
.ws79{word-spacing:5.461074pt;}
.ws4f{word-spacing:5.747996pt;}
.wsa8{word-spacing:5.776688pt;}
.ws15{word-spacing:5.881893pt;}
.wsa5{word-spacing:5.901021pt;}
.ws7a{word-spacing:5.929713pt;}
.ws93{word-spacing:5.939277pt;}
.ws4d{word-spacing:5.944059pt;}
.ws98{word-spacing:5.948841pt;}
.wscc{word-spacing:6.006225pt;}
.ws58{word-spacing:6.044482pt;}
.wsbc{word-spacing:6.207071pt;}
.ws3f{word-spacing:6.336185pt;}
.ws21{word-spacing:6.364877pt;}
.ws10{word-spacing:6.407916pt;}
.ws9a{word-spacing:6.537030pt;}
.ws89{word-spacing:6.551377pt;}
.wsa4{word-spacing:6.637453pt;}
.ws68{word-spacing:6.660885pt;}
.wsb{word-spacing:6.790478pt;}
.ws12{word-spacing:6.809606pt;}
.wsc7{word-spacing:6.833516pt;}
.wsa{word-spacing:6.991323pt;}
.ws5e{word-spacing:7.015233pt;}
.ws88{word-spacing:7.168736pt;}
.ws4b{word-spacing:7.402577pt;}
.ws16{word-spacing:7.455180pt;}
.ws62{word-spacing:7.603422pt;}
.ws61{word-spacing:7.632115pt;}
.ws86{word-spacing:7.756447pt;}
.ws3c{word-spacing:7.919036pt;}
.ws35{word-spacing:7.952510pt;}
.ws78{word-spacing:7.966856pt;}
.ws48{word-spacing:8.033805pt;}
.ws37{word-spacing:8.191612pt;}
.ws39{word-spacing:8.263342pt;}
.ws14{word-spacing:8.277688pt;}
.wsb5{word-spacing:8.320726pt;}
.ws9{word-spacing:8.449841pt;}
.wsae{word-spacing:8.473751pt;}
.ws45{word-spacing:8.526354pt;}
.ws8d{word-spacing:8.602866pt;}
.ws72{word-spacing:8.794147pt;}
.ws94{word-spacing:8.803711pt;}
.wse9{word-spacing:8.859516pt;}
.ws71{word-spacing:8.899352pt;}
.wsc6{word-spacing:8.908916pt;}
.ws80{word-spacing:8.923262pt;}
.wsc5{word-spacing:9.104979pt;}
.ws27{word-spacing:9.128889pt;}
.ws7f{word-spacing:9.224529pt;}
.wsb7{word-spacing:9.401464pt;}
.ws40{word-spacing:9.510973pt;}
.wsc4{word-spacing:9.650130pt;}
.ws31{word-spacing:9.659694pt;}
.ws56{word-spacing:9.678822pt;}
.ws82{word-spacing:9.712296pt;}
.wsb6{word-spacing:9.736206pt;}
.ws20{word-spacing:9.797894pt;}
.wsad{word-spacing:9.841411pt;}
.ws10b{word-spacing:9.959562pt;}
.wsc9{word-spacing:9.980090pt;}
.wsbd{word-spacing:10.037474pt;}
.wsb2{word-spacing:10.133115pt;}
.wsaf{word-spacing:10.137897pt;}
.ws99{word-spacing:10.262229pt;}
.ws105{word-spacing:10.346382pt;}
.ws1{word-spacing:10.393415pt;}
.ws3{word-spacing:10.404972pt;}
.ws106{word-spacing:10.414395pt;}
.wsb9{word-spacing:10.434382pt;}
.ws4{word-spacing:10.451199pt;}
.ws104{word-spacing:10.469655pt;}
.ws2{word-spacing:10.470461pt;}
.ws2d{word-spacing:10.620881pt;}
.ws5{word-spacing:10.790199pt;}
.wsd{word-spacing:10.826508pt;}
.wse{word-spacing:10.879111pt;}
.ws63{word-spacing:10.979533pt;}
.ws46{word-spacing:11.031657pt;}
.ws13{word-spacing:11.041700pt;}
.ws18{word-spacing:11.108648pt;}
.ws9e{word-spacing:11.237763pt;}
.ws67{word-spacing:11.472082pt;}
.ws100{word-spacing:11.506843pt;}
.wsb4{word-spacing:11.539030pt;}
.wsba{word-spacing:11.687273pt;}
.ws5a{word-spacing:11.907246pt;}
.ws64{word-spacing:12.012451pt;}
.ws10d{word-spacing:12.029689pt;}
.wsd3{word-spacing:12.169374pt;}
.wse0{word-spacing:12.177185pt;}
.wse6{word-spacing:12.218098pt;}
.ws6a{word-spacing:12.251552pt;}
.wsda{word-spacing:12.318520pt;}
.ws107{word-spacing:12.352747pt;}
.wsd4{word-spacing:12.378030pt;}
.ws109{word-spacing:12.433512pt;}
.ws25{word-spacing:12.557602pt;}
.ws85{word-spacing:12.600640pt;}
.wsd7{word-spacing:12.601192pt;}
.ws50{word-spacing:12.705845pt;}
.ws52{word-spacing:12.748883pt;}
.ws8a{word-spacing:12.863652pt;}
.ws60{word-spacing:13.112317pt;}
.ws92{word-spacing:13.341854pt;}
.wsc{word-spacing:13.509225pt;}
.ws101{word-spacing:13.623729pt;}
.ws33{word-spacing:13.643122pt;}
.ws90{word-spacing:13.748805pt;}
.ws95{word-spacing:13.805711pt;}
.ws84{word-spacing:13.901352pt;}
.ws10e{word-spacing:13.921283pt;}
.ws102{word-spacing:13.925533pt;}
.wsf7{word-spacing:13.980793pt;}
.wsf2{word-spacing:13.989295pt;}
.ws113{word-spacing:14.014800pt;}
.wsfe{word-spacing:14.023301pt;}
.wsf5{word-spacing:14.036054pt;}
.ws10a{word-spacing:14.057307pt;}
.ws111{word-spacing:14.061558pt;}
.ws10c{word-spacing:14.078561pt;}
.wsfb{word-spacing:14.099815pt;}
.wsef{word-spacing:14.112567pt;}
.wsa1{word-spacing:14.117021pt;}
.wsfa{word-spacing:14.125320pt;}
.wsff{word-spacing:14.146574pt;}
.ws10f{word-spacing:14.176329pt;}
.wsf6{word-spacing:14.180580pt;}
.ws112{word-spacing:14.206084pt;}
.wsf8{word-spacing:14.210335pt;}
.wsf3{word-spacing:14.214586pt;}
.wsf9{word-spacing:14.218837pt;}
.wsfd{word-spacing:14.227338pt;}
.wsf0{word-spacing:14.231589pt;}
.ws103{word-spacing:14.240091pt;}
.wsf1{word-spacing:14.261345pt;}
.wsee{word-spacing:14.278348pt;}
.ws76{word-spacing:14.365208pt;}
.wsf4{word-spacing:14.384617pt;}
.ws110{word-spacing:14.431375pt;}
.ws114{word-spacing:14.703425pt;}
.wscb{word-spacing:14.757334pt;}
.ws81{word-spacing:14.800373pt;}
.wsc1{word-spacing:14.943833pt;}
.wsce{word-spacing:15.015564pt;}
.ws4a{word-spacing:15.020346pt;}
.ws2e{word-spacing:15.221191pt;}
.ws5d{word-spacing:15.388562pt;}
.ws9c{word-spacing:15.474638pt;}
.ws29{word-spacing:15.484202pt;}
.ws3a{word-spacing:15.622881pt;}
.ws6b{word-spacing:15.627663pt;}
.wsbb{word-spacing:15.718043pt;}
.ws73{word-spacing:15.866764pt;}
.wsa3{word-spacing:15.895457pt;}
.wsd1{word-spacing:15.952841pt;}
.ws2f{word-spacing:16.115430pt;}
.ws53{word-spacing:16.225416pt;}
.wsf{word-spacing:16.230199pt;}
.wsb1{word-spacing:16.335403pt;}
.ws47{word-spacing:16.354053pt;}
.ws70{word-spacing:17.435269pt;}
.ws1f{word-spacing:17.540952pt;}
.ws1c{word-spacing:17.597858pt;}
.ws8c{word-spacing:17.736537pt;}
.ws8b{word-spacing:18.013894pt;}
.wsab{word-spacing:18.439495pt;}
.wsa7{word-spacing:18.645122pt;}
.ws26{word-spacing:18.649904pt;}
.ws34{word-spacing:18.735980pt;}
.ws97{word-spacing:18.903351pt;}
.ws38{word-spacing:19.171145pt;}
.ws0{word-spacing:19.207402pt;}
.ws6f{word-spacing:19.252439pt;}
.wsb3{word-spacing:19.333734pt;}
.wsd0{word-spacing:19.759334pt;}
.ws91{word-spacing:19.993653pt;}
.ws6e{word-spacing:20.285357pt;}
.ws1e{word-spacing:20.457510pt;}
.ws3e{word-spacing:20.557933pt;}
.ws6d{word-spacing:21.146122pt;}
.ws65{word-spacing:21.174814pt;}
.wsca{word-spacing:21.385223pt;}
.ws1d{word-spacing:21.667363pt;}
.wsa6{word-spacing:21.973413pt;}
.wsa2{word-spacing:22.193386pt;}
.ws6c{word-spacing:22.714627pt;}
.ws83{word-spacing:22.877216pt;}
.wsbf{word-spacing:23.178483pt;}
.ws51{word-spacing:23.336290pt;}
.wsc2{word-spacing:23.737980pt;}
.ws5c{word-spacing:25.426036pt;}
.ws8{word-spacing:25.548846pt;}
.ws77{word-spacing:27.238424pt;}
.ws9b{word-spacing:27.410577pt;}
.wsb0{word-spacing:27.812267pt;}
.ws3d{word-spacing:28.567827pt;}
.wsc8{word-spacing:30.255883pt;}
.wsc0{word-spacing:31.389223pt;}
.ws57{word-spacing:31.752657pt;}
.ws55{word-spacing:34.765334pt;}
.ws7e{word-spacing:35.023563pt;}
.ws30{word-spacing:36.788131pt;}
.ws5b{word-spacing:36.883772pt;}
.ws74{word-spacing:41.861861pt;}
.wsfc{word-spacing:41.899557pt;}
.ws11a{word-spacing:71.941311pt;}
._19{margin-left:-2334.336107pt;}
._1a{margin-left:-2073.769387pt;}
._1b{margin-left:-884.052907pt;}
._20{margin-left:-14.940163pt;}
._21{margin-left:-4.998909pt;}
._1{margin-left:-0.930904pt;}
._14{width:1.353314pt;}
._1e{width:9.465771pt;}
._1f{width:10.373295pt;}
._8{width:12.481090pt;}
._7{width:13.576174pt;}
._d{width:14.570835pt;}
._10{width:15.488984pt;}
._4{width:16.531466pt;}
._6{width:18.138227pt;}
._2{width:19.056376pt;}
._0{width:20.139650pt;}
._c{width:21.662581pt;}
._5{width:23.173701pt;}
._e{width:24.397900pt;}
._3{width:25.564715pt;}
._f{width:27.343628pt;}
._13{width:28.539135pt;}
._9{width:29.658129pt;}
._16{width:31.336621pt;}
._b{width:32.374321pt;}
._a{width:33.675032pt;}
._1d{width:35.501766pt;}
._18{width:39.093068pt;}
._12{width:40.628099pt;}
._15{width:43.702942pt;}
._1c{width:46.973848pt;}
._11{width:48.881877pt;}
._17{width:53.797800pt;}
.fs9{font-size:28.334400pt;}
.fs4{font-size:31.876267pt;}
.fs7{font-size:37.193600pt;}
.fs0{font-size:38.522667pt;}
.fs8{font-size:42.507733pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:45.163733pt;}
.fs3{font-size:47.820267pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:63.760533pt;}
.fs2{font-size:85.014933pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:45.711500pt;}
.y115{bottom:45.732267pt;}
.y113{bottom:45.732706pt;}
.y46{bottom:46.103302pt;}
.y84{bottom:46.108713pt;}
.y86{bottom:46.110267pt;}
.y114{bottom:50.494400pt;}
.y85{bottom:51.477200pt;}
.y112{bottom:59.187467pt;}
.y110{bottom:59.187773pt;}
.ycb{bottom:59.771854pt;}
.y45{bottom:60.238973pt;}
.y83{bottom:60.244384pt;}
.y111{bottom:63.874000pt;}
.y10f{bottom:72.642533pt;}
.y10d{bottom:72.642691pt;}
.yca{bottom:73.832208pt;}
.y44{bottom:74.374644pt;}
.y82{bottom:74.380055pt;}
.y10e{bottom:77.329200pt;}
.y10c{bottom:86.022000pt;}
.y10a{bottom:86.022306pt;}
.yc9{bottom:87.892562pt;}
.y43{bottom:88.510315pt;}
.y81{bottom:88.515725pt;}
.y10b{bottom:90.784267pt;}
.y108{bottom:99.477067pt;}
.yc8{bottom:101.952915pt;}
.y42{bottom:102.570669pt;}
.y80{bottom:102.651396pt;}
.y109{bottom:104.163733pt;}
.yc7{bottom:116.088586pt;}
.y7f{bottom:116.559921pt;}
.y41{bottom:116.706340pt;}
.y107{bottom:129.339286pt;}
.yc6{bottom:130.148940pt;}
.y40{bottom:130.690181pt;}
.y7e{bottom:130.695592pt;}
.y106{bottom:142.794071pt;}
.yc5{bottom:144.209294pt;}
.y3f{bottom:144.750535pt;}
.y7d{bottom:144.831263pt;}
.y105{bottom:156.173539pt;}
.yc4{bottom:158.269648pt;}
.y3e{bottom:158.886206pt;}
.y7a{bottom:158.962693pt;}
.y7c{bottom:158.966933pt;}
.y7b{bottom:164.258267pt;}
.y104{bottom:172.123084pt;}
.yc3{bottom:172.330002pt;}
.y3d{bottom:173.021877pt;}
.y79{bottom:173.023046pt;}
.y103{bottom:185.577869pt;}
.yc2{bottom:186.390356pt;}
.y3c{bottom:187.082230pt;}
.y78{bottom:187.158717pt;}
.y102{bottom:199.032654pt;}
.yc1{bottom:200.450710pt;}
.y3b{bottom:201.217901pt;}
.y77{bottom:201.294388pt;}
.yc0{bottom:214.511064pt;}
.y101{bottom:214.982199pt;}
.y3a{bottom:215.353572pt;}
.y76{bottom:215.430059pt;}
.y100{bottom:228.361667pt;}
.ybf{bottom:228.571418pt;}
.y39{bottom:229.489243pt;}
.y75{bottom:229.565730pt;}
.yff{bottom:241.816452pt;}
.ybe{bottom:242.631771pt;}
.y38{bottom:243.549597pt;}
.y74{bottom:243.701401pt;}
.ybd{bottom:256.615613pt;}
.y37{bottom:257.685268pt;}
.y73{bottom:257.761754pt;}
.yfe{bottom:257.765997pt;}
.ybc{bottom:270.675967pt;}
.yfc{bottom:271.145465pt;}
.yfd{bottom:271.674544pt;}
.y36{bottom:271.820939pt;}
.y72{bottom:271.897425pt;}
.ybb{bottom:284.736321pt;}
.y35{bottom:285.956609pt;}
.y71{bottom:286.033096pt;}
.yfb{bottom:287.095011pt;}
.yba{bottom:298.796675pt;}
.y34{bottom:300.016963pt;}
.y70{bottom:300.168767pt;}
.yfa{bottom:300.549795pt;}
.yb9{bottom:312.857029pt;}
.y33{bottom:314.152634pt;}
.y6f{bottom:314.304438pt;}
.yf9{bottom:316.499341pt;}
.yb8{bottom:326.917382pt;}
.y32{bottom:328.288305pt;}
.y6e{bottom:328.364792pt;}
.yf8{bottom:329.878809pt;}
.yb7{bottom:340.977736pt;}
.y31{bottom:342.348659pt;}
.y6d{bottom:342.500463pt;}
.yf7{bottom:345.828354pt;}
.yb6{bottom:355.038090pt;}
.y30{bottom:356.332500pt;}
.y6a{bottom:356.635929pt;}
.y6c{bottom:356.636133pt;}
.yf6{bottom:359.283139pt;}
.y6b{bottom:361.927467pt;}
.yb5{bottom:369.098444pt;}
.y2f{bottom:370.468171pt;}
.y69{bottom:370.771600pt;}
.yf5{bottom:372.737924pt;}
.yb4{bottom:383.158798pt;}
.y2e{bottom:384.528525pt;}
.y67{bottom:384.676309pt;}
.yf4{bottom:386.117392pt;}
.y68{bottom:390.047067pt;}
.yb3{bottom:397.219152pt;}
.y2d{bottom:398.664196pt;}
.y66{bottom:398.811980pt;}
.yf3{bottom:402.066937pt;}
.yb2{bottom:411.354823pt;}
.y2c{bottom:412.799867pt;}
.y65{bottom:412.947651pt;}
.yf2{bottom:415.521722pt;}
.y2a{bottom:426.929852pt;}
.y64{bottom:427.083321pt;}
.yf1{bottom:428.901190pt;}
.y2b{bottom:432.226667pt;}
.y29{bottom:440.990206pt;}
.yb1{bottom:441.061968pt;}
.y63{bottom:441.218992pt;}
.yf0{bottom:444.850735pt;}
.yb0{bottom:454.442079pt;}
.y28{bottom:455.125877pt;}
.y62{bottom:455.354663pt;}
.yef{bottom:458.305520pt;}
.yaf{bottom:467.745677pt;}
.y26{bottom:469.261547pt;}
.y61{bottom:469.415017pt;}
.y27{bottom:469.866474pt;}
.yee{bottom:474.255066pt;}
.yae{bottom:481.125787pt;}
.y25{bottom:483.397218pt;}
.y60{bottom:483.550688pt;}
.yed{bottom:487.634533pt;}
.y24{bottom:497.457572pt;}
.y5f{bottom:497.686359pt;}
.yad{bottom:502.518184pt;}
.yec{bottom:510.236133pt;}
.y23{bottom:511.593243pt;}
.y5e{bottom:511.822029pt;}
.yac{bottom:516.653855pt;}
.y22{bottom:525.728914pt;}
.y5d{bottom:525.957700pt;}
.yab{bottom:530.714208pt;}
.y21{bottom:539.789268pt;}
.y5c{bottom:540.018054pt;}
.yaa{bottom:544.774562pt;}
.y20{bottom:553.924939pt;}
.y5b{bottom:554.153725pt;}
.yeb{bottom:557.245710pt;}
.ya9{bottom:558.834916pt;}
.y1f{bottom:568.060609pt;}
.y5a{bottom:568.289396pt;}
.yea{bottom:571.306064pt;}
.ya8{bottom:572.895270pt;}
.y1e{bottom:581.969134pt;}
.y57{bottom:582.418353pt;}
.y59{bottom:582.425067pt;}
.ya7{bottom:586.803795pt;}
.y58{bottom:587.716400pt;}
.ye9{bottom:593.226874pt;}
.y1d{bottom:596.104805pt;}
.y56{bottom:596.554023pt;}
.ya6{bottom:600.864149pt;}
.y88{bottom:605.162680pt;}
.ye8{bottom:607.287228pt;}
.y1c{bottom:610.240476pt;}
.y55{bottom:610.462548pt;}
.ya5{bottom:614.924503pt;}
.ye7{bottom:621.422898pt;}
.y1b{bottom:624.376146pt;}
.y54{bottom:624.598219pt;}
.ya4{bottom:629.060173pt;}
.ye6{bottom:635.483252pt;}
.y1a{bottom:638.436500pt;}
.y53{bottom:638.733890pt;}
.ya3{bottom:643.120527pt;}
.ye5{bottom:649.618923pt;}
.y19{bottom:652.572171pt;}
.y52{bottom:652.869560pt;}
.ya2{bottom:657.180881pt;}
.ye4{bottom:663.679277pt;}
.y18{bottom:666.707842pt;}
.y51{bottom:666.778085pt;}
.ya1{bottom:671.241235pt;}
.ye3{bottom:677.814948pt;}
.y17{bottom:680.843513pt;}
.y50{bottom:680.913756pt;}
.ya0{bottom:685.301589pt;}
.ye2{bottom:691.875302pt;}
.y16{bottom:694.903867pt;}
.y4f{bottom:695.049427pt;}
.y9f{bottom:699.361943pt;}
.ye0{bottom:705.935656pt;}
.ye1{bottom:706.615899pt;}
.y14{bottom:709.038171pt;}
.y4e{bottom:709.185097pt;}
.y9e{bottom:713.422297pt;}
.y15{bottom:714.330533pt;}
.ydf{bottom:720.071327pt;}
.y13{bottom:723.173842pt;}
.y4d{bottom:723.320768pt;}
.y9d{bottom:727.482651pt;}
.yde{bottom:734.131680pt;}
.y12{bottom:737.309513pt;}
.y4c{bottom:737.381122pt;}
.y9c{bottom:741.466492pt;}
.ydd{bottom:748.267351pt;}
.yf{bottom:751.368634pt;}
.y11{bottom:751.369867pt;}
.y4b{bottom:751.516793pt;}
.y9b{bottom:755.526846pt;}
.y10{bottom:756.736800pt;}
.ydb{bottom:762.327705pt;}
.ydc{bottom:762.932632pt;}
.y4a{bottom:765.500634pt;}
.ye{bottom:765.504304pt;}
.y98{bottom:769.580404pt;}
.y9a{bottom:769.587200pt;}
.y99{bottom:774.878533pt;}
.yda{bottom:776.463376pt;}
.y49{bottom:779.636305pt;}
.yd{bottom:779.639975pt;}
.y97{bottom:783.640758pt;}
.yd9{bottom:790.523730pt;}
.y48{bottom:793.696659pt;}
.yc{bottom:793.700329pt;}
.y96{bottom:797.701112pt;}
.yd8{bottom:804.584084pt;}
.y47{bottom:807.832330pt;}
.yb{bottom:807.836000pt;}
.y138{bottom:808.440660pt;}
.y13a{bottom:808.440800pt;}
.y95{bottom:811.761466pt;}
.y139{bottom:813.127333pt;}
.yd7{bottom:818.719755pt;}
.y137{bottom:821.669067pt;}
.y135{bottom:821.669075pt;}
.y145{bottom:821.669373pt;}
.y94{bottom:825.821819pt;}
.y136{bottom:826.431333pt;}
.yd6{bottom:832.780109pt;}
.y134{bottom:834.972933pt;}
.y132{bottom:834.973209pt;}
.y133{bottom:839.735200pt;}
.y93{bottom:839.882173pt;}
.yd5{bottom:846.915779pt;}
.y131{bottom:848.277067pt;}
.y12f{bottom:848.277075pt;}
.y144{bottom:848.277089pt;}
.y130{bottom:852.963600pt;}
.ya{bottom:853.189694pt;}
.y92{bottom:853.942527pt;}
.yd4{bottom:860.976133pt;}
.y12e{bottom:861.580933pt;}
.y143{bottom:861.580947pt;}
.y12c{bottom:861.581078pt;}
.y12d{bottom:866.267600pt;}
.y91{bottom:868.002881pt;}
.y9{bottom:871.785453pt;}
.y141{bottom:874.809353pt;}
.y12b{bottom:874.809484pt;}
.y142{bottom:875.414026pt;}
.y90{bottom:882.063235pt;}
.yd3{bottom:883.729067pt;}
.y140{bottom:888.113211pt;}
.y129{bottom:888.113342pt;}
.y12a{bottom:888.642563pt;}
.y8f{bottom:896.123589pt;}
.y125{bottom:901.417069pt;}
.y127{bottom:901.417200pt;}
.y128{bottom:901.946421pt;}
.y8{bottom:905.650267pt;}
.y126{bottom:906.103733pt;}
.y8e{bottom:910.107430pt;}
.y124{bottom:914.645475pt;}
.y7{bottom:916.913200pt;}
.yd2{bottom:924.093292pt;}
.y8d{bottom:924.167784pt;}
.y123{bottom:927.949333pt;}
.y121{bottom:927.949475pt;}
.y122{bottom:932.711600pt;}
.y6{bottom:937.549333pt;}
.yd1{bottom:938.153646pt;}
.y8c{bottom:938.228138pt;}
.y120{bottom:941.253333pt;}
.y11e{bottom:941.253336pt;}
.y13f{bottom:941.253342pt;}
.y11f{bottom:945.940000pt;}
.yd0{bottom:952.214000pt;}
.y8b{bottom:952.288492pt;}
.y11d{bottom:954.557193pt;}
.y13e{bottom:954.557200pt;}
.y13c{bottom:954.557202pt;}
.y13d{bottom:959.243867pt;}
.y5{bottom:964.460841pt;}
.yce{bottom:966.331732pt;}
.y8a{bottom:966.348846pt;}
.y11c{bottom:967.785600pt;}
.y119{bottom:967.785609pt;}
.y11a{bottom:968.390281pt;}
.ycf{bottom:971.640667pt;}
.y11b{bottom:972.547733pt;}
.y4{bottom:976.403831pt;}
.ycd{bottom:980.392086pt;}
.y89{bottom:980.409200pt;}
.y118{bottom:981.089467pt;}
.y13b{bottom:981.090210pt;}
.y117{bottom:985.851733pt;}
.y3{bottom:988.346821pt;}
.y2{bottom:1000.289810pt;}
.y116{bottom:1011.628133pt;}
.y1{bottom:1012.232800pt;}
.y87{bottom:1022.666667pt;}
.h3{height:6.184772pt;}
.hc{height:20.315765pt;}
.h7{height:22.855283pt;}
.ha{height:26.667811pt;}
.h2{height:27.620752pt;}
.hb{height:30.478045pt;}
.h6{height:34.287131pt;}
.hd{height:34.414765pt;}
.h9{height:41.875000pt;}
.h5{height:48.585526pt;}
.h4{height:60.360603pt;}
.h8{height:61.187500pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:816.377333pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x15{left:63.798400pt;}
.x2{left:73.096133pt;}
.x16{left:75.741512pt;}
.x44{left:76.800000pt;}
.x19{left:80.352460pt;}
.x6{left:85.039245pt;}
.x48{left:93.581067pt;}
.x49{left:97.285067pt;}
.x4c{left:101.442533pt;}
.x52{left:106.053467pt;}
.x53{left:109.757467pt;}
.x45{left:112.706282pt;}
.x50{left:127.444999pt;}
.x17{left:147.704000pt;}
.x18{left:159.193733pt;}
.x1{left:160.705467pt;}
.x4a{left:171.212533pt;}
.x56{left:172.270800pt;}
.x4b{left:174.992133pt;}
.x57{left:175.974800pt;}
.x51{left:215.734624pt;}
.x4d{left:248.995200pt;}
.x4e{left:252.774800pt;}
.x5a{left:282.708667pt;}
.x46{left:288.604667pt;}
.x5b{left:290.192133pt;}
.x47{left:292.308533pt;}
.x7{left:305.159519pt;}
.x54{left:319.672400pt;}
.x55{left:323.451867pt;}
.x3{left:329.045600pt;}
.x4{left:338.796800pt;}
.x4f{left:367.975008pt;}
.x58{left:374.551067pt;}
.x59{left:382.034533pt;}
.x5{left:399.042400pt;}
.x1a{left:412.876661pt;}
.x8{left:422.174516pt;}
.x1f{left:428.219969pt;}
.x9{left:434.192944pt;}
.x1d{left:458.078769pt;}
.x32{left:459.514933pt;}
.x33{left:463.218800pt;}
.x1e{left:469.568784pt;}
.x2a{left:472.214133pt;}
.x40{left:473.121200pt;}
.x2b{left:475.993600pt;}
.x22{left:476.900667pt;}
.x23{left:480.604667pt;}
.x20{left:490.506232pt;}
.x21{left:499.425257pt;}
.x3a{left:512.730533pt;}
.x3b{left:520.214133pt;}
.x41{left:543.495867pt;}
.x42{left:547.199867pt;}
.x24{left:551.810933pt;}
.x25{left:555.514800pt;}
.xa{left:560.957333pt;}
.x61{left:565.795200pt;}
.x34{left:569.725867pt;}
.xb{left:571.086533pt;}
.x35{left:573.505333pt;}
.xf{left:577.284933pt;}
.x3c{left:579.854933pt;}
.x2c{left:584.768400pt;}
.x10{left:586.506933pt;}
.x2d{left:588.547867pt;}
.x5e{left:599.206133pt;}
.x5f{left:606.689600pt;}
.x26{left:612.888000pt;}
.x27{left:616.592000pt;}
.x62{left:618.784258pt;}
.x43{left:622.261333pt;}
.x63{left:634.356966pt;}
.x1c{left:639.950003pt;}
.xc{left:642.141600pt;}
.x64{left:645.467600pt;}
.x36{left:646.601467pt;}
.x5c{left:648.491200pt;}
.x3d{left:652.799867pt;}
.x37{left:654.084933pt;}
.x5d{left:655.899067pt;}
.x3e{left:660.283333pt;}
.x2e{left:673.662800pt;}
.x2f{left:677.366800pt;}
.x28{left:681.599867pt;}
.x29{left:685.303733pt;}
.xd{left:692.182533pt;}
.x13{left:697.753333pt;}
.x11{left:698.910133pt;}
.xe{left:701.102267pt;}
.x60{left:706.091200pt;}
.x12{left:707.300667pt;}
.x38{left:723.325867pt;}
.x30{left:729.070667pt;}
.x39{left:730.733733pt;}
.x31{left:732.850133pt;}
.x1b{left:734.513200pt;}
.x3f{left:738.443867pt;}
.x14{left:794.666667pt;}
}




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