
    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_ffa725a99d957a2dfdab6776.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_1e7ea247875e99dc7af9cd6c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016000;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_f6a0779b12f126d2f596e56e.woff')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_ecfaf03f159a325b35291761.woff')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_c371b118ebd04fe6c9e32d95.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_44f7aa91db98617cd136c134.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_3431c99672d3806658c33c0a.woff')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_5b28bf5ff5aa4d0b783612a4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_b15e63fce3c111f281feb1c9.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_49a913adc14aee0eefac32f7.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b94c6b413f3ae7f707a2b00e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.696000;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_0e1f60c5dfca29fa81fa948b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.016000;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_26a459ef9e4a7b46c798b5b4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.001000;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_5ac372c6c286eb4b96f89dba.woff')format("woff");}.ffe{font-family:ffe;line-height:0.691000;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:fff;src:url('chunks/assets/font_19edf4a3fe7bf52b2859f27c.woff')format("woff");}.fff{font-family:fff;line-height:0.898000;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:ff10;src:url('chunks/assets/font_b2b28159469b9055b506da05.woff')format("woff");}.ff10{font-family:ff10;line-height:0.752000;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:ff11;src:url('chunks/assets/font_d881599936f5fb9eecd0bb4f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.703450;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:ff12;src:url('chunks/assets/font_496d99b018ff52a1c4afe70f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.052000;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:ff13;src:url('chunks/assets/font_93c1d6fad43cf769c7a5ecca.woff')format("woff");}.ff13{font-family:ff13;line-height:0.696000;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:ff14;src:url('chunks/assets/font_5462cb016a1a82ee74c2f823.woff')format("woff");}.ff14{font-family:ff14;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.696000px;}
.v4{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.v3{vertical-align:40.752000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.986792px;}
.ls0{letter-spacing:2.988479px;}
.ls2{letter-spacing:2.988964px;}
.ls5{letter-spacing:2.992894px;}
.ls8{letter-spacing:2.994479px;}
.lsa{letter-spacing:19.260479px;}
.lsb{letter-spacing:21.878016px;}
.lsc{letter-spacing:23.742479px;}
.ls7{letter-spacing:29.338061px;}
.ls9{letter-spacing:33.378479px;}
.ls4{letter-spacing:34.938479px;}
.ls6{letter-spacing:35.111578px;}
.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;}
}
.wsc3{word-spacing:-45.664082px;}
.wsd5{word-spacing:-35.858427px;}
.ws2b{word-spacing:-35.112422px;}
.ws78{word-spacing:-32.544027px;}
.ws85{word-spacing:-29.881822px;}
.wsc1{word-spacing:-25.397521px;}
.wse9{word-spacing:-19.546752px;}
.ws1e{word-spacing:-19.331558px;}
.wscb{word-spacing:-18.901171px;}
.ws8d{word-spacing:-18.829440px;}
.wsc9{word-spacing:-18.614246px;}
.wsd9{word-spacing:-18.542515px;}
.wse{word-spacing:-18.470784px;}
.wsda{word-spacing:-18.399053px;}
.ws8c{word-spacing:-18.327322px;}
.ws50{word-spacing:-18.255590px;}
.wsd8{word-spacing:-17.920399px;}
.ws45{word-spacing:-17.896934px;}
.ws47{word-spacing:-17.825203px;}
.ws90{word-spacing:-17.753472px;}
.ws62{word-spacing:-17.610010px;}
.ws6b{word-spacing:-17.538278px;}
.ws10e{word-spacing:-17.466547px;}
.ws76{word-spacing:-17.251354px;}
.ws36{word-spacing:-17.179622px;}
.ws37{word-spacing:-17.107891px;}
.ws7c{word-spacing:-17.036160px;}
.ws66{word-spacing:-16.964429px;}
.wsbf{word-spacing:-16.892698px;}
.wsaa{word-spacing:-16.820966px;}
.ws10f{word-spacing:-16.605773px;}
.ws46{word-spacing:-16.419272px;}
.ws12{word-spacing:-16.390579px;}
.ws93{word-spacing:-16.247117px;}
.ws63{word-spacing:-16.103654px;}
.ws30{word-spacing:-15.960192px;}
.wsa1{word-spacing:-15.888461px;}
.ws5a{word-spacing:-15.816730px;}
.wsd{word-spacing:-15.673267px;}
.ws111{word-spacing:-15.601536px;}
.ws117{word-spacing:-15.558497px;}
.wsa8{word-spacing:-15.458074px;}
.ws74{word-spacing:-15.386342px;}
.ws6a{word-spacing:-15.314611px;}
.ws6c{word-spacing:-15.242880px;}
.ws110{word-spacing:-15.171149px;}
.wsa5{word-spacing:-15.099418px;}
.ws65{word-spacing:-15.027686px;}
.ws2d{word-spacing:-14.884224px;}
.wsbc{word-spacing:-14.812493px;}
.wsbb{word-spacing:-14.740762px;}
.ws5e{word-spacing:-14.597299px;}
.ws4{word-spacing:-14.525568px;}
.ws8a{word-spacing:-14.453837px;}
.wsc0{word-spacing:-14.382106px;}
.ws112{word-spacing:-14.339067px;}
.ws9b{word-spacing:-14.238643px;}
.ws5c{word-spacing:-14.095181px;}
.ws2e{word-spacing:-14.023450px;}
.ws48{word-spacing:-13.951718px;}
.ws40{word-spacing:-13.879987px;}
.ws9d{word-spacing:-13.808256px;}
.wsca{word-spacing:-13.736525px;}
.wsf1{word-spacing:-13.693486px;}
.wsa6{word-spacing:-13.664794px;}
.ws53{word-spacing:-13.593062px;}
.ws32{word-spacing:-13.521331px;}
.ws5b{word-spacing:-13.449600px;}
.ws95{word-spacing:-13.377869px;}
.wsc2{word-spacing:-13.306138px;}
.ws3a{word-spacing:-13.234406px;}
.wsac{word-spacing:-13.162675px;}
.ws1f{word-spacing:-13.090944px;}
.ws10b{word-spacing:-13.047905px;}
.wsa4{word-spacing:-13.019213px;}
.wsb1{word-spacing:-12.947482px;}
.ws104{word-spacing:-12.832712px;}
.ws1d{word-spacing:-12.732288px;}
.ws8b{word-spacing:-12.660557px;}
.ws5d{word-spacing:-12.588826px;}
.ws82{word-spacing:-12.517094px;}
.wsa{word-spacing:-12.445363px;}
.ws9{word-spacing:-12.301901px;}
.ws67{word-spacing:-12.230170px;}
.ws4a{word-spacing:-12.158438px;}
.ws87{word-spacing:-12.086707px;}
.ws70{word-spacing:-12.014976px;}
.ws44{word-spacing:-11.943245px;}
.ws2a{word-spacing:-11.871514px;}
.ws8{word-spacing:-11.799782px;}
.ws1{word-spacing:-11.728051px;}
.ws60{word-spacing:-11.656320px;}
.wsb6{word-spacing:-11.584589px;}
.ws91{word-spacing:-11.512858px;}
.ws10{word-spacing:-11.441126px;}
.ws80{word-spacing:-11.369395px;}
.ws1b{word-spacing:-11.297664px;}
.ws43{word-spacing:-11.225933px;}
.ws42{word-spacing:-11.154202px;}
.wse5{word-spacing:-11.082470px;}
.ws52{word-spacing:-11.010739px;}
.wsa0{word-spacing:-10.939008px;}
.wsfa{word-spacing:-10.895969px;}
.ws79{word-spacing:-10.878555px;}
.ws8e{word-spacing:-10.867277px;}
.ws11f{word-spacing:-10.824238px;}
.ws7a{word-spacing:-10.813100px;}
.wsf{word-spacing:-10.795546px;}
.ws86{word-spacing:-10.752507px;}
.wsa9{word-spacing:-10.723814px;}
.ws100{word-spacing:-10.680776px;}
.ws5f{word-spacing:-10.652083px;}
.ws34{word-spacing:-10.580352px;}
.wsc{word-spacing:-10.508621px;}
.ws9e{word-spacing:-10.436890px;}
.wse4{word-spacing:-10.393851px;}
.ws33{word-spacing:-10.365158px;}
.wsd7{word-spacing:-10.293427px;}
.ws3d{word-spacing:-10.221696px;}
.ws13{word-spacing:-10.149965px;}
.wsd4{word-spacing:-10.078234px;}
.wsc8{word-spacing:-10.006502px;}
.ws16{word-spacing:-9.976548px;}
.ws118{word-spacing:-9.963464px;}
.ws6d{word-spacing:-9.934771px;}
.ws2f{word-spacing:-9.863040px;}
.wsae{word-spacing:-9.791309px;}
.ws81{word-spacing:-9.719578px;}
.ws2c{word-spacing:-9.647846px;}
.ws9c{word-spacing:-9.576115px;}
.ws97{word-spacing:-9.504384px;}
.ws25{word-spacing:-9.432653px;}
.ws4c{word-spacing:-9.360922px;}
.wsa3{word-spacing:-9.289190px;}
.ws11d{word-spacing:-9.246152px;}
.wsea{word-spacing:-9.217459px;}
.ws6e{word-spacing:-9.145728px;}
.wsf4{word-spacing:-9.102689px;}
.ws51{word-spacing:-9.002266px;}
.wsab{word-spacing:-8.930534px;}
.ws20{word-spacing:-8.858803px;}
.ws28{word-spacing:-8.787072px;}
.ws98{word-spacing:-8.715341px;}
.ws26{word-spacing:-8.643610px;}
.ws10a{word-spacing:-8.600571px;}
.wsb5{word-spacing:-8.541933px;}
.wsa2{word-spacing:-8.469028px;}
.wsff{word-spacing:-8.428416px;}
.ws7e{word-spacing:-8.356685px;}
.wse7{word-spacing:-8.284954px;}
.ws35{word-spacing:-8.213222px;}
.ws10d{word-spacing:-8.098452px;}
.ws11b{word-spacing:-8.039105px;}
.wsa7{word-spacing:-7.998029px;}
.ws68{word-spacing:-7.926298px;}
.wscf{word-spacing:-7.782835px;}
.wsd1{word-spacing:-7.711104px;}
.ws10c{word-spacing:-7.668065px;}
.ws7{word-spacing:-7.639373px;}
.wsdb{word-spacing:-7.567642px;}
.ws69{word-spacing:-7.495910px;}
.wsd2{word-spacing:-7.352448px;}
.ws8f{word-spacing:-7.280717px;}
.ws4f{word-spacing:-7.208986px;}
.ws72{word-spacing:-7.137254px;}
.ws108{word-spacing:-7.091495px;}
.wse1{word-spacing:-7.065523px;}
.ws3b{word-spacing:-6.993792px;}
.ws121{word-spacing:-6.950753px;}
.ws3e{word-spacing:-6.922061px;}
.ws29{word-spacing:-6.850330px;}
.ws4d{word-spacing:-6.778598px;}
.ws5{word-spacing:-6.706867px;}
.ws1a{word-spacing:-6.635136px;}
.wsb4{word-spacing:-6.563405px;}
.ws11e{word-spacing:-6.520366px;}
.ws96{word-spacing:-6.491674px;}
.wsad{word-spacing:-6.438829px;}
.ws22{word-spacing:-6.419942px;}
.ws11{word-spacing:-6.348211px;}
.ws1c{word-spacing:-6.276480px;}
.ws9f{word-spacing:-6.204749px;}
.wsf2{word-spacing:-6.165921px;}
.ws24{word-spacing:-6.133018px;}
.wsf3{word-spacing:-6.061286px;}
.wse8{word-spacing:-5.989555px;}
.ws83{word-spacing:-5.917824px;}
.ws64{word-spacing:-5.774362px;}
.ws73{word-spacing:-5.702630px;}
.ws6{word-spacing:-5.630899px;}
.wscd{word-spacing:-5.612929px;}
.wsee{word-spacing:-5.587860px;}
.ws107{word-spacing:-5.516129px;}
.wsf0{word-spacing:-5.481199px;}
.ws105{word-spacing:-5.415706px;}
.ws6f{word-spacing:-5.343974px;}
.ws103{word-spacing:-5.300936px;}
.ws116{word-spacing:-5.272243px;}
.ws94{word-spacing:-5.200512px;}
.ws55{word-spacing:-5.128781px;}
.ws7f{word-spacing:-5.057050px;}
.ws75{word-spacing:-4.985318px;}
.wsfe{word-spacing:-4.913587px;}
.ws41{word-spacing:-4.841856px;}
.ws89{word-spacing:-4.770125px;}
.ws115{word-spacing:-4.727086px;}
.ws23{word-spacing:-4.698394px;}
.ws39{word-spacing:-4.626662px;}
.ws3f{word-spacing:-4.554931px;}
.wsfd{word-spacing:-4.511892px;}
.wsbe{word-spacing:-4.268006px;}
.wsf9{word-spacing:-4.234610px;}
.ws56{word-spacing:-4.196275px;}
.wsd0{word-spacing:-4.124544px;}
.wsdc{word-spacing:-4.052813px;}
.ws101{word-spacing:-3.981082px;}
.wsde{word-spacing:-3.878162px;}
.ws21{word-spacing:-3.837619px;}
.wsdf{word-spacing:-3.579387px;}
.ws49{word-spacing:-3.550694px;}
.wsf6{word-spacing:-3.407232px;}
.wsb7{word-spacing:-3.335501px;}
.wsd6{word-spacing:-3.309041px;}
.ws92{word-spacing:-3.263770px;}
.wsb{word-spacing:-3.192038px;}
.ws84{word-spacing:-3.120307px;}
.ws27{word-spacing:-3.048576px;}
.ws4b{word-spacing:-2.976845px;}
.wsec{word-spacing:-2.905114px;}
.wse2{word-spacing:-2.833382px;}
.ws3c{word-spacing:-2.761651px;}
.wsd3{word-spacing:-2.689920px;}
.wsed{word-spacing:-2.646881px;}
.wseb{word-spacing:-2.546458px;}
.ws113{word-spacing:-2.474726px;}
.ws54{word-spacing:-2.402995px;}
.ws31{word-spacing:-2.331264px;}
.wsaf{word-spacing:-2.259533px;}
.wsf5{word-spacing:-1.972608px;}
.wse0{word-spacing:-1.900877px;}
.wse6{word-spacing:-1.757414px;}
.ws120{word-spacing:-1.613952px;}
.wsbd{word-spacing:-1.542221px;}
.ws61{word-spacing:-1.255296px;}
.ws114{word-spacing:-1.212257px;}
.ws9a{word-spacing:-1.111834px;}
.ws99{word-spacing:-1.040102px;}
.wse3{word-spacing:-0.968371px;}
.wsef{word-spacing:-0.874744px;}
.ws38{word-spacing:-0.824909px;}
.ws57{word-spacing:-0.681446px;}
.wsb3{word-spacing:-0.609715px;}
.ws7d{word-spacing:-0.394522px;}
.wsb2{word-spacing:-0.251059px;}
.ws88{word-spacing:-0.107549px;}
.ws3{word-spacing:-0.071731px;}
.ws4e{word-spacing:-0.059776px;}
.wscc{word-spacing:-0.041843px;}
.wsc6{word-spacing:-0.035866px;}
.ws18{word-spacing:0.000000px;}
.ws59{word-spacing:0.007173px;}
.ws71{word-spacing:0.753178px;}
.ws11a{word-spacing:1.111834px;}
.wsf7{word-spacing:1.203656px;}
.wsce{word-spacing:1.470490px;}
.ws119{word-spacing:2.546458px;}
.ws106{word-spacing:13.146117px;}
.ws102{word-spacing:13.819726px;}
.wsc5{word-spacing:15.852595px;}
.wsfc{word-spacing:16.331138px;}
.wsdd{word-spacing:17.825203px;}
.ws109{word-spacing:19.412039px;}
.ws15{word-spacing:19.832400px;}
.ws17{word-spacing:19.877627px;}
.ws2{word-spacing:21.339889px;}
.wsc4{word-spacing:22.856384px;}
.wsf8{word-spacing:23.307523px;}
.wsfb{word-spacing:23.318333px;}
.ws14{word-spacing:24.483548px;}
.ws58{word-spacing:26.827469px;}
.ws0{word-spacing:32.227229px;}
.ws11c{word-spacing:35.092908px;}
.wsba{word-spacing:36.618778px;}
.ws19{word-spacing:40.241203px;}
.ws77{word-spacing:54.981563px;}
.wsb9{word-spacing:89.269478px;}
.wsb8{word-spacing:141.920179px;}
.ws7b{word-spacing:261.543491px;}
.wsb0{word-spacing:380.343590px;}
.wsc7{word-spacing:821.341198px;}
._1f{margin-left:-6.892777px;}
._1{margin-left:-5.785261px;}
._3{margin-left:-4.602721px;}
._0{margin-left:-2.685602px;}
._2{margin-left:-1.124286px;}
._7{width:1.936742px;}
._1b{width:2.988780px;}
._4c{width:4.343555px;}
._5{width:6.945504px;}
._b{width:8.273832px;}
._11{width:16.816649px;}
._1c{width:17.892617px;}
._d{width:18.968585px;}
._20{width:20.921597px;}
._18{width:22.426900px;}
._21{width:24.420156px;}
._c{width:25.639586px;}
._17{width:26.643823px;}
._4{width:27.842531px;}
._6{width:29.768448px;}
._8{width:31.711773px;}
._1d{width:32.781158px;}
._e{width:34.000589px;}
._19{width:35.474896px;}
._1a{width:36.662778px;}
._15{width:38.089267px;}
._2f{width:39.236966px;}
._12{width:40.534710px;}
._53{width:41.859473px;}
._a{width:43.620705px;}
._22{width:44.903731px;}
._2d{width:46.912205px;}
._f{width:48.019721px;}
._9{width:49.591225px;}
._14{width:52.013255px;}
._1e{width:53.089223px;}
._13{width:54.665757px;}
._52{width:55.879375px;}
._16{width:57.606736px;}
._50{width:58.644205px;}
._4e{width:61.720380px;}
._2e{width:63.051725px;}
._47{width:64.207559px;}
._4d{width:70.721752px;}
._42{width:72.198388px;}
._51{width:75.821348px;}
._4f{width:77.693622px;}
._54{width:79.231782px;}
._39{width:80.601508px;}
._3b{width:89.410984px;}
._44{width:97.202045px;}
._49{width:106.784922px;}
._4b{width:132.702720px;}
._4a{width:141.956045px;}
._48{width:163.069983px;}
._2a{width:183.561594px;}
._35{width:212.804463px;}
._3f{width:241.658383px;}
._28{width:273.076591px;}
._38{width:280.147652px;}
._41{width:289.963878px;}
._27{width:294.087518px;}
._43{width:308.029348px;}
._46{width:313.529498px;}
._2b{width:376.978298px;}
._34{width:383.067215px;}
._24{width:389.847598px;}
._23{width:393.316691px;}
._29{width:403.920337px;}
._2c{width:426.985612px;}
._45{width:447.303257px;}
._37{width:450.131284px;}
._25{width:453.600378px;}
._33{width:505.925499px;}
._36{width:514.669520px;}
._26{width:528.153167px;}
._3a{width:603.808985px;}
._31{width:627.120523px;}
._3c{width:634.153024px;}
._3d{width:641.938519px;}
._3e{width:929.913502px;}
._40{width:1118.646010px;}
._32{width:1129.409423px;}
._10{width:1254.262816px;}
._30{width:1880.512622px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yf5{bottom:49.725000px;}
.yde{bottom:65.104500px;}
.yf4{bottom:81.481500px;}
.ydd{bottom:96.861000px;}
.y20{bottom:134.794500px;}
.y1f{bottom:179.626500px;}
.y114{bottom:185.049000px;}
.ye0{bottom:188.593500px;}
.y174{bottom:190.087500px;}
.y12a{bottom:190.642500px;}
.yf2{bottom:194.158500px;}
.y1e{bottom:197.559000px;}
.yc3{bottom:198.649500px;}
.y73{bottom:201.139500px;}
.ydb{bottom:201.295500px;}
.y113{bottom:202.981500px;}
.y84{bottom:204.283500px;}
.y13f{bottom:204.625500px;}
.y62{bottom:204.876000px;}
.y173{bottom:211.756500px;}
.y129{bottom:212.311500px;}
.yf1{bottom:215.826000px;}
.yc2{bottom:216.582000px;}
.y72{bottom:219.072000px;}
.y61{bottom:222.808500px;}
.y158{bottom:222.964500px;}
.y83{bottom:225.952500px;}
.yda{bottom:233.484000px;}
.y128{bottom:233.980500px;}
.yc1{bottom:234.514500px;}
.y41{bottom:235.246500px;}
.yf0{bottom:237.495000px;}
.y157{bottom:244.632000px;}
.y82{bottom:247.621500px;}
.y172{bottom:248.368500px;}
.y1d{bottom:249.463500px;}
.y127{bottom:255.649500px;}
.y40{bottom:256.914000px;}
.yef{bottom:259.164000px;}
.y71{bottom:265.554000px;}
.y156{bottom:266.301000px;}
.y60{bottom:269.290500px;}
.y171{bottom:270.037500px;}
.y1c{bottom:271.132500px;}
.y126{bottom:277.318500px;}
.ya3{bottom:277.930500px;}
.y3f{bottom:278.583000px;}
.yee{bottom:280.833000px;}
.yc0{bottom:281.992500px;}
.yd9{bottom:287.125500px;}
.y70{bottom:287.223000px;}
.y155{bottom:287.970000px;}
.y5f{bottom:290.959500px;}
.y170{bottom:291.706500px;}
.y13d{bottom:292.801500px;}
.y112{bottom:294.682500px;}
.y125{bottom:298.986000px;}
.y3e{bottom:300.252000px;}
.y1b{bottom:301.912500px;}
.yed{bottom:302.502000px;}
.ybf{bottom:303.661500px;}
.y81{bottom:304.408500px;}
.yd8{bottom:308.793000px;}
.y154{bottom:309.639000px;}
.y5e{bottom:312.627000px;}
.y13c{bottom:314.470500px;}
.y124{bottom:320.655000px;}
.y3d{bottom:321.921000px;}
.y1a{bottom:323.581500px;}
.y6f{bottom:323.835000px;}
.yec{bottom:324.171000px;}
.ya2{bottom:324.412500px;}
.ybe{bottom:325.330500px;}
.y16f{bottom:328.318500px;}
.yd7{bottom:330.945000px;}
.y111{bottom:331.680000px;}
.y5d{bottom:334.296000px;}
.y13b{bottom:336.138000px;}
.y123{bottom:342.324000px;}
.y3c{bottom:343.590000px;}
.y19{bottom:345.250500px;}
.yeb{bottom:345.838500px;}
.ya1{bottom:346.081500px;}
.y153{bottom:346.251000px;}
.ybd{bottom:346.999500px;}
.y16e{bottom:349.987500px;}
.yd6{bottom:352.614000px;}
.y80{bottom:352.977000px;}
.ydf{bottom:352.993500px;}
.y110{bottom:353.349000px;}
.y5c{bottom:355.965000px;}
.y13a{bottom:357.807000px;}
.y6e{bottom:360.448500px;}
.y122{bottom:363.993000px;}
.y3b{bottom:365.259000px;}
.y18{bottom:366.919500px;}
.ya0{bottom:367.750500px;}
.y152{bottom:367.920000px;}
.ybc{bottom:368.667000px;}
.y16d{bottom:371.656500px;}
.y7f{bottom:374.644500px;}
.yd5{bottom:374.764500px;}
.y10f{bottom:375.018000px;}
.y5b{bottom:377.634000px;}
.y6d{bottom:382.117500px;}
.y121{bottom:385.662000px;}
.y3a{bottom:386.926500px;}
.y17{bottom:388.588500px;}
.y9f{bottom:389.418000px;}
.y151{bottom:389.589000px;}
.yea{bottom:390.322500px;}
.ybb{bottom:390.336000px;}
.y139{bottom:392.278500px;}
.y16c{bottom:393.325500px;}
.y7e{bottom:396.313500px;}
.yd4{bottom:396.433500px;}
.y10e{bottom:396.687000px;}
.y5a{bottom:399.303000px;}
.y120{bottom:407.329500px;}
.ye9{bottom:408.256500px;}
.y39{bottom:408.595500px;}
.y16{bottom:410.257500px;}
.y9e{bottom:411.087000px;}
.yba{bottom:412.005000px;}
.y180{bottom:414.993000px;}
.y7d{bottom:417.982500px;}
.y10d{bottom:418.356000px;}
.yd3{bottom:418.585500px;}
.y6c{bottom:418.729500px;}
.y59{bottom:420.972000px;}
.y150{bottom:426.201000px;}
.y11f{bottom:428.998500px;}
.y16b{bottom:429.937500px;}
.y38{bottom:430.264500px;}
.y15{bottom:431.925000px;}
.y9d{bottom:432.756000px;}
.yb9{bottom:433.674000px;}
.y17f{bottom:436.662000px;}
.y7c{bottom:439.651500px;}
.y10c{bottom:440.025000px;}
.y138{bottom:440.199000px;}
.yd2{bottom:440.253000px;}
.y58{bottom:442.639500px;}
.y14f{bottom:447.870000px;}
.y11e{bottom:450.667500px;}
.y16a{bottom:451.606500px;}
.y37{bottom:451.933500px;}
.y14{bottom:453.594000px;}
.y9c{bottom:454.425000px;}
.yb8{bottom:455.343000px;}
.y13e{bottom:456.090000px;}
.y6b{bottom:459.825000px;}
.y7b{bottom:461.320500px;}
.y137{bottom:461.868000px;}
.yd1{bottom:461.922000px;}
.y57{bottom:464.308500px;}
.y109{bottom:468.804000px;}
.y14e{bottom:469.539000px;}
.y10b{bottom:471.520500px;}
.y11d{bottom:472.336500px;}
.y169{bottom:473.275500px;}
.y36{bottom:473.602500px;}
.y13{bottom:475.263000px;}
.y9b{bottom:476.094000px;}
.yb7{bottom:477.012000px;}
.y10a{bottom:481.339500px;}
.y6a{bottom:481.494000px;}
.y7a{bottom:482.989500px;}
.y136{bottom:483.537000px;}
.y56{bottom:485.977500px;}
.yd0{bottom:489.640500px;}
.y11c{bottom:494.005500px;}
.y168{bottom:494.944500px;}
.y35{bottom:495.271500px;}
.y12{bottom:496.932000px;}
.y9a{bottom:497.763000px;}
.yb6{bottom:498.679500px;}
.y69{bottom:503.163000px;}
.y79{bottom:504.657000px;}
.y135{bottom:505.204500px;}
.y14d{bottom:506.152500px;}
.y55{bottom:507.646500px;}
.ycf{bottom:511.309500px;}
.y108{bottom:512.142000px;}
.y11b{bottom:515.674500px;}
.y17e{bottom:516.612000px;}
.y34{bottom:516.939000px;}
.y11{bottom:518.601000px;}
.y99{bottom:519.430500px;}
.yb5{bottom:520.348500px;}
.y68{bottom:524.832000px;}
.y78{bottom:526.326000px;}
.y134{bottom:526.873500px;}
.y14c{bottom:527.820000px;}
.y54{bottom:529.315500px;}
.y167{bottom:531.556500px;}
.yce{bottom:532.978500px;}
.y107{bottom:533.811000px;}
.y11a{bottom:537.342000px;}
.y17d{bottom:538.281000px;}
.y33{bottom:538.608000px;}
.y10{bottom:540.270000px;}
.y98{bottom:541.099500px;}
.yb4{bottom:542.017500px;}
.yf3{bottom:543.268500px;}
.y67{bottom:546.501000px;}
.ydc{bottom:547.767000px;}
.y77{bottom:547.995000px;}
.y133{bottom:548.542500px;}
.y14b{bottom:549.489000px;}
.y53{bottom:550.984500px;}
.y166{bottom:553.225500px;}
.ycd{bottom:554.647500px;}
.y106{bottom:555.478500px;}
.y119{bottom:559.011000px;}
.y32{bottom:560.277000px;}
.yf{bottom:561.937500px;}
.y97{bottom:562.768500px;}
.yb3{bottom:563.686500px;}
.y66{bottom:568.170000px;}
.y76{bottom:569.664000px;}
.y132{bottom:570.211500px;}
.y14a{bottom:571.158000px;}
.y165{bottom:574.894500px;}
.ycc{bottom:576.315000px;}
.y105{bottom:577.147500px;}
.y118{bottom:580.680000px;}
.y31{bottom:581.946000px;}
.ye{bottom:583.606500px;}
.y96{bottom:584.437500px;}
.yb2{bottom:585.355500px;}
.y52{bottom:586.102500px;}
.y65{bottom:589.837500px;}
.y75{bottom:591.333000px;}
.y131{bottom:591.880500px;}
.y164{bottom:596.563500px;}
.ycb{bottom:597.984000px;}
.y104{bottom:598.816500px;}
.y117{bottom:602.349000px;}
.y30{bottom:603.615000px;}
.yd{bottom:605.275500px;}
.y95{bottom:606.106500px;}
.y149{bottom:607.771500px;}
.yb1{bottom:611.506500px;}
.y74{bottom:613.002000px;}
.y130{bottom:613.549500px;}
.y64{bottom:615.990000px;}
.y17c{bottom:618.231000px;}
.y163{bottom:618.232500px;}
.yca{bottom:619.653000px;}
.y103{bottom:620.485500px;}
.y2f{bottom:625.282500px;}
.yc{bottom:626.944500px;}
.y94{bottom:627.775500px;}
.y148{bottom:629.439000px;}
.y51{bottom:634.669500px;}
.y12f{bottom:635.217000px;}
.y102{bottom:642.154500px;}
.y2e{bottom:646.951500px;}
.yb{bottom:648.613500px;}
.yc9{bottom:649.324500px;}
.y93{bottom:649.443000px;}
.y63{bottom:651.108000px;}
.y162{bottom:654.844500px;}
.y116{bottom:655.549500px;}
.y50{bottom:656.338500px;}
.y12e{bottom:656.886000px;}
.y101{bottom:663.822000px;}
.y2d{bottom:668.620500px;}
.ya{bottom:670.281000px;}
.yc8{bottom:670.993500px;}
.y92{bottom:671.112000px;}
.yb0{bottom:672.777000px;}
.y115{bottom:673.482000px;}
.y161{bottom:676.513500px;}
.y4f{bottom:678.007500px;}
.y12d{bottom:678.555000px;}
.y100{bottom:685.491000px;}
.y2c{bottom:690.289500px;}
.y9{bottom:691.950000px;}
.y91{bottom:692.781000px;}
.yc7{bottom:693.144000px;}
.yaf{bottom:694.446000px;}
.y160{bottom:698.182500px;}
.y4e{bottom:699.676500px;}
.y12c{bottom:700.224000px;}
.yff{bottom:707.160000px;}
.y147{bottom:709.390500px;}
.y2b{bottom:711.958500px;}
.y8{bottom:713.619000px;}
.y90{bottom:714.450000px;}
.yc6{bottom:714.813000px;}
.yae{bottom:716.115000px;}
.y17b{bottom:719.850000px;}
.y4d{bottom:721.345500px;}
.y12b{bottom:725.728500px;}
.yfe{bottom:728.829000px;}
.y146{bottom:731.058000px;}
.y2a{bottom:733.627500px;}
.y15f{bottom:734.794500px;}
.y8f{bottom:736.119000px;}
.yc5{bottom:736.963500px;}
.yad{bottom:737.784000px;}
.y17a{bottom:741.519000px;}
.y4c{bottom:743.013000px;}
.y7{bottom:743.574000px;}
.yfd{bottom:750.498000px;}
.y145{bottom:752.727000px;}
.y29{bottom:755.295000px;}
.y15e{bottom:756.463500px;}
.yc4{bottom:758.632500px;}
.yac{bottom:759.451500px;}
.y4b{bottom:764.682000px;}
.yfc{bottom:772.167000px;}
.y144{bottom:774.396000px;}
.y28{bottom:776.964000px;}
.y15d{bottom:778.132500px;}
.yab{bottom:785.604000px;}
.y4a{bottom:786.351000px;}
.ye8{bottom:790.087500px;}
.yfb{bottom:793.834500px;}
.y8e{bottom:794.529000px;}
.y27{bottom:798.633000px;}
.y179{bottom:799.800000px;}
.y49{bottom:808.020000px;}
.y143{bottom:811.008000px;}
.ye7{bottom:811.756500px;}
.y15c{bottom:814.744500px;}
.y8d{bottom:814.852500px;}
.yfa{bottom:815.503500px;}
.y26{bottom:820.302000px;}
.y178{bottom:821.469000px;}
.yaa{bottom:825.205500px;}
.y48{bottom:829.689000px;}
.y142{bottom:832.677000px;}
.ye6{bottom:833.424000px;}
.y8c{bottom:835.176000px;}
.y15b{bottom:836.413500px;}
.y6{bottom:836.605500px;}
.yf9{bottom:837.172500px;}
.y25{bottom:841.971000px;}
.y177{bottom:843.138000px;}
.ya9{bottom:846.874500px;}
.y5{bottom:849.115500px;}
.y47{bottom:851.358000px;}
.y141{bottom:854.346000px;}
.ye5{bottom:855.093000px;}
.y8b{bottom:855.499500px;}
.y15a{bottom:858.082500px;}
.y24{bottom:863.640000px;}
.ya8{bottom:868.543500px;}
.y4{bottom:872.472000px;}
.y46{bottom:873.025500px;}
.y8a{bottom:875.823000px;}
.ye4{bottom:876.762000px;}
.y159{bottom:879.751500px;}
.y23{bottom:885.307500px;}
.y140{bottom:889.464000px;}
.ya7{bottom:890.211000px;}
.yf8{bottom:892.516500px;}
.y45{bottom:894.694500px;}
.y89{bottom:896.146500px;}
.ye3{bottom:898.431000px;}
.y3{bottom:899.925000px;}
.y176{bottom:901.419000px;}
.y22{bottom:906.976500px;}
.ya6{bottom:911.880000px;}
.yf7{bottom:914.184000px;}
.y44{bottom:916.363500px;}
.ye2{bottom:920.100000px;}
.y175{bottom:923.088000px;}
.y87{bottom:925.453500px;}
.ya5{bottom:933.549000px;}
.y86{bottom:935.589000px;}
.y43{bottom:938.032500px;}
.y21{bottom:942.094500px;}
.yf6{bottom:944.836500px;}
.y88{bottom:945.777000px;}
.ye1{bottom:946.251000px;}
.y2{bottom:948.493500px;}
.ya4{bottom:955.218000px;}
.y42{bottom:959.701500px;}
.y1{bottom:981.370500px;}
.y85{bottom:986.749500px;}
.hf{height:24.871000px;}
.h9{height:28.327576px;}
.h3{height:29.080746px;}
.hd{height:35.913271px;}
.h4{height:42.859105px;}
.h10{height:44.080099px;}
.h7{height:44.891476px;}
.he{height:48.848947px;}
.hc{height:49.156405px;}
.h11{height:49.853184px;}
.h5{height:50.283571px;}
.ha{height:53.870131px;}
.h6{height:54.946099px;}
.h8{height:61.941271px;}
.h2{height:61.947271px;}
.h1{height:73.131019px;}
.hb{height:89.908405px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:166.281000px;}
.x32{left:175.059000px;}
.x31{left:180.516000px;}
.xa{left:186.471000px;}
.x15{left:187.746000px;}
.x8{left:193.174500px;}
.x3{left:197.112000px;}
.x33{left:202.368000px;}
.xb{left:210.178500px;}
.x2c{left:220.132500px;}
.x14{left:225.385500px;}
.x2{left:227.511000px;}
.xd{left:229.339500px;}
.x2d{left:235.369500px;}
.x6{left:236.400000px;}
.x4{left:248.052000px;}
.x13{left:250.918500px;}
.x28{left:253.089000px;}
.x18{left:260.206500px;}
.x2b{left:268.009500px;}
.x29{left:282.378000px;}
.x2a{left:287.860500px;}
.x1a{left:301.588500px;}
.x17{left:302.820000px;}
.x1{left:315.606000px;}
.x16{left:327.975000px;}
.x5{left:335.476500px;}
.xe{left:339.039000px;}
.x1b{left:342.561000px;}
.xc{left:352.089000px;}
.x2e{left:357.433500px;}
.x1c{left:371.866500px;}
.x1d{left:392.191500px;}
.x1e{left:412.515000px;}
.xf{left:418.078500px;}
.x1f{left:432.838500px;}
.x10{left:441.699000px;}
.x19{left:448.911000px;}
.x9{left:453.300000px;}
.x20{left:473.485500px;}
.x2f{left:476.278500px;}
.x21{left:493.809000px;}
.x30{left:510.361500px;}
.x22{left:514.134000px;}
.x23{left:534.457500px;}
.x24{left:554.781000px;}
.x11{left:565.888500px;}
.x25{left:575.104500px;}
.x26{left:595.428000px;}
.x12{left:596.950500px;}
.x27{left:615.751500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v4{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.v3{vertical-align:36.224000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.654926pt;}
.ls0{letter-spacing:2.656426pt;}
.ls2{letter-spacing:2.656857pt;}
.ls5{letter-spacing:2.660350pt;}
.ls8{letter-spacing:2.661759pt;}
.lsa{letter-spacing:17.120426pt;}
.lsb{letter-spacing:19.447125pt;}
.lsc{letter-spacing:21.104426pt;}
.ls7{letter-spacing:26.078276pt;}
.ls9{letter-spacing:29.669759pt;}
.ls4{letter-spacing:31.056426pt;}
.ls6{letter-spacing:31.210291pt;}
.wsc3{word-spacing:-40.590295pt;}
.wsd5{word-spacing:-31.874157pt;}
.ws2b{word-spacing:-31.211042pt;}
.ws78{word-spacing:-28.928024pt;}
.ws85{word-spacing:-26.561620pt;}
.wsc1{word-spacing:-22.575574pt;}
.wse9{word-spacing:-17.374891pt;}
.ws1e{word-spacing:-17.183607pt;}
.wscb{word-spacing:-16.801041pt;}
.ws8d{word-spacing:-16.737280pt;}
.wsc9{word-spacing:-16.545997pt;}
.wsd9{word-spacing:-16.482236pt;}
.wse{word-spacing:-16.418475pt;}
.wsda{word-spacing:-16.354714pt;}
.ws8c{word-spacing:-16.290953pt;}
.ws50{word-spacing:-16.227191pt;}
.wsd8{word-spacing:-15.929243pt;}
.ws45{word-spacing:-15.908386pt;}
.ws47{word-spacing:-15.844625pt;}
.ws90{word-spacing:-15.780864pt;}
.ws62{word-spacing:-15.653342pt;}
.ws6b{word-spacing:-15.589581pt;}
.ws10e{word-spacing:-15.525820pt;}
.ws76{word-spacing:-15.334537pt;}
.ws36{word-spacing:-15.270775pt;}
.ws37{word-spacing:-15.207014pt;}
.ws7c{word-spacing:-15.143253pt;}
.ws66{word-spacing:-15.079492pt;}
.wsbf{word-spacing:-15.015731pt;}
.wsaa{word-spacing:-14.951970pt;}
.ws10f{word-spacing:-14.760687pt;}
.ws46{word-spacing:-14.594908pt;}
.ws12{word-spacing:-14.569404pt;}
.ws93{word-spacing:-14.441882pt;}
.ws63{word-spacing:-14.314359pt;}
.ws30{word-spacing:-14.186837pt;}
.wsa1{word-spacing:-14.123076pt;}
.ws5a{word-spacing:-14.059315pt;}
.wsd{word-spacing:-13.931793pt;}
.ws111{word-spacing:-13.868032pt;}
.ws117{word-spacing:-13.829775pt;}
.wsa8{word-spacing:-13.740510pt;}
.ws74{word-spacing:-13.676749pt;}
.ws6a{word-spacing:-13.612988pt;}
.ws6c{word-spacing:-13.549227pt;}
.ws110{word-spacing:-13.485466pt;}
.wsa5{word-spacing:-13.421705pt;}
.ws65{word-spacing:-13.357943pt;}
.ws2d{word-spacing:-13.230421pt;}
.wsbc{word-spacing:-13.166660pt;}
.wsbb{word-spacing:-13.102899pt;}
.ws5e{word-spacing:-12.975377pt;}
.ws4{word-spacing:-12.911616pt;}
.ws8a{word-spacing:-12.847855pt;}
.wsc0{word-spacing:-12.784094pt;}
.ws112{word-spacing:-12.745837pt;}
.ws9b{word-spacing:-12.656572pt;}
.ws5c{word-spacing:-12.529050pt;}
.ws2e{word-spacing:-12.465289pt;}
.ws48{word-spacing:-12.401527pt;}
.ws40{word-spacing:-12.337766pt;}
.ws9d{word-spacing:-12.274005pt;}
.wsca{word-spacing:-12.210244pt;}
.wsf1{word-spacing:-12.171988pt;}
.wsa6{word-spacing:-12.146483pt;}
.ws53{word-spacing:-12.082722pt;}
.ws32{word-spacing:-12.018961pt;}
.ws5b{word-spacing:-11.955200pt;}
.ws95{word-spacing:-11.891439pt;}
.wsc2{word-spacing:-11.827678pt;}
.ws3a{word-spacing:-11.763917pt;}
.wsac{word-spacing:-11.700156pt;}
.ws1f{word-spacing:-11.636395pt;}
.ws10b{word-spacing:-11.598138pt;}
.wsa4{word-spacing:-11.572634pt;}
.wsb1{word-spacing:-11.508873pt;}
.ws104{word-spacing:-11.406855pt;}
.ws1d{word-spacing:-11.317589pt;}
.ws8b{word-spacing:-11.253828pt;}
.ws5d{word-spacing:-11.190067pt;}
.ws82{word-spacing:-11.126306pt;}
.wsa{word-spacing:-11.062545pt;}
.ws9{word-spacing:-10.935023pt;}
.ws67{word-spacing:-10.871262pt;}
.ws4a{word-spacing:-10.807501pt;}
.ws87{word-spacing:-10.743740pt;}
.ws70{word-spacing:-10.679979pt;}
.ws44{word-spacing:-10.616218pt;}
.ws2a{word-spacing:-10.552457pt;}
.ws8{word-spacing:-10.488695pt;}
.ws1{word-spacing:-10.424934pt;}
.ws60{word-spacing:-10.361173pt;}
.wsb6{word-spacing:-10.297412pt;}
.ws91{word-spacing:-10.233651pt;}
.ws10{word-spacing:-10.169890pt;}
.ws80{word-spacing:-10.106129pt;}
.ws1b{word-spacing:-10.042368pt;}
.ws43{word-spacing:-9.978607pt;}
.ws42{word-spacing:-9.914846pt;}
.wse5{word-spacing:-9.851085pt;}
.ws52{word-spacing:-9.787324pt;}
.wsa0{word-spacing:-9.723563pt;}
.wsfa{word-spacing:-9.685306pt;}
.ws79{word-spacing:-9.669826pt;}
.ws8e{word-spacing:-9.659802pt;}
.ws11f{word-spacing:-9.621545pt;}
.ws7a{word-spacing:-9.611644pt;}
.wsf{word-spacing:-9.596041pt;}
.ws86{word-spacing:-9.557784pt;}
.wsa9{word-spacing:-9.532279pt;}
.ws100{word-spacing:-9.494023pt;}
.ws5f{word-spacing:-9.468518pt;}
.ws34{word-spacing:-9.404757pt;}
.wsc{word-spacing:-9.340996pt;}
.ws9e{word-spacing:-9.277235pt;}
.wse4{word-spacing:-9.238979pt;}
.ws33{word-spacing:-9.213474pt;}
.wsd7{word-spacing:-9.149713pt;}
.ws3d{word-spacing:-9.085952pt;}
.ws13{word-spacing:-9.022191pt;}
.wsd4{word-spacing:-8.958430pt;}
.wsc8{word-spacing:-8.894669pt;}
.ws16{word-spacing:-8.868042pt;}
.ws118{word-spacing:-8.856412pt;}
.ws6d{word-spacing:-8.830908pt;}
.ws2f{word-spacing:-8.767147pt;}
.wsae{word-spacing:-8.703386pt;}
.ws81{word-spacing:-8.639625pt;}
.ws2c{word-spacing:-8.575863pt;}
.ws9c{word-spacing:-8.512102pt;}
.ws97{word-spacing:-8.448341pt;}
.ws25{word-spacing:-8.384580pt;}
.ws4c{word-spacing:-8.320819pt;}
.wsa3{word-spacing:-8.257058pt;}
.ws11d{word-spacing:-8.218801pt;}
.wsea{word-spacing:-8.193297pt;}
.ws6e{word-spacing:-8.129536pt;}
.wsf4{word-spacing:-8.091279pt;}
.ws51{word-spacing:-8.002014pt;}
.wsab{word-spacing:-7.938253pt;}
.ws20{word-spacing:-7.874492pt;}
.ws28{word-spacing:-7.810731pt;}
.ws98{word-spacing:-7.746970pt;}
.ws26{word-spacing:-7.683209pt;}
.ws10a{word-spacing:-7.644952pt;}
.wsb5{word-spacing:-7.592830pt;}
.wsa2{word-spacing:-7.528025pt;}
.wsff{word-spacing:-7.491925pt;}
.ws7e{word-spacing:-7.428164pt;}
.wse7{word-spacing:-7.364403pt;}
.ws35{word-spacing:-7.300642pt;}
.ws10d{word-spacing:-7.198624pt;}
.ws11b{word-spacing:-7.145871pt;}
.wsa7{word-spacing:-7.109359pt;}
.ws68{word-spacing:-7.045598pt;}
.wscf{word-spacing:-6.918076pt;}
.wsd1{word-spacing:-6.854315pt;}
.ws10c{word-spacing:-6.816058pt;}
.ws7{word-spacing:-6.790554pt;}
.wsdb{word-spacing:-6.726793pt;}
.ws69{word-spacing:-6.663031pt;}
.wsd2{word-spacing:-6.535509pt;}
.ws8f{word-spacing:-6.471748pt;}
.ws4f{word-spacing:-6.407987pt;}
.ws72{word-spacing:-6.344226pt;}
.ws108{word-spacing:-6.303551pt;}
.wse1{word-spacing:-6.280465pt;}
.ws3b{word-spacing:-6.216704pt;}
.ws121{word-spacing:-6.178447pt;}
.ws3e{word-spacing:-6.152943pt;}
.ws29{word-spacing:-6.089182pt;}
.ws4d{word-spacing:-6.025421pt;}
.ws5{word-spacing:-5.961660pt;}
.ws1a{word-spacing:-5.897899pt;}
.wsb4{word-spacing:-5.834138pt;}
.ws11e{word-spacing:-5.795881pt;}
.ws96{word-spacing:-5.770377pt;}
.wsad{word-spacing:-5.723404pt;}
.ws22{word-spacing:-5.706615pt;}
.ws11{word-spacing:-5.642854pt;}
.ws1c{word-spacing:-5.579093pt;}
.ws9f{word-spacing:-5.515332pt;}
.wsf2{word-spacing:-5.480818pt;}
.ws24{word-spacing:-5.451571pt;}
.wsf3{word-spacing:-5.387810pt;}
.wse8{word-spacing:-5.324049pt;}
.ws83{word-spacing:-5.260288pt;}
.ws64{word-spacing:-5.132766pt;}
.ws73{word-spacing:-5.069005pt;}
.ws6{word-spacing:-5.005244pt;}
.wscd{word-spacing:-4.989270pt;}
.wsee{word-spacing:-4.966987pt;}
.ws107{word-spacing:-4.903226pt;}
.wsf0{word-spacing:-4.872177pt;}
.ws105{word-spacing:-4.813961pt;}
.ws6f{word-spacing:-4.750199pt;}
.ws103{word-spacing:-4.711943pt;}
.ws116{word-spacing:-4.686438pt;}
.ws94{word-spacing:-4.622677pt;}
.ws55{word-spacing:-4.558916pt;}
.ws7f{word-spacing:-4.495155pt;}
.ws75{word-spacing:-4.431394pt;}
.wsfe{word-spacing:-4.367633pt;}
.ws41{word-spacing:-4.303872pt;}
.ws89{word-spacing:-4.240111pt;}
.ws115{word-spacing:-4.201854pt;}
.ws23{word-spacing:-4.176350pt;}
.ws39{word-spacing:-4.112589pt;}
.ws3f{word-spacing:-4.048828pt;}
.wsfd{word-spacing:-4.010571pt;}
.wsbe{word-spacing:-3.793783pt;}
.wsf9{word-spacing:-3.764098pt;}
.ws56{word-spacing:-3.730022pt;}
.wsd0{word-spacing:-3.666261pt;}
.wsdc{word-spacing:-3.602500pt;}
.ws101{word-spacing:-3.538739pt;}
.wsde{word-spacing:-3.447255pt;}
.ws21{word-spacing:-3.411217pt;}
.wsdf{word-spacing:-3.181677pt;}
.ws49{word-spacing:-3.156173pt;}
.wsf6{word-spacing:-3.028651pt;}
.wsb7{word-spacing:-2.964890pt;}
.wsd6{word-spacing:-2.941370pt;}
.ws92{word-spacing:-2.901129pt;}
.wsb{word-spacing:-2.837367pt;}
.ws84{word-spacing:-2.773606pt;}
.ws27{word-spacing:-2.709845pt;}
.ws4b{word-spacing:-2.646084pt;}
.wsec{word-spacing:-2.582323pt;}
.wse2{word-spacing:-2.518562pt;}
.ws3c{word-spacing:-2.454801pt;}
.wsd3{word-spacing:-2.391040pt;}
.wsed{word-spacing:-2.352783pt;}
.wseb{word-spacing:-2.263518pt;}
.ws113{word-spacing:-2.199757pt;}
.ws54{word-spacing:-2.135996pt;}
.ws31{word-spacing:-2.072235pt;}
.wsaf{word-spacing:-2.008474pt;}
.wsf5{word-spacing:-1.753429pt;}
.wse0{word-spacing:-1.689668pt;}
.wse6{word-spacing:-1.562146pt;}
.ws120{word-spacing:-1.434624pt;}
.wsbd{word-spacing:-1.370863pt;}
.ws61{word-spacing:-1.115819pt;}
.ws114{word-spacing:-1.077562pt;}
.ws9a{word-spacing:-0.988297pt;}
.ws99{word-spacing:-0.924535pt;}
.wse3{word-spacing:-0.860774pt;}
.wsef{word-spacing:-0.777551pt;}
.ws38{word-spacing:-0.733252pt;}
.ws57{word-spacing:-0.605730pt;}
.wsb3{word-spacing:-0.541969pt;}
.ws7d{word-spacing:-0.350686pt;}
.wsb2{word-spacing:-0.223164pt;}
.ws88{word-spacing:-0.095599pt;}
.ws3{word-spacing:-0.063761pt;}
.ws4e{word-spacing:-0.053134pt;}
.wscc{word-spacing:-0.037194pt;}
.wsc6{word-spacing:-0.031881pt;}
.ws18{word-spacing:0.000000pt;}
.ws59{word-spacing:0.006376pt;}
.ws71{word-spacing:0.669491pt;}
.ws11a{word-spacing:0.988297pt;}
.wsf7{word-spacing:1.069916pt;}
.wsce{word-spacing:1.307102pt;}
.ws119{word-spacing:2.263518pt;}
.ws106{word-spacing:11.685437pt;}
.ws102{word-spacing:12.284201pt;}
.wsc5{word-spacing:14.091196pt;}
.wsfc{word-spacing:14.516567pt;}
.wsdd{word-spacing:15.844625pt;}
.ws109{word-spacing:17.255146pt;}
.ws15{word-spacing:17.628800pt;}
.ws17{word-spacing:17.669002pt;}
.ws2{word-spacing:18.968790pt;}
.wsc4{word-spacing:20.316786pt;}
.wsf8{word-spacing:20.717798pt;}
.wsfb{word-spacing:20.727407pt;}
.ws14{word-spacing:21.763154pt;}
.ws58{word-spacing:23.846639pt;}
.ws0{word-spacing:28.646426pt;}
.ws11c{word-spacing:31.193696pt;}
.wsba{word-spacing:32.550025pt;}
.ws19{word-spacing:35.769958pt;}
.ws77{word-spacing:48.872500pt;}
.wsb9{word-spacing:79.350647pt;}
.wsb8{word-spacing:126.151270pt;}
.ws7b{word-spacing:232.483103pt;}
.wsb0{word-spacing:338.083191pt;}
.wsc7{word-spacing:730.081065pt;}
._1f{margin-left:-6.126913pt;}
._1{margin-left:-5.142455pt;}
._3{margin-left:-4.091308pt;}
._0{margin-left:-2.387202pt;}
._2{margin-left:-0.999366pt;}
._7{width:1.721549pt;}
._1b{width:2.656693pt;}
._4c{width:3.860938pt;}
._5{width:6.173781pt;}
._b{width:7.354518pt;}
._11{width:14.948132pt;}
._1c{width:15.904548pt;}
._d{width:16.860964pt;}
._20{width:18.596975pt;}
._18{width:19.935022pt;}
._21{width:21.706805pt;}
._c{width:22.790743pt;}
._17{width:23.683398pt;}
._4{width:24.748916pt;}
._6{width:26.460843pt;}
._8{width:28.188242pt;}
._1d{width:29.138807pt;}
._e{width:30.222746pt;}
._19{width:31.533241pt;}
._1a{width:32.589136pt;}
._15{width:33.857126pt;}
._2f{width:34.877303pt;}
._12{width:36.030854pt;}
._53{width:37.208420pt;}
._a{width:38.773960pt;}
._22{width:39.914428pt;}
._2d{width:41.699738pt;}
._f{width:42.684196pt;}
._9{width:44.081089pt;}
._14{width:46.234004pt;}
._1e{width:47.190420pt;}
._13{width:48.591784pt;}
._52{width:49.670555pt;}
._16{width:51.205987pt;}
._50{width:52.128183pt;}
._4e{width:54.862560pt;}
._2e{width:56.045978pt;}
._47{width:57.073386pt;}
._4d{width:62.863780pt;}
._42{width:64.176345pt;}
._51{width:67.396753pt;}
._4f{width:69.060997pt;}
._54{width:70.428250pt;}
._39{width:71.645785pt;}
._3b{width:79.476430pt;}
._44{width:86.401818pt;}
._49{width:94.919930pt;}
._4b{width:117.957973pt;}
._4a{width:126.183151pt;}
._48{width:144.951096pt;}
._2a{width:163.165861pt;}
._35{width:189.159522pt;}
._3f{width:214.807452pt;}
._28{width:242.734748pt;}
._38{width:249.020135pt;}
._41{width:257.745669pt;}
._27{width:261.411127pt;}
._43{width:273.803865pt;}
._46{width:278.692887pt;}
._2b{width:335.091820pt;}
._34{width:340.504191pt;}
._24{width:346.531198pt;}
._23{width:349.614837pt;}
._29{width:359.040299pt;}
._2c{width:379.542767pt;}
._45{width:397.602895pt;}
._37{width:400.116697pt;}
._25{width:403.200336pt;}
._33{width:449.711555pt;}
._36{width:457.484018pt;}
._26{width:469.469482pt;}
._3a{width:536.719098pt;}
._31{width:557.440465pt;}
._3c{width:563.691577pt;}
._3d{width:570.612017pt;}
._3e{width:826.589780pt;}
._40{width:994.352009pt;}
._32{width:1003.919487pt;}
._10{width:1114.900281pt;}
._30{width:1671.566775pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:44.200000pt;}
.yde{bottom:57.870667pt;}
.yf4{bottom:72.428000pt;}
.ydd{bottom:86.098667pt;}
.y20{bottom:119.817333pt;}
.y1f{bottom:159.668000pt;}
.y114{bottom:164.488000pt;}
.ye0{bottom:167.638667pt;}
.y174{bottom:168.966667pt;}
.y12a{bottom:169.460000pt;}
.yf2{bottom:172.585333pt;}
.y1e{bottom:175.608000pt;}
.yc3{bottom:176.577333pt;}
.y73{bottom:178.790667pt;}
.ydb{bottom:178.929333pt;}
.y113{bottom:180.428000pt;}
.y84{bottom:181.585333pt;}
.y13f{bottom:181.889333pt;}
.y62{bottom:182.112000pt;}
.y173{bottom:188.228000pt;}
.y129{bottom:188.721333pt;}
.yf1{bottom:191.845333pt;}
.yc2{bottom:192.517333pt;}
.y72{bottom:194.730667pt;}
.y61{bottom:198.052000pt;}
.y158{bottom:198.190667pt;}
.y83{bottom:200.846667pt;}
.yda{bottom:207.541333pt;}
.y128{bottom:207.982667pt;}
.yc1{bottom:208.457333pt;}
.y41{bottom:209.108000pt;}
.yf0{bottom:211.106667pt;}
.y157{bottom:217.450667pt;}
.y82{bottom:220.108000pt;}
.y172{bottom:220.772000pt;}
.y1d{bottom:221.745333pt;}
.y127{bottom:227.244000pt;}
.y40{bottom:228.368000pt;}
.yef{bottom:230.368000pt;}
.y71{bottom:236.048000pt;}
.y156{bottom:236.712000pt;}
.y60{bottom:239.369333pt;}
.y171{bottom:240.033333pt;}
.y1c{bottom:241.006667pt;}
.y126{bottom:246.505333pt;}
.ya3{bottom:247.049333pt;}
.y3f{bottom:247.629333pt;}
.yee{bottom:249.629333pt;}
.yc0{bottom:250.660000pt;}
.yd9{bottom:255.222667pt;}
.y70{bottom:255.309333pt;}
.y155{bottom:255.973333pt;}
.y5f{bottom:258.630667pt;}
.y170{bottom:259.294667pt;}
.y13d{bottom:260.268000pt;}
.y112{bottom:261.940000pt;}
.y125{bottom:265.765333pt;}
.y3e{bottom:266.890667pt;}
.y1b{bottom:268.366667pt;}
.yed{bottom:268.890667pt;}
.ybf{bottom:269.921333pt;}
.y81{bottom:270.585333pt;}
.yd8{bottom:274.482667pt;}
.y154{bottom:275.234667pt;}
.y5e{bottom:277.890667pt;}
.y13c{bottom:279.529333pt;}
.y124{bottom:285.026667pt;}
.y3d{bottom:286.152000pt;}
.y1a{bottom:287.628000pt;}
.y6f{bottom:287.853333pt;}
.yec{bottom:288.152000pt;}
.ya2{bottom:288.366667pt;}
.ybe{bottom:289.182667pt;}
.y16f{bottom:291.838667pt;}
.yd7{bottom:294.173333pt;}
.y111{bottom:294.826667pt;}
.y5d{bottom:297.152000pt;}
.y13b{bottom:298.789333pt;}
.y123{bottom:304.288000pt;}
.y3c{bottom:305.413333pt;}
.y19{bottom:306.889333pt;}
.yeb{bottom:307.412000pt;}
.ya1{bottom:307.628000pt;}
.y153{bottom:307.778667pt;}
.ybd{bottom:308.444000pt;}
.y16e{bottom:311.100000pt;}
.yd6{bottom:313.434667pt;}
.y80{bottom:313.757333pt;}
.ydf{bottom:313.772000pt;}
.y110{bottom:314.088000pt;}
.y5c{bottom:316.413333pt;}
.y13a{bottom:318.050667pt;}
.y6e{bottom:320.398667pt;}
.y122{bottom:323.549333pt;}
.y3b{bottom:324.674667pt;}
.y18{bottom:326.150667pt;}
.ya0{bottom:326.889333pt;}
.y152{bottom:327.040000pt;}
.ybc{bottom:327.704000pt;}
.y16d{bottom:330.361333pt;}
.y7f{bottom:333.017333pt;}
.yd5{bottom:333.124000pt;}
.y10f{bottom:333.349333pt;}
.y5b{bottom:335.674667pt;}
.y6d{bottom:339.660000pt;}
.y121{bottom:342.810667pt;}
.y3a{bottom:343.934667pt;}
.y17{bottom:345.412000pt;}
.y9f{bottom:346.149333pt;}
.y151{bottom:346.301333pt;}
.yea{bottom:346.953333pt;}
.ybb{bottom:346.965333pt;}
.y139{bottom:348.692000pt;}
.y16c{bottom:349.622667pt;}
.y7e{bottom:352.278667pt;}
.yd4{bottom:352.385333pt;}
.y10e{bottom:352.610667pt;}
.y5a{bottom:354.936000pt;}
.y120{bottom:362.070667pt;}
.ye9{bottom:362.894667pt;}
.y39{bottom:363.196000pt;}
.y16{bottom:364.673333pt;}
.y9e{bottom:365.410667pt;}
.yba{bottom:366.226667pt;}
.y180{bottom:368.882667pt;}
.y7d{bottom:371.540000pt;}
.y10d{bottom:371.872000pt;}
.yd3{bottom:372.076000pt;}
.y6c{bottom:372.204000pt;}
.y59{bottom:374.197333pt;}
.y150{bottom:378.845333pt;}
.y11f{bottom:381.332000pt;}
.y16b{bottom:382.166667pt;}
.y38{bottom:382.457333pt;}
.y15{bottom:383.933333pt;}
.y9d{bottom:384.672000pt;}
.yb9{bottom:385.488000pt;}
.y17f{bottom:388.144000pt;}
.y7c{bottom:390.801333pt;}
.y10c{bottom:391.133333pt;}
.y138{bottom:391.288000pt;}
.yd2{bottom:391.336000pt;}
.y58{bottom:393.457333pt;}
.y14f{bottom:398.106667pt;}
.y11e{bottom:400.593333pt;}
.y16a{bottom:401.428000pt;}
.y37{bottom:401.718667pt;}
.y14{bottom:403.194667pt;}
.y9c{bottom:403.933333pt;}
.yb8{bottom:404.749333pt;}
.y13e{bottom:405.413333pt;}
.y6b{bottom:408.733333pt;}
.y7b{bottom:410.062667pt;}
.y137{bottom:410.549333pt;}
.yd1{bottom:410.597333pt;}
.y57{bottom:412.718667pt;}
.y109{bottom:416.714667pt;}
.y14e{bottom:417.368000pt;}
.y10b{bottom:419.129333pt;}
.y11d{bottom:419.854667pt;}
.y169{bottom:420.689333pt;}
.y36{bottom:420.980000pt;}
.y13{bottom:422.456000pt;}
.y9b{bottom:423.194667pt;}
.yb7{bottom:424.010667pt;}
.y10a{bottom:427.857333pt;}
.y6a{bottom:427.994667pt;}
.y7a{bottom:429.324000pt;}
.y136{bottom:429.810667pt;}
.y56{bottom:431.980000pt;}
.yd0{bottom:435.236000pt;}
.y11c{bottom:439.116000pt;}
.y168{bottom:439.950667pt;}
.y35{bottom:440.241333pt;}
.y12{bottom:441.717333pt;}
.y9a{bottom:442.456000pt;}
.yb6{bottom:443.270667pt;}
.y69{bottom:447.256000pt;}
.y79{bottom:448.584000pt;}
.y135{bottom:449.070667pt;}
.y14d{bottom:449.913333pt;}
.y55{bottom:451.241333pt;}
.ycf{bottom:454.497333pt;}
.y108{bottom:455.237333pt;}
.y11b{bottom:458.377333pt;}
.y17e{bottom:459.210667pt;}
.y34{bottom:459.501333pt;}
.y11{bottom:460.978667pt;}
.y99{bottom:461.716000pt;}
.yb5{bottom:462.532000pt;}
.y68{bottom:466.517333pt;}
.y78{bottom:467.845333pt;}
.y134{bottom:468.332000pt;}
.y14c{bottom:469.173333pt;}
.y54{bottom:470.502667pt;}
.y167{bottom:472.494667pt;}
.yce{bottom:473.758667pt;}
.y107{bottom:474.498667pt;}
.y11a{bottom:477.637333pt;}
.y17d{bottom:478.472000pt;}
.y33{bottom:478.762667pt;}
.y10{bottom:480.240000pt;}
.y98{bottom:480.977333pt;}
.yb4{bottom:481.793333pt;}
.yf3{bottom:482.905333pt;}
.y67{bottom:485.778667pt;}
.ydc{bottom:486.904000pt;}
.y77{bottom:487.106667pt;}
.y133{bottom:487.593333pt;}
.y14b{bottom:488.434667pt;}
.y53{bottom:489.764000pt;}
.y166{bottom:491.756000pt;}
.ycd{bottom:493.020000pt;}
.y106{bottom:493.758667pt;}
.y119{bottom:496.898667pt;}
.y32{bottom:498.024000pt;}
.yf{bottom:499.500000pt;}
.y97{bottom:500.238667pt;}
.yb3{bottom:501.054667pt;}
.y66{bottom:505.040000pt;}
.y76{bottom:506.368000pt;}
.y132{bottom:506.854667pt;}
.y14a{bottom:507.696000pt;}
.y165{bottom:511.017333pt;}
.ycc{bottom:512.280000pt;}
.y105{bottom:513.020000pt;}
.y118{bottom:516.160000pt;}
.y31{bottom:517.285333pt;}
.ye{bottom:518.761333pt;}
.y96{bottom:519.500000pt;}
.yb2{bottom:520.316000pt;}
.y52{bottom:520.980000pt;}
.y65{bottom:524.300000pt;}
.y75{bottom:525.629333pt;}
.y131{bottom:526.116000pt;}
.y164{bottom:530.278667pt;}
.ycb{bottom:531.541333pt;}
.y104{bottom:532.281333pt;}
.y117{bottom:535.421333pt;}
.y30{bottom:536.546667pt;}
.yd{bottom:538.022667pt;}
.y95{bottom:538.761333pt;}
.y149{bottom:540.241333pt;}
.yb1{bottom:543.561333pt;}
.y74{bottom:544.890667pt;}
.y130{bottom:545.377333pt;}
.y64{bottom:547.546667pt;}
.y17c{bottom:549.538667pt;}
.y163{bottom:549.540000pt;}
.yca{bottom:550.802667pt;}
.y103{bottom:551.542667pt;}
.y2f{bottom:555.806667pt;}
.yc{bottom:557.284000pt;}
.y94{bottom:558.022667pt;}
.y148{bottom:559.501333pt;}
.y51{bottom:564.150667pt;}
.y12f{bottom:564.637333pt;}
.y102{bottom:570.804000pt;}
.y2e{bottom:575.068000pt;}
.yb{bottom:576.545333pt;}
.yc9{bottom:577.177333pt;}
.y93{bottom:577.282667pt;}
.y63{bottom:578.762667pt;}
.y162{bottom:582.084000pt;}
.y116{bottom:582.710667pt;}
.y50{bottom:583.412000pt;}
.y12e{bottom:583.898667pt;}
.y101{bottom:590.064000pt;}
.y2d{bottom:594.329333pt;}
.ya{bottom:595.805333pt;}
.yc8{bottom:596.438667pt;}
.y92{bottom:596.544000pt;}
.yb0{bottom:598.024000pt;}
.y115{bottom:598.650667pt;}
.y161{bottom:601.345333pt;}
.y4f{bottom:602.673333pt;}
.y12d{bottom:603.160000pt;}
.y100{bottom:609.325333pt;}
.y2c{bottom:613.590667pt;}
.y9{bottom:615.066667pt;}
.y91{bottom:615.805333pt;}
.yc7{bottom:616.128000pt;}
.yaf{bottom:617.285333pt;}
.y160{bottom:620.606667pt;}
.y4e{bottom:621.934667pt;}
.y12c{bottom:622.421333pt;}
.yff{bottom:628.586667pt;}
.y147{bottom:630.569333pt;}
.y2b{bottom:632.852000pt;}
.y8{bottom:634.328000pt;}
.y90{bottom:635.066667pt;}
.yc6{bottom:635.389333pt;}
.yae{bottom:636.546667pt;}
.y17b{bottom:639.866667pt;}
.y4d{bottom:641.196000pt;}
.y12b{bottom:645.092000pt;}
.yfe{bottom:647.848000pt;}
.y146{bottom:649.829333pt;}
.y2a{bottom:652.113333pt;}
.y15f{bottom:653.150667pt;}
.y8f{bottom:654.328000pt;}
.yc5{bottom:655.078667pt;}
.yad{bottom:655.808000pt;}
.y17a{bottom:659.128000pt;}
.y4c{bottom:660.456000pt;}
.y7{bottom:660.954667pt;}
.yfd{bottom:667.109333pt;}
.y145{bottom:669.090667pt;}
.y29{bottom:671.373333pt;}
.y15e{bottom:672.412000pt;}
.yc4{bottom:674.340000pt;}
.yac{bottom:675.068000pt;}
.y4b{bottom:679.717333pt;}
.yfc{bottom:686.370667pt;}
.y144{bottom:688.352000pt;}
.y28{bottom:690.634667pt;}
.y15d{bottom:691.673333pt;}
.yab{bottom:698.314667pt;}
.y4a{bottom:698.978667pt;}
.ye8{bottom:702.300000pt;}
.yfb{bottom:705.630667pt;}
.y8e{bottom:706.248000pt;}
.y27{bottom:709.896000pt;}
.y179{bottom:710.933333pt;}
.y49{bottom:718.240000pt;}
.y143{bottom:720.896000pt;}
.ye7{bottom:721.561333pt;}
.y15c{bottom:724.217333pt;}
.y8d{bottom:724.313333pt;}
.yfa{bottom:724.892000pt;}
.y26{bottom:729.157333pt;}
.y178{bottom:730.194667pt;}
.yaa{bottom:733.516000pt;}
.y48{bottom:737.501333pt;}
.y142{bottom:740.157333pt;}
.ye6{bottom:740.821333pt;}
.y8c{bottom:742.378667pt;}
.y15b{bottom:743.478667pt;}
.y6{bottom:743.649333pt;}
.yf9{bottom:744.153333pt;}
.y25{bottom:748.418667pt;}
.y177{bottom:749.456000pt;}
.ya9{bottom:752.777333pt;}
.y5{bottom:754.769333pt;}
.y47{bottom:756.762667pt;}
.y141{bottom:759.418667pt;}
.ye5{bottom:760.082667pt;}
.y8b{bottom:760.444000pt;}
.y15a{bottom:762.740000pt;}
.y24{bottom:767.680000pt;}
.ya8{bottom:772.038667pt;}
.y4{bottom:775.530667pt;}
.y46{bottom:776.022667pt;}
.y8a{bottom:778.509333pt;}
.ye4{bottom:779.344000pt;}
.y159{bottom:782.001333pt;}
.y23{bottom:786.940000pt;}
.y140{bottom:790.634667pt;}
.ya7{bottom:791.298667pt;}
.yf8{bottom:793.348000pt;}
.y45{bottom:795.284000pt;}
.y89{bottom:796.574667pt;}
.ye3{bottom:798.605333pt;}
.y3{bottom:799.933333pt;}
.y176{bottom:801.261333pt;}
.y22{bottom:806.201333pt;}
.ya6{bottom:810.560000pt;}
.yf7{bottom:812.608000pt;}
.y44{bottom:814.545333pt;}
.ye2{bottom:817.866667pt;}
.y175{bottom:820.522667pt;}
.y87{bottom:822.625333pt;}
.ya5{bottom:829.821333pt;}
.y86{bottom:831.634667pt;}
.y43{bottom:833.806667pt;}
.y21{bottom:837.417333pt;}
.yf6{bottom:839.854667pt;}
.y88{bottom:840.690667pt;}
.ye1{bottom:841.112000pt;}
.y2{bottom:843.105333pt;}
.ya4{bottom:849.082667pt;}
.y42{bottom:853.068000pt;}
.y1{bottom:872.329333pt;}
.y85{bottom:877.110667pt;}
.hf{height:22.107556pt;}
.h9{height:25.180067pt;}
.h3{height:25.849552pt;}
.hd{height:31.922907pt;}
.h4{height:38.096982pt;}
.h10{height:39.182310pt;}
.h7{height:39.903534pt;}
.he{height:43.421286pt;}
.hc{height:43.694582pt;}
.h11{height:44.313941pt;}
.h5{height:44.696508pt;}
.ha{height:47.884561pt;}
.h6{height:48.840977pt;}
.h8{height:55.058907pt;}
.h2{height:55.064241pt;}
.h1{height:65.005350pt;}
.hb{height:79.918582pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:147.805333pt;}
.x32{left:155.608000pt;}
.x31{left:160.458667pt;}
.xa{left:165.752000pt;}
.x15{left:166.885333pt;}
.x8{left:171.710667pt;}
.x3{left:175.210667pt;}
.x33{left:179.882667pt;}
.xb{left:186.825333pt;}
.x2c{left:195.673333pt;}
.x14{left:200.342667pt;}
.x2{left:202.232000pt;}
.xd{left:203.857333pt;}
.x2d{left:209.217333pt;}
.x6{left:210.133333pt;}
.x4{left:220.490667pt;}
.x13{left:223.038667pt;}
.x28{left:224.968000pt;}
.x18{left:231.294667pt;}
.x2b{left:238.230667pt;}
.x29{left:251.002667pt;}
.x2a{left:255.876000pt;}
.x1a{left:268.078667pt;}
.x17{left:269.173333pt;}
.x1{left:280.538667pt;}
.x16{left:291.533333pt;}
.x5{left:298.201333pt;}
.xe{left:301.368000pt;}
.x1b{left:304.498667pt;}
.xc{left:312.968000pt;}
.x2e{left:317.718667pt;}
.x1c{left:330.548000pt;}
.x1d{left:348.614667pt;}
.x1e{left:366.680000pt;}
.xf{left:371.625333pt;}
.x1f{left:384.745333pt;}
.x10{left:392.621333pt;}
.x19{left:399.032000pt;}
.x9{left:402.933333pt;}
.x20{left:420.876000pt;}
.x2f{left:423.358667pt;}
.x21{left:438.941333pt;}
.x30{left:453.654667pt;}
.x22{left:457.008000pt;}
.x23{left:475.073333pt;}
.x24{left:493.138667pt;}
.x11{left:503.012000pt;}
.x25{left:511.204000pt;}
.x26{left:529.269333pt;}
.x12{left:530.622667pt;}
.x27{left:547.334667pt;}
}




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