
    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_b6f1d47e54af456dfc79fd45.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_84fdb16ee3f2f1d83cad6a00.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_d15867b15c490509b3fc9f66.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_413890f388d5d350e965e5dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_332b7fec50f7b27332c36929.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_59e101d462d9d95d980d743f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738000;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_bb5a3301bbcdb6dacaa6c140.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_09fdd14b27f6211e16f4956f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.673000;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_2476934a00705e084f3eaa77.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.840000;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_257b2be420a5149594f51b64.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694000;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);}
.v2{vertical-align:-21.696000px;}
.v5{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:8.964000px;}
.v6{vertical-align:15.108000px;}
.v9{vertical-align:17.934000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.vb{vertical-align:33.042000px;}
.v4{vertical-align:40.440000px;}
.v8{vertical-align:71.304000px;}
.v7{vertical-align:86.082000px;}
.vc{vertical-align:121.920000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.003269px;}
.ls3{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.984915px;}
.ls9{letter-spacing:2.989140px;}
.ls1{letter-spacing:2.990915px;}
.ls2{letter-spacing:2.991113px;}
.ls7{letter-spacing:16.273140px;}
.ls12{letter-spacing:16.592314px;}
.ls6{letter-spacing:16.617617px;}
.lsb{letter-spacing:19.586525px;}
.ls10{letter-spacing:19.597140px;}
.ls5{letter-spacing:23.801071px;}
.lsf{letter-spacing:23.805814px;}
.lse{letter-spacing:25.519140px;}
.ls8{letter-spacing:25.638538px;}
.ls14{letter-spacing:26.719693px;}
.lsc{letter-spacing:35.327380px;}
.lsd{letter-spacing:38.311140px;}
.ls13{letter-spacing:314.996525px;}
.ls11{letter-spacing:547.232685px;}
.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;}
}
.ws4{word-spacing:-50.809387px;}
.ws3{word-spacing:-16.438350px;}
.ws2f{word-spacing:-14.943900px;}
.ws7{word-spacing:-14.920027px;}
.wsd6{word-spacing:-11.955150px;}
.ws83{word-spacing:-1.195512px;}
.wsb9{word-spacing:-1.135736px;}
.ws4f{word-spacing:-1.016185px;}
.wscf{word-spacing:-0.860771px;}
.ws28{word-spacing:-0.836858px;}
.ws9{word-spacing:-0.777083px;}
.wsc9{word-spacing:-0.717309px;}
.wsf5{word-spacing:-0.286924px;}
.ws42{word-spacing:-0.239102px;}
.ws73{word-spacing:-0.059776px;}
.ws55{word-spacing:-0.047821px;}
.ws53{word-spacing:0.000000px;}
.ws77{word-spacing:0.059776px;}
.wsbb{word-spacing:0.239103px;}
.ws38{word-spacing:0.478205px;}
.ws4a{word-spacing:0.657532px;}
.ws18{word-spacing:0.777083px;}
.ws59{word-spacing:0.836858px;}
.wsf3{word-spacing:0.860771px;}
.ws1f{word-spacing:0.896634px;}
.ws6a{word-spacing:1.016185px;}
.ws6b{word-spacing:1.075961px;}
.ws7c{word-spacing:1.195512px;}
.wsc0{word-spacing:1.386797px;}
.wsb0{word-spacing:1.434614px;}
.wsc1{word-spacing:1.434618px;}
.ws99{word-spacing:1.554166px;}
.ws62{word-spacing:1.733492px;}
.ws72{word-spacing:1.793268px;}
.wsc4{word-spacing:1.865003px;}
.ws1c{word-spacing:1.912819px;}
.wse6{word-spacing:2.199748px;}
.wse5{word-spacing:2.247568px;}
.ws47{word-spacing:2.271473px;}
.ws37{word-spacing:2.391024px;}
.wsdf{word-spacing:2.391030px;}
.wsa4{word-spacing:2.450800px;}
.ws43{word-spacing:2.570351px;}
.wsee{word-spacing:2.582312px;}
.ws79{word-spacing:2.630126px;}
.wse7{word-spacing:2.773595px;}
.ws4e{word-spacing:2.809453px;}
.wsa3{word-spacing:2.869229px;}
.wsf4{word-spacing:3.108339px;}
.ws84{word-spacing:3.347434px;}
.ws9a{word-spacing:3.407209px;}
.ws11{word-spacing:3.466985px;}
.ws81{word-spacing:3.586536px;}
.ws6e{word-spacing:3.646312px;}
.wsf6{word-spacing:3.730007px;}
.ws5b{word-spacing:3.765863px;}
.wsd1{word-spacing:3.825648px;}
.wsd0{word-spacing:4.064751px;}
.wse{word-spacing:4.124516px;}
.wsbf{word-spacing:4.160392px;}
.ws65{word-spacing:4.184292px;}
.ws69{word-spacing:4.244068px;}
.wsf0{word-spacing:4.351675px;}
.ws97{word-spacing:4.542946px;}
.ws6d{word-spacing:4.602721px;}
.wsbc{word-spacing:4.686419px;}
.wsbd{word-spacing:4.782060px;}
.ws60{word-spacing:4.901599px;}
.wsc6{word-spacing:5.068984px;}
.wsaf{word-spacing:5.080926px;}
.ws6c{word-spacing:5.200477px;}
.ws2c{word-spacing:5.320028px;}
.wsa1{word-spacing:5.439580px;}
.wse4{word-spacing:5.547190px;}
.ws5a{word-spacing:5.559131px;}
.ws76{word-spacing:5.618906px;}
.ws31{word-spacing:5.678682px;}
.wsa0{word-spacing:5.738458px;}
.wsf2{word-spacing:5.738472px;}
.wsc3{word-spacing:5.881934px;}
.wscc{word-spacing:5.929754px;}
.ws5{word-spacing:5.977560px;}
.wscb{word-spacing:6.025396px;}
.ws16{word-spacing:6.037336px;}
.wsca{word-spacing:6.073216px;}
.ws15{word-spacing:6.156887px;}
.wsa9{word-spacing:6.216662px;}
.ws50{word-spacing:6.276438px;}
.ws61{word-spacing:6.336214px;}
.wsda{word-spacing:6.407960px;}
.ws2{word-spacing:6.575340px;}
.wsa2{word-spacing:6.635092px;}
.ws26{word-spacing:6.694867px;}
.wsa7{word-spacing:6.754643px;}
.wsf8{word-spacing:6.790525px;}
.ws7b{word-spacing:6.814418px;}
.wsb4{word-spacing:6.874194px;}
.wsde{word-spacing:6.886166px;}
.wse0{word-spacing:6.933987px;}
.ws93{word-spacing:6.993745px;}
.wsc5{word-spacing:7.125269px;}
.wsb2{word-spacing:7.173072px;}
.ws1{word-spacing:7.173120px;}
.ws2a{word-spacing:7.232848px;}
.ws75{word-spacing:7.591501px;}
.wsb7{word-spacing:7.651277px;}
.wse1{word-spacing:7.651296px;}
.wse2{word-spacing:7.699117px;}
.ws8b{word-spacing:7.711052px;}
.wsef{word-spacing:7.746937px;}
.ws19{word-spacing:7.830604px;}
.wsa8{word-spacing:7.950155px;}
.wsd2{word-spacing:7.986040px;}
.wsb3{word-spacing:8.129482px;}
.wsec{word-spacing:8.129502px;}
.wseb{word-spacing:8.177323px;}
.ws27{word-spacing:8.249033px;}
.wsc8{word-spacing:8.272964px;}
.ws3d{word-spacing:8.368584px;}
.wsa6{word-spacing:8.428360px;}
.ws8f{word-spacing:8.607686px;}
.wsbe{word-spacing:8.751170px;}
.ws49{word-spacing:8.846789px;}
.ws48{word-spacing:8.906564px;}
.wsed{word-spacing:9.133735px;}
.ws8d{word-spacing:9.324994px;}
.wsea{word-spacing:9.372838px;}
.ws25{word-spacing:9.384769px;}
.ws9c{word-spacing:9.444545px;}
.ws9d{word-spacing:9.504320px;}
.ws7f{word-spacing:9.683647px;}
.ws30{word-spacing:10.042301px;}
.ws12{word-spacing:10.102076px;}
.ws20{word-spacing:10.221628px;}
.ws45{word-spacing:10.400954px;}
.ws36{word-spacing:10.520506px;}
.ws2b{word-spacing:10.640057px;}
.ws17{word-spacing:10.819384px;}
.ws6f{word-spacing:10.879159px;}
.ws14{word-spacing:10.938935px;}
.wsba{word-spacing:10.950917px;}
.ws10{word-spacing:10.998710px;}
.wsd7{word-spacing:11.046559px;}
.ws3a{word-spacing:11.058486px;}
.ws8e{word-spacing:11.178037px;}
.ws8c{word-spacing:11.297588px;}
.ws24{word-spacing:11.357364px;}
.ws1b{word-spacing:11.476915px;}
.ws67{word-spacing:11.536691px;}
.wsc2{word-spacing:11.763868px;}
.ws95{word-spacing:11.775793px;}
.wse3{word-spacing:11.859509px;}
.ws1d{word-spacing:11.895344px;}
.wsd9{word-spacing:12.050791px;}
.wsd8{word-spacing:12.098612px;}
.wsad{word-spacing:12.134447px;}
.ws35{word-spacing:12.194222px;}
.wsc7{word-spacing:12.385535px;}
.wsb8{word-spacing:12.433325px;}
.ws98{word-spacing:12.672427px;}
.wsf7{word-spacing:12.720280px;}
.ws9f{word-spacing:12.791978px;}
.wse8{word-spacing:12.863741px;}
.ws29{word-spacing:12.911530px;}
.ws86{word-spacing:12.971305px;}
.ws9b{word-spacing:13.031081px;}
.ws88{word-spacing:13.090856px;}
.wsd5{word-spacing:13.150665px;}
.wsf{word-spacing:13.270183px;}
.ws51{word-spacing:13.329959px;}
.ws57{word-spacing:13.509286px;}
.ws85{word-spacing:13.628837px;}
.wsae{word-spacing:13.688612px;}
.ws66{word-spacing:13.927715px;}
.ws94{word-spacing:13.987490px;}
.ws40{word-spacing:14.047266px;}
.wsa5{word-spacing:14.107042px;}
.wscd{word-spacing:14.298359px;}
.ws7d{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws87{word-spacing:14.704798px;}
.ws58{word-spacing:14.764573px;}
.ws41{word-spacing:14.824349px;}
.ws5d{word-spacing:15.003676px;}
.ws64{word-spacing:15.183002px;}
.wsb6{word-spacing:15.422105px;}
.wse9{word-spacing:15.493874px;}
.ws54{word-spacing:15.541656px;}
.ws2e{word-spacing:15.601432px;}
.ws4c{word-spacing:15.661207px;}
.ws90{word-spacing:15.840534px;}
.wsce{word-spacing:15.876439px;}
.wsac{word-spacing:16.079636px;}
.ws4d{word-spacing:16.258963px;}
.ws91{word-spacing:16.378514px;}
.wsf1{word-spacing:16.402466px;}
.ws3c{word-spacing:16.498066px;}
.ws22{word-spacing:16.677392px;}
.wsdd{word-spacing:16.832851px;}
.wsd3{word-spacing:16.976313px;}
.ws78{word-spacing:17.334924px;}
.ws71{word-spacing:17.514251px;}
.ws80{word-spacing:17.753353px;}
.ws6{word-spacing:17.932680px;}
.wsb5{word-spacing:18.590212px;}
.ws5e{word-spacing:18.649987px;}
.ws8a{word-spacing:18.948865px;}
.ws68{word-spacing:19.128192px;}
.ws3e{word-spacing:19.187968px;}
.ws89{word-spacing:19.247743px;}
.ws32{word-spacing:19.307519px;}
.wsd{word-spacing:19.427070px;}
.wsdc{word-spacing:19.510805px;}
.ws7a{word-spacing:19.551687px;}
.wsdb{word-spacing:19.558625px;}
.ws33{word-spacing:19.606397px;}
.ws5f{word-spacing:19.785724px;}
.ws8{word-spacing:19.965050px;}
.ws46{word-spacing:20.024826px;}
.ws52{word-spacing:20.084602px;}
.ws39{word-spacing:20.204153px;}
.wsd4{word-spacing:20.275934px;}
.ws74{word-spacing:20.383480px;}
.ws7e{word-spacing:20.443255px;}
.ws3f{word-spacing:20.503031px;}
.ws82{word-spacing:20.861684px;}
.ws2d{word-spacing:21.160562px;}
.ws70{word-spacing:21.638767px;}
.wsaa{word-spacing:21.758318px;}
.ws23{word-spacing:21.997421px;}
.wsab{word-spacing:22.176748px;}
.ws44{word-spacing:22.415850px;}
.ws1e{word-spacing:22.535401px;}
.wsc{word-spacing:23.013606px;}
.wsb1{word-spacing:23.133157px;}
.ws92{word-spacing:23.730913px;}
.ws13{word-spacing:25.823059px;}
.ws1a{word-spacing:26.361040px;}
.ws96{word-spacing:26.779469px;}
.ws56{word-spacing:28.393410px;}
.ws34{word-spacing:29.588922px;}
.ws5c{word-spacing:29.887800px;}
.wsb{word-spacing:30.067127px;}
.ws63{word-spacing:30.126902px;}
.ws21{word-spacing:31.621292px;}
.ws9e{word-spacing:32.831208px;}
.ws3b{word-spacing:34.610072px;}
.ws4b{word-spacing:44.592598px;}
.wsa{word-spacing:44.951251px;}
._1{margin-left:-11.476944px;}
._6{margin-left:-7.303001px;}
._17{margin-left:-6.168857px;}
._2{margin-left:-5.021163px;}
._0{margin-left:-3.586545px;}
._3{margin-left:-2.151927px;}
._4{margin-left:-1.147330px;}
._e{width:1.579718px;}
._7{width:2.959762px;}
._5{width:5.490030px;}
._f{width:6.515540px;}
._1c{width:8.703349px;}
._1d{width:10.663994px;}
._9{width:13.150637px;}
._12{width:15.123227px;}
._19{width:18.936958px;}
._10{width:20.024826px;}
._16{width:21.100787px;}
._14{width:23.611367px;}
._15{width:24.747098px;}
._b{width:26.850863px;}
._8{width:29.887800px;}
._a{width:31.561522px;}
._11{width:34.645393px;}
._c{width:36.343565px;}
._d{width:39.272569px;}
._18{width:47.820600px;}
._1b{width:55.567612px;}
._1a{width:60.014853px;}
._13{width:71.132977px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y30{bottom:113.332500px;}
.y128{bottom:126.781500px;}
.y2f{bottom:131.265000px;}
.y8f{bottom:131.266500px;}
.y127{bottom:140.232000px;}
.y58{bottom:149.197500px;}
.y8e{bottom:149.199000px;}
.y2e{bottom:153.423000px;}
.y126{bottom:153.681000px;}
.y57{bottom:167.131500px;}
.y125{bottom:168.172500px;}
.y2d{bottom:178.546500px;}
.y124{bottom:181.621500px;}
.y56{bottom:185.064000px;}
.y8d{bottom:185.370000px;}
.y123{bottom:195.070500px;}
.y2c{bottom:196.479000px;}
.yc5{bottom:202.996500px;}
.y8c{bottom:203.302500px;}
.y55{bottom:208.390500px;}
.y122{bottom:209.562000px;}
.y2b{bottom:214.411500px;}
.yc4{bottom:220.929000px;}
.y8b{bottom:221.235000px;}
.y121{bottom:223.011000px;}
.y2a{bottom:232.344000px;}
.y120{bottom:236.460000px;}
.y54{bottom:238.077000px;}
.yc3{bottom:238.861500px;}
.y8a{bottom:239.167500px;}
.y29{bottom:250.276500px;}
.y11f{bottom:250.951500px;}
.y53{bottom:256.009500px;}
.yc2{bottom:256.795500px;}
.y89{bottom:257.101500px;}
.yf1{bottom:257.845500px;}
.y11e{bottom:264.400500px;}
.y28{bottom:268.210500px;}
.y52{bottom:273.943500px;}
.yc1{bottom:274.728000px;}
.yf0{bottom:275.778000px;}
.y11d{bottom:277.849500px;}
.y87{bottom:280.252500px;}
.y27{bottom:286.143000px;}
.y84{bottom:287.634000px;}
.y51{bottom:291.876000px;}
.y11c{bottom:292.341000px;}
.yc0{bottom:293.332500px;}
.yef{bottom:293.710500px;}
.y83{bottom:297.885000px;}
.y26{bottom:304.075500px;}
.y11b{bottom:305.790000px;}
.y88{bottom:307.995000px;}
.y50{bottom:309.808500px;}
.ybf{bottom:311.265000px;}
.yee{bottom:311.643000px;}
.y86{bottom:312.082500px;}
.y85{bottom:316.564500px;}
.y11a{bottom:319.240500px;}
.y25{bottom:322.008000px;}
.y4f{bottom:327.741000px;}
.ybe{bottom:329.199000px;}
.yed{bottom:329.575500px;}
.y119{bottom:333.730500px;}
.y82{bottom:337.245000px;}
.y24{bottom:339.940500px;}
.y4e{bottom:345.870000px;}
.ybd{bottom:347.131500px;}
.y118{bottom:347.179500px;}
.yec{bottom:348.558000px;}
.y81{bottom:355.177500px;}
.y23{bottom:357.391500px;}
.y117{bottom:360.630000px;}
.y4d{bottom:363.802500px;}
.ybc{bottom:365.064000px;}
.yeb{bottom:366.492000px;}
.y80{bottom:373.110000px;}
.y116{bottom:374.079000px;}
.y22{bottom:375.324000px;}
.y4c{bottom:381.735000px;}
.ybb{bottom:382.996500px;}
.yea{bottom:384.424500px;}
.y115{bottom:388.569000px;}
.y7f{bottom:391.042500px;}
.y21{bottom:393.256500px;}
.y4b{bottom:399.669000px;}
.yba{bottom:400.929000px;}
.y114{bottom:402.019500px;}
.ye9{bottom:402.357000px;}
.y7e{bottom:408.976500px;}
.y20{bottom:411.189000px;}
.y113{bottom:416.509500px;}
.y4a{bottom:417.601500px;}
.yb9{bottom:418.861500px;}
.ye8{bottom:420.289500px;}
.y7d{bottom:426.909000px;}
.y1f{bottom:429.121500px;}
.y112{bottom:429.958500px;}
.y49{bottom:435.534000px;}
.yb8{bottom:436.795500px;}
.ye7{bottom:438.222000px;}
.y111{bottom:443.409000px;}
.y7c{bottom:445.147500px;}
.y1e{bottom:447.055500px;}
.y48{bottom:453.466500px;}
.yb7{bottom:454.728000px;}
.ye6{bottom:456.154500px;}
.y110{bottom:456.858000px;}
.y7b{bottom:463.080000px;}
.y1d{bottom:464.988000px;}
.y10f{bottom:471.349500px;}
.y47{bottom:471.399000px;}
.yb6{bottom:472.660500px;}
.ye5{bottom:474.088500px;}
.y1c{bottom:482.437500px;}
.y10e{bottom:484.798500px;}
.y7a{bottom:486.790500px;}
.y46{bottom:489.331500px;}
.yb5{bottom:490.593000px;}
.ye4{bottom:493.071000px;}
.y10d{bottom:498.247500px;}
.y1b{bottom:500.370000px;}
.y45{bottom:507.460500px;}
.yb4{bottom:508.525500px;}
.ye3{bottom:511.003500px;}
.y79{bottom:511.264500px;}
.y10c{bottom:512.739000px;}
.y1a{bottom:518.302500px;}
.y44{bottom:525.393000px;}
.y10b{bottom:526.188000px;}
.yb3{bottom:526.458000px;}
.ye2{bottom:528.936000px;}
.y19{bottom:536.236500px;}
.y10a{bottom:539.637000px;}
.y78{bottom:541.884000px;}
.y43{bottom:543.327000px;}
.yb2{bottom:544.392000px;}
.ye1{bottom:546.868500px;}
.y109{bottom:553.087500px;}
.y18{bottom:554.169000px;}
.y77{bottom:559.816500px;}
.y42{bottom:561.259500px;}
.yb1{bottom:562.324500px;}
.ye0{bottom:565.852500px;}
.y108{bottom:567.577500px;}
.y17{bottom:572.101500px;}
.y76{bottom:577.749000px;}
.y41{bottom:579.192000px;}
.yb0{bottom:580.257000px;}
.y107{bottom:581.026500px;}
.ydf{bottom:583.785000px;}
.y16{bottom:590.034000px;}
.y106{bottom:594.477000px;}
.y75{bottom:595.683000px;}
.y40{bottom:597.124500px;}
.yaf{bottom:598.189500px;}
.yde{bottom:601.717500px;}
.y15{bottom:607.483500px;}
.y105{bottom:607.926000px;}
.y74{bottom:613.921500px;}
.y3f{bottom:615.057000px;}
.yae{bottom:616.122000px;}
.ydd{bottom:619.650000px;}
.y14{bottom:625.417500px;}
.y73{bottom:631.854000px;}
.y3e{bottom:633.186000px;}
.yad{bottom:634.056000px;}
.ydc{bottom:637.582500px;}
.y104{bottom:641.361000px;}
.y13{bottom:643.350000px;}
.y72{bottom:649.786500px;}
.y3d{bottom:651.118500px;}
.ydb{bottom:655.515000px;}
.yac{bottom:659.049000px;}
.y12{bottom:661.282500px;}
.y71{bottom:667.719000px;}
.y3c{bottom:669.052500px;}
.yda{bottom:674.499000px;}
.y11{bottom:679.215000px;}
.y103{bottom:685.306500px;}
.y70{bottom:685.957500px;}
.y3b{bottom:686.985000px;}
.yd9{bottom:692.431500px;}
.yab{bottom:692.784000px;}
.y10{bottom:697.147500px;}
.y102{bottom:703.239000px;}
.y6f{bottom:703.890000px;}
.y3a{bottom:704.917500px;}
.yd8{bottom:710.364000px;}
.yaa{bottom:710.716500px;}
.yf{bottom:715.080000px;}
.y101{bottom:721.173000px;}
.y6e{bottom:721.824000px;}
.y39{bottom:722.850000px;}
.yd7{bottom:728.296500px;}
.ya9{bottom:728.649000px;}
.ye{bottom:733.014000px;}
.y100{bottom:739.105500px;}
.y6d{bottom:739.756500px;}
.y38{bottom:740.782500px;}
.y141{bottom:745.462500px;}
.yd6{bottom:746.229000px;}
.ya8{bottom:746.583000px;}
.yd{bottom:750.946500px;}
.yff{bottom:757.038000px;}
.y6c{bottom:757.689000px;}
.y37{bottom:758.911500px;}
.y140{bottom:758.913000px;}
.ya7{bottom:764.515500px;}
.yd5{bottom:765.211500px;}
.yc{bottom:768.396000px;}
.y13f{bottom:773.002500px;}
.y158{bottom:774.156000px;}
.yfe{bottom:774.970500px;}
.y6b{bottom:775.621500px;}
.y36{bottom:776.844000px;}
.yd4{bottom:783.145500px;}
.yb{bottom:786.328500px;}
.y13e{bottom:786.451500px;}
.y157{bottom:787.605000px;}
.ya6{bottom:792.871500px;}
.yfd{bottom:792.903000px;}
.y6a{bottom:793.860000px;}
.y35{bottom:794.778000px;}
.y13d{bottom:799.902000px;}
.ya3{bottom:800.253000px;}
.yd3{bottom:801.078000px;}
.y156{bottom:802.848000px;}
.ya{bottom:804.261000px;}
.y9e{bottom:810.504000px;}
.yfc{bottom:810.835500px;}
.y69{bottom:811.792500px;}
.y34{bottom:812.710500px;}
.y13c{bottom:813.991500px;}
.ya1{bottom:814.681500px;}
.y155{bottom:816.297000px;}
.yd2{bottom:819.010500px;}
.ya2{bottom:820.614000px;}
.y9{bottom:822.195000px;}
.ya0{bottom:823.648500px;}
.ya5{bottom:824.700000px;}
.y13b{bottom:827.440500px;}
.yfb{bottom:828.769500px;}
.ya4{bottom:829.183500px;}
.y68{bottom:829.725000px;}
.y154{bottom:829.747500px;}
.y33{bottom:830.643000px;}
.y9f{bottom:832.614000px;}
.yd1{bottom:836.943000px;}
.y13a{bottom:841.531500px;}
.y8{bottom:844.351500px;}
.y153{bottom:844.989000px;}
.y9d{bottom:845.338500px;}
.yfa{bottom:846.702000px;}
.y67{bottom:847.659000px;}
.y32{bottom:848.575500px;}
.yd0{bottom:854.875500px;}
.y139{bottom:854.980500px;}
.y152{bottom:858.439500px;}
.y9c{bottom:863.272500px;}
.yf9{bottom:864.634500px;}
.y66{bottom:865.591500px;}
.y31{bottom:866.508000px;}
.y7{bottom:866.509500px;}
.y138{bottom:868.429500px;}
.y151{bottom:871.888500px;}
.ycf{bottom:873.858000px;}
.y9b{bottom:881.205000px;}
.y137{bottom:881.880000px;}
.yf8{bottom:882.567000px;}
.y65{bottom:883.524000px;}
.y150{bottom:887.131500px;}
.yce{bottom:891.792000px;}
.y136{bottom:895.969500px;}
.y9a{bottom:899.137500px;}
.yf7{bottom:900.499500px;}
.y14f{bottom:900.580500px;}
.y64{bottom:901.762500px;}
.y135{bottom:909.420000px;}
.ycd{bottom:909.724500px;}
.y14e{bottom:914.031000px;}
.y99{bottom:917.742000px;}
.yf6{bottom:918.433500px;}
.y63{bottom:919.695000px;}
.y134{bottom:922.869000px;}
.y14d{bottom:929.274000px;}
.ycc{bottom:931.762500px;}
.y6{bottom:934.105500px;}
.y98{bottom:935.676000px;}
.y133{bottom:936.318000px;}
.y62{bottom:937.627500px;}
.yf5{bottom:938.239500px;}
.y14c{bottom:942.723000px;}
.y132{bottom:949.768500px;}
.y97{bottom:953.608500px;}
.y61{bottom:955.561500px;}
.ycb{bottom:956.172000px;}
.y14b{bottom:957.966000px;}
.y5{bottom:958.023000px;}
.y131{bottom:963.858000px;}
.y4{bottom:971.314500px;}
.y14a{bottom:971.415000px;}
.y96{bottom:971.541000px;}
.y60{bottom:973.800000px;}
.yca{bottom:974.104500px;}
.y130{bottom:977.307000px;}
.y149{bottom:986.658000px;}
.y95{bottom:989.473500px;}
.y12f{bottom:991.398000px;}
.y5f{bottom:991.732500px;}
.yf4{bottom:992.037000px;}
.yc9{bottom:992.038500px;}
.y148{bottom:1000.108500px;}
.y12e{bottom:1004.847000px;}
.y5e{bottom:1009.665000px;}
.yf3{bottom:1009.969500px;}
.yc8{bottom:1009.971000px;}
.y94{bottom:1012.741500px;}
.y147{bottom:1015.351500px;}
.y3{bottom:1018.387500px;}
.y12d{bottom:1018.936500px;}
.y91{bottom:1022.991000px;}
.y5d{bottom:1027.597500px;}
.yc7{bottom:1027.903500px;}
.y146{bottom:1028.800500px;}
.y92{bottom:1028.820000px;}
.y12c{bottom:1032.387000px;}
.y93{bottom:1033.303500px;}
.y2{bottom:1039.309500px;}
.y145{bottom:1042.249500px;}
.y5c{bottom:1045.530000px;}
.yc6{bottom:1045.836000px;}
.y144{bottom:1057.492500px;}
.y12b{bottom:1059.286500px;}
.y5b{bottom:1063.462500px;}
.y90{bottom:1063.768500px;}
.y143{bottom:1070.943000px;}
.y12a{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y5a{bottom:1081.701000px;}
.y142{bottom:1084.392000px;}
.y129{bottom:1086.184500px;}
.yf2{bottom:1099.633500px;}
.y59{bottom:1099.635000px;}
.hc{height:2.391024px;}
.hb{height:27.741776px;}
.hd{height:28.202047px;}
.h18{height:32.804932px;}
.h17{height:32.900573px;}
.h16{height:33.140573px;}
.h4{height:33.665702px;}
.h7{height:41.006062px;}
.h6{height:41.125613px;}
.h8{height:41.484266px;}
.ha{height:42.799330px;}
.h5{height:44.831700px;}
.h15{height:45.470047px;}
.h2{height:49.351066px;}
.hf{height:49.892047px;}
.h3{height:57.419702px;}
.he{height:59.939700px;}
.h10{height:59.945700px;}
.h12{height:77.873700px;}
.h13{height:82.123613px;}
.h9{height:85.271700px;}
.h1{height:98.701718px;}
.h11{height:99.045776px;}
.h14{height:124.311024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:73.446000px;}
.x21{left:83.410500px;}
.x7{left:84.544500px;}
.xa{left:88.389000px;}
.x6{left:93.634500px;}
.x28{left:100.834500px;}
.x22{left:115.965000px;}
.x1{left:117.849000px;}
.x4{left:136.842000px;}
.xd{left:158.658000px;}
.x2{left:164.869500px;}
.x16{left:201.379500px;}
.x29{left:220.882500px;}
.x8{left:225.157500px;}
.xe{left:237.340500px;}
.x10{left:257.317500px;}
.x11{left:258.430500px;}
.xf{left:264.417000px;}
.x12{left:283.186500px;}
.x14{left:316.611000px;}
.x13{left:329.215500px;}
.x3{left:396.093000px;}
.x15{left:432.609000px;}
.xb{left:467.967000px;}
.x24{left:473.944500px;}
.xc{left:482.910000px;}
.x27{left:495.355500px;}
.x5{left:562.618500px;}
.x17{left:573.789000px;}
.x23{left:614.418000px;}
.x25{left:615.807000px;}
.x1b{left:632.826000px;}
.x18{left:650.509500px;}
.x1d{left:663.646500px;}
.x1e{left:664.761000px;}
.x1c{left:670.746000px;}
.x1a{left:681.352500px;}
.x1f{left:685.233000px;}
.x19{left:714.985500px;}
.x20{left:722.959500px;}
.x26{left:787.371000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v5{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.968000pt;}
.v6{vertical-align:13.429333pt;}
.v9{vertical-align:15.941333pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.vb{vertical-align:29.370667pt;}
.v4{vertical-align:35.946667pt;}
.v8{vertical-align:63.381333pt;}
.v7{vertical-align:76.517333pt;}
.vc{vertical-align:108.373333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.002906pt;}
.ls3{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.653258pt;}
.ls9{letter-spacing:2.657014pt;}
.ls1{letter-spacing:2.658591pt;}
.ls2{letter-spacing:2.658767pt;}
.ls7{letter-spacing:14.465014pt;}
.ls12{letter-spacing:14.748723pt;}
.ls6{letter-spacing:14.771215pt;}
.lsb{letter-spacing:17.410245pt;}
.ls10{letter-spacing:17.419680pt;}
.ls5{letter-spacing:21.156507pt;}
.lsf{letter-spacing:21.160724pt;}
.lse{letter-spacing:22.683680pt;}
.ls8{letter-spacing:22.789812pt;}
.ls14{letter-spacing:23.750838pt;}
.lsc{letter-spacing:31.402115pt;}
.lsd{letter-spacing:34.054347pt;}
.ls13{letter-spacing:279.996911pt;}
.ls11{letter-spacing:486.429053pt;}
.ws4{word-spacing:-45.163900pt;}
.ws3{word-spacing:-14.611867pt;}
.ws2f{word-spacing:-13.283467pt;}
.ws7{word-spacing:-13.262246pt;}
.wsd6{word-spacing:-10.626800pt;}
.ws83{word-spacing:-1.062677pt;}
.wsb9{word-spacing:-1.009543pt;}
.ws4f{word-spacing:-0.903276pt;}
.wscf{word-spacing:-0.765130pt;}
.ws28{word-spacing:-0.743874pt;}
.ws9{word-spacing:-0.690740pt;}
.wsc9{word-spacing:-0.637608pt;}
.wsf5{word-spacing:-0.255043pt;}
.ws42{word-spacing:-0.212535pt;}
.ws73{word-spacing:-0.053134pt;}
.ws55{word-spacing:-0.042507pt;}
.ws53{word-spacing:0.000000pt;}
.ws77{word-spacing:0.053134pt;}
.wsbb{word-spacing:0.212536pt;}
.ws38{word-spacing:0.425071pt;}
.ws4a{word-spacing:0.584473pt;}
.ws18{word-spacing:0.690740pt;}
.ws59{word-spacing:0.743874pt;}
.wsf3{word-spacing:0.765130pt;}
.ws1f{word-spacing:0.797008pt;}
.ws6a{word-spacing:0.903276pt;}
.ws6b{word-spacing:0.956410pt;}
.ws7c{word-spacing:1.062677pt;}
.wsc0{word-spacing:1.232709pt;}
.wsb0{word-spacing:1.275213pt;}
.wsc1{word-spacing:1.275216pt;}
.ws99{word-spacing:1.381481pt;}
.ws62{word-spacing:1.540882pt;}
.ws72{word-spacing:1.594016pt;}
.wsc4{word-spacing:1.657781pt;}
.ws1c{word-spacing:1.700284pt;}
.wse6{word-spacing:1.955331pt;}
.wse5{word-spacing:1.997838pt;}
.ws47{word-spacing:2.019087pt;}
.ws37{word-spacing:2.125355pt;}
.wsdf{word-spacing:2.125360pt;}
.wsa4{word-spacing:2.178489pt;}
.ws43{word-spacing:2.284756pt;}
.wsee{word-spacing:2.295389pt;}
.ws79{word-spacing:2.337890pt;}
.wse7{word-spacing:2.465418pt;}
.ws4e{word-spacing:2.497292pt;}
.wsa3{word-spacing:2.550426pt;}
.wsf4{word-spacing:2.762968pt;}
.ws84{word-spacing:2.975497pt;}
.ws9a{word-spacing:3.028630pt;}
.ws11{word-spacing:3.081764pt;}
.ws81{word-spacing:3.188032pt;}
.ws6e{word-spacing:3.241166pt;}
.wsf6{word-spacing:3.315562pt;}
.ws5b{word-spacing:3.347434pt;}
.wsd1{word-spacing:3.400576pt;}
.wsd0{word-spacing:3.613112pt;}
.wse{word-spacing:3.666237pt;}
.wsbf{word-spacing:3.698126pt;}
.ws65{word-spacing:3.719371pt;}
.ws69{word-spacing:3.772505pt;}
.wsf0{word-spacing:3.868155pt;}
.ws97{word-spacing:4.038174pt;}
.ws6d{word-spacing:4.091308pt;}
.wsbc{word-spacing:4.165706pt;}
.wsbd{word-spacing:4.250720pt;}
.ws60{word-spacing:4.356977pt;}
.wsc6{word-spacing:4.505763pt;}
.wsaf{word-spacing:4.516379pt;}
.ws6c{word-spacing:4.622646pt;}
.ws2c{word-spacing:4.728914pt;}
.wsa1{word-spacing:4.835182pt;}
.wse4{word-spacing:4.930835pt;}
.ws5a{word-spacing:4.941450pt;}
.ws76{word-spacing:4.994583pt;}
.ws31{word-spacing:5.047717pt;}
.wsa0{word-spacing:5.100851pt;}
.wsf2{word-spacing:5.100864pt;}
.wsc3{word-spacing:5.228386pt;}
.wscc{word-spacing:5.270893pt;}
.ws5{word-spacing:5.313387pt;}
.wscb{word-spacing:5.355907pt;}
.ws16{word-spacing:5.366521pt;}
.wsca{word-spacing:5.398414pt;}
.ws15{word-spacing:5.472788pt;}
.wsa9{word-spacing:5.525922pt;}
.ws50{word-spacing:5.579056pt;}
.ws61{word-spacing:5.632190pt;}
.wsda{word-spacing:5.695965pt;}
.ws2{word-spacing:5.844747pt;}
.wsa2{word-spacing:5.897859pt;}
.ws26{word-spacing:5.950993pt;}
.wsa7{word-spacing:6.004127pt;}
.wsf8{word-spacing:6.036022pt;}
.ws7b{word-spacing:6.057261pt;}
.wsb4{word-spacing:6.110395pt;}
.wsde{word-spacing:6.121037pt;}
.wse0{word-spacing:6.163544pt;}
.ws93{word-spacing:6.216662pt;}
.wsc5{word-spacing:6.333573pt;}
.wsb2{word-spacing:6.376064pt;}
.ws1{word-spacing:6.376107pt;}
.ws2a{word-spacing:6.429198pt;}
.ws75{word-spacing:6.748001pt;}
.wsb7{word-spacing:6.801135pt;}
.wse1{word-spacing:6.801152pt;}
.wse2{word-spacing:6.843659pt;}
.ws8b{word-spacing:6.854269pt;}
.wsef{word-spacing:6.886166pt;}
.ws19{word-spacing:6.960537pt;}
.wsa8{word-spacing:7.066804pt;}
.wsd2{word-spacing:7.098702pt;}
.wsb3{word-spacing:7.226206pt;}
.wsec{word-spacing:7.226224pt;}
.wseb{word-spacing:7.268731pt;}
.ws27{word-spacing:7.332474pt;}
.wsc8{word-spacing:7.353746pt;}
.ws3d{word-spacing:7.438741pt;}
.wsa6{word-spacing:7.491875pt;}
.ws8f{word-spacing:7.651277pt;}
.wsbe{word-spacing:7.778818pt;}
.ws49{word-spacing:7.863812pt;}
.ws48{word-spacing:7.916946pt;}
.wsed{word-spacing:8.118875pt;}
.ws8d{word-spacing:8.288883pt;}
.wsea{word-spacing:8.331411pt;}
.ws25{word-spacing:8.342017pt;}
.ws9c{word-spacing:8.395151pt;}
.ws9d{word-spacing:8.448285pt;}
.ws7f{word-spacing:8.607686pt;}
.ws30{word-spacing:8.926490pt;}
.ws12{word-spacing:8.979623pt;}
.ws20{word-spacing:9.085891pt;}
.ws45{word-spacing:9.245293pt;}
.ws36{word-spacing:9.351561pt;}
.ws2b{word-spacing:9.457828pt;}
.ws17{word-spacing:9.617230pt;}
.ws6f{word-spacing:9.670364pt;}
.ws14{word-spacing:9.723498pt;}
.wsba{word-spacing:9.734149pt;}
.ws10{word-spacing:9.776631pt;}
.wsd7{word-spacing:9.819163pt;}
.ws3a{word-spacing:9.829765pt;}
.ws8e{word-spacing:9.936033pt;}
.ws8c{word-spacing:10.042301pt;}
.ws24{word-spacing:10.095435pt;}
.ws1b{word-spacing:10.201702pt;}
.ws67{word-spacing:10.254836pt;}
.wsc2{word-spacing:10.456771pt;}
.ws95{word-spacing:10.467372pt;}
.wse3{word-spacing:10.541786pt;}
.ws1d{word-spacing:10.573639pt;}
.wsd9{word-spacing:10.711814pt;}
.wsd8{word-spacing:10.754322pt;}
.wsad{word-spacing:10.786175pt;}
.ws35{word-spacing:10.839309pt;}
.wsc7{word-spacing:11.009365pt;}
.wsb8{word-spacing:11.051844pt;}
.ws98{word-spacing:11.264380pt;}
.wsf7{word-spacing:11.306915pt;}
.ws9f{word-spacing:11.370647pt;}
.wse8{word-spacing:11.434437pt;}
.ws29{word-spacing:11.476915pt;}
.ws86{word-spacing:11.530049pt;}
.ws9b{word-spacing:11.583183pt;}
.ws88{word-spacing:11.636317pt;}
.wsd5{word-spacing:11.689480pt;}
.wsf{word-spacing:11.795718pt;}
.ws51{word-spacing:11.848852pt;}
.ws57{word-spacing:12.008254pt;}
.ws85{word-spacing:12.114522pt;}
.wsae{word-spacing:12.167655pt;}
.ws66{word-spacing:12.380191pt;}
.ws94{word-spacing:12.433325pt;}
.ws40{word-spacing:12.486459pt;}
.wsa5{word-spacing:12.539593pt;}
.wscd{word-spacing:12.709653pt;}
.ws7d{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws87{word-spacing:13.070931pt;}
.ws58{word-spacing:13.124065pt;}
.ws41{word-spacing:13.177199pt;}
.ws5d{word-spacing:13.336601pt;}
.ws64{word-spacing:13.496002pt;}
.wsb6{word-spacing:13.708538pt;}
.wse9{word-spacing:13.772333pt;}
.ws54{word-spacing:13.814805pt;}
.ws2e{word-spacing:13.867939pt;}
.ws4c{word-spacing:13.921073pt;}
.ws90{word-spacing:14.080475pt;}
.wsce{word-spacing:14.112390pt;}
.wsac{word-spacing:14.293010pt;}
.ws4d{word-spacing:14.452412pt;}
.ws91{word-spacing:14.558679pt;}
.wsf1{word-spacing:14.579970pt;}
.ws3c{word-spacing:14.664947pt;}
.ws22{word-spacing:14.824349pt;}
.wsdd{word-spacing:14.962534pt;}
.wsd3{word-spacing:15.090056pt;}
.ws78{word-spacing:15.408821pt;}
.ws71{word-spacing:15.568223pt;}
.ws80{word-spacing:15.780758pt;}
.ws6{word-spacing:15.940160pt;}
.wsb5{word-spacing:16.524633pt;}
.ws5e{word-spacing:16.577766pt;}
.ws8a{word-spacing:16.843436pt;}
.ws68{word-spacing:17.002837pt;}
.ws3e{word-spacing:17.055971pt;}
.ws89{word-spacing:17.109105pt;}
.ws32{word-spacing:17.162239pt;}
.wsd{word-spacing:17.268507pt;}
.wsdc{word-spacing:17.342938pt;}
.ws7a{word-spacing:17.379278pt;}
.wsdb{word-spacing:17.385445pt;}
.ws33{word-spacing:17.427908pt;}
.ws5f{word-spacing:17.587310pt;}
.ws8{word-spacing:17.746711pt;}
.ws46{word-spacing:17.799845pt;}
.ws52{word-spacing:17.852979pt;}
.ws39{word-spacing:17.959247pt;}
.wsd4{word-spacing:18.023053pt;}
.ws74{word-spacing:18.118649pt;}
.ws7e{word-spacing:18.171782pt;}
.ws3f{word-spacing:18.224916pt;}
.ws82{word-spacing:18.543719pt;}
.ws2d{word-spacing:18.809389pt;}
.ws70{word-spacing:19.234460pt;}
.wsaa{word-spacing:19.340727pt;}
.ws23{word-spacing:19.553263pt;}
.wsab{word-spacing:19.712665pt;}
.ws44{word-spacing:19.925200pt;}
.ws1e{word-spacing:20.031468pt;}
.wsc{word-spacing:20.456539pt;}
.wsb1{word-spacing:20.562806pt;}
.ws92{word-spacing:21.094145pt;}
.ws13{word-spacing:22.953830pt;}
.ws1a{word-spacing:23.432035pt;}
.ws96{word-spacing:23.803972pt;}
.ws56{word-spacing:25.238587pt;}
.ws34{word-spacing:26.301264pt;}
.ws5c{word-spacing:26.566933pt;}
.wsb{word-spacing:26.726335pt;}
.ws63{word-spacing:26.779469pt;}
.ws21{word-spacing:28.107815pt;}
.ws9e{word-spacing:29.183296pt;}
.ws3b{word-spacing:30.764509pt;}
.ws4b{word-spacing:39.637865pt;}
.wsa{word-spacing:39.956668pt;}
._1{margin-left:-10.201728pt;}
._6{margin-left:-6.491557pt;}
._17{margin-left:-5.483429pt;}
._2{margin-left:-4.463256pt;}
._0{margin-left:-3.188040pt;}
._3{margin-left:-1.912824pt;}
._4{margin-left:-1.019849pt;}
._e{width:1.404194pt;}
._7{width:2.630900pt;}
._5{width:4.880027pt;}
._f{width:5.791591pt;}
._1c{width:7.736310pt;}
._1d{width:9.479106pt;}
._9{width:11.689455pt;}
._12{width:13.442868pt;}
._19{width:16.832851pt;}
._10{width:17.799845pt;}
._16{width:18.756255pt;}
._14{width:20.987882pt;}
._15{width:21.997421pt;}
._b{width:23.867434pt;}
._8{width:26.566933pt;}
._a{width:28.054686pt;}
._11{width:30.795905pt;}
._c{width:32.305391pt;}
._d{width:34.908950pt;}
._18{width:42.507200pt;}
._1b{width:49.393433pt;}
._1a{width:53.346536pt;}
._13{width:63.229313pt;}
.fs5{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:100.740000pt;}
.y128{bottom:112.694667pt;}
.y2f{bottom:116.680000pt;}
.y8f{bottom:116.681333pt;}
.y127{bottom:124.650667pt;}
.y58{bottom:132.620000pt;}
.y8e{bottom:132.621333pt;}
.y2e{bottom:136.376000pt;}
.y126{bottom:136.605333pt;}
.y57{bottom:148.561333pt;}
.y125{bottom:149.486667pt;}
.y2d{bottom:158.708000pt;}
.y124{bottom:161.441333pt;}
.y56{bottom:164.501333pt;}
.y8d{bottom:164.773333pt;}
.y123{bottom:173.396000pt;}
.y2c{bottom:174.648000pt;}
.yc5{bottom:180.441333pt;}
.y8c{bottom:180.713333pt;}
.y55{bottom:185.236000pt;}
.y122{bottom:186.277333pt;}
.y2b{bottom:190.588000pt;}
.yc4{bottom:196.381333pt;}
.y8b{bottom:196.653333pt;}
.y121{bottom:198.232000pt;}
.y2a{bottom:206.528000pt;}
.y120{bottom:210.186667pt;}
.y54{bottom:211.624000pt;}
.yc3{bottom:212.321333pt;}
.y8a{bottom:212.593333pt;}
.y29{bottom:222.468000pt;}
.y11f{bottom:223.068000pt;}
.y53{bottom:227.564000pt;}
.yc2{bottom:228.262667pt;}
.y89{bottom:228.534667pt;}
.yf1{bottom:229.196000pt;}
.y11e{bottom:235.022667pt;}
.y28{bottom:238.409333pt;}
.y52{bottom:243.505333pt;}
.yc1{bottom:244.202667pt;}
.yf0{bottom:245.136000pt;}
.y11d{bottom:246.977333pt;}
.y87{bottom:249.113333pt;}
.y27{bottom:254.349333pt;}
.y84{bottom:255.674667pt;}
.y51{bottom:259.445333pt;}
.y11c{bottom:259.858667pt;}
.yc0{bottom:260.740000pt;}
.yef{bottom:261.076000pt;}
.y83{bottom:264.786667pt;}
.y26{bottom:270.289333pt;}
.y11b{bottom:271.813333pt;}
.y88{bottom:273.773333pt;}
.y50{bottom:275.385333pt;}
.ybf{bottom:276.680000pt;}
.yee{bottom:277.016000pt;}
.y86{bottom:277.406667pt;}
.y85{bottom:281.390667pt;}
.y11a{bottom:283.769333pt;}
.y25{bottom:286.229333pt;}
.y4f{bottom:291.325333pt;}
.ybe{bottom:292.621333pt;}
.yed{bottom:292.956000pt;}
.y119{bottom:296.649333pt;}
.y82{bottom:299.773333pt;}
.y24{bottom:302.169333pt;}
.y4e{bottom:307.440000pt;}
.ybd{bottom:308.561333pt;}
.y118{bottom:308.604000pt;}
.yec{bottom:309.829333pt;}
.y81{bottom:315.713333pt;}
.y23{bottom:317.681333pt;}
.y117{bottom:320.560000pt;}
.y4d{bottom:323.380000pt;}
.ybc{bottom:324.501333pt;}
.yeb{bottom:325.770667pt;}
.y80{bottom:331.653333pt;}
.y116{bottom:332.514667pt;}
.y22{bottom:333.621333pt;}
.y4c{bottom:339.320000pt;}
.ybb{bottom:340.441333pt;}
.yea{bottom:341.710667pt;}
.y115{bottom:345.394667pt;}
.y7f{bottom:347.593333pt;}
.y21{bottom:349.561333pt;}
.y4b{bottom:355.261333pt;}
.yba{bottom:356.381333pt;}
.y114{bottom:357.350667pt;}
.ye9{bottom:357.650667pt;}
.y7e{bottom:363.534667pt;}
.y20{bottom:365.501333pt;}
.y113{bottom:370.230667pt;}
.y4a{bottom:371.201333pt;}
.yb9{bottom:372.321333pt;}
.ye8{bottom:373.590667pt;}
.y7d{bottom:379.474667pt;}
.y1f{bottom:381.441333pt;}
.y112{bottom:382.185333pt;}
.y49{bottom:387.141333pt;}
.yb8{bottom:388.262667pt;}
.ye7{bottom:389.530667pt;}
.y111{bottom:394.141333pt;}
.y7c{bottom:395.686667pt;}
.y1e{bottom:397.382667pt;}
.y48{bottom:403.081333pt;}
.yb7{bottom:404.202667pt;}
.ye6{bottom:405.470667pt;}
.y110{bottom:406.096000pt;}
.y7b{bottom:411.626667pt;}
.y1d{bottom:413.322667pt;}
.y10f{bottom:418.977333pt;}
.y47{bottom:419.021333pt;}
.yb6{bottom:420.142667pt;}
.ye5{bottom:421.412000pt;}
.y1c{bottom:428.833333pt;}
.y10e{bottom:430.932000pt;}
.y7a{bottom:432.702667pt;}
.y46{bottom:434.961333pt;}
.yb5{bottom:436.082667pt;}
.ye4{bottom:438.285333pt;}
.y10d{bottom:442.886667pt;}
.y1b{bottom:444.773333pt;}
.y45{bottom:451.076000pt;}
.yb4{bottom:452.022667pt;}
.ye3{bottom:454.225333pt;}
.y79{bottom:454.457333pt;}
.y10c{bottom:455.768000pt;}
.y1a{bottom:460.713333pt;}
.y44{bottom:467.016000pt;}
.y10b{bottom:467.722667pt;}
.yb3{bottom:467.962667pt;}
.ye2{bottom:470.165333pt;}
.y19{bottom:476.654667pt;}
.y10a{bottom:479.677333pt;}
.y78{bottom:481.674667pt;}
.y43{bottom:482.957333pt;}
.yb2{bottom:483.904000pt;}
.ye1{bottom:486.105333pt;}
.y109{bottom:491.633333pt;}
.y18{bottom:492.594667pt;}
.y77{bottom:497.614667pt;}
.y42{bottom:498.897333pt;}
.yb1{bottom:499.844000pt;}
.ye0{bottom:502.980000pt;}
.y108{bottom:504.513333pt;}
.y17{bottom:508.534667pt;}
.y76{bottom:513.554667pt;}
.y41{bottom:514.837333pt;}
.yb0{bottom:515.784000pt;}
.y107{bottom:516.468000pt;}
.ydf{bottom:518.920000pt;}
.y16{bottom:524.474667pt;}
.y106{bottom:528.424000pt;}
.y75{bottom:529.496000pt;}
.y40{bottom:530.777333pt;}
.yaf{bottom:531.724000pt;}
.yde{bottom:534.860000pt;}
.y15{bottom:539.985333pt;}
.y105{bottom:540.378667pt;}
.y74{bottom:545.708000pt;}
.y3f{bottom:546.717333pt;}
.yae{bottom:547.664000pt;}
.ydd{bottom:550.800000pt;}
.y14{bottom:555.926667pt;}
.y73{bottom:561.648000pt;}
.y3e{bottom:562.832000pt;}
.yad{bottom:563.605333pt;}
.ydc{bottom:566.740000pt;}
.y104{bottom:570.098667pt;}
.y13{bottom:571.866667pt;}
.y72{bottom:577.588000pt;}
.y3d{bottom:578.772000pt;}
.ydb{bottom:582.680000pt;}
.yac{bottom:585.821333pt;}
.y12{bottom:587.806667pt;}
.y71{bottom:593.528000pt;}
.y3c{bottom:594.713333pt;}
.yda{bottom:599.554667pt;}
.y11{bottom:603.746667pt;}
.y103{bottom:609.161333pt;}
.y70{bottom:609.740000pt;}
.y3b{bottom:610.653333pt;}
.yd9{bottom:615.494667pt;}
.yab{bottom:615.808000pt;}
.y10{bottom:619.686667pt;}
.y102{bottom:625.101333pt;}
.y6f{bottom:625.680000pt;}
.y3a{bottom:626.593333pt;}
.yd8{bottom:631.434667pt;}
.yaa{bottom:631.748000pt;}
.yf{bottom:635.626667pt;}
.y101{bottom:641.042667pt;}
.y6e{bottom:641.621333pt;}
.y39{bottom:642.533333pt;}
.yd7{bottom:647.374667pt;}
.ya9{bottom:647.688000pt;}
.ye{bottom:651.568000pt;}
.y100{bottom:656.982667pt;}
.y6d{bottom:657.561333pt;}
.y38{bottom:658.473333pt;}
.y141{bottom:662.633333pt;}
.yd6{bottom:663.314667pt;}
.ya8{bottom:663.629333pt;}
.yd{bottom:667.508000pt;}
.yff{bottom:672.922667pt;}
.y6c{bottom:673.501333pt;}
.y37{bottom:674.588000pt;}
.y140{bottom:674.589333pt;}
.ya7{bottom:679.569333pt;}
.yd5{bottom:680.188000pt;}
.yc{bottom:683.018667pt;}
.y13f{bottom:687.113333pt;}
.y158{bottom:688.138667pt;}
.yfe{bottom:688.862667pt;}
.y6b{bottom:689.441333pt;}
.y36{bottom:690.528000pt;}
.yd4{bottom:696.129333pt;}
.yb{bottom:698.958667pt;}
.y13e{bottom:699.068000pt;}
.y157{bottom:700.093333pt;}
.ya6{bottom:704.774667pt;}
.yfd{bottom:704.802667pt;}
.y6a{bottom:705.653333pt;}
.y35{bottom:706.469333pt;}
.y13d{bottom:711.024000pt;}
.ya3{bottom:711.336000pt;}
.yd3{bottom:712.069333pt;}
.y156{bottom:713.642667pt;}
.ya{bottom:714.898667pt;}
.y9e{bottom:720.448000pt;}
.yfc{bottom:720.742667pt;}
.y69{bottom:721.593333pt;}
.y34{bottom:722.409333pt;}
.y13c{bottom:723.548000pt;}
.ya1{bottom:724.161333pt;}
.y155{bottom:725.597333pt;}
.yd2{bottom:728.009333pt;}
.ya2{bottom:729.434667pt;}
.y9{bottom:730.840000pt;}
.ya0{bottom:732.132000pt;}
.ya5{bottom:733.066667pt;}
.y13b{bottom:735.502667pt;}
.yfb{bottom:736.684000pt;}
.ya4{bottom:737.052000pt;}
.y68{bottom:737.533333pt;}
.y154{bottom:737.553333pt;}
.y33{bottom:738.349333pt;}
.y9f{bottom:740.101333pt;}
.yd1{bottom:743.949333pt;}
.y13a{bottom:748.028000pt;}
.y8{bottom:750.534667pt;}
.y153{bottom:751.101333pt;}
.y9d{bottom:751.412000pt;}
.yfa{bottom:752.624000pt;}
.y67{bottom:753.474667pt;}
.y32{bottom:754.289333pt;}
.yd0{bottom:759.889333pt;}
.y139{bottom:759.982667pt;}
.y152{bottom:763.057333pt;}
.y9c{bottom:767.353333pt;}
.yf9{bottom:768.564000pt;}
.y66{bottom:769.414667pt;}
.y31{bottom:770.229333pt;}
.y7{bottom:770.230667pt;}
.y138{bottom:771.937333pt;}
.y151{bottom:775.012000pt;}
.ycf{bottom:776.762667pt;}
.y9b{bottom:783.293333pt;}
.y137{bottom:783.893333pt;}
.yf8{bottom:784.504000pt;}
.y65{bottom:785.354667pt;}
.y150{bottom:788.561333pt;}
.yce{bottom:792.704000pt;}
.y136{bottom:796.417333pt;}
.y9a{bottom:799.233333pt;}
.yf7{bottom:800.444000pt;}
.y14f{bottom:800.516000pt;}
.y64{bottom:801.566667pt;}
.y135{bottom:808.373333pt;}
.ycd{bottom:808.644000pt;}
.y14e{bottom:812.472000pt;}
.y99{bottom:815.770667pt;}
.yf6{bottom:816.385333pt;}
.y63{bottom:817.506667pt;}
.y134{bottom:820.328000pt;}
.y14d{bottom:826.021333pt;}
.ycc{bottom:828.233333pt;}
.y6{bottom:830.316000pt;}
.y98{bottom:831.712000pt;}
.y133{bottom:832.282667pt;}
.y62{bottom:833.446667pt;}
.yf5{bottom:833.990667pt;}
.y14c{bottom:837.976000pt;}
.y132{bottom:844.238667pt;}
.y97{bottom:847.652000pt;}
.y61{bottom:849.388000pt;}
.ycb{bottom:849.930667pt;}
.y14b{bottom:851.525333pt;}
.y5{bottom:851.576000pt;}
.y131{bottom:856.762667pt;}
.y4{bottom:863.390667pt;}
.y14a{bottom:863.480000pt;}
.y96{bottom:863.592000pt;}
.y60{bottom:865.600000pt;}
.yca{bottom:865.870667pt;}
.y130{bottom:868.717333pt;}
.y149{bottom:877.029333pt;}
.y95{bottom:879.532000pt;}
.y12f{bottom:881.242667pt;}
.y5f{bottom:881.540000pt;}
.yf4{bottom:881.810667pt;}
.yc9{bottom:881.812000pt;}
.y148{bottom:888.985333pt;}
.y12e{bottom:893.197333pt;}
.y5e{bottom:897.480000pt;}
.yf3{bottom:897.750667pt;}
.yc8{bottom:897.752000pt;}
.y94{bottom:900.214667pt;}
.y147{bottom:902.534667pt;}
.y3{bottom:905.233333pt;}
.y12d{bottom:905.721333pt;}
.y91{bottom:909.325333pt;}
.y5d{bottom:913.420000pt;}
.yc7{bottom:913.692000pt;}
.y146{bottom:914.489333pt;}
.y92{bottom:914.506667pt;}
.y12c{bottom:917.677333pt;}
.y93{bottom:918.492000pt;}
.y2{bottom:923.830667pt;}
.y145{bottom:926.444000pt;}
.y5c{bottom:929.360000pt;}
.yc6{bottom:929.632000pt;}
.y144{bottom:939.993333pt;}
.y12b{bottom:941.588000pt;}
.y5b{bottom:945.300000pt;}
.y90{bottom:945.572000pt;}
.y143{bottom:951.949333pt;}
.y12a{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y5a{bottom:961.512000pt;}
.y142{bottom:963.904000pt;}
.y129{bottom:965.497333pt;}
.yf2{bottom:977.452000pt;}
.y59{bottom:977.453333pt;}
.hc{height:2.125355pt;}
.hb{height:24.659357pt;}
.hd{height:25.068486pt;}
.h18{height:29.159939pt;}
.h17{height:29.244954pt;}
.h16{height:29.458287pt;}
.h4{height:29.925069pt;}
.h7{height:36.449833pt;}
.h6{height:36.556100pt;}
.h8{height:36.874903pt;}
.ha{height:38.043849pt;}
.h5{height:39.850400pt;}
.h15{height:40.417820pt;}
.h2{height:43.867614pt;}
.hf{height:44.348486pt;}
.h3{height:51.039735pt;}
.he{height:53.279733pt;}
.h10{height:53.285067pt;}
.h12{height:69.221067pt;}
.h13{height:72.998767pt;}
.h9{height:75.797067pt;}
.h1{height:87.734861pt;}
.h11{height:88.040690pt;}
.h14{height:110.498688pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:65.285333pt;}
.x21{left:74.142667pt;}
.x7{left:75.150667pt;}
.xa{left:78.568000pt;}
.x6{left:83.230667pt;}
.x28{left:89.630667pt;}
.x22{left:103.080000pt;}
.x1{left:104.754667pt;}
.x4{left:121.637333pt;}
.xd{left:141.029333pt;}
.x2{left:146.550667pt;}
.x16{left:179.004000pt;}
.x29{left:196.340000pt;}
.x8{left:200.140000pt;}
.xe{left:210.969333pt;}
.x10{left:228.726667pt;}
.x11{left:229.716000pt;}
.xf{left:235.037333pt;}
.x12{left:251.721333pt;}
.x14{left:281.432000pt;}
.x13{left:292.636000pt;}
.x3{left:352.082667pt;}
.x15{left:384.541333pt;}
.xb{left:415.970667pt;}
.x24{left:421.284000pt;}
.xc{left:429.253333pt;}
.x27{left:440.316000pt;}
.x5{left:500.105333pt;}
.x17{left:510.034667pt;}
.x23{left:546.149333pt;}
.x25{left:547.384000pt;}
.x1b{left:562.512000pt;}
.x18{left:578.230667pt;}
.x1d{left:589.908000pt;}
.x1e{left:590.898667pt;}
.x1c{left:596.218667pt;}
.x1a{left:605.646667pt;}
.x1f{left:609.096000pt;}
.x19{left:635.542667pt;}
.x20{left:642.630667pt;}
.x26{left:699.885333pt;}
}




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