
    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_b85a4e79f436e63ee843c797.woff')format("woff");}.ff1{font-family:ff1;line-height:0.907000;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_6ed953117d4cdd91ea341c12.woff')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_b6c0b62f35afc928ef09fea2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_82b8eb41050e822fb0567e71.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706000;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_e71ab71d377e83d75dc309bb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.705000;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_d82164718626148c885c6720.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_323d963af89e8ccc6649bc5d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_efab630d7cdd68b76b794823.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902000;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_6708095c656c6a6bd1948fb5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902000;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_e222de806577911495e8baa8.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_85e73238b8c82ae011d64ca6.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_718c763098d1b26a5162c223.woff')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_a0461b01e62d4a2afd172d6d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.451000;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_c2523f24926ac4857ce5e9f1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.665000;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_d8a67c81f6e4780f725c6f80.woff')format("woff");}.fff{font-family:fff;line-height:0.040000;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_c0ed371500f7349aeafa3ef4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_5f465ba5fa910d966a942858.woff')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v1{vertical-align:-10.764000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.132000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000440px;}
.lsc{letter-spacing:0.006440px;}
.lsf{letter-spacing:0.592737px;}
.lsd{letter-spacing:15.940404px;}
.lsa{letter-spacing:19.919123px;}
.ls0{letter-spacing:22.978335px;}
.ls2{letter-spacing:23.405578px;}
.ls7{letter-spacing:23.650404px;}
.ls11{letter-spacing:25.949253px;}
.ls9{letter-spacing:26.540544px;}
.ls6{letter-spacing:26.643226px;}
.ls5{letter-spacing:26.648122px;}
.ls8{letter-spacing:29.475226px;}
.lse{letter-spacing:31.741473px;}
.lsb{letter-spacing:31.747473px;}
.ls3{letter-spacing:35.077300px;}
.ls10{letter-spacing:35.117578px;}
.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;}
}
.wsa3{word-spacing:-41.367383px;}
.ws12{word-spacing:-40.341627px;}
.ws41{word-spacing:-35.858427px;}
.ws2b{word-spacing:-35.112422px;}
.ws68{word-spacing:-24.125159px;}
.ws6a{word-spacing:-22.195002px;}
.wsb3{word-spacing:-21.834977px;}
.ws4d{word-spacing:-20.759009px;}
.wsbd{word-spacing:-19.983345px;}
.wscc{word-spacing:-19.403290px;}
.ws7d{word-spacing:-19.259827px;}
.ws4b{word-spacing:-18.535342px;}
.ws24{word-spacing:-18.183859px;}
.ws4e{word-spacing:-18.112128px;}
.ws64{word-spacing:-18.040397px;}
.ws49{word-spacing:-17.825203px;}
.wsb4{word-spacing:-17.538278px;}
.wsca{word-spacing:-17.179622px;}
.ws95{word-spacing:-17.107891px;}
.wse6{word-spacing:-16.820966px;}
.wsec{word-spacing:-16.749235px;}
.ws96{word-spacing:-16.677504px;}
.ws42{word-spacing:-16.605773px;}
.wse8{word-spacing:-16.390579px;}
.wsf1{word-spacing:-16.318848px;}
.wscf{word-spacing:-16.258643px;}
.ws20{word-spacing:-16.247117px;}
.wsc6{word-spacing:-16.238661px;}
.ws5a{word-spacing:-16.175386px;}
.ws4c{word-spacing:-16.103654px;}
.ws4a{word-spacing:-15.816730px;}
.ws10{word-spacing:-15.787650px;}
.wsb2{word-spacing:-15.744998px;}
.ws3d{word-spacing:-15.601536px;}
.ws2c{word-spacing:-15.529805px;}
.wsb8{word-spacing:-15.464300px;}
.ws7a{word-spacing:-15.458074px;}
.wsb5{word-spacing:-15.417318px;}
.wsf6{word-spacing:-15.386342px;}
.ws58{word-spacing:-15.242880px;}
.wsf7{word-spacing:-15.128110px;}
.wsed{word-spacing:-15.099418px;}
.wse2{word-spacing:-15.027686px;}
.ws98{word-spacing:-14.955955px;}
.ws86{word-spacing:-14.884224px;}
.ws3f{word-spacing:-14.740762px;}
.wsbf{word-spacing:-14.683377px;}
.wsf3{word-spacing:-14.597299px;}
.wsbc{word-spacing:-14.482529px;}
.ws56{word-spacing:-14.310374px;}
.ws29{word-spacing:-14.238643px;}
.ws25{word-spacing:-14.166912px;}
.wsf8{word-spacing:-14.123873px;}
.ws18{word-spacing:-14.095181px;}
.ws88{word-spacing:-14.023450px;}
.ws55{word-spacing:-13.951718px;}
.wse3{word-spacing:-13.879987px;}
.ws35{word-spacing:-13.808256px;}
.ws1{word-spacing:-13.677667px;}
.ws85{word-spacing:-13.664794px;}
.ws6b{word-spacing:-13.601844px;}
.ws67{word-spacing:-13.593756px;}
.ws69{word-spacing:-13.593062px;}
.wsb0{word-spacing:-13.449600px;}
.ws59{word-spacing:-13.442427px;}
.ws8d{word-spacing:-13.248753px;}
.wse{word-spacing:-13.234920px;}
.ws89{word-spacing:-13.234406px;}
.ws3e{word-spacing:-13.162675px;}
.ws3c{word-spacing:-13.090944px;}
.wse0{word-spacing:-13.033559px;}
.wse4{word-spacing:-13.019213px;}
.ws40{word-spacing:-12.976174px;}
.wsc1{word-spacing:-12.956231px;}
.ws51{word-spacing:-12.875750px;}
.wsbe{word-spacing:-12.832712px;}
.ws2e{word-spacing:-12.804019px;}
.ws19{word-spacing:-12.445363px;}
.wsdf{word-spacing:-12.387978px;}
.ws57{word-spacing:-12.373632px;}
.wsd3{word-spacing:-12.316247px;}
.ws1d{word-spacing:-12.301901px;}
.wscd{word-spacing:-12.158438px;}
.ws9{word-spacing:-12.122192px;}
.ws11{word-spacing:-11.991283px;}
.ws78{word-spacing:-11.943245px;}
.ws7c{word-spacing:-11.871514px;}
.ws5{word-spacing:-11.794919px;}
.ws13{word-spacing:-11.728051px;}
.wsea{word-spacing:-11.722821px;}
.wsda{word-spacing:-11.670666px;}
.wsc{word-spacing:-11.664010px;}
.ws37{word-spacing:-11.656320px;}
.wsa{word-spacing:-11.633472px;}
.wsb{word-spacing:-11.598555px;}
.ws16{word-spacing:-11.584589px;}
.ws8c{word-spacing:-11.541550px;}
.ws15{word-spacing:-11.512858px;}
.ws8{word-spacing:-11.467646px;}
.ws65{word-spacing:-11.441126px;}
.wse1{word-spacing:-11.398088px;}
.ws1e{word-spacing:-11.369395px;}
.wsa2{word-spacing:-11.254625px;}
.wsa0{word-spacing:-11.225933px;}
.ws43{word-spacing:-11.154202px;}
.ws48{word-spacing:-11.010739px;}
.ws1f{word-spacing:-10.939008px;}
.ws2{word-spacing:-10.878555px;}
.ws21{word-spacing:-10.867277px;}
.ws9b{word-spacing:-10.752507px;}
.wsdc{word-spacing:-10.728630px;}
.ws87{word-spacing:-10.652083px;}
.ws79{word-spacing:-10.580352px;}
.ws17{word-spacing:-10.436890px;}
.wsc3{word-spacing:-10.307773px;}
.ws5b{word-spacing:-10.221696px;}
.wsd9{word-spacing:-10.178657px;}
.wsdb{word-spacing:-10.158321px;}
.ws9d{word-spacing:-10.149965px;}
.ws99{word-spacing:-10.071060px;}
.ws50{word-spacing:-10.035195px;}
.ws54{word-spacing:-10.006502px;}
.wsb7{word-spacing:-9.963464px;}
.ws2a{word-spacing:-9.934771px;}
.wsb6{word-spacing:-9.891732px;}
.wsad{word-spacing:-9.863040px;}
.ws34{word-spacing:-9.791309px;}
.wsae{word-spacing:-9.719578px;}
.ws4f{word-spacing:-9.576115px;}
.wsc5{word-spacing:-9.564117px;}
.wsf4{word-spacing:-9.533637px;}
.wse5{word-spacing:-9.504384px;}
.ws94{word-spacing:-9.432653px;}
.ws39{word-spacing:-9.360922px;}
.ws9a{word-spacing:-9.289190px;}
.ws81{word-spacing:-9.217459px;}
.ws2f{word-spacing:-9.073997px;}
.wsc2{word-spacing:-8.959227px;}
.ws38{word-spacing:-8.930534px;}
.wsa1{word-spacing:-8.887496px;}
.wsba{word-spacing:-8.787072px;}
.wsf5{word-spacing:-8.744033px;}
.ws66{word-spacing:-8.643610px;}
.wsa7{word-spacing:-8.241915px;}
.ws1a{word-spacing:-8.213222px;}
.wsa6{word-spacing:-8.170184px;}
.wsf9{word-spacing:-8.098452px;}
.ws26{word-spacing:-7.998029px;}
.wse7{word-spacing:-7.926298px;}
.ws3b{word-spacing:-7.854566px;}
.ws36{word-spacing:-7.782835px;}
.ws90{word-spacing:-7.725450px;}
.ws83{word-spacing:-7.711104px;}
.ws7f{word-spacing:-7.639373px;}
.wsc0{word-spacing:-7.452872px;}
.ws92{word-spacing:-7.352448px;}
.wsf{word-spacing:-7.344006px;}
.ws47{word-spacing:-7.280717px;}
.ws82{word-spacing:-6.922061px;}
.ws91{word-spacing:-6.807291px;}
.ws8e{word-spacing:-6.735560px;}
.ws30{word-spacing:-6.706867px;}
.ws5f{word-spacing:-6.635136px;}
.ws77{word-spacing:-6.563405px;}
.wsd5{word-spacing:-6.419942px;}
.wsbb{word-spacing:-6.197576px;}
.wsd7{word-spacing:-6.125844px;}
.ws31{word-spacing:-6.061286px;}
.ws9e{word-spacing:-6.054113px;}
.wsde{word-spacing:-6.003901px;}
.wsa5{word-spacing:-5.946516px;}
.wsa4{word-spacing:-5.874785px;}
.ws28{word-spacing:-5.487437px;}
.wsb1{word-spacing:-5.415706px;}
.wse9{word-spacing:-5.343974px;}
.ws9f{word-spacing:-5.272243px;}
.wsdd{word-spacing:-5.229204px;}
.ws52{word-spacing:-5.200512px;}
.ws4{word-spacing:-5.184004px;}
.wsce{word-spacing:-5.049876px;}
.wsf2{word-spacing:-4.841856px;}
.wsf0{word-spacing:-4.698394px;}
.ws5e{word-spacing:-4.626662px;}
.ws53{word-spacing:-4.483200px;}
.wsd{word-spacing:-4.464004px;}
.ws8f{word-spacing:-4.444472px;}
.ws7{word-spacing:-4.398549px;}
.wsef{word-spacing:-4.296699px;}
.wsa9{word-spacing:-4.268006px;}
.ws80{word-spacing:-4.196275px;}
.ws33{word-spacing:-4.124544px;}
.wsc4{word-spacing:-4.081505px;}
.ws7b{word-spacing:-4.052813px;}
.wsd6{word-spacing:-3.981082px;}
.wsd8{word-spacing:-3.765888px;}
.ws3a{word-spacing:-3.622426px;}
.wsd1{word-spacing:-3.407232px;}
.ws32{word-spacing:-3.335501px;}
.wsaa{word-spacing:-3.192038px;}
.ws8a{word-spacing:-3.120307px;}
.ws84{word-spacing:-3.048576px;}
.ws6{word-spacing:-3.024003px;}
.ws8b{word-spacing:-2.933806px;}
.ws44{word-spacing:-2.761651px;}
.ws7e{word-spacing:-2.546458px;}
.ws5d{word-spacing:-2.474726px;}
.ws5c{word-spacing:-2.402995px;}
.ws1c{word-spacing:-2.331264px;}
.wseb{word-spacing:-1.327027px;}
.wsc9{word-spacing:-0.609715px;}
.ws46{word-spacing:-0.466253px;}
.ws1b{word-spacing:0.000000px;}
.ws3{word-spacing:0.052364px;}
.wsac{word-spacing:0.681446px;}
.wsab{word-spacing:0.832082px;}
.wscb{word-spacing:15.596352px;}
.wsb9{word-spacing:20.726352px;}
.wsaf{word-spacing:21.560352px;}
.ws97{word-spacing:23.090352px;}
.wsd2{word-spacing:23.318054px;}
.ws9c{word-spacing:24.860352px;}
.wsc7{word-spacing:27.344352px;}
.wsd4{word-spacing:28.550947px;}
.wsa8{word-spacing:30.740054px;}
.ws27{word-spacing:31.418178px;}
.ws45{word-spacing:31.504255px;}
.wsd0{word-spacing:31.634352px;}
.wsc8{word-spacing:34.370054px;}
.ws60{word-spacing:36.618778px;}
.ws93{word-spacing:36.798106px;}
.ws2d{word-spacing:36.978679px;}
.ws22{word-spacing:37.081972px;}
.ws0{word-spacing:38.060325px;}
.ws75{word-spacing:58.568525px;}
.ws6d{word-spacing:59.070643px;}
.ws72{word-spacing:61.007386px;}
.ws73{word-spacing:62.944128px;}
.ws6c{word-spacing:72.699571px;}
.ws71{word-spacing:75.138432px;}
.ws6f{word-spacing:75.640550px;}
.ws23{word-spacing:94.598843px;}
.ws70{word-spacing:107.345741px;}
.ws74{word-spacing:109.784602px;}
.ws14{word-spacing:111.349207px;}
.ws6e{word-spacing:121.548518px;}
.ws76{word-spacing:140.987674px;}
.ws62{word-spacing:319.454899px;}
.ws61{word-spacing:336.957312px;}
.ws63{word-spacing:354.531456px;}
.wsee{word-spacing:2061.160166px;}
._1{margin-left:-9.670050px;}
._39{margin-left:-7.919102px;}
._15{margin-left:-6.884984px;}
._5{margin-left:-5.823367px;}
._9{margin-left:-4.556720px;}
._0{margin-left:-3.099375px;}
._2{margin-left:-1.376639px;}
._3{width:1.832729px;}
._4{width:3.665458px;}
._1d{width:6.292959px;}
._2d{width:8.209639px;}
._37{width:11.588172px;}
._33{width:16.857478px;}
._12{width:18.219725px;}
._1e{width:19.882078px;}
._b{width:22.083302px;}
._21{width:23.761130px;}
._35{width:25.486090px;}
._c{width:26.768839px;}
._a{width:28.734569px;}
._7{width:30.526945px;}
._d{width:32.060052px;}
._10{width:33.583341px;}
._e{width:35.076557px;}
._16{width:36.869837px;}
._1b{width:38.304461px;}
._36{width:39.954278px;}
._29{width:41.234671px;}
._13{width:42.393139px;}
._22{width:43.729477px;}
._6{width:45.883675px;}
._8{width:49.181506px;}
._1f{width:50.932130px;}
._38{width:52.180865px;}
._20{width:53.285513px;}
._1c{width:55.519949px;}
._34{width:56.674228px;}
._f{width:59.148935px;}
._18{width:71.171097px;}
._2b{width:79.549901px;}
._23{width:80.697600px;}
._3a{width:89.305344px;}
._19{width:93.205108px;}
._14{width:94.684920px;}
._2a{width:106.807757px;}
._11{width:111.452500px;}
._2c{width:161.466931px;}
._2e{width:165.855674px;}
._42{width:168.103328px;}
._30{width:176.100096px;}
._1a{width:182.053786px;}
._2f{width:193.602509px;}
._32{width:216.054374px;}
._31{width:275.460947px;}
._24{width:329.174477px;}
._26{width:346.748621px;}
._25{width:354.567322px;}
._28{width:372.069734px;}
._27{width:389.643878px;}
._17{width:449.284788px;}
._44{width:789.008595px;}
._3c{width:870.309854px;}
._40{width:1006.926115px;}
._3d{width:1019.404366px;}
._43{width:1201.254361px;}
._3f{width:1339.952563px;}
._41{width:1388.099131px;}
._3e{width:1511.092437px;}
._3b{width:1538.910396px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:40.207500px;}
.y88{bottom:85.039500px;}
.y123{bottom:86.514000px;}
.y8f{bottom:90.804000px;}
.yde{bottom:94.054500px;}
.y101{bottom:97.584000px;}
.y1e{bottom:110.451000px;}
.y142{bottom:111.930000px;}
.yb9{bottom:113.125500px;}
.y122{bottom:113.404500px;}
.y15e{bottom:119.062500px;}
.y100{bottom:119.253000px;}
.ydd{bottom:120.945000px;}
.y3f{bottom:122.149500px;}
.y178{bottom:123.952500px;}
.y87{bottom:126.093000px;}
.y19d{bottom:127.143000px;}
.y8e{bottom:132.639000px;}
.yb8{bottom:136.288500px;}
.y1d{bottom:137.341500px;}
.y121{bottom:140.296500px;}
.yff{bottom:140.920500px;}
.ydc{bottom:147.837000px;}
.y3e{bottom:149.040000px;}
.y19c{bottom:150.306000px;}
.y141{bottom:150.867000px;}
.yb7{bottom:157.957500px;}
.y177{bottom:158.314500px;}
.y15d{bottom:158.859000px;}
.yfe{bottom:162.589500px;}
.y1c{bottom:164.232000px;}
.y86{bottom:167.146500px;}
.y19b{bottom:171.975000px;}
.y8d{bottom:174.474000px;}
.ydb{bottom:174.727500px;}
.y3d{bottom:175.932000px;}
.yb6{bottom:179.625000px;}
.yfd{bottom:184.258500px;}
.y176{bottom:185.206500px;}
.y15c{bottom:185.749500px;}
.y67{bottom:190.125000px;}
.y1b{bottom:191.124000px;}
.y120{bottom:192.274500px;}
.y19a{bottom:193.644000px;}
.y93{bottom:195.756000px;}
.yb5{bottom:201.294000px;}
.yda{bottom:201.618000px;}
.y140{bottom:202.347000px;}
.y3c{bottom:202.822500px;}
.yfc{bottom:205.927500px;}
.y85{bottom:208.198500px;}
.y199{bottom:215.313000px;}
.y66{bottom:217.015500px;}
.y1a{bottom:218.014500px;}
.y11f{bottom:219.165000px;}
.y175{bottom:219.568500px;}
.yb4{bottom:222.963000px;}
.yfb{bottom:227.596500px;}
.yd9{bottom:228.508500px;}
.y8c{bottom:228.795000px;}
.y13f{bottom:229.237500px;}
.y3b{bottom:229.713000px;}
.y15b{bottom:230.574000px;}
.y198{bottom:236.980500px;}
.y65{bottom:243.906000px;}
.yb3{bottom:244.632000px;}
.y19{bottom:244.905000px;}
.y11e{bottom:246.055500px;}
.y174{bottom:246.460500px;}
.y84{bottom:249.252000px;}
.yfa{bottom:249.265500px;}
.yd8{bottom:255.400500px;}
.y13e{bottom:256.128000px;}
.y3a{bottom:256.603500px;}
.y15a{bottom:257.464500px;}
.y197{bottom:258.649500px;}
.yb2{bottom:266.898000px;}
.y64{bottom:270.796500px;}
.yf9{bottom:270.933000px;}
.y11d{bottom:272.946000px;}
.y173{bottom:273.351000px;}
.y196{bottom:280.318500px;}
.yd7{bottom:282.291000px;}
.y39{bottom:283.495500px;}
.y18{bottom:289.549500px;}
.y83{bottom:290.305500px;}
.yf8{bottom:292.602000px;}
.y63{bottom:297.687000px;}
.y195{bottom:301.987500px;}
.y13d{bottom:307.608000px;}
.yd6{bottom:309.181500px;}
.y38{bottom:310.386000px;}
.yf7{bottom:314.271000px;}
.y159{bottom:315.193500px;}
.y172{bottom:319.668000px;}
.y194{bottom:323.656500px;}
.y62{bottom:324.579000px;}
.y11c{bottom:332.713500px;}
.y82{bottom:333.498000px;}
.y13c{bottom:334.498500px;}
.yd5{bottom:336.072000px;}
.yb1{bottom:336.313500px;}
.y37{bottom:337.276500px;}
.y92{bottom:343.611000px;}
.y193{bottom:345.324000px;}
.y171{bottom:346.560000px;}
.yae{bottom:349.002000px;}
.yf6{bottom:350.580000px;}
.y61{bottom:351.469500px;}
.y158{bottom:354.990000px;}
.y17{bottom:357.367500px;}
.y81{bottom:360.388500px;}
.yb0{bottom:361.134000px;}
.y13b{bottom:361.389000px;}
.yd4{bottom:362.964000px;}
.yaf{bottom:365.667000px;}
.y192{bottom:366.993000px;}
.y170{bottom:373.450500px;}
.y11b{bottom:374.548500px;}
.y36{bottom:375.747000px;}
.y60{bottom:378.360000px;}
.y80{bottom:387.279000px;}
.y13a{bottom:388.279500px;}
.yd3{bottom:389.854500px;}
.y91{bottom:397.932000px;}
.yad{bottom:401.697000px;}
.y16{bottom:402.190500px;}
.yf5{bottom:402.558000px;}
.y5f{bottom:405.250500px;}
.y191{bottom:406.306500px;}
.y157{bottom:406.617000px;}
.y7f{bottom:414.169500px;}
.yd2{bottom:416.745000px;}
.y16f{bottom:425.428500px;}
.y11a{bottom:426.526500px;}
.y15{bottom:427.413000px;}
.yac{bottom:428.587500px;}
.yf4{bottom:429.448500px;}
.y35{bottom:430.602000px;}
.y5e{bottom:432.142500px;}
.y139{bottom:433.104000px;}
.y190{bottom:433.197000px;}
.y156{bottom:433.507500px;}
.y7e{bottom:441.060000px;}
.yd1{bottom:443.635500px;}
.y16e{bottom:452.319000px;}
.y14{bottom:452.634000px;}
.y119{bottom:453.418500px;}
.yab{bottom:455.479500px;}
.yf3{bottom:456.339000px;}
.y5d{bottom:459.033000px;}
.y138{bottom:459.994500px;}
.y18f{bottom:460.087500px;}
.y7d{bottom:467.952000px;}
.yd0{bottom:470.527500px;}
.y155{bottom:473.304000px;}
.y13{bottom:477.856500px;}
.y16d{bottom:479.209500px;}
.y118{bottom:480.309000px;}
.yaa{bottom:482.370000px;}
.yf2{bottom:483.231000px;}
.y5c{bottom:485.923500px;}
.y137{bottom:486.885000px;}
.y7c{bottom:494.842500px;}
.ycf{bottom:497.418000px;}
.y34{bottom:498.418500px;}
.y18e{bottom:498.558000px;}
.y12{bottom:503.077500px;}
.y16c{bottom:506.101500px;}
.yf1{bottom:510.121500px;}
.y5b{bottom:512.814000px;}
.y136{bottom:513.777000px;}
.y7b{bottom:521.733000px;}
.yce{bottom:524.308500px;}
.y154{bottom:524.931000px;}
.y33{bottom:525.310500px;}
.y11{bottom:528.300000px;}
.y117{bottom:532.287000px;}
.y16b{bottom:532.992000px;}
.y8b{bottom:536.565000px;}
.yf0{bottom:537.012000px;}
.y5a{bottom:539.706000px;}
.y135{bottom:540.667500px;}
.y7a{bottom:548.623500px;}
.ycd{bottom:551.199000px;}
.y153{bottom:551.821500px;}
.y32{bottom:552.201000px;}
.y10{bottom:553.521000px;}
.y18d{bottom:556.959000px;}
.y116{bottom:559.177500px;}
.yef{bottom:563.902500px;}
.y59{bottom:566.596500px;}
.y134{bottom:567.558000px;}
.ya9{bottom:572.232000px;}
.y79{bottom:575.515500px;}
.y16a{bottom:577.815000px;}
.ycc{bottom:578.089500px;}
.yf{bottom:578.743500px;}
.y31{bottom:579.091500px;}
.y18c{bottom:583.849500px;}
.y152{bottom:585.844500px;}
.y115{bottom:586.068000px;}
.y58{bottom:593.487000px;}
.y1a5{bottom:593.664000px;}
.ya8{bottom:595.395000px;}
.y78{bottom:602.406000px;}
.ye{bottom:603.964500px;}
.yee{bottom:605.737500px;}
.y30{bottom:605.982000px;}
.y133{bottom:612.381000px;}
.y151{bottom:612.736500px;}
.ya7{bottom:617.064000px;}
.y1a4{bottom:620.554500px;}
.y169{bottom:622.639500px;}
.ycb{bottom:625.902000px;}
.yd{bottom:629.187000px;}
.y77{bottom:629.296500px;}
.y18b{bottom:629.643000px;}
.y114{bottom:630.892500px;}
.y2f{bottom:632.872500px;}
.ya6{bottom:638.733000px;}
.y132{bottom:639.273000px;}
.yed{bottom:644.208000px;}
.y1a3{bottom:647.446500px;}
.y150{bottom:652.533000px;}
.yc{bottom:654.408000px;}
.y18a{bottom:656.533500px;}
.y113{bottom:657.783000px;}
.ya5{bottom:660.400500px;}
.yca{bottom:660.793500px;}
.y57{bottom:662.752500px;}
.y168{bottom:667.462500px;}
.y76{bottom:667.765500px;}
.y2e{bottom:671.343000px;}
.y1a2{bottom:674.337000px;}
.yb{bottom:679.630500px;}
.ya4{bottom:682.069500px;}
.y189{bottom:683.424000px;}
.yc9{bottom:683.956500px;}
.y112{bottom:684.673500px;}
.y56{bottom:685.915500px;}
.yec{bottom:686.118000px;}
.y131{bottom:690.751500px;}
.y167{bottom:694.353000px;}
.y1a1{bottom:701.227500px;}
.ya3{bottom:703.738500px;}
.y14f{bottom:704.160000px;}
.ya{bottom:704.851500px;}
.yc8{bottom:705.625500px;}
.y55{bottom:707.584500px;}
.y188{bottom:710.316000px;}
.y111{bottom:711.565500px;}
.y130{bottom:717.642000px;}
.ya2{bottom:725.407500px;}
.y75{bottom:725.832000px;}
.yc7{bottom:727.294500px;}
.y1a0{bottom:728.118000px;}
.y54{bottom:729.253500px;}
.y2d{bottom:729.811500px;}
.y9{bottom:730.074000px;}
.y14e{bottom:731.050500px;}
.y187{bottom:737.206500px;}
.y110{bottom:738.456000px;}
.yeb{bottom:740.974500px;}
.y12f{bottom:744.534000px;}
.ya1{bottom:747.076500px;}
.yc6{bottom:748.963500px;}
.y53{bottom:750.921000px;}
.y74{bottom:752.722500px;}
.y166{bottom:754.120500px;}
.y19f{bottom:755.010000px;}
.y8{bottom:755.295000px;}
.y2c{bottom:756.702000px;}
.y14d{bottom:757.941000px;}
.y186{bottom:764.097000px;}
.y10f{bottom:765.346500px;}
.ya0{bottom:768.744000px;}
.yc5{bottom:770.631000px;}
.y12e{bottom:771.424500px;}
.y52{bottom:772.590000px;}
.y73{bottom:779.613000px;}
.y7{bottom:780.517500px;}
.y19e{bottom:781.900500px;}
.y2b{bottom:783.594000px;}
.y9f{bottom:790.413000px;}
.y185{bottom:790.987500px;}
.yc4{bottom:792.300000px;}
.y8a{bottom:794.257500px;}
.y51{bottom:794.259000px;}
.y165{bottom:795.955500px;}
.y14c{bottom:797.737500px;}
.y6{bottom:805.738500px;}
.yea{bottom:808.791000px;}
.y10e{bottom:810.169500px;}
.y2a{bottom:810.484500px;}
.y9e{bottom:812.082000px;}
.yc3{bottom:813.969000px;}
.y50{bottom:815.928000px;}
.y184{bottom:817.879500px;}
.y12d{bottom:828.294000px;}
.y90{bottom:829.735500px;}
.y72{bottom:831.187500px;}
.yc2{bottom:835.638000px;}
.ye9{bottom:835.681500px;}
.y10d{bottom:837.061500px;}
.y4f{bottom:837.597000px;}
.y5{bottom:841.041000px;}
.y183{bottom:844.770000px;}
.y164{bottom:847.933500px;}
.y29{bottom:848.953500px;}
.y14b{bottom:849.364500px;}
.y9d{bottom:852.654000px;}
.y12c{bottom:855.186000px;}
.yc1{bottom:857.307000px;}
.y71{bottom:858.078000px;}
.y4e{bottom:859.264500px;}
.ye8{bottom:862.573500px;}
.y10c{bottom:863.952000px;}
.y163{bottom:874.825500px;}
.y14a{bottom:876.255000px;}
.yc0{bottom:878.974500px;}
.y9c{bottom:879.544500px;}
.y4d{bottom:880.933500px;}
.y12b{bottom:889.065000px;}
.ye7{bottom:889.464000px;}
.y182{bottom:890.562000px;}
.y10b{bottom:890.842500px;}
.y70{bottom:896.548500px;}
.ybf{bottom:900.643500px;}
.y162{bottom:901.716000px;}
.y4c{bottom:902.602500px;}
.y149{bottom:903.147000px;}
.y28{bottom:903.810000px;}
.y9b{bottom:906.435000px;}
.y4{bottom:912.021000px;}
.y12a{bottom:915.955500px;}
.ye6{bottom:916.354500px;}
.y181{bottom:917.454000px;}
.y10a{bottom:917.733000px;}
.ybe{bottom:922.312500px;}
.y4b{bottom:924.271500px;}
.y9a{bottom:933.327000px;}
.y129{bottom:942.847500px;}
.ye5{bottom:943.245000px;}
.ybd{bottom:943.981500px;}
.y180{bottom:944.344500px;}
.y4a{bottom:945.940500px;}
.y161{bottom:953.694000px;}
.y6f{bottom:954.613500px;}
.y148{bottom:954.774000px;}
.y109{bottom:956.203500px;}
.y99{bottom:960.217500px;}
.y49{bottom:967.609500px;}
.ye4{bottom:970.137000px;}
.y17f{bottom:971.235000px;}
.y27{bottom:971.626500px;}
.y3{bottom:975.894000px;}
.y128{bottom:976.726500px;}
.y160{bottom:980.584500px;}
.y6e{bottom:981.504000px;}
.y147{bottom:981.664500px;}
.y98{bottom:987.108000px;}
.y48{bottom:989.277000px;}
.ye3{bottom:997.027500px;}
.y26{bottom:998.517000px;}
.y89{bottom:1002.343500px;}
.ybc{bottom:1002.984000px;}
.y127{bottom:1003.617000px;}
.y15f{bottom:1007.475000px;}
.y108{bottom:1008.181500px;}
.y6d{bottom:1008.394500px;}
.y146{bottom:1008.555000px;}
.y47{bottom:1010.946000px;}
.y17e{bottom:1012.939500px;}
.y97{bottom:1013.998500px;}
.y2{bottom:1018.675500px;}
.ye2{bottom:1023.918000px;}
.y25{bottom:1025.409000px;}
.y107{bottom:1029.850500px;}
.y46{bottom:1032.615000px;}
.y6c{bottom:1035.286500px;}
.y145{bottom:1035.445500px;}
.y17d{bottom:1039.830000px;}
.y126{bottom:1042.555500px;}
.ybb{bottom:1044.819000px;}
.ye1{bottom:1050.808500px;}
.y106{bottom:1051.519500px;}
.y24{bottom:1052.299500px;}
.y96{bottom:1052.469000px;}
.y45{bottom:1054.284000px;}
.y6b{bottom:1062.177000px;}
.y17c{bottom:1066.720500px;}
.y105{bottom:1073.187000px;}
.y44{bottom:1075.953000px;}
.ye0{bottom:1077.699000px;}
.y1{bottom:1078.389000px;}
.y23{bottom:1079.190000px;}
.yba{bottom:1086.654000px;}
.y6a{bottom:1089.067500px;}
.y144{bottom:1093.176000px;}
.y17b{bottom:1093.611000px;}
.y125{bottom:1094.034000px;}
.y95{bottom:1094.380500px;}
.y104{bottom:1094.856000px;}
.y43{bottom:1097.620500px;}
.ydf{bottom:1104.591000px;}
.y22{bottom:1106.080500px;}
.y69{bottom:1115.958000px;}
.y103{bottom:1116.525000px;}
.y42{bottom:1119.289500px;}
.y143{bottom:1120.066500px;}
.y17a{bottom:1120.501500px;}
.y124{bottom:1120.924500px;}
.y21{bottom:1132.971000px;}
.y102{bottom:1138.194000px;}
.y41{bottom:1140.958500px;}
.y94{bottom:1149.235500px;}
.y68{bottom:1154.428500px;}
.y179{bottom:1158.972000px;}
.y20{bottom:1159.863000px;}
.y40{bottom:1162.627500px;}
.h5{height:45.883675px;}
.ha{height:47.701248px;}
.h4{height:49.156405px;}
.hc{height:49.853184px;}
.h9{height:50.498765px;}
.hd{height:50.857421px;}
.h6{height:53.870131px;}
.h8{height:60.426194px;}
.h3{height:60.598349px;}
.hb{height:65.833248px;}
.h7{height:72.511265px;}
.h2{height:87.402375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.299000px;}
.x24{left:115.266000px;}
.x2{left:116.674500px;}
.x10{left:118.986000px;}
.xe{left:127.762500px;}
.xb{left:131.190000px;}
.x8{left:132.637500px;}
.x1{left:148.881000px;}
.x7{left:150.196500px;}
.x25{left:152.008500px;}
.x21{left:155.452500px;}
.x26{left:160.299000px;}
.x22{left:180.028500px;}
.x6{left:182.761500px;}
.xd{left:194.820000px;}
.x11{left:200.676000px;}
.x23{left:204.606000px;}
.x13{left:225.301500px;}
.x12{left:229.690500px;}
.x14{left:271.203000px;}
.x3{left:272.760000px;}
.x20{left:275.229000px;}
.x1c{left:278.716500px;}
.xc{left:298.086000px;}
.x1d{left:326.982000px;}
.x1b{left:334.605000px;}
.x1f{left:353.070000px;}
.x1e{left:357.459000px;}
.x15{left:398.760000px;}
.x4{left:404.925000px;}
.x5{left:410.724000px;}
.xf{left:414.396000px;}
.x17{left:434.280000px;}
.x16{left:438.232500px;}
.xa{left:442.068000px;}
.x18{left:456.469500px;}
.x1a{left:469.690500px;}
.x19{left:474.402000px;}
@media print{
.v1{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.117333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000391pt;}
.lsc{letter-spacing:0.005724pt;}
.lsf{letter-spacing:0.526877pt;}
.lsd{letter-spacing:14.169248pt;}
.lsa{letter-spacing:17.705887pt;}
.ls0{letter-spacing:20.425187pt;}
.ls2{letter-spacing:20.804958pt;}
.ls7{letter-spacing:21.022582pt;}
.ls11{letter-spacing:23.066003pt;}
.ls9{letter-spacing:23.591595pt;}
.ls6{letter-spacing:23.682868pt;}
.ls5{letter-spacing:23.687219pt;}
.ls8{letter-spacing:26.200201pt;}
.lse{letter-spacing:28.214642pt;}
.lsb{letter-spacing:28.219976pt;}
.ls3{letter-spacing:31.179822pt;}
.ls10{letter-spacing:31.215625pt;}
.wsa3{word-spacing:-36.771007pt;}
.ws12{word-spacing:-35.859224pt;}
.ws41{word-spacing:-31.874157pt;}
.ws2b{word-spacing:-31.211042pt;}
.ws68{word-spacing:-21.444586pt;}
.ws6a{word-spacing:-19.728891pt;}
.wsb3{word-spacing:-19.408869pt;}
.ws4d{word-spacing:-18.452453pt;}
.wsbd{word-spacing:-17.762973pt;}
.wscc{word-spacing:-17.247369pt;}
.ws7d{word-spacing:-17.119846pt;}
.ws4b{word-spacing:-16.475860pt;}
.ws24{word-spacing:-16.163430pt;}
.ws4e{word-spacing:-16.099669pt;}
.ws64{word-spacing:-16.035908pt;}
.ws49{word-spacing:-15.844625pt;}
.wsb4{word-spacing:-15.589581pt;}
.wsca{word-spacing:-15.270775pt;}
.ws95{word-spacing:-15.207014pt;}
.wse6{word-spacing:-14.951970pt;}
.wsec{word-spacing:-14.888209pt;}
.ws96{word-spacing:-14.824448pt;}
.ws42{word-spacing:-14.760687pt;}
.wse8{word-spacing:-14.569404pt;}
.wsf1{word-spacing:-14.505643pt;}
.wscf{word-spacing:-14.452127pt;}
.ws20{word-spacing:-14.441882pt;}
.wsc6{word-spacing:-14.434365pt;}
.ws5a{word-spacing:-14.378121pt;}
.ws4c{word-spacing:-14.314359pt;}
.ws4a{word-spacing:-14.059315pt;}
.ws10{word-spacing:-14.033466pt;}
.wsb2{word-spacing:-13.995554pt;}
.ws3d{word-spacing:-13.868032pt;}
.ws2c{word-spacing:-13.804271pt;}
.wsb8{word-spacing:-13.746045pt;}
.ws7a{word-spacing:-13.740510pt;}
.wsb5{word-spacing:-13.704282pt;}
.wsf6{word-spacing:-13.676749pt;}
.ws58{word-spacing:-13.549227pt;}
.wsf7{word-spacing:-13.447209pt;}
.wsed{word-spacing:-13.421705pt;}
.wse2{word-spacing:-13.357943pt;}
.ws98{word-spacing:-13.294182pt;}
.ws86{word-spacing:-13.230421pt;}
.ws3f{word-spacing:-13.102899pt;}
.wsbf{word-spacing:-13.051890pt;}
.wsf3{word-spacing:-12.975377pt;}
.wsbc{word-spacing:-12.873359pt;}
.ws56{word-spacing:-12.720333pt;}
.ws29{word-spacing:-12.656572pt;}
.ws25{word-spacing:-12.592811pt;}
.wsf8{word-spacing:-12.554554pt;}
.ws18{word-spacing:-12.529050pt;}
.ws88{word-spacing:-12.465289pt;}
.ws55{word-spacing:-12.401527pt;}
.wse3{word-spacing:-12.337766pt;}
.ws35{word-spacing:-12.274005pt;}
.ws1{word-spacing:-12.157926pt;}
.ws85{word-spacing:-12.146483pt;}
.ws6b{word-spacing:-12.090528pt;}
.ws67{word-spacing:-12.083338pt;}
.ws69{word-spacing:-12.082722pt;}
.wsb0{word-spacing:-11.955200pt;}
.ws59{word-spacing:-11.948824pt;}
.ws8d{word-spacing:-11.776669pt;}
.wse{word-spacing:-11.764373pt;}
.ws89{word-spacing:-11.763917pt;}
.ws3e{word-spacing:-11.700156pt;}
.ws3c{word-spacing:-11.636395pt;}
.wse0{word-spacing:-11.585386pt;}
.wse4{word-spacing:-11.572634pt;}
.ws40{word-spacing:-11.534377pt;}
.wsc1{word-spacing:-11.516650pt;}
.ws51{word-spacing:-11.445111pt;}
.wsbe{word-spacing:-11.406855pt;}
.ws2e{word-spacing:-11.381350pt;}
.ws19{word-spacing:-11.062545pt;}
.wsdf{word-spacing:-11.011536pt;}
.ws57{word-spacing:-10.998784pt;}
.wsd3{word-spacing:-10.947775pt;}
.ws1d{word-spacing:-10.935023pt;}
.wscd{word-spacing:-10.807501pt;}
.ws9{word-spacing:-10.775282pt;}
.ws11{word-spacing:-10.658918pt;}
.ws78{word-spacing:-10.616218pt;}
.ws7c{word-spacing:-10.552457pt;}
.ws5{word-spacing:-10.484372pt;}
.ws13{word-spacing:-10.424934pt;}
.wsea{word-spacing:-10.420285pt;}
.wsda{word-spacing:-10.373926pt;}
.wsc{word-spacing:-10.368009pt;}
.ws37{word-spacing:-10.361173pt;}
.wsa{word-spacing:-10.340864pt;}
.wsb{word-spacing:-10.309827pt;}
.ws16{word-spacing:-10.297412pt;}
.ws8c{word-spacing:-10.259156pt;}
.ws15{word-spacing:-10.233651pt;}
.ws8{word-spacing:-10.193463pt;}
.ws65{word-spacing:-10.169890pt;}
.wse1{word-spacing:-10.131633pt;}
.ws1e{word-spacing:-10.106129pt;}
.wsa2{word-spacing:-10.004111pt;}
.wsa0{word-spacing:-9.978607pt;}
.ws43{word-spacing:-9.914846pt;}
.ws48{word-spacing:-9.787324pt;}
.ws1f{word-spacing:-9.723563pt;}
.ws2{word-spacing:-9.669826pt;}
.ws21{word-spacing:-9.659802pt;}
.ws9b{word-spacing:-9.557784pt;}
.wsdc{word-spacing:-9.536560pt;}
.ws87{word-spacing:-9.468518pt;}
.ws79{word-spacing:-9.404757pt;}
.ws17{word-spacing:-9.277235pt;}
.wsc3{word-spacing:-9.162465pt;}
.ws5b{word-spacing:-9.085952pt;}
.wsd9{word-spacing:-9.047695pt;}
.wsdb{word-spacing:-9.029618pt;}
.ws9d{word-spacing:-9.022191pt;}
.ws99{word-spacing:-8.952054pt;}
.ws50{word-spacing:-8.920173pt;}
.ws54{word-spacing:-8.894669pt;}
.wsb7{word-spacing:-8.856412pt;}
.ws2a{word-spacing:-8.830908pt;}
.wsb6{word-spacing:-8.792651pt;}
.wsad{word-spacing:-8.767147pt;}
.ws34{word-spacing:-8.703386pt;}
.wsae{word-spacing:-8.639625pt;}
.ws4f{word-spacing:-8.512102pt;}
.wsc5{word-spacing:-8.501437pt;}
.wsf4{word-spacing:-8.474344pt;}
.wse5{word-spacing:-8.448341pt;}
.ws94{word-spacing:-8.384580pt;}
.ws39{word-spacing:-8.320819pt;}
.ws9a{word-spacing:-8.257058pt;}
.ws81{word-spacing:-8.193297pt;}
.ws2f{word-spacing:-8.065775pt;}
.wsc2{word-spacing:-7.963757pt;}
.ws38{word-spacing:-7.938253pt;}
.wsa1{word-spacing:-7.899996pt;}
.wsba{word-spacing:-7.810731pt;}
.wsf5{word-spacing:-7.772474pt;}
.ws66{word-spacing:-7.683209pt;}
.wsa7{word-spacing:-7.326147pt;}
.ws1a{word-spacing:-7.300642pt;}
.wsa6{word-spacing:-7.262385pt;}
.wsf9{word-spacing:-7.198624pt;}
.ws26{word-spacing:-7.109359pt;}
.wse7{word-spacing:-7.045598pt;}
.ws3b{word-spacing:-6.981837pt;}
.ws36{word-spacing:-6.918076pt;}
.ws90{word-spacing:-6.867067pt;}
.ws83{word-spacing:-6.854315pt;}
.ws7f{word-spacing:-6.790554pt;}
.wsc0{word-spacing:-6.624775pt;}
.ws92{word-spacing:-6.535509pt;}
.wsf{word-spacing:-6.528005pt;}
.ws47{word-spacing:-6.471748pt;}
.ws82{word-spacing:-6.152943pt;}
.ws91{word-spacing:-6.050925pt;}
.ws8e{word-spacing:-5.987164pt;}
.ws30{word-spacing:-5.961660pt;}
.ws5f{word-spacing:-5.897899pt;}
.ws77{word-spacing:-5.834138pt;}
.wsd5{word-spacing:-5.706615pt;}
.wsbb{word-spacing:-5.508956pt;}
.wsd7{word-spacing:-5.445195pt;}
.ws31{word-spacing:-5.387810pt;}
.ws9e{word-spacing:-5.381434pt;}
.wsde{word-spacing:-5.336801pt;}
.wsa5{word-spacing:-5.285792pt;}
.wsa4{word-spacing:-5.222031pt;}
.ws28{word-spacing:-4.877722pt;}
.wsb1{word-spacing:-4.813961pt;}
.wse9{word-spacing:-4.750199pt;}
.ws9f{word-spacing:-4.686438pt;}
.wsdd{word-spacing:-4.648182pt;}
.ws52{word-spacing:-4.622677pt;}
.ws4{word-spacing:-4.608004pt;}
.wsce{word-spacing:-4.488779pt;}
.wsf2{word-spacing:-4.303872pt;}
.wsf0{word-spacing:-4.176350pt;}
.ws5e{word-spacing:-4.112589pt;}
.ws53{word-spacing:-3.985067pt;}
.wsd{word-spacing:-3.968003pt;}
.ws8f{word-spacing:-3.950641pt;}
.ws7{word-spacing:-3.909821pt;}
.wsef{word-spacing:-3.819288pt;}
.wsa9{word-spacing:-3.793783pt;}
.ws80{word-spacing:-3.730022pt;}
.ws33{word-spacing:-3.666261pt;}
.wsc4{word-spacing:-3.628005pt;}
.ws7b{word-spacing:-3.602500pt;}
.wsd6{word-spacing:-3.538739pt;}
.wsd8{word-spacing:-3.347456pt;}
.ws3a{word-spacing:-3.219934pt;}
.wsd1{word-spacing:-3.028651pt;}
.ws32{word-spacing:-2.964890pt;}
.wsaa{word-spacing:-2.837367pt;}
.ws8a{word-spacing:-2.773606pt;}
.ws84{word-spacing:-2.709845pt;}
.ws6{word-spacing:-2.688002pt;}
.ws8b{word-spacing:-2.607828pt;}
.ws44{word-spacing:-2.454801pt;}
.ws7e{word-spacing:-2.263518pt;}
.ws5d{word-spacing:-2.199757pt;}
.ws5c{word-spacing:-2.135996pt;}
.ws1c{word-spacing:-2.072235pt;}
.wseb{word-spacing:-1.179580pt;}
.wsc9{word-spacing:-0.541969pt;}
.ws46{word-spacing:-0.414447pt;}
.ws1b{word-spacing:0.000000pt;}
.ws3{word-spacing:0.046545pt;}
.wsac{word-spacing:0.605730pt;}
.wsab{word-spacing:0.739628pt;}
.wscb{word-spacing:13.863424pt;}
.wsb9{word-spacing:18.423424pt;}
.wsaf{word-spacing:19.164757pt;}
.ws97{word-spacing:20.524757pt;}
.wsd2{word-spacing:20.727159pt;}
.ws9c{word-spacing:22.098091pt;}
.wsc7{word-spacing:24.306091pt;}
.wsd4{word-spacing:25.378620pt;}
.wsa8{word-spacing:27.324493pt;}
.ws27{word-spacing:27.927269pt;}
.ws45{word-spacing:28.003782pt;}
.wsd0{word-spacing:28.119424pt;}
.wsc8{word-spacing:30.551159pt;}
.ws60{word-spacing:32.550025pt;}
.ws93{word-spacing:32.709427pt;}
.ws2d{word-spacing:32.869937pt;}
.ws22{word-spacing:32.961753pt;}
.ws0{word-spacing:33.831400pt;}
.ws75{word-spacing:52.060911pt;}
.ws6d{word-spacing:52.507238pt;}
.ws72{word-spacing:54.228787pt;}
.ws73{word-spacing:55.950336pt;}
.ws6c{word-spacing:64.621841pt;}
.ws71{word-spacing:66.789717pt;}
.ws6f{word-spacing:67.236045pt;}
.ws23{word-spacing:84.087860pt;}
.ws70{word-spacing:95.418436pt;}
.ws74{word-spacing:97.586313pt;}
.ws14{word-spacing:98.977073pt;}
.ws6e{word-spacing:108.043127pt;}
.ws76{word-spacing:125.322377pt;}
.ws62{word-spacing:283.959910pt;}
.ws61{word-spacing:299.517611pt;}
.ws63{word-spacing:315.139072pt;}
.wsee{word-spacing:1832.142370pt;}
._1{margin-left:-8.595600pt;}
._39{margin-left:-7.039202pt;}
._15{margin-left:-6.119986pt;}
._5{margin-left:-5.176326pt;}
._9{margin-left:-4.050418pt;}
._0{margin-left:-2.755000pt;}
._2{margin-left:-1.223679pt;}
._3{width:1.629092pt;}
._4{width:3.258185pt;}
._1d{width:5.593742pt;}
._2d{width:7.297457pt;}
._37{width:10.300597pt;}
._33{width:14.984425pt;}
._12{width:16.195311pt;}
._1e{width:17.672958pt;}
._b{width:19.629602pt;}
._21{width:21.121005pt;}
._35{width:22.654302pt;}
._c{width:23.794523pt;}
._a{width:25.541839pt;}
._7{width:27.135062pt;}
._d{width:28.497824pt;}
._10{width:29.851859pt;}
._e{width:31.179162pt;}
._16{width:32.773188pt;}
._1b{width:34.048410pt;}
._36{width:35.514914pt;}
._29{width:36.653041pt;}
._13{width:37.682790pt;}
._22{width:38.870646pt;}
._6{width:40.785489pt;}
._8{width:43.716894pt;}
._1f{width:45.273004pt;}
._38{width:46.382991pt;}
._20{width:47.364900pt;}
._1c{width:49.351066pt;}
._34{width:50.377092pt;}
._f{width:52.576831pt;}
._18{width:63.263197pt;}
._2b{width:70.711023pt;}
._23{width:71.731200pt;}
._3a{width:79.382528pt;}
._19{width:82.848985pt;}
._14{width:84.164373pt;}
._2a{width:94.940228pt;}
._11{width:99.068889pt;}
._2c{width:143.526161pt;}
._2e{width:147.427266pt;}
._42{width:149.425180pt;}
._30{width:156.533419pt;}
._1a{width:161.825587pt;}
._2f{width:172.091119pt;}
._32{width:192.048333pt;}
._31{width:244.854175pt;}
._24{width:292.599535pt;}
._26{width:308.220996pt;}
._25{width:315.170953pt;}
._28{width:330.728653pt;}
._27{width:346.350114pt;}
._17{width:399.364256pt;}
._44{width:701.340973pt;}
._3c{width:773.608759pt;}
._40{width:895.045435pt;}
._3d{width:906.137214pt;}
._43{width:1067.781654pt;}
._3f{width:1191.068945pt;}
._41{width:1233.865894pt;}
._3e{width:1343.193277pt;}
._3b{width:1367.920352pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:35.740000pt;}
.y88{bottom:75.590667pt;}
.y123{bottom:76.901333pt;}
.y8f{bottom:80.714667pt;}
.yde{bottom:83.604000pt;}
.y101{bottom:86.741333pt;}
.y1e{bottom:98.178667pt;}
.y142{bottom:99.493333pt;}
.yb9{bottom:100.556000pt;}
.y122{bottom:100.804000pt;}
.y15e{bottom:105.833333pt;}
.y100{bottom:106.002667pt;}
.ydd{bottom:107.506667pt;}
.y3f{bottom:108.577333pt;}
.y178{bottom:110.180000pt;}
.y87{bottom:112.082667pt;}
.y19d{bottom:113.016000pt;}
.y8e{bottom:117.901333pt;}
.yb8{bottom:121.145333pt;}
.y1d{bottom:122.081333pt;}
.y121{bottom:124.708000pt;}
.yff{bottom:125.262667pt;}
.ydc{bottom:131.410667pt;}
.y3e{bottom:132.480000pt;}
.y19c{bottom:133.605333pt;}
.y141{bottom:134.104000pt;}
.yb7{bottom:140.406667pt;}
.y177{bottom:140.724000pt;}
.y15d{bottom:141.208000pt;}
.yfe{bottom:144.524000pt;}
.y1c{bottom:145.984000pt;}
.y86{bottom:148.574667pt;}
.y19b{bottom:152.866667pt;}
.y8d{bottom:155.088000pt;}
.ydb{bottom:155.313333pt;}
.y3d{bottom:156.384000pt;}
.yb6{bottom:159.666667pt;}
.yfd{bottom:163.785333pt;}
.y176{bottom:164.628000pt;}
.y15c{bottom:165.110667pt;}
.y67{bottom:169.000000pt;}
.y1b{bottom:169.888000pt;}
.y120{bottom:170.910667pt;}
.y19a{bottom:172.128000pt;}
.y93{bottom:174.005333pt;}
.yb5{bottom:178.928000pt;}
.yda{bottom:179.216000pt;}
.y140{bottom:179.864000pt;}
.y3c{bottom:180.286667pt;}
.yfc{bottom:183.046667pt;}
.y85{bottom:185.065333pt;}
.y199{bottom:191.389333pt;}
.y66{bottom:192.902667pt;}
.y1a{bottom:193.790667pt;}
.y11f{bottom:194.813333pt;}
.y175{bottom:195.172000pt;}
.yb4{bottom:198.189333pt;}
.yfb{bottom:202.308000pt;}
.yd9{bottom:203.118667pt;}
.y8c{bottom:203.373333pt;}
.y13f{bottom:203.766667pt;}
.y3b{bottom:204.189333pt;}
.y15b{bottom:204.954667pt;}
.y198{bottom:210.649333pt;}
.y65{bottom:216.805333pt;}
.yb3{bottom:217.450667pt;}
.y19{bottom:217.693333pt;}
.y11e{bottom:218.716000pt;}
.y174{bottom:219.076000pt;}
.y84{bottom:221.557333pt;}
.yfa{bottom:221.569333pt;}
.yd8{bottom:227.022667pt;}
.y13e{bottom:227.669333pt;}
.y3a{bottom:228.092000pt;}
.y15a{bottom:228.857333pt;}
.y197{bottom:229.910667pt;}
.yb2{bottom:237.242667pt;}
.y64{bottom:240.708000pt;}
.yf9{bottom:240.829333pt;}
.y11d{bottom:242.618667pt;}
.y173{bottom:242.978667pt;}
.y196{bottom:249.172000pt;}
.yd7{bottom:250.925333pt;}
.y39{bottom:251.996000pt;}
.y18{bottom:257.377333pt;}
.y83{bottom:258.049333pt;}
.yf8{bottom:260.090667pt;}
.y63{bottom:264.610667pt;}
.y195{bottom:268.433333pt;}
.y13d{bottom:273.429333pt;}
.yd6{bottom:274.828000pt;}
.y38{bottom:275.898667pt;}
.yf7{bottom:279.352000pt;}
.y159{bottom:280.172000pt;}
.y172{bottom:284.149333pt;}
.y194{bottom:287.694667pt;}
.y62{bottom:288.514667pt;}
.y11c{bottom:295.745333pt;}
.y82{bottom:296.442667pt;}
.y13c{bottom:297.332000pt;}
.yd5{bottom:298.730667pt;}
.yb1{bottom:298.945333pt;}
.y37{bottom:299.801333pt;}
.y92{bottom:305.432000pt;}
.y193{bottom:306.954667pt;}
.y171{bottom:308.053333pt;}
.yae{bottom:310.224000pt;}
.yf6{bottom:311.626667pt;}
.y61{bottom:312.417333pt;}
.y158{bottom:315.546667pt;}
.y17{bottom:317.660000pt;}
.y81{bottom:320.345333pt;}
.yb0{bottom:321.008000pt;}
.y13b{bottom:321.234667pt;}
.yd4{bottom:322.634667pt;}
.yaf{bottom:325.037333pt;}
.y192{bottom:326.216000pt;}
.y170{bottom:331.956000pt;}
.y11b{bottom:332.932000pt;}
.y36{bottom:333.997333pt;}
.y60{bottom:336.320000pt;}
.y80{bottom:344.248000pt;}
.y13a{bottom:345.137333pt;}
.yd3{bottom:346.537333pt;}
.y91{bottom:353.717333pt;}
.yad{bottom:357.064000pt;}
.y16{bottom:357.502667pt;}
.yf5{bottom:357.829333pt;}
.y5f{bottom:360.222667pt;}
.y191{bottom:361.161333pt;}
.y157{bottom:361.437333pt;}
.y7f{bottom:368.150667pt;}
.yd2{bottom:370.440000pt;}
.y16f{bottom:378.158667pt;}
.y11a{bottom:379.134667pt;}
.y15{bottom:379.922667pt;}
.yac{bottom:380.966667pt;}
.yf4{bottom:381.732000pt;}
.y35{bottom:382.757333pt;}
.y5e{bottom:384.126667pt;}
.y139{bottom:384.981333pt;}
.y190{bottom:385.064000pt;}
.y156{bottom:385.340000pt;}
.y7e{bottom:392.053333pt;}
.yd1{bottom:394.342667pt;}
.y16e{bottom:402.061333pt;}
.y14{bottom:402.341333pt;}
.y119{bottom:403.038667pt;}
.yab{bottom:404.870667pt;}
.yf3{bottom:405.634667pt;}
.y5d{bottom:408.029333pt;}
.y138{bottom:408.884000pt;}
.y18f{bottom:408.966667pt;}
.y7d{bottom:415.957333pt;}
.yd0{bottom:418.246667pt;}
.y155{bottom:420.714667pt;}
.y13{bottom:424.761333pt;}
.y16d{bottom:425.964000pt;}
.y118{bottom:426.941333pt;}
.yaa{bottom:428.773333pt;}
.yf2{bottom:429.538667pt;}
.y5c{bottom:431.932000pt;}
.y137{bottom:432.786667pt;}
.y7c{bottom:439.860000pt;}
.ycf{bottom:442.149333pt;}
.y34{bottom:443.038667pt;}
.y18e{bottom:443.162667pt;}
.y12{bottom:447.180000pt;}
.y16c{bottom:449.868000pt;}
.yf1{bottom:453.441333pt;}
.y5b{bottom:455.834667pt;}
.y136{bottom:456.690667pt;}
.y7b{bottom:463.762667pt;}
.yce{bottom:466.052000pt;}
.y154{bottom:466.605333pt;}
.y33{bottom:466.942667pt;}
.y11{bottom:469.600000pt;}
.y117{bottom:473.144000pt;}
.y16b{bottom:473.770667pt;}
.y8b{bottom:476.946667pt;}
.yf0{bottom:477.344000pt;}
.y5a{bottom:479.738667pt;}
.y135{bottom:480.593333pt;}
.y7a{bottom:487.665333pt;}
.ycd{bottom:489.954667pt;}
.y153{bottom:490.508000pt;}
.y32{bottom:490.845333pt;}
.y10{bottom:492.018667pt;}
.y18d{bottom:495.074667pt;}
.y116{bottom:497.046667pt;}
.yef{bottom:501.246667pt;}
.y59{bottom:503.641333pt;}
.y134{bottom:504.496000pt;}
.ya9{bottom:508.650667pt;}
.y79{bottom:511.569333pt;}
.y16a{bottom:513.613333pt;}
.ycc{bottom:513.857333pt;}
.yf{bottom:514.438667pt;}
.y31{bottom:514.748000pt;}
.y18c{bottom:518.977333pt;}
.y152{bottom:520.750667pt;}
.y115{bottom:520.949333pt;}
.y58{bottom:527.544000pt;}
.y1a5{bottom:527.701333pt;}
.ya8{bottom:529.240000pt;}
.y78{bottom:535.472000pt;}
.ye{bottom:536.857333pt;}
.yee{bottom:538.433333pt;}
.y30{bottom:538.650667pt;}
.y133{bottom:544.338667pt;}
.y151{bottom:544.654667pt;}
.ya7{bottom:548.501333pt;}
.y1a4{bottom:551.604000pt;}
.y169{bottom:553.457333pt;}
.ycb{bottom:556.357333pt;}
.yd{bottom:559.277333pt;}
.y77{bottom:559.374667pt;}
.y18b{bottom:559.682667pt;}
.y114{bottom:560.793333pt;}
.y2f{bottom:562.553333pt;}
.ya6{bottom:567.762667pt;}
.y132{bottom:568.242667pt;}
.yed{bottom:572.629333pt;}
.y1a3{bottom:575.508000pt;}
.y150{bottom:580.029333pt;}
.yc{bottom:581.696000pt;}
.y18a{bottom:583.585333pt;}
.y113{bottom:584.696000pt;}
.ya5{bottom:587.022667pt;}
.yca{bottom:587.372000pt;}
.y57{bottom:589.113333pt;}
.y168{bottom:593.300000pt;}
.y76{bottom:593.569333pt;}
.y2e{bottom:596.749333pt;}
.y1a2{bottom:599.410667pt;}
.yb{bottom:604.116000pt;}
.ya4{bottom:606.284000pt;}
.y189{bottom:607.488000pt;}
.yc9{bottom:607.961333pt;}
.y112{bottom:608.598667pt;}
.y56{bottom:609.702667pt;}
.yec{bottom:609.882667pt;}
.y131{bottom:614.001333pt;}
.y167{bottom:617.202667pt;}
.y1a1{bottom:623.313333pt;}
.ya3{bottom:625.545333pt;}
.y14f{bottom:625.920000pt;}
.ya{bottom:626.534667pt;}
.yc8{bottom:627.222667pt;}
.y55{bottom:628.964000pt;}
.y188{bottom:631.392000pt;}
.y111{bottom:632.502667pt;}
.y130{bottom:637.904000pt;}
.ya2{bottom:644.806667pt;}
.y75{bottom:645.184000pt;}
.yc7{bottom:646.484000pt;}
.y1a0{bottom:647.216000pt;}
.y54{bottom:648.225333pt;}
.y2d{bottom:648.721333pt;}
.y9{bottom:648.954667pt;}
.y14e{bottom:649.822667pt;}
.y187{bottom:655.294667pt;}
.y110{bottom:656.405333pt;}
.yeb{bottom:658.644000pt;}
.y12f{bottom:661.808000pt;}
.ya1{bottom:664.068000pt;}
.yc6{bottom:665.745333pt;}
.y53{bottom:667.485333pt;}
.y74{bottom:669.086667pt;}
.y166{bottom:670.329333pt;}
.y19f{bottom:671.120000pt;}
.y8{bottom:671.373333pt;}
.y2c{bottom:672.624000pt;}
.y14d{bottom:673.725333pt;}
.y186{bottom:679.197333pt;}
.y10f{bottom:680.308000pt;}
.ya0{bottom:683.328000pt;}
.yc5{bottom:685.005333pt;}
.y12e{bottom:685.710667pt;}
.y52{bottom:686.746667pt;}
.y73{bottom:692.989333pt;}
.y7{bottom:693.793333pt;}
.y19e{bottom:695.022667pt;}
.y2b{bottom:696.528000pt;}
.y9f{bottom:702.589333pt;}
.y185{bottom:703.100000pt;}
.yc4{bottom:704.266667pt;}
.y8a{bottom:706.006667pt;}
.y51{bottom:706.008000pt;}
.y165{bottom:707.516000pt;}
.y14c{bottom:709.100000pt;}
.y6{bottom:716.212000pt;}
.yea{bottom:718.925333pt;}
.y10e{bottom:720.150667pt;}
.y2a{bottom:720.430667pt;}
.y9e{bottom:721.850667pt;}
.yc3{bottom:723.528000pt;}
.y50{bottom:725.269333pt;}
.y184{bottom:727.004000pt;}
.y12d{bottom:736.261333pt;}
.y90{bottom:737.542667pt;}
.y72{bottom:738.833333pt;}
.yc2{bottom:742.789333pt;}
.ye9{bottom:742.828000pt;}
.y10d{bottom:744.054667pt;}
.y4f{bottom:744.530667pt;}
.y5{bottom:747.592000pt;}
.y183{bottom:750.906667pt;}
.y164{bottom:753.718667pt;}
.y29{bottom:754.625333pt;}
.y14b{bottom:754.990667pt;}
.y9d{bottom:757.914667pt;}
.y12c{bottom:760.165333pt;}
.yc1{bottom:762.050667pt;}
.y71{bottom:762.736000pt;}
.y4e{bottom:763.790667pt;}
.ye8{bottom:766.732000pt;}
.y10c{bottom:767.957333pt;}
.y163{bottom:777.622667pt;}
.y14a{bottom:778.893333pt;}
.yc0{bottom:781.310667pt;}
.y9c{bottom:781.817333pt;}
.y4d{bottom:783.052000pt;}
.y12b{bottom:790.280000pt;}
.ye7{bottom:790.634667pt;}
.y182{bottom:791.610667pt;}
.y10b{bottom:791.860000pt;}
.y70{bottom:796.932000pt;}
.ybf{bottom:800.572000pt;}
.y162{bottom:801.525333pt;}
.y4c{bottom:802.313333pt;}
.y149{bottom:802.797333pt;}
.y28{bottom:803.386667pt;}
.y9b{bottom:805.720000pt;}
.y4{bottom:810.685333pt;}
.y12a{bottom:814.182667pt;}
.ye6{bottom:814.537333pt;}
.y181{bottom:815.514667pt;}
.y10a{bottom:815.762667pt;}
.ybe{bottom:819.833333pt;}
.y4b{bottom:821.574667pt;}
.y9a{bottom:829.624000pt;}
.y129{bottom:838.086667pt;}
.ye5{bottom:838.440000pt;}
.ybd{bottom:839.094667pt;}
.y180{bottom:839.417333pt;}
.y4a{bottom:840.836000pt;}
.y161{bottom:847.728000pt;}
.y6f{bottom:848.545333pt;}
.y148{bottom:848.688000pt;}
.y109{bottom:849.958667pt;}
.y99{bottom:853.526667pt;}
.y49{bottom:860.097333pt;}
.ye4{bottom:862.344000pt;}
.y17f{bottom:863.320000pt;}
.y27{bottom:863.668000pt;}
.y3{bottom:867.461333pt;}
.y128{bottom:868.201333pt;}
.y160{bottom:871.630667pt;}
.y6e{bottom:872.448000pt;}
.y147{bottom:872.590667pt;}
.y98{bottom:877.429333pt;}
.y48{bottom:879.357333pt;}
.ye3{bottom:886.246667pt;}
.y26{bottom:887.570667pt;}
.y89{bottom:890.972000pt;}
.ybc{bottom:891.541333pt;}
.y127{bottom:892.104000pt;}
.y15f{bottom:895.533333pt;}
.y108{bottom:896.161333pt;}
.y6d{bottom:896.350667pt;}
.y146{bottom:896.493333pt;}
.y47{bottom:898.618667pt;}
.y17e{bottom:900.390667pt;}
.y97{bottom:901.332000pt;}
.y2{bottom:905.489333pt;}
.ye2{bottom:910.149333pt;}
.y25{bottom:911.474667pt;}
.y107{bottom:915.422667pt;}
.y46{bottom:917.880000pt;}
.y6c{bottom:920.254667pt;}
.y145{bottom:920.396000pt;}
.y17d{bottom:924.293333pt;}
.y126{bottom:926.716000pt;}
.ybb{bottom:928.728000pt;}
.ye1{bottom:934.052000pt;}
.y106{bottom:934.684000pt;}
.y24{bottom:935.377333pt;}
.y96{bottom:935.528000pt;}
.y45{bottom:937.141333pt;}
.y6b{bottom:944.157333pt;}
.y17c{bottom:948.196000pt;}
.y105{bottom:953.944000pt;}
.y44{bottom:956.402667pt;}
.ye0{bottom:957.954667pt;}
.y1{bottom:958.568000pt;}
.y23{bottom:959.280000pt;}
.yba{bottom:965.914667pt;}
.y6a{bottom:968.060000pt;}
.y144{bottom:971.712000pt;}
.y17b{bottom:972.098667pt;}
.y125{bottom:972.474667pt;}
.y95{bottom:972.782667pt;}
.y104{bottom:973.205333pt;}
.y43{bottom:975.662667pt;}
.ydf{bottom:981.858667pt;}
.y22{bottom:983.182667pt;}
.y69{bottom:991.962667pt;}
.y103{bottom:992.466667pt;}
.y42{bottom:994.924000pt;}
.y143{bottom:995.614667pt;}
.y17a{bottom:996.001333pt;}
.y124{bottom:996.377333pt;}
.y21{bottom:1007.085333pt;}
.y102{bottom:1011.728000pt;}
.y41{bottom:1014.185333pt;}
.y94{bottom:1021.542667pt;}
.y68{bottom:1026.158667pt;}
.y179{bottom:1030.197333pt;}
.y20{bottom:1030.989333pt;}
.y40{bottom:1033.446667pt;}
.h5{height:40.785489pt;}
.ha{height:42.401109pt;}
.h4{height:43.694582pt;}
.hc{height:44.313941pt;}
.h9{height:44.887791pt;}
.hd{height:45.206596pt;}
.h6{height:47.884561pt;}
.h8{height:53.712173pt;}
.h3{height:53.865199pt;}
.hb{height:58.518443pt;}
.h7{height:64.454458pt;}
.h2{height:77.691000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.488000pt;}
.x24{left:102.458667pt;}
.x2{left:103.710667pt;}
.x10{left:105.765333pt;}
.xe{left:113.566667pt;}
.xb{left:116.613333pt;}
.x8{left:117.900000pt;}
.x1{left:132.338667pt;}
.x7{left:133.508000pt;}
.x25{left:135.118667pt;}
.x21{left:138.180000pt;}
.x26{left:142.488000pt;}
.x22{left:160.025333pt;}
.x6{left:162.454667pt;}
.xd{left:173.173333pt;}
.x11{left:178.378667pt;}
.x23{left:181.872000pt;}
.x13{left:200.268000pt;}
.x12{left:204.169333pt;}
.x14{left:241.069333pt;}
.x3{left:242.453333pt;}
.x20{left:244.648000pt;}
.x1c{left:247.748000pt;}
.xc{left:264.965333pt;}
.x1d{left:290.650667pt;}
.x1b{left:297.426667pt;}
.x1f{left:313.840000pt;}
.x1e{left:317.741333pt;}
.x15{left:354.453333pt;}
.x4{left:359.933333pt;}
.x5{left:365.088000pt;}
.xf{left:368.352000pt;}
.x17{left:386.026667pt;}
.x16{left:389.540000pt;}
.xa{left:392.949333pt;}
.x18{left:405.750667pt;}
.x1a{left:417.502667pt;}
.x19{left:421.690667pt;}
}




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