
    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_a729dbc39ca1cadc84c56856.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_658c7f3b64ed14e95f95b346.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923000;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_67a975bd22a7c4ca61a30e13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_31c30fab9fc84a0747345ff4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.349000;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_b7defe1c560e2ce05d0e6fab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_2e0aa8a5223a0efb4c360e24.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973000;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_65af2d385e808f205663eda8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_cdbb4320f751289549e7d01b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4b22dfa66c6294d3601ed389.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942000;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_4f152dcb50115fe2a0a5c9ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930000;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_bde4ae1d7ae6a02acec7b0f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727000;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_67b4be69210af979badfd17f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cec272a014739bc316f7f02c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e54ed232cc84dfc8e895cf10.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.008457px;}
.ls12{letter-spacing:-9.383477px;}
.ls13{letter-spacing:-5.966252px;}
.ls8{letter-spacing:-4.829820px;}
.ls29{letter-spacing:-3.783384px;}
.lsf{letter-spacing:-3.499630px;}
.ls1c{letter-spacing:-3.486648px;}
.ls22{letter-spacing:-2.893176px;}
.ls26{letter-spacing:-2.448072px;}
.ls2a{letter-spacing:-2.325672px;}
.ls10{letter-spacing:-2.264467px;}
.ls27{letter-spacing:-2.184719px;}
.ls15{letter-spacing:-1.928784px;}
.ls28{letter-spacing:-1.886134px;}
.ls2c{letter-spacing:-1.854600px;}
.ls2e{letter-spacing:-1.839763px;}
.ls19{letter-spacing:-1.780416px;}
.ls1b{letter-spacing:-1.724778px;}
.ls25{letter-spacing:-1.687411px;}
.ls23{letter-spacing:-1.578545px;}
.ls20{letter-spacing:-1.570853px;}
.ls1a{letter-spacing:-1.552300px;}
.ls1d{letter-spacing:-1.540892px;}
.ls24{letter-spacing:-1.469680px;}
.ls1f{letter-spacing:-1.428048px;}
.ls2d{letter-spacing:-1.322330px;}
.ls2b{letter-spacing:-1.279120px;}
.ls21{letter-spacing:-1.185710px;}
.ls2f{letter-spacing:-1.170000px;}
.ls1e{letter-spacing:-1.168952px;}
.ls16{letter-spacing:-1.001491px;}
.ls30{letter-spacing:-0.858000px;}
.lse{letter-spacing:-0.597149px;}
.ls4{letter-spacing:-0.537984px;}
.lsa{letter-spacing:-0.478200px;}
.ls7{letter-spacing:-0.239100px;}
.ls17{letter-spacing:-0.163210px;}
.ls14{letter-spacing:-0.133531px;}
.ls18{letter-spacing:-0.071404px;}
.ls6{letter-spacing:-0.053797px;}
.ls9{letter-spacing:-0.047820px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.033383px;}
.lsd{letter-spacing:0.059776px;}
.lsb{letter-spacing:0.129115px;}
.ls1{letter-spacing:0.143461px;}
.ls2{letter-spacing:0.215189px;}
.ls0{letter-spacing:0.215194px;}
.ls3{letter-spacing:11.189818px;}
.lsc{letter-spacing:2053.411411px;}
.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;}
}
.wsa1{word-spacing:-25.822656px;}
.wsb5{word-spacing:-25.225507px;}
.ws91{word-spacing:-21.124662px;}
.wscf{word-spacing:-20.586060px;}
.ws51{word-spacing:-18.883112px;}
.ws69{word-spacing:-17.908770px;}
.ws5c{word-spacing:-17.669667px;}
.ws60{word-spacing:-17.322969px;}
.ws84{word-spacing:-16.659460px;}
.ws61{word-spacing:-15.786736px;}
.wsd1{word-spacing:-15.678000px;}
.ws4f{word-spacing:-15.643275px;}
.wsb6{word-spacing:-15.278405px;}
.wsae{word-spacing:-15.262266px;}
.wsbf{word-spacing:-15.206913px;}
.wsb0{word-spacing:-15.127773px;}
.wsba{word-spacing:-14.751192px;}
.ws77{word-spacing:-14.633067px;}
.wscd{word-spacing:-14.465880px;}
.wsc5{word-spacing:-14.317512px;}
.ws58{word-spacing:-14.124974px;}
.ws99{word-spacing:-13.879678px;}
.ws6d{word-spacing:-13.850007px;}
.wsce{word-spacing:-13.798224px;}
.wsbb{word-spacing:-13.637590px;}
.ws5a{word-spacing:-13.527218px;}
.wsbd{word-spacing:-13.497717px;}
.wscc{word-spacing:-13.353120px;}
.ws76{word-spacing:-13.347891px;}
.ws65{word-spacing:-13.264206px;}
.ws92{word-spacing:-13.186497px;}
.ws81{word-spacing:-13.162587px;}
.wsc0{word-spacing:-12.763357px;}
.wsca{word-spacing:-12.759648px;}
.ws8f{word-spacing:-12.612652px;}
.ws93{word-spacing:-12.582764px;}
.ws75{word-spacing:-12.564831px;}
.ws48{word-spacing:-12.439302px;}
.ws7e{word-spacing:-12.242043px;}
.ws98{word-spacing:-12.029054px;}
.ws4d{word-spacing:-11.686130px;}
.ws5e{word-spacing:-11.560601px;}
.ws82{word-spacing:-11.542668px;}
.ws52{word-spacing:-11.482893px;}
.ws56{word-spacing:-11.363342px;}
.wsa7{word-spacing:-11.318931px;}
.ws7f{word-spacing:-11.261723px;}
.ws7c{word-spacing:-11.046531px;}
.wsc9{word-spacing:-11.038579px;}
.wsab{word-spacing:-11.017667px;}
.ws6c{word-spacing:-10.980778px;}
.ws40{word-spacing:-10.855140px;}
.ws9d{word-spacing:-10.818617px;}
.wsb4{word-spacing:-10.754060px;}
.ws89{word-spacing:-10.735698px;}
.ws4e{word-spacing:-10.669945px;}
.wsd0{word-spacing:-10.407382px;}
.ws73{word-spacing:-10.263471px;}
.ws59{word-spacing:-10.209672px;}
.ws49{word-spacing:-9.265218px;}
.ws6b{word-spacing:-9.181532px;}
.ws8c{word-spacing:-9.133712px;}
.ws8d{word-spacing:-9.002205px;}
.ws64{word-spacing:-8.972318px;}
.ws70{word-spacing:-8.960362px;}
.ws53{word-spacing:-8.930475px;}
.ws5f{word-spacing:-8.894609px;}
.ws90{word-spacing:-8.876677px;}
.ws5d{word-spacing:-8.643552px;}
.ws79{word-spacing:-8.583776px;}
.ws6a{word-spacing:-8.553888px;}
.ws85{word-spacing:-8.518023px;}
.ws7b{word-spacing:-8.320764px;}
.ws72{word-spacing:-8.260988px;}
.wsa9{word-spacing:-8.096479px;}
.ws9b{word-spacing:-8.069580px;}
.wsbe{word-spacing:-7.784455px;}
.ws6e{word-spacing:-7.782783px;}
.ws63{word-spacing:-7.734963px;}
.ws62{word-spacing:-7.591501px;}
.wsa2{word-spacing:-7.574646px;}
.wsa3{word-spacing:-7.553127px;}
.wsad{word-spacing:-7.542367px;}
.wsa4{word-spacing:-7.504709px;}
.wsa5{word-spacing:-7.391735px;}
.ws5b{word-spacing:-7.202960px;}
.wsa0{word-spacing:-7.106610px;}
.ws8e{word-spacing:-7.059498px;}
.wsb1{word-spacing:-6.859143px;}
.ws71{word-spacing:-6.605204px;}
.ws4c{word-spacing:-6.258505px;}
.ws41{word-spacing:-6.025320px;}
.ws7d{word-spacing:-5.935717px;}
.ws8b{word-spacing:-5.780301px;}
.wsbc{word-spacing:-5.750921px;}
.ws6f{word-spacing:-5.475445px;}
.wsaa{word-spacing:-4.906305px;}
.wsb7{word-spacing:-4.884786px;}
.ws7a{word-spacing:-4.638587px;}
.ws50{word-spacing:-4.602721px;}
.ws55{word-spacing:-4.477192px;}
.wsa6{word-spacing:-4.212321px;}
.ws54{word-spacing:-4.094629px;}
.ws86{word-spacing:-3.963122px;}
.wsb9{word-spacing:-3.453780px;}
.wsa8{word-spacing:-3.050301px;}
.ws9e{word-spacing:-3.012643px;}
.wsb3{word-spacing:-2.931947px;}
.wsc2{word-spacing:-2.559348px;}
.ws80{word-spacing:-2.373091px;}
.ws87{word-spacing:-2.349181px;}
.ws4b{word-spacing:-2.307338px;}
.wscb{word-spacing:-2.225520px;}
.wsc1{word-spacing:-2.162527px;}
.wsaf{word-spacing:-2.044294px;}
.wsc6{word-spacing:-1.999318px;}
.ws68{word-spacing:-1.458525px;}
.wsc4{word-spacing:-0.281427px;}
.ws4{word-spacing:-0.215192px;}
.ws44{word-spacing:-0.215189px;}
.ws9a{word-spacing:-0.150632px;}
.ws4a{word-spacing:-0.137484px;}
.ws96{word-spacing:-0.083686px;}
.ws42{word-spacing:0.000000px;}
.ws66{word-spacing:0.023910px;}
.ws9c{word-spacing:0.037658px;}
.ws46{word-spacing:0.047820px;}
.ws43{word-spacing:0.053797px;}
.ws97{word-spacing:0.059776px;}
.ws94{word-spacing:0.089663px;}
.wsd3{word-spacing:0.133531px;}
.ws95{word-spacing:0.203237px;}
.ws45{word-spacing:0.239100px;}
.ws0{word-spacing:0.430387px;}
.ws9f{word-spacing:0.457276px;}
.ws47{word-spacing:0.478200px;}
.ws74{word-spacing:0.836858px;}
.wsc3{word-spacing:0.860798px;}
.wsd4{word-spacing:1.001491px;}
.wsb2{word-spacing:1.049045px;}
.wsd8{word-spacing:1.168952px;}
.wse6{word-spacing:1.170000px;}
.wsdb{word-spacing:1.185710px;}
.wse2{word-spacing:1.220978px;}
.ws67{word-spacing:1.237355px;}
.wse4{word-spacing:1.322330px;}
.wsd9{word-spacing:1.428048px;}
.wsdd{word-spacing:1.469680px;}
.ws57{word-spacing:1.506345px;}
.wsd7{word-spacing:1.540892px;}
.wsda{word-spacing:1.570853px;}
.wsdc{word-spacing:1.578545px;}
.wsde{word-spacing:1.687411px;}
.wsd6{word-spacing:1.724778px;}
.wsd5{word-spacing:1.780416px;}
.wse5{word-spacing:1.839763px;}
.wse3{word-spacing:1.854600px;}
.wse1{word-spacing:1.886134px;}
.wse0{word-spacing:2.184719px;}
.wsdf{word-spacing:2.448072px;}
.wsd2{word-spacing:3.499630px;}
.ws78{word-spacing:4.010943px;}
.wsb8{word-spacing:4.497446px;}
.wsac{word-spacing:6.009147px;}
.ws8a{word-spacing:9.002205px;}
.ws88{word-spacing:9.701580px;}
.ws2f{word-spacing:10.765586px;}
.ws83{word-spacing:10.813406px;}
.ws10{word-spacing:11.012287px;}
.ws3f{word-spacing:11.291611px;}
.wsf{word-spacing:11.351209px;}
.ws20{word-spacing:11.626354px;}
.ws18{word-spacing:11.985008px;}
.wse{word-spacing:13.438541px;}
.ws21{word-spacing:13.664702px;}
.ws26{word-spacing:13.814141px;}
.ws3c{word-spacing:14.011401px;}
.ws3a{word-spacing:14.214638px;}
.ws28{word-spacing:14.537426px;}
.ws16{word-spacing:14.567314px;}
.ws1e{word-spacing:14.746641px;}
.ws29{word-spacing:15.224845px;}
.ws1f{word-spacing:15.661207px;}
.ws38{word-spacing:16.324716px;}
.ws11{word-spacing:16.478082px;}
.ws19{word-spacing:17.119732px;}
.ws6{word-spacing:17.591684px;}
.ws9{word-spacing:17.704659px;}
.wsa{word-spacing:17.710038px;}
.wsd{word-spacing:17.720798px;}
.wsb{word-spacing:17.736937px;}
.ws1b{word-spacing:17.741398px;}
.wsc{word-spacing:17.753076px;}
.ws7{word-spacing:17.796114px;}
.ws8{word-spacing:17.935986px;}
.ws2c{word-spacing:17.980500px;}
.ws3e{word-spacing:17.992456px;}
.ws12{word-spacing:18.123962px;}
.ws5{word-spacing:18.363034px;}
.ws3{word-spacing:18.377380px;}
.ws15{word-spacing:18.500548px;}
.ws32{word-spacing:18.536414px;}
.ws2{word-spacing:18.692994px;}
.ws35{word-spacing:19.140147px;}
.ws31{word-spacing:19.654217px;}
.ws2b{word-spacing:19.994938px;}
.ws27{word-spacing:20.718223px;}
.ws3b{word-spacing:21.788206px;}
.ws2a{word-spacing:21.973511px;}
.ws39{word-spacing:22.637020px;}
.ws2d{word-spacing:23.001651px;}
.ws3d{word-spacing:23.013606px;}
.ws17{word-spacing:23.067404px;}
.ws23{word-spacing:23.874375px;}
.ws1d{word-spacing:24.071634px;}
.ws1c{word-spacing:24.131410px;}
.ws25{word-spacing:24.388445px;}
.ws14{word-spacing:24.669390px;}
.ws1a{word-spacing:24.699278px;}
.ws34{word-spacing:27.227786px;}
.ws33{word-spacing:27.891295px;}
.ws30{word-spacing:28.214083px;}
.ws1{word-spacing:28.674547px;}
.ws13{word-spacing:29.457416px;}
.ws37{word-spacing:31.226773px;}
.ws24{word-spacing:31.555539px;}
.ws36{word-spacing:31.657158px;}
.ws22{word-spacing:32.003856px;}
.ws2e{word-spacing:32.380443px;}
.wsc8{word-spacing:335.898618px;}
.wsc7{word-spacing:337.682703px;}
._21{margin-left:-9.634570px;}
._1f{margin-left:-6.577385px;}
._3{margin-left:-5.073076px;}
._6{margin-left:-2.749037px;}
._12{margin-left:-1.004220px;}
._5{width:1.075944px;}
._1a{width:2.486665px;}
._13{width:4.734180px;}
._1{width:6.800061px;}
._1e{width:7.832489px;}
._1d{width:10.158971px;}
._e{width:11.889367px;}
._8{width:13.144654px;}
._4{width:14.928723px;}
._a{width:16.094813px;}
._11{width:17.621847px;}
._2{width:18.710666px;}
._10{width:19.827567px;}
._16{width:20.854803px;}
._c{width:21.985466px;}
._d{width:23.246731px;}
._7{width:24.358557px;}
._9{width:26.205623px;}
._14{width:27.407113px;}
._f{width:29.511214px;}
._15{width:31.334370px;}
._b{width:33.253166px;}
._17{width:39.416031px;}
._18{width:42.841173px;}
._19{width:44.102438px;}
._0{width:68.965308px;}
._1c{width:278.134362px;}
._20{width:314.669982px;}
._1b{width:337.762267px;}
.fcb{color:transparent;}
.fca{color:rgb(123,121,121);}
.fc9{color:rgb(64,92,179);}
.fc8{color:rgb(254,232,117);}
.fc7{color:rgb(253,221,163);}
.fc5{color:rgb(251,246,100);}
.fc4{color:rgb(56,70,156);}
.fc3{color:rgb(222,221,222);}
.fc6{color:rgb(233,233,233);}
.fc2{color:rgb(57,53,54);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs12{font-size:9.273000px;}
.fs9{font-size:10.200600px;}
.fsa{font-size:11.127600px;}
.fsd{font-size:16.691400px;}
.fs3{font-size:35.860800px;}
.fs7{font-size:39.846000px;}
.fsf{font-size:41.728800px;}
.fs2{font-size:47.814000px;}
.fs6{font-size:47.820000px;}
.fs17{font-size:52.392600px;}
.fs11{font-size:53.134200px;}
.fs4{font-size:53.797200px;}
.fs15{font-size:54.432600px;}
.fsc{font-size:56.285400px;}
.fs14{font-size:56.462400px;}
.fs10{font-size:57.492600px;}
.fs19{font-size:58.141800px;}
.fs5{font-size:59.775600px;}
.fs8{font-size:68.620200px;}
.fs16{font-size:70.474800px;}
.fs13{font-size:71.402400px;}
.fs1{font-size:71.730600px;}
.fse{font-size:74.184000px;}
.fsb{font-size:77.549400px;}
.fs1a{font-size:78.000000px;}
.fs0{font-size:107.596800px;}
.fs18{font-size:111.276000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:83.204481px;}
.y34{bottom:83.917269px;}
.y4b{bottom:84.066708px;}
.yed{bottom:84.856486px;}
.yd7{bottom:84.856786px;}
.yec{bottom:87.638700px;}
.yd6{bottom:87.639000px;}
.yd9{bottom:96.121392px;}
.ye4{bottom:96.122227px;}
.ye8{bottom:96.123150px;}
.ye6{bottom:96.132498px;}
.y8b{bottom:100.375022px;}
.y33{bottom:101.087810px;}
.y4a{bottom:101.237249px;}
.ye9{bottom:108.237000px;}
.ye3{bottom:108.873063px;}
.yd8{bottom:108.873600px;}
.ye5{bottom:113.046450px;}
.y8a{bottom:117.545563px;}
.y32{bottom:118.258351px;}
.y49{bottom:118.407790px;}
.ye2{bottom:121.623900px;}
.y89{bottom:134.716105px;}
.y31{bottom:135.428892px;}
.y48{bottom:135.578331px;}
.y88{bottom:151.886646px;}
.y30{bottom:152.599433px;}
.y47{bottom:152.748872px;}
.y87{bottom:169.057187px;}
.y2f{bottom:169.769974px;}
.y46{bottom:169.919413px;}
.y86{bottom:186.227728px;}
.y2e{bottom:186.940516px;}
.y45{bottom:187.089955px;}
.ybe{bottom:199.620861px;}
.y85{bottom:203.398269px;}
.y2d{bottom:204.111057px;}
.y44{bottom:204.260496px;}
.ybd{bottom:215.262397px;}
.yef{bottom:216.388050px;}
.y84{bottom:220.658473px;}
.y2c{bottom:221.281598px;}
.y43{bottom:221.431037px;}
.ybc{bottom:230.998078px;}
.yee{bottom:234.934050px;}
.y83{bottom:237.829015px;}
.y2b{bottom:238.452139px;}
.y42{bottom:238.601578px;}
.ybb{bottom:246.639614px;}
.y82{bottom:254.999556px;}
.y2a{bottom:255.712343px;}
.y41{bottom:255.861782px;}
.yba{bottom:262.375295px;}
.y81{bottom:272.170097px;}
.y29{bottom:272.882884px;}
.y40{bottom:273.032323px;}
.yb9{bottom:278.016831px;}
.yc3{bottom:283.462786px;}
.yf3{bottom:283.463100px;}
.yc2{bottom:286.245000px;}
.yf4{bottom:286.245314px;}
.y80{bottom:289.340638px;}
.y28{bottom:290.053426px;}
.y3f{bottom:290.202865px;}
.yb8{bottom:293.752512px;}
.yd4{bottom:294.729150px;}
.yf2{bottom:294.729300px;}
.yc1{bottom:294.735716px;}
.y7f{bottom:306.511179px;}
.y27{bottom:307.223967px;}
.y3e{bottom:307.373406px;}
.yf1{bottom:309.102450px;}
.yb7{bottom:309.394048px;}
.yc0{bottom:309.797850px;}
.yd5{bottom:310.515000px;}
.yf0{bottom:323.475600px;}
.y7e{bottom:323.681720px;}
.y26{bottom:324.394508px;}
.y3d{bottom:324.543947px;}
.yb6{bottom:325.129729px;}
.yb5{bottom:340.771265px;}
.y7d{bottom:340.852261px;}
.y25{bottom:341.565049px;}
.y3c{bottom:341.714488px;}
.yb4{bottom:356.506946px;}
.y7c{bottom:358.022802px;}
.y24{bottom:358.735590px;}
.y3b{bottom:358.885029px;}
.yb3{bottom:372.148482px;}
.y7b{bottom:375.193343px;}
.y23{bottom:375.906131px;}
.y3a{bottom:376.055570px;}
.yb2{bottom:387.884163px;}
.y7a{bottom:392.363884px;}
.y22{bottom:393.076672px;}
.y39{bottom:393.226111px;}
.yb1{bottom:403.525699px;}
.y79{bottom:409.624089px;}
.y21{bottom:410.247213px;}
.y38{bottom:410.396652px;}
.yb0{bottom:419.261380px;}
.ye0{bottom:423.223050px;}
.y78{bottom:426.794630px;}
.y20{bottom:427.417754px;}
.y37{bottom:427.567193px;}
.yaf{bottom:434.902915px;}
.ye1{bottom:439.008900px;}
.y77{bottom:443.965171px;}
.y1f{bottom:444.677959px;}
.y36{bottom:444.827398px;}
.yae{bottom:450.638596px;}
.y76{bottom:461.135712px;}
.y1e{bottom:461.848500px;}
.y35{bottom:461.997939px;}
.yad{bottom:466.280132px;}
.y75{bottom:478.306253px;}
.yac{bottom:482.015813px;}
.yd1{bottom:482.038936px;}
.ydb{bottom:482.068786px;}
.yd0{bottom:484.821150px;}
.yda{bottom:484.851000px;}
.yd3{bottom:493.335150px;}
.y74{bottom:495.476794px;}
.yab{bottom:497.657349px;}
.yd2{bottom:507.708300px;}
.y73{bottom:512.647336px;}
.yaa{bottom:513.393030px;}
.ya9{bottom:529.034566px;}
.y72{bottom:529.817877px;}
.y1d{bottom:538.476124px;}
.ya8{bottom:544.770247px;}
.y71{bottom:546.988418px;}
.y1c{bottom:554.117660px;}
.ya7{bottom:560.411783px;}
.y70{bottom:564.158959px;}
.yf6{bottom:564.676050px;}
.ya6{bottom:576.147464px;}
.y6f{bottom:581.329500px;}
.y6d{bottom:581.530318px;}
.y1b{bottom:582.522582px;}
.y6e{bottom:588.046500px;}
.yf5{bottom:588.076050px;}
.ya5{bottom:591.789000px;}
.y6c{bottom:598.790522px;}
.y1a{bottom:612.366578px;}
.y6b{bottom:615.961063px;}
.ya4{bottom:620.191500px;}
.y6a{bottom:633.131605px;}
.y19{bottom:640.771500px;}
.y18{bottom:646.809000px;}
.y69{bottom:650.302146px;}
.ya3{bottom:654.573146px;}
.y17{bottom:657.270000px;}
.y16{bottom:663.222000px;}
.y68{bottom:667.472687px;}
.ya2{bottom:671.833351px;}
.y15{bottom:673.687964px;}
.ycc{bottom:680.674786px;}
.ycb{bottom:683.457000px;}
.y67{bottom:684.643228px;}
.ya1{bottom:689.003892px;}
.y14{bottom:689.329500px;}
.yc9{bottom:691.941150px;}
.y13{bottom:695.367000px;}
.y66{bottom:701.813769px;}
.ydf{bottom:704.740950px;}
.y12{bottom:705.832964px;}
.ya0{bottom:706.174433px;}
.yca{bottom:707.727000px;}
.y65{bottom:718.984310px;}
.y11{bottom:721.474500px;}
.y10{bottom:727.512000px;}
.y64{bottom:736.154851px;}
.yf{bottom:737.977964px;}
.y9f{bottom:740.530459px;}
.y63{bottom:753.325392px;}
.ye{bottom:753.619500px;}
.y9e{bottom:757.701000px;}
.yd{bottom:759.571500px;}
.yc{bottom:770.027319px;}
.y62{bottom:770.495933px;}
.yb{bottom:785.763000px;}
.y9d{bottom:787.549500px;}
.y61{bottom:787.666474px;}
.ya{bottom:791.716500px;}
.y9{bottom:802.172319px;}
.y60{bottom:804.926679px;}
.y8{bottom:817.908000px;}
.y5f{bottom:822.097220px;}
.y9c{bottom:822.299887px;}
.y7{bottom:823.861500px;}
.y5e{bottom:839.267761px;}
.y9b{bottom:839.470429px;}
.y5{bottom:847.758000px;}
.y6{bottom:855.751500px;}
.y5d{bottom:856.438302px;}
.y9a{bottom:856.640970px;}
.y3{bottom:868.677000px;}
.y5c{bottom:873.608843px;}
.y99{bottom:873.811511px;}
.y4{bottom:876.670500px;}
.yce{bottom:879.280786px;}
.ydc{bottom:879.281100px;}
.yc5{bottom:881.252520px;}
.ycd{bottom:882.063000px;}
.yc4{bottom:884.590800px;}
.yde{bottom:890.484000px;}
.yeb{bottom:890.544073px;}
.ycf{bottom:890.547150px;}
.y5b{bottom:890.779384px;}
.y98{bottom:890.982052px;}
.yea{bottom:905.152200px;}
.ye7{bottom:905.707950px;}
.y5a{bottom:907.949926px;}
.y97{bottom:908.152593px;}
.ydd{bottom:908.334600px;}
.y59{bottom:925.120467px;}
.y96{bottom:925.323134px;}
.y2{bottom:940.449665px;}
.y58{bottom:942.291008px;}
.y95{bottom:942.493675px;}
.y57{bottom:959.461549px;}
.y94{bottom:959.664216px;}
.y1{bottom:976.252500px;}
.y56{bottom:976.632090px;}
.y93{bottom:976.834757px;}
.y55{bottom:993.892294px;}
.y92{bottom:994.094962px;}
.yc7{bottom:1002.164550px;}
.y54{bottom:1011.062836px;}
.y91{bottom:1011.265503px;}
.yc8{bottom:1015.050900px;}
.yc6{bottom:1020.509700px;}
.y53{bottom:1028.233377px;}
.y90{bottom:1028.436044px;}
.y52{bottom:1045.403918px;}
.y8f{bottom:1045.606585px;}
.y51{bottom:1062.574459px;}
.y8e{bottom:1062.777126px;}
.y4f{bottom:1073.803245px;}
.y50{bottom:1079.745000px;}
.y8d{bottom:1079.947667px;}
.y4e{bottom:1087.993830px;}
.y4d{bottom:1102.184415px;}
.y4c{bottom:1116.375000px;}
.ybf{bottom:1123.114500px;}
.h15{height:7.242426px;}
.h1c{height:7.364833px;}
.h16{height:7.922851px;}
.h1f{height:8.160240px;}
.h19{height:11.784128px;}
.h7{height:25.640472px;}
.hf{height:28.529736px;}
.h1b{height:30.086465px;}
.h5{height:33.661056px;}
.hc{height:34.047840px;}
.h24{height:37.775065px;}
.h1e{height:38.309758px;}
.h9{height:38.411201px;}
.h8{height:38.464998px;}
.h12{height:38.518795px;}
.h22{height:39.245905px;}
.h13{height:39.540942px;}
.h18{height:40.075205px;}
.h21{height:40.709390px;}
.h1d{height:41.452165px;}
.h26{height:41.920238px;}
.hb{height:42.679778px;}
.h10{height:42.739554px;}
.hd{height:42.799330px;}
.h11{height:43.755739px;}
.he{height:43.815515px;}
.h14{height:49.475164px;}
.h4{height:50.498342px;}
.h23{height:50.812331px;}
.h6{height:52.506799px;}
.ha{height:53.205431px;}
.h1a{height:53.486664px;}
.h17{height:55.215173px;}
.h27{height:55.380000px;}
.h20{height:62.834112px;}
.h3{height:75.748147px;}
.h2{height:76.931712px;}
.h25{height:80.229996px;}
.h1{height:1200.000000px;}
.h0{height:1200.075000px;}
.w1{width:900.000000px;}
.w0{width:900.057000px;}
.x0{left:0.000000px;}
.x1{left:76.450350px;}
.x25{left:83.419650px;}
.x24{left:84.857100px;}
.x13{left:98.821368px;}
.x14{left:101.792100px;}
.x15{left:115.483350px;}
.x2{left:130.195200px;}
.x10{left:135.042450px;}
.x26{left:189.588150px;}
.x1e{left:236.707050px;}
.x1f{left:237.857100px;}
.x3{left:252.991500px;}
.x4{left:259.030500px;}
.x5{left:262.347000px;}
.x6{left:273.061500px;}
.x2b{left:339.896700px;}
.x7{left:353.668762px;}
.xb{left:366.690000px;}
.xc{left:372.642000px;}
.x2c{left:374.918700px;}
.xd{left:376.044000px;}
.xe{left:381.997500px;}
.xf{left:385.312500px;}
.x29{left:389.469900px;}
.x28{left:390.857100px;}
.x20{left:397.428600px;}
.x21{left:448.410150px;}
.x11{left:463.467472px;}
.x8{left:472.479000px;}
.x9{left:483.108000px;}
.x12{left:485.913210px;}
.x2a{left:495.219600px;}
.x27{left:543.115200px;}
.x1b{left:600.717301px;}
.xa{left:601.908000px;}
.x1c{left:661.508137px;}
.x17{left:671.976237px;}
.x1a{left:680.225269px;}
.x22{left:695.419650px;}
.x23{left:696.857100px;}
.x1d{left:731.067916px;}
.x18{left:736.175231px;}
.x16{left:744.005835px;}
.x19{left:748.339566px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.785295pt;}
.ls12{letter-spacing:-8.340869pt;}
.ls13{letter-spacing:-5.303335pt;}
.ls8{letter-spacing:-4.293173pt;}
.ls29{letter-spacing:-3.363008pt;}
.lsf{letter-spacing:-3.110782pt;}
.ls1c{letter-spacing:-3.099243pt;}
.ls22{letter-spacing:-2.571712pt;}
.ls26{letter-spacing:-2.176064pt;}
.ls2a{letter-spacing:-2.067264pt;}
.ls10{letter-spacing:-2.012859pt;}
.ls27{letter-spacing:-1.941972pt;}
.ls15{letter-spacing:-1.714475pt;}
.ls28{letter-spacing:-1.676563pt;}
.ls2c{letter-spacing:-1.648533pt;}
.ls2e{letter-spacing:-1.635345pt;}
.ls19{letter-spacing:-1.582592pt;}
.ls1b{letter-spacing:-1.533136pt;}
.ls25{letter-spacing:-1.499921pt;}
.ls23{letter-spacing:-1.403151pt;}
.ls20{letter-spacing:-1.396314pt;}
.ls1a{letter-spacing:-1.379822pt;}
.ls1d{letter-spacing:-1.369682pt;}
.ls24{letter-spacing:-1.306382pt;}
.ls1f{letter-spacing:-1.269376pt;}
.ls2d{letter-spacing:-1.175404pt;}
.ls2b{letter-spacing:-1.136995pt;}
.ls21{letter-spacing:-1.053965pt;}
.ls2f{letter-spacing:-1.040000pt;}
.ls1e{letter-spacing:-1.039069pt;}
.ls16{letter-spacing:-0.890214pt;}
.ls30{letter-spacing:-0.762667pt;}
.lse{letter-spacing:-0.530799pt;}
.ls4{letter-spacing:-0.478208pt;}
.lsa{letter-spacing:-0.425067pt;}
.ls7{letter-spacing:-0.212533pt;}
.ls17{letter-spacing:-0.145075pt;}
.ls14{letter-spacing:-0.118694pt;}
.ls18{letter-spacing:-0.063470pt;}
.ls6{letter-spacing:-0.047820pt;}
.ls9{letter-spacing:-0.042507pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.029674pt;}
.lsd{letter-spacing:0.053134pt;}
.lsb{letter-spacing:0.114769pt;}
.ls1{letter-spacing:0.127521pt;}
.ls2{letter-spacing:0.191279pt;}
.ls0{letter-spacing:0.191283pt;}
.ls3{letter-spacing:9.946505pt;}
.lsc{letter-spacing:1825.254588pt;}
.wsa1{word-spacing:-22.953472pt;}
.wsb5{word-spacing:-22.422673pt;}
.ws91{word-spacing:-18.777477pt;}
.wscf{word-spacing:-18.298720pt;}
.ws51{word-spacing:-16.784988pt;}
.ws69{word-spacing:-15.918906pt;}
.ws5c{word-spacing:-15.706371pt;}
.ws60{word-spacing:-15.398195pt;}
.ws84{word-spacing:-14.808409pt;}
.ws61{word-spacing:-14.032654pt;}
.wsd1{word-spacing:-13.936000pt;}
.ws4f{word-spacing:-13.905133pt;}
.wsb6{word-spacing:-13.580804pt;}
.wsae{word-spacing:-13.566458pt;}
.wsbf{word-spacing:-13.517256pt;}
.wsb0{word-spacing:-13.446909pt;}
.wsba{word-spacing:-13.112171pt;}
.ws77{word-spacing:-13.007171pt;}
.wscd{word-spacing:-12.858560pt;}
.wsc5{word-spacing:-12.726677pt;}
.ws58{word-spacing:-12.555533pt;}
.ws99{word-spacing:-12.337491pt;}
.ws6d{word-spacing:-12.311117pt;}
.wsce{word-spacing:-12.265088pt;}
.wsbb{word-spacing:-12.122302pt;}
.ws5a{word-spacing:-12.024194pt;}
.wsbd{word-spacing:-11.997971pt;}
.wscc{word-spacing:-11.869440pt;}
.ws76{word-spacing:-11.864792pt;}
.ws65{word-spacing:-11.790405pt;}
.ws92{word-spacing:-11.721331pt;}
.ws81{word-spacing:-11.700077pt;}
.wsc0{word-spacing:-11.345206pt;}
.wsca{word-spacing:-11.341909pt;}
.ws8f{word-spacing:-11.211246pt;}
.ws93{word-spacing:-11.184679pt;}
.ws75{word-spacing:-11.168739pt;}
.ws48{word-spacing:-11.057158pt;}
.ws7e{word-spacing:-10.881816pt;}
.ws98{word-spacing:-10.692492pt;}
.ws4d{word-spacing:-10.387671pt;}
.ws5e{word-spacing:-10.276090pt;}
.ws82{word-spacing:-10.260150pt;}
.ws52{word-spacing:-10.207016pt;}
.ws56{word-spacing:-10.100748pt;}
.wsa7{word-spacing:-10.061272pt;}
.ws7f{word-spacing:-10.010420pt;}
.ws7c{word-spacing:-9.819139pt;}
.wsc9{word-spacing:-9.812070pt;}
.wsab{word-spacing:-9.793481pt;}
.ws6c{word-spacing:-9.760691pt;}
.ws40{word-spacing:-9.649013pt;}
.ws9d{word-spacing:-9.616548pt;}
.wsb4{word-spacing:-9.559165pt;}
.ws89{word-spacing:-9.542842pt;}
.ws4e{word-spacing:-9.484395pt;}
.wsd0{word-spacing:-9.251006pt;}
.ws73{word-spacing:-9.123085pt;}
.ws59{word-spacing:-9.075264pt;}
.ws49{word-spacing:-8.235749pt;}
.ws6b{word-spacing:-8.161362pt;}
.ws8c{word-spacing:-8.118855pt;}
.ws8d{word-spacing:-8.001960pt;}
.ws64{word-spacing:-7.975393pt;}
.ws70{word-spacing:-7.964767pt;}
.ws53{word-spacing:-7.938200pt;}
.ws5f{word-spacing:-7.906319pt;}
.ws90{word-spacing:-7.890379pt;}
.ws5d{word-spacing:-7.683157pt;}
.ws79{word-spacing:-7.630023pt;}
.ws6a{word-spacing:-7.603456pt;}
.ws85{word-spacing:-7.571576pt;}
.ws7b{word-spacing:-7.396234pt;}
.ws72{word-spacing:-7.343100pt;}
.wsa9{word-spacing:-7.196870pt;}
.ws9b{word-spacing:-7.172960pt;}
.wsbe{word-spacing:-6.919515pt;}
.ws6e{word-spacing:-6.918029pt;}
.ws63{word-spacing:-6.875522pt;}
.ws62{word-spacing:-6.748001pt;}
.wsa2{word-spacing:-6.733018pt;}
.wsa3{word-spacing:-6.713891pt;}
.wsad{word-spacing:-6.704327pt;}
.wsa4{word-spacing:-6.670853pt;}
.wsa5{word-spacing:-6.570431pt;}
.ws5b{word-spacing:-6.402631pt;}
.wsa0{word-spacing:-6.316987pt;}
.ws8e{word-spacing:-6.275110pt;}
.wsb1{word-spacing:-6.097016pt;}
.ws71{word-spacing:-5.871292pt;}
.ws4c{word-spacing:-5.563116pt;}
.ws41{word-spacing:-5.355840pt;}
.ws7d{word-spacing:-5.276193pt;}
.ws8b{word-spacing:-5.138045pt;}
.wsbc{word-spacing:-5.111929pt;}
.ws6f{word-spacing:-4.867062pt;}
.wsaa{word-spacing:-4.361160pt;}
.wsb7{word-spacing:-4.342032pt;}
.ws7a{word-spacing:-4.123188pt;}
.ws50{word-spacing:-4.091308pt;}
.ws55{word-spacing:-3.979727pt;}
.wsa6{word-spacing:-3.744285pt;}
.ws54{word-spacing:-3.639670pt;}
.ws86{word-spacing:-3.522775pt;}
.wsb9{word-spacing:-3.070027pt;}
.wsa8{word-spacing:-2.711379pt;}
.ws9e{word-spacing:-2.677905pt;}
.wsb3{word-spacing:-2.606175pt;}
.wsc2{word-spacing:-2.274976pt;}
.ws80{word-spacing:-2.109415pt;}
.ws87{word-spacing:-2.088161pt;}
.ws4b{word-spacing:-2.050967pt;}
.wscb{word-spacing:-1.978240pt;}
.wsc1{word-spacing:-1.922246pt;}
.wsaf{word-spacing:-1.817150pt;}
.wsc6{word-spacing:-1.777171pt;}
.ws68{word-spacing:-1.296466pt;}
.wsc4{word-spacing:-0.250157pt;}
.ws4{word-spacing:-0.191282pt;}
.ws44{word-spacing:-0.191279pt;}
.ws9a{word-spacing:-0.133895pt;}
.ws4a{word-spacing:-0.122208pt;}
.ws96{word-spacing:-0.074387pt;}
.ws42{word-spacing:0.000000pt;}
.ws66{word-spacing:0.021254pt;}
.ws9c{word-spacing:0.033474pt;}
.ws46{word-spacing:0.042507pt;}
.ws43{word-spacing:0.047820pt;}
.ws97{word-spacing:0.053134pt;}
.ws94{word-spacing:0.079701pt;}
.wsd3{word-spacing:0.118694pt;}
.ws95{word-spacing:0.180655pt;}
.ws45{word-spacing:0.212533pt;}
.ws0{word-spacing:0.382566pt;}
.ws9f{word-spacing:0.406468pt;}
.ws47{word-spacing:0.425067pt;}
.ws74{word-spacing:0.743874pt;}
.wsc3{word-spacing:0.765154pt;}
.wsd4{word-spacing:0.890214pt;}
.wsb2{word-spacing:0.932485pt;}
.wsd8{word-spacing:1.039069pt;}
.wse6{word-spacing:1.040000pt;}
.wsdb{word-spacing:1.053965pt;}
.wse2{word-spacing:1.085314pt;}
.ws67{word-spacing:1.099871pt;}
.wse4{word-spacing:1.175404pt;}
.wsd9{word-spacing:1.269376pt;}
.wsdd{word-spacing:1.306382pt;}
.ws57{word-spacing:1.338973pt;}
.wsd7{word-spacing:1.369682pt;}
.wsda{word-spacing:1.396314pt;}
.wsdc{word-spacing:1.403151pt;}
.wsde{word-spacing:1.499921pt;}
.wsd6{word-spacing:1.533136pt;}
.wsd5{word-spacing:1.582592pt;}
.wse5{word-spacing:1.635345pt;}
.wse3{word-spacing:1.648533pt;}
.wse1{word-spacing:1.676563pt;}
.wse0{word-spacing:1.941972pt;}
.wsdf{word-spacing:2.176064pt;}
.wsd2{word-spacing:3.110782pt;}
.ws78{word-spacing:3.565282pt;}
.wsb8{word-spacing:3.997730pt;}
.wsac{word-spacing:5.341464pt;}
.ws8a{word-spacing:8.001960pt;}
.ws88{word-spacing:8.623627pt;}
.ws2f{word-spacing:9.569409pt;}
.ws83{word-spacing:9.611916pt;}
.ws10{word-spacing:9.788699pt;}
.ws3f{word-spacing:10.036987pt;}
.wsf{word-spacing:10.089964pt;}
.ws20{word-spacing:10.334537pt;}
.ws18{word-spacing:10.653340pt;}
.wse{word-spacing:11.945369pt;}
.ws21{word-spacing:12.146402pt;}
.ws26{word-spacing:12.279237pt;}
.ws3c{word-spacing:12.454578pt;}
.ws3a{word-spacing:12.635233pt;}
.ws28{word-spacing:12.922156pt;}
.ws16{word-spacing:12.948723pt;}
.ws1e{word-spacing:13.108125pt;}
.ws29{word-spacing:13.533196pt;}
.ws1f{word-spacing:13.921073pt;}
.ws38{word-spacing:14.510859pt;}
.ws11{word-spacing:14.647184pt;}
.ws19{word-spacing:15.217539pt;}
.ws6{word-spacing:15.637053pt;}
.ws9{word-spacing:15.737474pt;}
.wsa{word-spacing:15.742256pt;}
.wsd{word-spacing:15.751820pt;}
.wsb{word-spacing:15.766166pt;}
.ws1b{word-spacing:15.770132pt;}
.wsc{word-spacing:15.780512pt;}
.ws7{word-spacing:15.818768pt;}
.ws8{word-spacing:15.943099pt;}
.ws2c{word-spacing:15.982667pt;}
.ws3e{word-spacing:15.993294pt;}
.ws12{word-spacing:16.110188pt;}
.ws5{word-spacing:16.322697pt;}
.ws3{word-spacing:16.335449pt;}
.ws15{word-spacing:16.444932pt;}
.ws32{word-spacing:16.476812pt;}
.ws2{word-spacing:16.615995pt;}
.ws35{word-spacing:17.013464pt;}
.ws31{word-spacing:17.470415pt;}
.ws2b{word-spacing:17.773278pt;}
.ws27{word-spacing:18.416198pt;}
.ws3b{word-spacing:19.367294pt;}
.ws2a{word-spacing:19.532009pt;}
.ws39{word-spacing:20.121795pt;}
.ws2d{word-spacing:20.445912pt;}
.ws3d{word-spacing:20.456539pt;}
.ws17{word-spacing:20.504359pt;}
.ws23{word-spacing:21.221666pt;}
.ws1d{word-spacing:21.397008pt;}
.ws1c{word-spacing:21.450142pt;}
.ws25{word-spacing:21.678618pt;}
.ws14{word-spacing:21.928347pt;}
.ws1a{word-spacing:21.954914pt;}
.ws34{word-spacing:24.202476pt;}
.ws33{word-spacing:24.792262pt;}
.ws30{word-spacing:25.079185pt;}
.ws1{word-spacing:25.488486pt;}
.ws13{word-spacing:26.184369pt;}
.ws37{word-spacing:27.757132pt;}
.ws24{word-spacing:28.049368pt;}
.ws36{word-spacing:28.139696pt;}
.ws22{word-spacing:28.447872pt;}
.ws2e{word-spacing:28.782616pt;}
.wsc8{word-spacing:298.576549pt;}
.wsc7{word-spacing:300.162402pt;}
._21{margin-left:-8.564062pt;}
._1f{margin-left:-5.846564pt;}
._3{margin-left:-4.509401pt;}
._6{margin-left:-2.443588pt;}
._12{margin-left:-0.892640pt;}
._5{width:0.956395pt;}
._1a{width:2.210369pt;}
._13{width:4.208160pt;}
._1{width:6.044499pt;}
._1e{width:6.962213pt;}
._1d{width:9.030197pt;}
._e{width:10.568326pt;}
._8{width:11.684137pt;}
._4{width:13.269976pt;}
._a{width:14.306501pt;}
._11{width:15.663864pt;}
._2{width:16.631703pt;}
._10{width:17.624504pt;}
._16{width:18.537603pt;}
._c{width:19.542636pt;}
._d{width:20.663761pt;}
._7{width:21.652051pt;}
._9{width:23.293887pt;}
._14{width:24.361878pt;}
._f{width:26.232190pt;}
._15{width:27.852773pt;}
._b{width:29.558370pt;}
._17{width:35.036472pt;}
._18{width:38.081042pt;}
._19{width:39.202167pt;}
._0{width:61.302496pt;}
._1c{width:247.230544pt;}
._20{width:279.706651pt;}
._1b{width:300.233126pt;}
.fs12{font-size:8.242667pt;}
.fs9{font-size:9.067200pt;}
.fsa{font-size:9.891200pt;}
.fsd{font-size:14.836800pt;}
.fs3{font-size:31.876267pt;}
.fs7{font-size:35.418667pt;}
.fsf{font-size:37.092267pt;}
.fs2{font-size:42.501333pt;}
.fs6{font-size:42.506667pt;}
.fs17{font-size:46.571200pt;}
.fs11{font-size:47.230400pt;}
.fs4{font-size:47.819733pt;}
.fs15{font-size:48.384533pt;}
.fsc{font-size:50.031467pt;}
.fs14{font-size:50.188800pt;}
.fs10{font-size:51.104533pt;}
.fs19{font-size:51.681600pt;}
.fs5{font-size:53.133867pt;}
.fs8{font-size:60.995733pt;}
.fs16{font-size:62.644267pt;}
.fs13{font-size:63.468800pt;}
.fs1{font-size:63.760533pt;}
.fse{font-size:65.941333pt;}
.fsb{font-size:68.932800pt;}
.fs1a{font-size:69.333333pt;}
.fs0{font-size:95.641600pt;}
.fs18{font-size:98.912000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:73.959539pt;}
.y34{bottom:74.593128pt;}
.y4b{bottom:74.725963pt;}
.yed{bottom:75.427988pt;}
.yd7{bottom:75.428255pt;}
.yec{bottom:77.901067pt;}
.yd6{bottom:77.901333pt;}
.yd9{bottom:85.441237pt;}
.ye4{bottom:85.441979pt;}
.ye8{bottom:85.442800pt;}
.ye6{bottom:85.451109pt;}
.y8b{bottom:89.222242pt;}
.y33{bottom:89.855831pt;}
.y4a{bottom:89.988666pt;}
.ye9{bottom:96.210667pt;}
.ye3{bottom:96.776056pt;}
.yd8{bottom:96.776533pt;}
.ye5{bottom:100.485733pt;}
.y8a{bottom:104.484945pt;}
.y32{bottom:105.118534pt;}
.y49{bottom:105.251369pt;}
.ye2{bottom:108.110133pt;}
.y89{bottom:119.747649pt;}
.y31{bottom:120.381238pt;}
.y48{bottom:120.514072pt;}
.y88{bottom:135.010352pt;}
.y30{bottom:135.643941pt;}
.y47{bottom:135.776775pt;}
.y87{bottom:150.273055pt;}
.y2f{bottom:150.906644pt;}
.y46{bottom:151.039479pt;}
.y86{bottom:165.535758pt;}
.y2e{bottom:166.169347pt;}
.y45{bottom:166.302182pt;}
.ybe{bottom:177.440766pt;}
.y85{bottom:180.798461pt;}
.y2d{bottom:181.432050pt;}
.y44{bottom:181.564885pt;}
.ybd{bottom:191.344353pt;}
.yef{bottom:192.344933pt;}
.y84{bottom:196.140865pt;}
.y2c{bottom:196.694754pt;}
.y43{bottom:196.827588pt;}
.ybc{bottom:205.331625pt;}
.yee{bottom:208.830267pt;}
.y83{bottom:211.403569pt;}
.y2b{bottom:211.957457pt;}
.y42{bottom:212.090291pt;}
.ybb{bottom:219.235213pt;}
.y82{bottom:226.666272pt;}
.y2a{bottom:227.299861pt;}
.y41{bottom:227.432695pt;}
.yba{bottom:233.222485pt;}
.y81{bottom:241.928975pt;}
.y29{bottom:242.562564pt;}
.y40{bottom:242.695399pt;}
.yb9{bottom:247.126072pt;}
.yc3{bottom:251.966921pt;}
.yf3{bottom:251.967200pt;}
.yc2{bottom:254.440000pt;}
.yf4{bottom:254.440279pt;}
.y80{bottom:257.191678pt;}
.y28{bottom:257.825267pt;}
.y3f{bottom:257.958102pt;}
.yb8{bottom:261.113344pt;}
.yd4{bottom:261.981467pt;}
.yf2{bottom:261.981600pt;}
.yc1{bottom:261.987303pt;}
.y7f{bottom:272.454381pt;}
.y27{bottom:273.087970pt;}
.y3e{bottom:273.220805pt;}
.yf1{bottom:274.757733pt;}
.yb7{bottom:275.016931pt;}
.yc0{bottom:275.375867pt;}
.yd5{bottom:276.013333pt;}
.yf0{bottom:287.533867pt;}
.y7e{bottom:287.717085pt;}
.y26{bottom:288.350674pt;}
.y3d{bottom:288.483508pt;}
.yb6{bottom:289.004203pt;}
.yb5{bottom:302.907791pt;}
.y7d{bottom:302.979788pt;}
.y25{bottom:303.613377pt;}
.y3c{bottom:303.746211pt;}
.yb4{bottom:316.895063pt;}
.y7c{bottom:318.242491pt;}
.y24{bottom:318.876080pt;}
.y3b{bottom:319.008915pt;}
.yb3{bottom:330.798650pt;}
.y7b{bottom:333.505194pt;}
.y23{bottom:334.138783pt;}
.y3a{bottom:334.271618pt;}
.yb2{bottom:344.785922pt;}
.y7a{bottom:348.767897pt;}
.y22{bottom:349.401486pt;}
.y39{bottom:349.534321pt;}
.yb1{bottom:358.689510pt;}
.y79{bottom:364.110301pt;}
.y21{bottom:364.664190pt;}
.y38{bottom:364.797024pt;}
.yb0{bottom:372.676782pt;}
.ye0{bottom:376.198267pt;}
.y78{bottom:379.373005pt;}
.y20{bottom:379.926893pt;}
.y37{bottom:380.059727pt;}
.yaf{bottom:386.580369pt;}
.ye1{bottom:390.230133pt;}
.y77{bottom:394.635708pt;}
.y1f{bottom:395.269297pt;}
.y36{bottom:395.402131pt;}
.yae{bottom:400.567641pt;}
.y76{bottom:409.898411pt;}
.y1e{bottom:410.532000pt;}
.y35{bottom:410.664835pt;}
.yad{bottom:414.471229pt;}
.y75{bottom:425.161114pt;}
.yac{bottom:428.458501pt;}
.yd1{bottom:428.479055pt;}
.ydb{bottom:428.505588pt;}
.yd0{bottom:430.952133pt;}
.yda{bottom:430.978667pt;}
.yd3{bottom:438.520133pt;}
.y74{bottom:440.423817pt;}
.yab{bottom:442.362088pt;}
.yd2{bottom:451.296267pt;}
.y73{bottom:455.686521pt;}
.yaa{bottom:456.349360pt;}
.ya9{bottom:470.252948pt;}
.y72{bottom:470.949224pt;}
.y1d{bottom:478.645444pt;}
.ya8{bottom:484.240220pt;}
.y71{bottom:486.211927pt;}
.y1c{bottom:492.549031pt;}
.ya7{bottom:498.143807pt;}
.y70{bottom:501.474630pt;}
.yf6{bottom:501.934267pt;}
.ya6{bottom:512.131079pt;}
.y6f{bottom:516.737333pt;}
.y6d{bottom:516.915838pt;}
.y1b{bottom:517.797850pt;}
.y6e{bottom:522.708000pt;}
.yf5{bottom:522.734267pt;}
.ya5{bottom:526.034667pt;}
.y6c{bottom:532.258242pt;}
.y1a{bottom:544.325847pt;}
.y6b{bottom:547.520945pt;}
.ya4{bottom:551.281333pt;}
.y6a{bottom:562.783649pt;}
.y19{bottom:569.574667pt;}
.y18{bottom:574.941333pt;}
.y69{bottom:578.046352pt;}
.ya3{bottom:581.842797pt;}
.y17{bottom:584.240000pt;}
.y16{bottom:589.530667pt;}
.y68{bottom:593.309055pt;}
.ya2{bottom:597.185201pt;}
.y15{bottom:598.833746pt;}
.ycc{bottom:605.044255pt;}
.ycb{bottom:607.517333pt;}
.y67{bottom:608.571758pt;}
.ya1{bottom:612.447904pt;}
.y14{bottom:612.737333pt;}
.yc9{bottom:615.058800pt;}
.y13{bottom:618.104000pt;}
.y66{bottom:623.834461pt;}
.ydf{bottom:626.436400pt;}
.y12{bottom:627.407079pt;}
.ya0{bottom:627.710607pt;}
.yca{bottom:629.090667pt;}
.y65{bottom:639.097165pt;}
.y11{bottom:641.310667pt;}
.y10{bottom:646.677333pt;}
.y64{bottom:654.359868pt;}
.yf{bottom:655.980413pt;}
.y9f{bottom:658.249297pt;}
.y63{bottom:669.622571pt;}
.ye{bottom:669.884000pt;}
.y9e{bottom:673.512000pt;}
.yd{bottom:675.174667pt;}
.yc{bottom:684.468728pt;}
.y62{bottom:684.885274pt;}
.yb{bottom:698.456000pt;}
.y9d{bottom:700.044000pt;}
.y61{bottom:700.147977pt;}
.ya{bottom:703.748000pt;}
.y9{bottom:713.042061pt;}
.y60{bottom:715.490381pt;}
.y8{bottom:727.029333pt;}
.y5f{bottom:730.753085pt;}
.y9c{bottom:730.933233pt;}
.y7{bottom:732.321333pt;}
.y5e{bottom:746.015788pt;}
.y9b{bottom:746.195937pt;}
.y5{bottom:753.562667pt;}
.y6{bottom:760.668000pt;}
.y5d{bottom:761.278491pt;}
.y9a{bottom:761.458640pt;}
.y3{bottom:772.157333pt;}
.y5c{bottom:776.541194pt;}
.y99{bottom:776.721343pt;}
.y4{bottom:779.262667pt;}
.yce{bottom:781.582921pt;}
.ydc{bottom:781.583200pt;}
.yc5{bottom:783.335573pt;}
.ycd{bottom:784.056000pt;}
.yc4{bottom:786.302933pt;}
.yde{bottom:791.541333pt;}
.yeb{bottom:791.594731pt;}
.ycf{bottom:791.597467pt;}
.y5b{bottom:791.803897pt;}
.y98{bottom:791.984046pt;}
.yea{bottom:804.579733pt;}
.ye7{bottom:805.073733pt;}
.y5a{bottom:807.066601pt;}
.y97{bottom:807.246749pt;}
.ydd{bottom:807.408533pt;}
.y59{bottom:822.329304pt;}
.y96{bottom:822.509453pt;}
.y2{bottom:835.955258pt;}
.y58{bottom:837.592007pt;}
.y95{bottom:837.772156pt;}
.y57{bottom:852.854710pt;}
.y94{bottom:853.034859pt;}
.y1{bottom:867.780000pt;}
.y56{bottom:868.117413pt;}
.y93{bottom:868.297562pt;}
.y55{bottom:883.459817pt;}
.y92{bottom:883.639966pt;}
.yc7{bottom:890.812933pt;}
.y54{bottom:898.722521pt;}
.y91{bottom:898.902669pt;}
.yc8{bottom:902.267467pt;}
.yc6{bottom:907.119733pt;}
.y53{bottom:913.985224pt;}
.y90{bottom:914.165373pt;}
.y52{bottom:929.247927pt;}
.y8f{bottom:929.428076pt;}
.y51{bottom:944.510630pt;}
.y8e{bottom:944.690779pt;}
.y4f{bottom:954.491773pt;}
.y50{bottom:959.773333pt;}
.y8d{bottom:959.953482pt;}
.y4e{bottom:967.105627pt;}
.y4d{bottom:979.719480pt;}
.y4c{bottom:992.333333pt;}
.ybf{bottom:998.324000pt;}
.h15{height:6.437712pt;}
.h1c{height:6.546518pt;}
.h16{height:7.042534pt;}
.h1f{height:7.253547pt;}
.h19{height:10.474781pt;}
.h7{height:22.791531pt;}
.hf{height:25.359765pt;}
.h1b{height:26.743524pt;}
.h5{height:29.920939pt;}
.hc{height:30.264747pt;}
.h24{height:33.577835pt;}
.h1e{height:34.053118pt;}
.h9{height:34.143290pt;}
.h8{height:34.191109pt;}
.h12{height:34.238929pt;}
.h22{height:34.885249pt;}
.h13{height:35.147504pt;}
.h18{height:35.622404pt;}
.h21{height:36.186125pt;}
.h1d{height:36.846369pt;}
.h26{height:37.262434pt;}
.hb{height:37.937581pt;}
.h10{height:37.990715pt;}
.hd{height:38.043849pt;}
.h11{height:38.893990pt;}
.he{height:38.947124pt;}
.h14{height:43.977924pt;}
.h4{height:44.887415pt;}
.h23{height:45.166516pt;}
.h6{height:46.672710pt;}
.ha{height:47.293716pt;}
.h1a{height:47.543701pt;}
.h17{height:49.080154pt;}
.h27{height:49.226667pt;}
.h20{height:55.852544pt;}
.h3{height:67.331686pt;}
.h2{height:68.383744pt;}
.h25{height:71.315552pt;}
.h1{height:1066.666667pt;}
.h0{height:1066.733333pt;}
.w1{width:800.000000pt;}
.w0{width:800.050667pt;}
.x0{left:0.000000pt;}
.x1{left:67.955867pt;}
.x25{left:74.150800pt;}
.x24{left:75.428533pt;}
.x13{left:87.841216pt;}
.x14{left:90.481867pt;}
.x15{left:102.651867pt;}
.x2{left:115.729067pt;}
.x10{left:120.037733pt;}
.x26{left:168.522800pt;}
.x1e{left:210.406267pt;}
.x1f{left:211.428533pt;}
.x3{left:224.881333pt;}
.x4{left:230.249333pt;}
.x5{left:233.197333pt;}
.x6{left:242.721333pt;}
.x2b{left:302.130400pt;}
.x7{left:314.372233pt;}
.xb{left:325.946667pt;}
.xc{left:331.237333pt;}
.x2c{left:333.261067pt;}
.xd{left:334.261333pt;}
.xe{left:339.553333pt;}
.xf{left:342.500000pt;}
.x29{left:346.195467pt;}
.x28{left:347.428533pt;}
.x20{left:353.269867pt;}
.x21{left:398.586800pt;}
.x11{left:411.971086pt;}
.x8{left:419.981333pt;}
.x9{left:429.429333pt;}
.x12{left:431.922853pt;}
.x2a{left:440.195200pt;}
.x27{left:482.769067pt;}
.x1b{left:533.970934pt;}
.xa{left:535.029333pt;}
.x1c{left:588.007233pt;}
.x17{left:597.312210pt;}
.x1a{left:604.644684pt;}
.x22{left:618.150800pt;}
.x23{left:619.428533pt;}
.x1d{left:649.838148pt;}
.x18{left:654.377983pt;}
.x16{left:661.338520pt;}
.x19{left:665.190725pt;}
}




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