
    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_3976c9a1a537014a404ab9c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.127000;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_150341393fb5f2c651365632.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892578;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_0da8e9f37e52b227c7985ba1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7612db5beb4c39709f2af5ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.124118;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_4919c8ab98f6098afa3f8d11.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_4b45273e32d769111b3164fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.143000;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_51b0a923a8db59bfbbc1ea69.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050000;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_ed04a4ddafa0323a242c726a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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_e79a86610f0928b4b6812237.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.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:ffa;src:url('chunks/assets/font_698c6c21ba5ba0c454323f91.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.105000;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_0da8e9f37e52b227c7985ba1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_82beed6414c254494a858200.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fb4bf4e6cf9af455ea5d4068.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.089000;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_4cdafd4ba07b96a1ac3890ba.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.196000;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_f30c347e42e95b5a5090997f.woff2')format("woff");}.fff{font-family:fff;line-height:1.053000;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_74c57262818d95315ef87581.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.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:ff11;src:url('chunks/assets/font_6a2a4ca05bb9bec0ee458a36.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.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;}
.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:-2.157600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.154600px;}
.v4{vertical-align:15.992400px;}
.v1{vertical-align:29.970000px;}
.ls6{letter-spacing:-0.960000px;}
.lse{letter-spacing:-0.912000px;}
.ls11{letter-spacing:-0.855000px;}
.lsa{letter-spacing:-0.798000px;}
.ls4{letter-spacing:-0.627000px;}
.ls13{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.456000px;}
.ls9{letter-spacing:-0.342000px;}
.ls5{letter-spacing:-0.228000px;}
.ls10{letter-spacing:-0.171000px;}
.ls8{letter-spacing:-0.057000px;}
.ls14{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000072px;}
.ls12{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.057000px;}
.ls16{letter-spacing:0.171000px;}
.ls15{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.756000px;}
.ls2{letter-spacing:0.840000px;}
.ls0{letter-spacing:1.260000px;}
.ls3{letter-spacing:1.440000px;}
.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;}
}
.ws2{word-spacing:-22.860000px;}
.ws14{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-12.592800px;}
.ws15{word-spacing:-12.150000px;}
.ws112{word-spacing:-11.880000px;}
.ws13a{word-spacing:-11.457000px;}
.ws138{word-spacing:-11.400000px;}
.ws1{word-spacing:-11.280000px;}
.ws13{word-spacing:-11.250000px;}
.ws139{word-spacing:-11.229000px;}
.wsf6{word-spacing:-10.800000px;}
.ws137{word-spacing:-10.773000px;}
.ws52{word-spacing:-10.602000px;}
.wsf7{word-spacing:-10.260000px;}
.ws91{word-spacing:-9.648000px;}
.wsbe{word-spacing:-5.415000px;}
.wsa{word-spacing:-4.161000px;}
.ws11c{word-spacing:-4.104000px;}
.ws12e{word-spacing:-4.050000px;}
.ws11b{word-spacing:-3.726000px;}
.wsca{word-spacing:-3.705000px;}
.ws12f{word-spacing:-3.672000px;}
.ws7{word-spacing:-3.648000px;}
.wsa7{word-spacing:-3.534000px;}
.ws1f{word-spacing:-3.420000px;}
.wsa8{word-spacing:-3.192000px;}
.wse4{word-spacing:-3.135000px;}
.ws8{word-spacing:-3.078000px;}
.wsd{word-spacing:-2.964000px;}
.ws13f{word-spacing:-2.916000px;}
.ws1a{word-spacing:-2.850000px;}
.wseb{word-spacing:-2.793000px;}
.ws11a{word-spacing:-2.754000px;}
.ws140{word-spacing:-2.646000px;}
.wsb1{word-spacing:-2.622000px;}
.ws53{word-spacing:-2.580000px;}
.wsaa{word-spacing:-2.508000px;}
.ws10a{word-spacing:-2.484000px;}
.ws60{word-spacing:-2.451000px;}
.ws18{word-spacing:-2.337000px;}
.ws109{word-spacing:-2.268000px;}
.wsa6{word-spacing:-2.223000px;}
.ws73{word-spacing:-2.166000px;}
.wsf3{word-spacing:-2.109000px;}
.ws3c{word-spacing:-1.995000px;}
.ws10{word-spacing:-1.938000px;}
.ws1b{word-spacing:-1.881000px;}
.ws144{word-spacing:-1.836000px;}
.ws55{word-spacing:-1.824000px;}
.ws25{word-spacing:-1.710000px;}
.wsf1{word-spacing:-1.653000px;}
.ws5f{word-spacing:-1.596000px;}
.ws3a{word-spacing:-1.539000px;}
.ws7c{word-spacing:-1.482000px;}
.wsfb{word-spacing:-1.440000px;}
.ws22{word-spacing:-1.425000px;}
.wse7{word-spacing:-1.368000px;}
.ws1e{word-spacing:-1.311000px;}
.ws66{word-spacing:-1.254000px;}
.ws29{word-spacing:-1.140000px;}
.wsc{word-spacing:-1.083000px;}
.ws6d{word-spacing:-1.026000px;}
.ws13b{word-spacing:-0.918000px;}
.ws2a{word-spacing:-0.912000px;}
.wsed{word-spacing:-0.855000px;}
.ws6{word-spacing:-0.840000px;}
.ws75{word-spacing:-0.810000px;}
.ws3f{word-spacing:-0.798000px;}
.wsd4{word-spacing:-0.741000px;}
.ws57{word-spacing:-0.684000px;}
.ws5{word-spacing:-0.630000px;}
.ws5a{word-spacing:-0.627000px;}
.ws58{word-spacing:-0.570000px;}
.ws12b{word-spacing:-0.540000px;}
.ws5e{word-spacing:-0.513000px;}
.ws111{word-spacing:-0.486000px;}
.ws77{word-spacing:-0.456000px;}
.ws16{word-spacing:-0.450000px;}
.ws10d{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.420000px;}
.ws59{word-spacing:-0.399000px;}
.ws76{word-spacing:-0.378000px;}
.ws7e{word-spacing:-0.342000px;}
.ws127{word-spacing:-0.324000px;}
.ws69{word-spacing:-0.228000px;}
.wsaf{word-spacing:-0.171000px;}
.ws21{word-spacing:-0.114000px;}
.ws124{word-spacing:-0.108000px;}
.ws31{word-spacing:-0.057000px;}
.ws100{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws4b{word-spacing:0.057000px;}
.ws40{word-spacing:0.114000px;}
.ws5b{word-spacing:0.171000px;}
.wse8{word-spacing:0.285000px;}
.wse1{word-spacing:0.342000px;}
.ws131{word-spacing:0.432000px;}
.ws7f{word-spacing:0.456000px;}
.ws90{word-spacing:0.480000px;}
.ws130{word-spacing:0.486000px;}
.ws24{word-spacing:0.513000px;}
.wsfe{word-spacing:0.540000px;}
.ws48{word-spacing:0.570000px;}
.wsff{word-spacing:0.594000px;}
.ws49{word-spacing:0.627000px;}
.ws126{word-spacing:0.648000px;}
.ws5c{word-spacing:0.684000px;}
.ws7d{word-spacing:0.741000px;}
.ws125{word-spacing:0.756000px;}
.wsd3{word-spacing:0.798000px;}
.ws105{word-spacing:0.810000px;}
.ws42{word-spacing:0.855000px;}
.ws104{word-spacing:0.864000px;}
.ws3d{word-spacing:0.912000px;}
.ws103{word-spacing:0.918000px;}
.wsad{word-spacing:0.960000px;}
.ws88{word-spacing:0.969000px;}
.ws44{word-spacing:1.026000px;}
.wsf2{word-spacing:1.083000px;}
.ws47{word-spacing:1.140000px;}
.wsf4{word-spacing:1.197000px;}
.ws19{word-spacing:1.254000px;}
.ws136{word-spacing:1.296000px;}
.wsfa{word-spacing:1.311000px;}
.ws79{word-spacing:1.368000px;}
.ws135{word-spacing:1.404000px;}
.ws36{word-spacing:1.425000px;}
.wse{word-spacing:1.482000px;}
.ws26{word-spacing:1.539000px;}
.wsa9{word-spacing:1.596000px;}
.ws86{word-spacing:1.653000px;}
.ws10e{word-spacing:1.674000px;}
.wsb8{word-spacing:1.710000px;}
.wsd9{word-spacing:1.767000px;}
.ws7a{word-spacing:1.824000px;}
.ws10f{word-spacing:1.836000px;}
.ws84{word-spacing:1.881000px;}
.ws12a{word-spacing:1.944000px;}
.wsbb{word-spacing:1.995000px;}
.ws13e{word-spacing:1.998000px;}
.ws89{word-spacing:2.052000px;}
.ws30{word-spacing:2.109000px;}
.wsd2{word-spacing:2.166000px;}
.ws13d{word-spacing:2.214000px;}
.wse3{word-spacing:2.223000px;}
.ws2c{word-spacing:2.280000px;}
.ws80{word-spacing:2.337000px;}
.ws45{word-spacing:2.394000px;}
.wsb6{word-spacing:2.508000px;}
.ws65{word-spacing:2.565000px;}
.wsb9{word-spacing:2.622000px;}
.wsd5{word-spacing:2.679000px;}
.wsa2{word-spacing:2.736000px;}
.wsae{word-spacing:2.793000px;}
.wsdf{word-spacing:2.850000px;}
.wsb5{word-spacing:2.907000px;}
.wsee{word-spacing:2.964000px;}
.ws147{word-spacing:3.021000px;}
.ws9{word-spacing:3.078000px;}
.wse5{word-spacing:3.135000px;}
.ws8c{word-spacing:3.249000px;}
.ws35{word-spacing:3.306000px;}
.ws50{word-spacing:3.363000px;}
.ws68{word-spacing:3.420000px;}
.ws132{word-spacing:3.456000px;}
.ws145{word-spacing:3.477000px;}
.ws114{word-spacing:3.510000px;}
.ws8e{word-spacing:3.534000px;}
.ws11{word-spacing:3.600000px;}
.wsdd{word-spacing:3.648000px;}
.ws51{word-spacing:3.705000px;}
.ws108{word-spacing:3.726000px;}
.ws87{word-spacing:3.762000px;}
.ws2d{word-spacing:3.819000px;}
.ws113{word-spacing:3.834000px;}
.wsc1{word-spacing:3.876000px;}
.ws85{word-spacing:3.933000px;}
.ws107{word-spacing:3.942000px;}
.ws8d{word-spacing:3.990000px;}
.ws63{word-spacing:4.047000px;}
.wsbc{word-spacing:4.104000px;}
.ws27{word-spacing:4.161000px;}
.ws3b{word-spacing:4.218000px;}
.ws20{word-spacing:4.275000px;}
.ws106{word-spacing:4.320000px;}
.wsea{word-spacing:4.332000px;}
.ws5d{word-spacing:4.389000px;}
.ws4a{word-spacing:4.446000px;}
.ws121{word-spacing:4.482000px;}
.ws4d{word-spacing:4.503000px;}
.ws11e{word-spacing:4.536000px;}
.ws8b{word-spacing:4.560000px;}
.ws56{word-spacing:4.617000px;}
.ws34{word-spacing:4.674000px;}
.ws123{word-spacing:4.698000px;}
.wsb3{word-spacing:4.731000px;}
.wsdb{word-spacing:4.788000px;}
.ws6c{word-spacing:4.902000px;}
.ws141{word-spacing:4.914000px;}
.ws6e{word-spacing:4.959000px;}
.ws11d{word-spacing:4.968000px;}
.ws1d{word-spacing:5.016000px;}
.ws122{word-spacing:5.022000px;}
.ws39{word-spacing:5.073000px;}
.ws6f{word-spacing:5.130000px;}
.ws102{word-spacing:5.184000px;}
.wsb2{word-spacing:5.187000px;}
.ws78{word-spacing:5.244000px;}
.wsac{word-spacing:5.301000px;}
.ws143{word-spacing:5.400000px;}
.wse9{word-spacing:5.415000px;}
.ws142{word-spacing:5.454000px;}
.ws2e{word-spacing:5.472000px;}
.ws13c{word-spacing:5.508000px;}
.wsd7{word-spacing:5.529000px;}
.wsfc{word-spacing:5.562000px;}
.ws32{word-spacing:5.586000px;}
.wsb0{word-spacing:5.643000px;}
.ws101{word-spacing:5.670000px;}
.ws4c{word-spacing:5.700000px;}
.wsec{word-spacing:5.757000px;}
.ws67{word-spacing:5.814000px;}
.wsda{word-spacing:5.871000px;}
.wsc2{word-spacing:5.928000px;}
.ws82{word-spacing:5.985000px;}
.wsef{word-spacing:6.042000px;}
.wsd8{word-spacing:6.099000px;}
.wsfd{word-spacing:6.102000px;}
.wsa3{word-spacing:6.156000px;}
.ws12c{word-spacing:6.210000px;}
.ws149{word-spacing:6.270000px;}
.ws54{word-spacing:6.327000px;}
.ws129{word-spacing:6.372000px;}
.ws2b{word-spacing:6.384000px;}
.ws83{word-spacing:6.441000px;}
.wsdc{word-spacing:6.498000px;}
.ws81{word-spacing:6.612000px;}
.ws14a{word-spacing:6.669000px;}
.wsb7{word-spacing:6.726000px;}
.wsab{word-spacing:6.783000px;}
.ws10c{word-spacing:6.804000px;}
.ws12d{word-spacing:6.858000px;}
.wsf5{word-spacing:6.897000px;}
.ws64{word-spacing:6.954000px;}
.ws128{word-spacing:7.020000px;}
.ws3e{word-spacing:7.068000px;}
.ws11f{word-spacing:7.074000px;}
.wse0{word-spacing:7.182000px;}
.ws8f{word-spacing:7.239000px;}
.ws4e{word-spacing:7.296000px;}
.ws38{word-spacing:7.467000px;}
.wsd1{word-spacing:7.638000px;}
.ws110{word-spacing:7.722000px;}
.wsb{word-spacing:7.752000px;}
.ws120{word-spacing:7.776000px;}
.ws62{word-spacing:7.809000px;}
.ws116{word-spacing:7.830000px;}
.ws6b{word-spacing:7.866000px;}
.wsf8{word-spacing:8.037000px;}
.ws41{word-spacing:8.208000px;}
.ws9d{word-spacing:8.265000px;}
.wsf9{word-spacing:8.322000px;}
.wsba{word-spacing:8.436000px;}
.ws7b{word-spacing:8.493000px;}
.ws115{word-spacing:8.586000px;}
.ws70{word-spacing:8.607000px;}
.ws72{word-spacing:8.664000px;}
.ws46{word-spacing:8.892000px;}
.ws17{word-spacing:9.063000px;}
.ws93{word-spacing:9.120000px;}
.ws1c{word-spacing:9.234000px;}
.ws4f{word-spacing:9.291000px;}
.ws148{word-spacing:9.462000px;}
.ws71{word-spacing:9.519000px;}
.wsc7{word-spacing:9.576000px;}
.wsde{word-spacing:9.747000px;}
.wsf0{word-spacing:10.488000px;}
.ws6a{word-spacing:10.602000px;}
.ws61{word-spacing:10.887000px;}
.wscc{word-spacing:11.001000px;}
.wsbf{word-spacing:11.058000px;}
.ws8a{word-spacing:11.457000px;}
.wsb4{word-spacing:11.571000px;}
.wse6{word-spacing:11.913000px;}
.ws37{word-spacing:12.654000px;}
.ws23{word-spacing:13.167000px;}
.wsa1{word-spacing:13.224000px;}
.ws134{word-spacing:13.446000px;}
.ws146{word-spacing:13.452000px;}
.wsf{word-spacing:13.509000px;}
.ws10b{word-spacing:13.716000px;}
.wsa4{word-spacing:13.794000px;}
.wsd0{word-spacing:13.851000px;}
.wsd6{word-spacing:14.079000px;}
.wsa5{word-spacing:14.193000px;}
.ws2f{word-spacing:14.364000px;}
.ws43{word-spacing:14.763000px;}
.ws133{word-spacing:14.796000px;}
.ws94{word-spacing:14.820000px;}
.wsc5{word-spacing:15.048000px;}
.ws74{word-spacing:15.180000px;}
.wscd{word-spacing:15.219000px;}
.wsc6{word-spacing:15.390000px;}
.wsc3{word-spacing:16.017000px;}
.wscb{word-spacing:16.074000px;}
.wsc9{word-spacing:16.758000px;}
.wsc8{word-spacing:16.815000px;}
.wsbd{word-spacing:17.271000px;}
.ws9a{word-spacing:18.240000px;}
.ws118{word-spacing:18.522000px;}
.ws92{word-spacing:18.639000px;}
.ws9c{word-spacing:19.095000px;}
.wsc0{word-spacing:19.266000px;}
.ws95{word-spacing:19.437000px;}
.ws9b{word-spacing:19.608000px;}
.ws117{word-spacing:20.358000px;}
.ws119{word-spacing:20.412000px;}
.ws97{word-spacing:20.463000px;}
.ws9f{word-spacing:21.090000px;}
.ws98{word-spacing:21.432000px;}
.wse2{word-spacing:21.438000px;}
.wsce{word-spacing:24.339000px;}
.ws99{word-spacing:25.422000px;}
.ws96{word-spacing:30.096000px;}
.wsa0{word-spacing:36.195000px;}
.wscf{word-spacing:38.019000px;}
.ws9e{word-spacing:45.258000px;}
.wsc4{word-spacing:50.901000px;}
.ws12{word-spacing:98.010000px;}
.ws33{word-spacing:594.759600px;}
._11{margin-left:-35.154000px;}
._9{margin-left:-14.770800px;}
._c{margin-left:-12.214800px;}
._10{margin-left:-9.028800px;}
._4{margin-left:-6.859800px;}
._6{margin-left:-5.340600px;}
._3{margin-left:-3.879000px;}
._0{margin-left:-2.149200px;}
._1{margin-left:-1.124400px;}
._2{width:1.080000px;}
._5{width:2.195400px;}
._12{width:3.651600px;}
._b{width:4.840200px;}
._e{width:6.485700px;}
._d{width:9.354000px;}
._f{width:12.363600px;}
._a{width:18.229200px;}
._8{width:31.500000px;}
._7{width:49.156800px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:52.470000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.815000px;}
.y4d{bottom:56.126700px;}
.y25{bottom:56.665350px;}
.y23{bottom:89.291400px;}
.y22{bottom:102.791400px;}
.y7a{bottom:114.567600px;}
.yce{bottom:115.141050px;}
.y198{bottom:115.287600px;}
.y11c{bottom:115.363500px;}
.y14d{bottom:116.740350px;}
.y135{bottom:117.008250px;}
.y118{bottom:118.275450px;}
.ye9{bottom:120.736350px;}
.y10b{bottom:120.837600px;}
.y4b{bottom:122.405250px;}
.y102{bottom:123.642450px;}
.yc4{bottom:125.148600px;}
.ya0{bottom:128.871600px;}
.y16b{bottom:129.045600px;}
.y79{bottom:131.824350px;}
.ycd{bottom:132.397800px;}
.y197{bottom:132.540600px;}
.y11b{bottom:132.620250px;}
.y14c{bottom:133.997100px;}
.y134{bottom:134.265000px;}
.y117{bottom:135.532200px;}
.ye8{bottom:137.993100px;}
.y10a{bottom:138.094350px;}
.y4a{bottom:139.662000px;}
.y101{bottom:140.899200px;}
.yc3{bottom:142.405350px;}
.y9f{bottom:146.128350px;}
.y16a{bottom:146.298600px;}
.y78{bottom:149.081100px;}
.ycc{bottom:149.654550px;}
.y196{bottom:149.793600px;}
.y11a{bottom:149.877000px;}
.y14b{bottom:151.253850px;}
.y133{bottom:151.521750px;}
.y116{bottom:152.788950px;}
.ye7{bottom:155.249850px;}
.y109{bottom:155.351100px;}
.y49{bottom:156.918750px;}
.y100{bottom:158.155950px;}
.yc2{bottom:159.662100px;}
.y1af{bottom:160.287600px;}
.y9e{bottom:163.385100px;}
.y169{bottom:163.551600px;}
.y77{bottom:166.337850px;}
.y195{bottom:167.046600px;}
.y119{bottom:167.133750px;}
.y14a{bottom:168.510600px;}
.y132{bottom:168.778500px;}
.y115{bottom:170.045700px;}
.ye6{bottom:172.506600px;}
.y108{bottom:172.607850px;}
.y21{bottom:173.719350px;}
.y48{bottom:174.175500px;}
.yff{bottom:175.412700px;}
.yc1{bottom:176.918850px;}
.y1ae{bottom:177.544350px;}
.y9d{bottom:180.641850px;}
.y168{bottom:180.804600px;}
.y76{bottom:183.594600px;}
.y194{bottom:184.299600px;}
.y149{bottom:185.767350px;}
.y131{bottom:186.035250px;}
.y114{bottom:187.302450px;}
.ycb{bottom:187.904550px;}
.ye5{bottom:189.763350px;}
.y107{bottom:189.864600px;}
.y47{bottom:191.432250px;}
.yfe{bottom:192.669450px;}
.y20{bottom:192.996150px;}
.yc0{bottom:194.175600px;}
.y1ad{bottom:194.801100px;}
.y9c{bottom:197.898600px;}
.y167{bottom:198.057600px;}
.y75{bottom:200.851350px;}
.y193{bottom:201.552600px;}
.y148{bottom:203.024100px;}
.y130{bottom:203.292000px;}
.y113{bottom:204.559200px;}
.ye4{bottom:207.020100px;}
.y46{bottom:208.689000px;}
.yfd{bottom:209.926200px;}
.y1f{bottom:210.993900px;}
.ybf{bottom:211.432350px;}
.y1ac{bottom:212.057850px;}
.y120{bottom:212.179050px;}
.y9b{bottom:215.155350px;}
.y166{bottom:215.310600px;}
.y74{bottom:218.108100px;}
.y192{bottom:218.805600px;}
.y147{bottom:220.280850px;}
.y12f{bottom:220.548750px;}
.y112{bottom:221.815950px;}
.ye3{bottom:224.276850px;}
.y45{bottom:225.945750px;}
.y11f{bottom:226.576950px;}
.yfc{bottom:227.182950px;}
.y106{bottom:228.111600px;}
.ybe{bottom:228.689100px;}
.y1e{bottom:228.991650px;}
.y1ab{bottom:229.314600px;}
.y9a{bottom:232.412100px;}
.y165{bottom:232.563600px;}
.y73{bottom:235.364850px;}
.y191{bottom:236.058600px;}
.y146{bottom:237.537600px;}
.y12e{bottom:237.805500px;}
.y111{bottom:239.072700px;}
.ye2{bottom:241.533600px;}
.y44{bottom:243.202500px;}
.yfb{bottom:244.439700px;}
.y105{bottom:245.364600px;}
.ybd{bottom:245.945850px;}
.y1aa{bottom:246.571350px;}
.y1d{bottom:246.989400px;}
.yca{bottom:247.120800px;}
.y99{bottom:249.668850px;}
.y164{bottom:249.816600px;}
.y72{bottom:252.621600px;}
.y190{bottom:253.311600px;}
.y145{bottom:254.794350px;}
.y12d{bottom:255.062250px;}
.y110{bottom:256.329450px;}
.ye1{bottom:258.790350px;}
.y43{bottom:260.459250px;}
.yfa{bottom:261.696450px;}
.ybc{bottom:263.202600px;}
.y1a9{bottom:263.828100px;}
.yc9{bottom:264.377550px;}
.y1c{bottom:264.987150px;}
.y98{bottom:266.925600px;}
.y163{bottom:267.069600px;}
.y71{bottom:269.878350px;}
.y18f{bottom:270.564600px;}
.y144{bottom:272.051100px;}
.y12c{bottom:272.319000px;}
.y10f{bottom:273.586200px;}
.ye0{bottom:276.047100px;}
.y42{bottom:277.716000px;}
.yf9{bottom:278.953200px;}
.ybb{bottom:280.459350px;}
.y1a8{bottom:281.084850px;}
.yc8{bottom:281.634300px;}
.y1b{bottom:282.984900px;}
.y97{bottom:284.182350px;}
.y162{bottom:284.322600px;}
.y70{bottom:287.135100px;}
.y18e{bottom:287.817600px;}
.y143{bottom:289.307850px;}
.y12b{bottom:289.575750px;}
.y10e{bottom:290.842950px;}
.ydf{bottom:293.303850px;}
.y41{bottom:294.972750px;}
.yf8{bottom:296.209950px;}
.yba{bottom:297.716100px;}
.y1a7{bottom:298.341600px;}
.yc7{bottom:298.891050px;}
.y1a{bottom:300.982650px;}
.y96{bottom:301.439100px;}
.y161{bottom:301.575600px;}
.y6f{bottom:304.391850px;}
.y18d{bottom:305.070600px;}
.y142{bottom:306.564600px;}
.y12a{bottom:306.832500px;}
.yde{bottom:310.560600px;}
.yf7{bottom:313.466700px;}
.yb9{bottom:314.972850px;}
.y1a6{bottom:315.598350px;}
.yc6{bottom:316.147800px;}
.y95{bottom:318.695850px;}
.y160{bottom:318.828600px;}
.y19{bottom:318.980400px;}
.y10d{bottom:320.848950px;}
.y6e{bottom:321.648600px;}
.y18c{bottom:322.323600px;}
.y141{bottom:323.821350px;}
.y129{bottom:324.089250px;}
.ydd{bottom:327.817350px;}
.y40{bottom:330.222750px;}
.yf6{bottom:330.723450px;}
.yb8{bottom:332.229600px;}
.y1a5{bottom:332.855100px;}
.yc5{bottom:333.404550px;}
.y94{bottom:335.952600px;}
.y15f{bottom:336.081600px;}
.y18{bottom:336.978150px;}
.y10c{bottom:338.848950px;}
.y6d{bottom:338.905350px;}
.y18b{bottom:339.576600px;}
.y140{bottom:341.078100px;}
.y128{bottom:341.346000px;}
.ydc{bottom:345.074100px;}
.yf5{bottom:347.980200px;}
.y3f{bottom:348.222750px;}
.yb7{bottom:349.486350px;}
.y93{bottom:353.209350px;}
.y15e{bottom:353.334600px;}
.y17{bottom:354.975900px;}
.y6c{bottom:356.162100px;}
.y18a{bottom:356.829600px;}
.y13f{bottom:358.334850px;}
.y127{bottom:358.602750px;}
.ydb{bottom:362.330850px;}
.yf4{bottom:365.236950px;}
.yb6{bottom:366.743100px;}
.y92{bottom:370.466100px;}
.y15d{bottom:370.587600px;}
.y1a4{bottom:371.102100px;}
.y16{bottom:372.973650px;}
.y6b{bottom:373.418850px;}
.y189{bottom:374.082600px;}
.yec{bottom:374.233200px;}
.y13e{bottom:375.591600px;}
.y126{bottom:375.859500px;}
.yda{bottom:379.587600px;}
.yf3{bottom:382.493700px;}
.yb5{bottom:383.999850px;}
.y91{bottom:387.722850px;}
.y15c{bottom:387.840600px;}
.y1a3{bottom:388.358850px;}
.yeb{bottom:388.633200px;}
.y6a{bottom:390.675600px;}
.yd0{bottom:390.721050px;}
.y15{bottom:390.971400px;}
.y188{bottom:391.335600px;}
.y13d{bottom:392.848350px;}
.y125{bottom:393.116250px;}
.yd9{bottom:396.844350px;}
.yf2{bottom:399.750450px;}
.yb4{bottom:401.256600px;}
.y3e{bottom:402.222750px;}
.yea{bottom:403.033200px;}
.y90{bottom:404.979600px;}
.y15b{bottom:405.093600px;}
.ycf{bottom:405.121050px;}
.y1a2{bottom:405.615600px;}
.y69{bottom:407.932350px;}
.y187{bottom:408.588600px;}
.y13c{bottom:410.105100px;}
.y124{bottom:410.373000px;}
.yd8{bottom:414.101100px;}
.yf1{bottom:417.007200px;}
.y14{bottom:417.475350px;}
.yb3{bottom:418.513350px;}
.y3d{bottom:421.497300px;}
.y8f{bottom:422.236350px;}
.y15a{bottom:422.346600px;}
.y1a1{bottom:422.872350px;}
.y68{bottom:425.189100px;}
.y186{bottom:425.841600px;}
.y13b{bottom:427.361850px;}
.y123{bottom:427.629750px;}
.yd7{bottom:431.357850px;}
.yf0{bottom:434.263950px;}
.yb2{bottom:435.770100px;}
.y8e{bottom:439.493100px;}
.y3c{bottom:439.495050px;}
.y159{bottom:439.599600px;}
.y1a0{bottom:440.129100px;}
.y67{bottom:442.445850px;}
.y185{bottom:443.094600px;}
.y13a{bottom:444.618600px;}
.y122{bottom:444.886500px;}
.yd6{bottom:448.614600px;}
.yef{bottom:451.520700px;}
.yb1{bottom:453.026850px;}
.y8d{bottom:456.749850px;}
.y158{bottom:456.852600px;}
.y19f{bottom:457.385850px;}
.y3b{bottom:457.492800px;}
.y66{bottom:459.702600px;}
.y184{bottom:460.347600px;}
.y139{bottom:461.875350px;}
.y121{bottom:462.143250px;}
.yd4{bottom:462.660450px;}
.yee{bottom:468.777450px;}
.yb0{bottom:470.283600px;}
.y8c{bottom:474.006600px;}
.y157{bottom:474.105600px;}
.y19e{bottom:474.642600px;}
.y3a{bottom:475.490550px;}
.y65{bottom:476.959350px;}
.yd3{bottom:477.060450px;}
.y183{bottom:477.600600px;}
.y138{bottom:479.132100px;}
.yed{bottom:486.034200px;}
.yd5{bottom:486.864600px;}
.yaf{bottom:487.540350px;}
.y8b{bottom:491.263350px;}
.y156{bottom:491.358600px;}
.yd2{bottom:491.460450px;}
.y19d{bottom:491.899350px;}
.y39{bottom:493.488300px;}
.y64{bottom:494.216100px;}
.y182{bottom:494.853600px;}
.y13{bottom:497.800950px;}
.yae{bottom:504.797100px;}
.yd1{bottom:505.860450px;}
.y137{bottom:507.188550px;}
.y8a{bottom:508.520100px;}
.y155{bottom:508.611600px;}
.y19c{bottom:509.156100px;}
.y63{bottom:511.472850px;}
.y38{bottom:511.486050px;}
.y181{bottom:512.106600px;}
.y12{bottom:512.799450px;}
.y136{bottom:521.588550px;}
.yad{bottom:522.053850px;}
.y152{bottom:524.177400px;}
.y89{bottom:525.776850px;}
.y154{bottom:525.864600px;}
.y19b{bottom:526.412850px;}
.y11{bottom:527.797950px;}
.y62{bottom:528.729600px;}
.y180{bottom:529.359600px;}
.y37{bottom:529.483800px;}
.y104{bottom:531.079500px;}
.y151{bottom:538.577400px;}
.yac{bottom:539.310600px;}
.y88{bottom:543.033600px;}
.y19a{bottom:543.669600px;}
.y103{bottom:545.479500px;}
.y61{bottom:545.986350px;}
.y17f{bottom:546.612600px;}
.y10{bottom:547.050000px;}
.y36{bottom:547.481550px;}
.y150{bottom:552.977400px;}
.yab{bottom:556.567350px;}
.y87{bottom:560.290350px;}
.y153{bottom:561.114600px;}
.y60{bottom:563.243100px;}
.y17e{bottom:563.865600px;}
.y35{bottom:565.479300px;}
.y11e{bottom:565.540950px;}
.y14f{bottom:567.377400px;}
.yaa{bottom:573.824100px;}
.yf{bottom:575.056950px;}
.y86{bottom:577.547100px;}
.y199{bottom:578.919600px;}
.y11d{bottom:579.940950px;}
.y5f{bottom:580.499850px;}
.y17d{bottom:581.118600px;}
.y14e{bottom:581.777400px;}
.y34{bottom:583.477050px;}
.ye{bottom:590.055450px;}
.ya9{bottom:591.080850px;}
.y85{bottom:594.803850px;}
.y5e{bottom:597.756600px;}
.y17c{bottom:598.371600px;}
.y33{bottom:601.474800px;}
.yd{bottom:605.053950px;}
.ya8{bottom:608.337600px;}
.y84{bottom:612.060600px;}
.y5d{bottom:615.013350px;}
.y17b{bottom:615.624600px;}
.yc{bottom:624.305850px;}
.ya7{bottom:625.594350px;}
.y32{bottom:627.978750px;}
.y83{bottom:629.317350px;}
.y5c{bottom:632.270100px;}
.y17a{bottom:632.877600px;}
.ya6{bottom:642.851100px;}
.y82{bottom:646.574100px;}
.y5b{bottom:649.526850px;}
.y179{bottom:650.130600px;}
.yb{bottom:652.309800px;}
.ya5{bottom:660.107850px;}
.y81{bottom:663.830850px;}
.y31{bottom:665.778750px;}
.y5a{bottom:666.783600px;}
.y178{bottom:667.383600px;}
.ya4{bottom:677.364600px;}
.ya{bottom:679.309800px;}
.y80{bottom:681.087600px;}
.y59{bottom:684.040350px;}
.y177{bottom:684.636600px;}
.y30{bottom:685.050900px;}
.y7f{bottom:698.344350px;}
.y58{bottom:701.297100px;}
.y176{bottom:701.889600px;}
.y2f{bottom:703.048650px;}
.y9{bottom:706.309800px;}
.y7e{bottom:715.601100px;}
.ya3{bottom:715.611600px;}
.y57{bottom:718.553850px;}
.y175{bottom:719.142600px;}
.y2e{bottom:721.046400px;}
.y7d{bottom:732.857850px;}
.ya2{bottom:732.864600px;}
.y8{bottom:733.309800px;}
.y56{bottom:735.810600px;}
.y174{bottom:736.395600px;}
.y2d{bottom:739.044150px;}
.y7c{bottom:750.114600px;}
.y55{bottom:753.067350px;}
.y173{bottom:753.648600px;}
.y2c{bottom:757.041900px;}
.y7{bottom:760.309800px;}
.ya1{bottom:768.114600px;}
.y54{bottom:770.324100px;}
.y172{bottom:770.901600px;}
.y2b{bottom:775.039650px;}
.y7b{bottom:785.364600px;}
.y6{bottom:787.309800px;}
.y53{bottom:787.580850px;}
.y171{bottom:788.154600px;}
.y2a{bottom:793.037400px;}
.y52{bottom:804.837600px;}
.y170{bottom:805.407600px;}
.y29{bottom:811.035150px;}
.y51{bottom:822.094350px;}
.y16f{bottom:822.660600px;}
.y28{bottom:829.032900px;}
.y50{bottom:839.351100px;}
.y16e{bottom:839.913600px;}
.y27{bottom:847.030650px;}
.y5{bottom:849.772950px;}
.y4f{bottom:856.607850px;}
.y16d{bottom:857.166600px;}
.y4{bottom:867.772950px;}
.y26{bottom:873.534600px;}
.y4e{bottom:873.864600px;}
.y16c{bottom:874.419600px;}
.y3{bottom:885.772950px;}
.y2{bottom:903.772950px;}
.y4c{bottom:916.970700px;}
.y24{bottom:917.533200px;}
.h4{height:36.000000px;}
.hd{height:37.305000px;}
.hc{height:38.475000px;}
.he{height:39.792000px;}
.hb{height:39.825000px;}
.h11{height:43.536000px;}
.h12{height:43.544400px;}
.h13{height:45.576000px;}
.h7{height:46.170000px;}
.h2{height:46.332000px;}
.h10{height:47.148353px;}
.ha{height:47.790000px;}
.hf{height:48.486600px;}
.h9{height:48.735000px;}
.h14{height:50.445000px;}
.h8{height:52.387059px;}
.h3{height:52.646484px;}
.h6{height:72.072000px;}
.h5{height:78.580588px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x17{left:63.779550px;}
.x26{left:68.052600px;}
.x12{left:72.388350px;}
.x28{left:78.654300px;}
.xa{left:79.994400px;}
.x29{left:82.266300px;}
.x8{left:84.594750px;}
.x13{left:89.403750px;}
.x19{left:91.778550px;}
.x1a{left:93.112650px;}
.x9{left:94.214400px;}
.x1b{left:97.636650px;}
.xd{left:104.449950px;}
.x23{left:106.949700px;}
.x14{left:109.151400px;}
.x18{left:119.059650px;}
.x7{left:121.179750px;}
.x2b{left:123.311400px;}
.xe{left:132.084450px;}
.x6{left:161.184750px;}
.x2a{left:179.910300px;}
.x2{left:200.302050px;}
.xf{left:207.414450px;}
.x11{left:209.925450px;}
.x25{left:211.872600px;}
.xc{left:231.603450px;}
.x16{left:235.983450px;}
.x10{left:245.946150px;}
.x27{left:254.814600px;}
.xb{left:279.456900px;}
.x24{left:298.349700px;}
.x1{left:338.727750px;}
.x1d{left:349.793850px;}
.x1c{left:353.201850px;}
.x20{left:355.090650px;}
.x21{left:364.606650px;}
.x22{left:371.734650px;}
.x4{left:392.806950px;}
.x15{left:398.151450px;}
.x3{left:409.462950px;}
.x5{left:410.746950px;}
.x1e{left:415.373850px;}
.x1f{left:465.773850px;}
@media print{
.v2{vertical-align:-1.917867pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.915200pt;}
.v4{vertical-align:14.215467pt;}
.v1{vertical-align:26.640000pt;}
.ls6{letter-spacing:-0.853333pt;}
.lse{letter-spacing:-0.810667pt;}
.ls11{letter-spacing:-0.760000pt;}
.lsa{letter-spacing:-0.709333pt;}
.ls4{letter-spacing:-0.557333pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.405333pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls5{letter-spacing:-0.202667pt;}
.ls10{letter-spacing:-0.152000pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000064pt;}
.ls12{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.050667pt;}
.ls16{letter-spacing:0.152000pt;}
.ls15{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.672000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls0{letter-spacing:1.120000pt;}
.ls3{letter-spacing:1.280000pt;}
.ws2{word-spacing:-20.320000pt;}
.ws14{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-11.193600pt;}
.ws15{word-spacing:-10.800000pt;}
.ws112{word-spacing:-10.560000pt;}
.ws13a{word-spacing:-10.184000pt;}
.ws138{word-spacing:-10.133333pt;}
.ws1{word-spacing:-10.026667pt;}
.ws13{word-spacing:-10.000000pt;}
.ws139{word-spacing:-9.981333pt;}
.wsf6{word-spacing:-9.600000pt;}
.ws137{word-spacing:-9.576000pt;}
.ws52{word-spacing:-9.424000pt;}
.wsf7{word-spacing:-9.120000pt;}
.ws91{word-spacing:-8.576000pt;}
.wsbe{word-spacing:-4.813333pt;}
.wsa{word-spacing:-3.698667pt;}
.ws11c{word-spacing:-3.648000pt;}
.ws12e{word-spacing:-3.600000pt;}
.ws11b{word-spacing:-3.312000pt;}
.wsca{word-spacing:-3.293333pt;}
.ws12f{word-spacing:-3.264000pt;}
.ws7{word-spacing:-3.242667pt;}
.wsa7{word-spacing:-3.141333pt;}
.ws1f{word-spacing:-3.040000pt;}
.wsa8{word-spacing:-2.837333pt;}
.wse4{word-spacing:-2.786667pt;}
.ws8{word-spacing:-2.736000pt;}
.wsd{word-spacing:-2.634667pt;}
.ws13f{word-spacing:-2.592000pt;}
.ws1a{word-spacing:-2.533333pt;}
.wseb{word-spacing:-2.482667pt;}
.ws11a{word-spacing:-2.448000pt;}
.ws140{word-spacing:-2.352000pt;}
.wsb1{word-spacing:-2.330667pt;}
.ws53{word-spacing:-2.293333pt;}
.wsaa{word-spacing:-2.229333pt;}
.ws10a{word-spacing:-2.208000pt;}
.ws60{word-spacing:-2.178667pt;}
.ws18{word-spacing:-2.077333pt;}
.ws109{word-spacing:-2.016000pt;}
.wsa6{word-spacing:-1.976000pt;}
.ws73{word-spacing:-1.925333pt;}
.wsf3{word-spacing:-1.874667pt;}
.ws3c{word-spacing:-1.773333pt;}
.ws10{word-spacing:-1.722667pt;}
.ws1b{word-spacing:-1.672000pt;}
.ws144{word-spacing:-1.632000pt;}
.ws55{word-spacing:-1.621333pt;}
.ws25{word-spacing:-1.520000pt;}
.wsf1{word-spacing:-1.469333pt;}
.ws5f{word-spacing:-1.418667pt;}
.ws3a{word-spacing:-1.368000pt;}
.ws7c{word-spacing:-1.317333pt;}
.wsfb{word-spacing:-1.280000pt;}
.ws22{word-spacing:-1.266667pt;}
.wse7{word-spacing:-1.216000pt;}
.ws1e{word-spacing:-1.165333pt;}
.ws66{word-spacing:-1.114667pt;}
.ws29{word-spacing:-1.013333pt;}
.wsc{word-spacing:-0.962667pt;}
.ws6d{word-spacing:-0.912000pt;}
.ws13b{word-spacing:-0.816000pt;}
.ws2a{word-spacing:-0.810667pt;}
.wsed{word-spacing:-0.760000pt;}
.ws6{word-spacing:-0.746667pt;}
.ws75{word-spacing:-0.720000pt;}
.ws3f{word-spacing:-0.709333pt;}
.wsd4{word-spacing:-0.658667pt;}
.ws57{word-spacing:-0.608000pt;}
.ws5{word-spacing:-0.560000pt;}
.ws5a{word-spacing:-0.557333pt;}
.ws58{word-spacing:-0.506667pt;}
.ws12b{word-spacing:-0.480000pt;}
.ws5e{word-spacing:-0.456000pt;}
.ws111{word-spacing:-0.432000pt;}
.ws77{word-spacing:-0.405333pt;}
.ws16{word-spacing:-0.400000pt;}
.ws10d{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.373333pt;}
.ws59{word-spacing:-0.354667pt;}
.ws76{word-spacing:-0.336000pt;}
.ws7e{word-spacing:-0.304000pt;}
.ws127{word-spacing:-0.288000pt;}
.ws69{word-spacing:-0.202667pt;}
.wsaf{word-spacing:-0.152000pt;}
.ws21{word-spacing:-0.101333pt;}
.ws124{word-spacing:-0.096000pt;}
.ws31{word-spacing:-0.050667pt;}
.ws100{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.050667pt;}
.ws40{word-spacing:0.101333pt;}
.ws5b{word-spacing:0.152000pt;}
.wse8{word-spacing:0.253333pt;}
.wse1{word-spacing:0.304000pt;}
.ws131{word-spacing:0.384000pt;}
.ws7f{word-spacing:0.405333pt;}
.ws90{word-spacing:0.426667pt;}
.ws130{word-spacing:0.432000pt;}
.ws24{word-spacing:0.456000pt;}
.wsfe{word-spacing:0.480000pt;}
.ws48{word-spacing:0.506667pt;}
.wsff{word-spacing:0.528000pt;}
.ws49{word-spacing:0.557333pt;}
.ws126{word-spacing:0.576000pt;}
.ws5c{word-spacing:0.608000pt;}
.ws7d{word-spacing:0.658667pt;}
.ws125{word-spacing:0.672000pt;}
.wsd3{word-spacing:0.709333pt;}
.ws105{word-spacing:0.720000pt;}
.ws42{word-spacing:0.760000pt;}
.ws104{word-spacing:0.768000pt;}
.ws3d{word-spacing:0.810667pt;}
.ws103{word-spacing:0.816000pt;}
.wsad{word-spacing:0.853333pt;}
.ws88{word-spacing:0.861333pt;}
.ws44{word-spacing:0.912000pt;}
.wsf2{word-spacing:0.962667pt;}
.ws47{word-spacing:1.013333pt;}
.wsf4{word-spacing:1.064000pt;}
.ws19{word-spacing:1.114667pt;}
.ws136{word-spacing:1.152000pt;}
.wsfa{word-spacing:1.165333pt;}
.ws79{word-spacing:1.216000pt;}
.ws135{word-spacing:1.248000pt;}
.ws36{word-spacing:1.266667pt;}
.wse{word-spacing:1.317333pt;}
.ws26{word-spacing:1.368000pt;}
.wsa9{word-spacing:1.418667pt;}
.ws86{word-spacing:1.469333pt;}
.ws10e{word-spacing:1.488000pt;}
.wsb8{word-spacing:1.520000pt;}
.wsd9{word-spacing:1.570667pt;}
.ws7a{word-spacing:1.621333pt;}
.ws10f{word-spacing:1.632000pt;}
.ws84{word-spacing:1.672000pt;}
.ws12a{word-spacing:1.728000pt;}
.wsbb{word-spacing:1.773333pt;}
.ws13e{word-spacing:1.776000pt;}
.ws89{word-spacing:1.824000pt;}
.ws30{word-spacing:1.874667pt;}
.wsd2{word-spacing:1.925333pt;}
.ws13d{word-spacing:1.968000pt;}
.wse3{word-spacing:1.976000pt;}
.ws2c{word-spacing:2.026667pt;}
.ws80{word-spacing:2.077333pt;}
.ws45{word-spacing:2.128000pt;}
.wsb6{word-spacing:2.229333pt;}
.ws65{word-spacing:2.280000pt;}
.wsb9{word-spacing:2.330667pt;}
.wsd5{word-spacing:2.381333pt;}
.wsa2{word-spacing:2.432000pt;}
.wsae{word-spacing:2.482667pt;}
.wsdf{word-spacing:2.533333pt;}
.wsb5{word-spacing:2.584000pt;}
.wsee{word-spacing:2.634667pt;}
.ws147{word-spacing:2.685333pt;}
.ws9{word-spacing:2.736000pt;}
.wse5{word-spacing:2.786667pt;}
.ws8c{word-spacing:2.888000pt;}
.ws35{word-spacing:2.938667pt;}
.ws50{word-spacing:2.989333pt;}
.ws68{word-spacing:3.040000pt;}
.ws132{word-spacing:3.072000pt;}
.ws145{word-spacing:3.090667pt;}
.ws114{word-spacing:3.120000pt;}
.ws8e{word-spacing:3.141333pt;}
.ws11{word-spacing:3.200000pt;}
.wsdd{word-spacing:3.242667pt;}
.ws51{word-spacing:3.293333pt;}
.ws108{word-spacing:3.312000pt;}
.ws87{word-spacing:3.344000pt;}
.ws2d{word-spacing:3.394667pt;}
.ws113{word-spacing:3.408000pt;}
.wsc1{word-spacing:3.445333pt;}
.ws85{word-spacing:3.496000pt;}
.ws107{word-spacing:3.504000pt;}
.ws8d{word-spacing:3.546667pt;}
.ws63{word-spacing:3.597333pt;}
.wsbc{word-spacing:3.648000pt;}
.ws27{word-spacing:3.698667pt;}
.ws3b{word-spacing:3.749333pt;}
.ws20{word-spacing:3.800000pt;}
.ws106{word-spacing:3.840000pt;}
.wsea{word-spacing:3.850667pt;}
.ws5d{word-spacing:3.901333pt;}
.ws4a{word-spacing:3.952000pt;}
.ws121{word-spacing:3.984000pt;}
.ws4d{word-spacing:4.002667pt;}
.ws11e{word-spacing:4.032000pt;}
.ws8b{word-spacing:4.053333pt;}
.ws56{word-spacing:4.104000pt;}
.ws34{word-spacing:4.154667pt;}
.ws123{word-spacing:4.176000pt;}
.wsb3{word-spacing:4.205333pt;}
.wsdb{word-spacing:4.256000pt;}
.ws6c{word-spacing:4.357333pt;}
.ws141{word-spacing:4.368000pt;}
.ws6e{word-spacing:4.408000pt;}
.ws11d{word-spacing:4.416000pt;}
.ws1d{word-spacing:4.458667pt;}
.ws122{word-spacing:4.464000pt;}
.ws39{word-spacing:4.509333pt;}
.ws6f{word-spacing:4.560000pt;}
.ws102{word-spacing:4.608000pt;}
.wsb2{word-spacing:4.610667pt;}
.ws78{word-spacing:4.661333pt;}
.wsac{word-spacing:4.712000pt;}
.ws143{word-spacing:4.800000pt;}
.wse9{word-spacing:4.813333pt;}
.ws142{word-spacing:4.848000pt;}
.ws2e{word-spacing:4.864000pt;}
.ws13c{word-spacing:4.896000pt;}
.wsd7{word-spacing:4.914667pt;}
.wsfc{word-spacing:4.944000pt;}
.ws32{word-spacing:4.965333pt;}
.wsb0{word-spacing:5.016000pt;}
.ws101{word-spacing:5.040000pt;}
.ws4c{word-spacing:5.066667pt;}
.wsec{word-spacing:5.117333pt;}
.ws67{word-spacing:5.168000pt;}
.wsda{word-spacing:5.218667pt;}
.wsc2{word-spacing:5.269333pt;}
.ws82{word-spacing:5.320000pt;}
.wsef{word-spacing:5.370667pt;}
.wsd8{word-spacing:5.421333pt;}
.wsfd{word-spacing:5.424000pt;}
.wsa3{word-spacing:5.472000pt;}
.ws12c{word-spacing:5.520000pt;}
.ws149{word-spacing:5.573333pt;}
.ws54{word-spacing:5.624000pt;}
.ws129{word-spacing:5.664000pt;}
.ws2b{word-spacing:5.674667pt;}
.ws83{word-spacing:5.725333pt;}
.wsdc{word-spacing:5.776000pt;}
.ws81{word-spacing:5.877333pt;}
.ws14a{word-spacing:5.928000pt;}
.wsb7{word-spacing:5.978667pt;}
.wsab{word-spacing:6.029333pt;}
.ws10c{word-spacing:6.048000pt;}
.ws12d{word-spacing:6.096000pt;}
.wsf5{word-spacing:6.130667pt;}
.ws64{word-spacing:6.181333pt;}
.ws128{word-spacing:6.240000pt;}
.ws3e{word-spacing:6.282667pt;}
.ws11f{word-spacing:6.288000pt;}
.wse0{word-spacing:6.384000pt;}
.ws8f{word-spacing:6.434667pt;}
.ws4e{word-spacing:6.485333pt;}
.ws38{word-spacing:6.637333pt;}
.wsd1{word-spacing:6.789333pt;}
.ws110{word-spacing:6.864000pt;}
.wsb{word-spacing:6.890667pt;}
.ws120{word-spacing:6.912000pt;}
.ws62{word-spacing:6.941333pt;}
.ws116{word-spacing:6.960000pt;}
.ws6b{word-spacing:6.992000pt;}
.wsf8{word-spacing:7.144000pt;}
.ws41{word-spacing:7.296000pt;}
.ws9d{word-spacing:7.346667pt;}
.wsf9{word-spacing:7.397333pt;}
.wsba{word-spacing:7.498667pt;}
.ws7b{word-spacing:7.549333pt;}
.ws115{word-spacing:7.632000pt;}
.ws70{word-spacing:7.650667pt;}
.ws72{word-spacing:7.701333pt;}
.ws46{word-spacing:7.904000pt;}
.ws17{word-spacing:8.056000pt;}
.ws93{word-spacing:8.106667pt;}
.ws1c{word-spacing:8.208000pt;}
.ws4f{word-spacing:8.258667pt;}
.ws148{word-spacing:8.410667pt;}
.ws71{word-spacing:8.461333pt;}
.wsc7{word-spacing:8.512000pt;}
.wsde{word-spacing:8.664000pt;}
.wsf0{word-spacing:9.322667pt;}
.ws6a{word-spacing:9.424000pt;}
.ws61{word-spacing:9.677333pt;}
.wscc{word-spacing:9.778667pt;}
.wsbf{word-spacing:9.829333pt;}
.ws8a{word-spacing:10.184000pt;}
.wsb4{word-spacing:10.285333pt;}
.wse6{word-spacing:10.589333pt;}
.ws37{word-spacing:11.248000pt;}
.ws23{word-spacing:11.704000pt;}
.wsa1{word-spacing:11.754667pt;}
.ws134{word-spacing:11.952000pt;}
.ws146{word-spacing:11.957333pt;}
.wsf{word-spacing:12.008000pt;}
.ws10b{word-spacing:12.192000pt;}
.wsa4{word-spacing:12.261333pt;}
.wsd0{word-spacing:12.312000pt;}
.wsd6{word-spacing:12.514667pt;}
.wsa5{word-spacing:12.616000pt;}
.ws2f{word-spacing:12.768000pt;}
.ws43{word-spacing:13.122667pt;}
.ws133{word-spacing:13.152000pt;}
.ws94{word-spacing:13.173333pt;}
.wsc5{word-spacing:13.376000pt;}
.ws74{word-spacing:13.493333pt;}
.wscd{word-spacing:13.528000pt;}
.wsc6{word-spacing:13.680000pt;}
.wsc3{word-spacing:14.237333pt;}
.wscb{word-spacing:14.288000pt;}
.wsc9{word-spacing:14.896000pt;}
.wsc8{word-spacing:14.946667pt;}
.wsbd{word-spacing:15.352000pt;}
.ws9a{word-spacing:16.213333pt;}
.ws118{word-spacing:16.464000pt;}
.ws92{word-spacing:16.568000pt;}
.ws9c{word-spacing:16.973333pt;}
.wsc0{word-spacing:17.125333pt;}
.ws95{word-spacing:17.277333pt;}
.ws9b{word-spacing:17.429333pt;}
.ws117{word-spacing:18.096000pt;}
.ws119{word-spacing:18.144000pt;}
.ws97{word-spacing:18.189333pt;}
.ws9f{word-spacing:18.746667pt;}
.ws98{word-spacing:19.050667pt;}
.wse2{word-spacing:19.056000pt;}
.wsce{word-spacing:21.634667pt;}
.ws99{word-spacing:22.597333pt;}
.ws96{word-spacing:26.752000pt;}
.wsa0{word-spacing:32.173333pt;}
.wscf{word-spacing:33.794667pt;}
.ws9e{word-spacing:40.229333pt;}
.wsc4{word-spacing:45.245333pt;}
.ws12{word-spacing:87.120000pt;}
.ws33{word-spacing:528.675200pt;}
._11{margin-left:-31.248000pt;}
._9{margin-left:-13.129600pt;}
._c{margin-left:-10.857600pt;}
._10{margin-left:-8.025600pt;}
._4{margin-left:-6.097600pt;}
._6{margin-left:-4.747200pt;}
._3{margin-left:-3.448000pt;}
._0{margin-left:-1.910400pt;}
._1{margin-left:-0.999467pt;}
._2{width:0.960000pt;}
._5{width:1.951467pt;}
._12{width:3.245867pt;}
._b{width:4.302400pt;}
._e{width:5.765067pt;}
._d{width:8.314667pt;}
._f{width:10.989867pt;}
._a{width:16.203733pt;}
._8{width:28.000000pt;}
._7{width:43.694933pt;}
.fs8{font-size:24.874667pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:46.640000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.613333pt;}
.y4d{bottom:49.890400pt;}
.y25{bottom:50.369200pt;}
.y23{bottom:79.370133pt;}
.y22{bottom:91.370133pt;}
.y7a{bottom:101.837867pt;}
.yce{bottom:102.347600pt;}
.y198{bottom:102.477867pt;}
.y11c{bottom:102.545333pt;}
.y14d{bottom:103.769200pt;}
.y135{bottom:104.007333pt;}
.y118{bottom:105.133733pt;}
.ye9{bottom:107.321200pt;}
.y10b{bottom:107.411200pt;}
.y4b{bottom:108.804667pt;}
.y102{bottom:109.904400pt;}
.yc4{bottom:111.243200pt;}
.ya0{bottom:114.552533pt;}
.y16b{bottom:114.707200pt;}
.y79{bottom:117.177200pt;}
.ycd{bottom:117.686933pt;}
.y197{bottom:117.813867pt;}
.y11b{bottom:117.884667pt;}
.y14c{bottom:119.108533pt;}
.y134{bottom:119.346667pt;}
.y117{bottom:120.473067pt;}
.ye8{bottom:122.660533pt;}
.y10a{bottom:122.750533pt;}
.y4a{bottom:124.144000pt;}
.y101{bottom:125.243733pt;}
.yc3{bottom:126.582533pt;}
.y9f{bottom:129.891867pt;}
.y16a{bottom:130.043200pt;}
.y78{bottom:132.516533pt;}
.ycc{bottom:133.026267pt;}
.y196{bottom:133.149867pt;}
.y11a{bottom:133.224000pt;}
.y14b{bottom:134.447867pt;}
.y133{bottom:134.686000pt;}
.y116{bottom:135.812400pt;}
.ye7{bottom:137.999867pt;}
.y109{bottom:138.089867pt;}
.y49{bottom:139.483333pt;}
.y100{bottom:140.583067pt;}
.yc2{bottom:141.921867pt;}
.y1af{bottom:142.477867pt;}
.y9e{bottom:145.231200pt;}
.y169{bottom:145.379200pt;}
.y77{bottom:147.855867pt;}
.y195{bottom:148.485867pt;}
.y119{bottom:148.563333pt;}
.y14a{bottom:149.787200pt;}
.y132{bottom:150.025333pt;}
.y115{bottom:151.151733pt;}
.ye6{bottom:153.339200pt;}
.y108{bottom:153.429200pt;}
.y21{bottom:154.417200pt;}
.y48{bottom:154.822667pt;}
.yff{bottom:155.922400pt;}
.yc1{bottom:157.261200pt;}
.y1ae{bottom:157.817200pt;}
.y9d{bottom:160.570533pt;}
.y168{bottom:160.715200pt;}
.y76{bottom:163.195200pt;}
.y194{bottom:163.821867pt;}
.y149{bottom:165.126533pt;}
.y131{bottom:165.364667pt;}
.y114{bottom:166.491067pt;}
.ycb{bottom:167.026267pt;}
.ye5{bottom:168.678533pt;}
.y107{bottom:168.768533pt;}
.y47{bottom:170.162000pt;}
.yfe{bottom:171.261733pt;}
.y20{bottom:171.552133pt;}
.yc0{bottom:172.600533pt;}
.y1ad{bottom:173.156533pt;}
.y9c{bottom:175.909867pt;}
.y167{bottom:176.051200pt;}
.y75{bottom:178.534533pt;}
.y193{bottom:179.157867pt;}
.y148{bottom:180.465867pt;}
.y130{bottom:180.704000pt;}
.y113{bottom:181.830400pt;}
.ye4{bottom:184.017867pt;}
.y46{bottom:185.501333pt;}
.yfd{bottom:186.601067pt;}
.y1f{bottom:187.550133pt;}
.ybf{bottom:187.939867pt;}
.y1ac{bottom:188.495867pt;}
.y120{bottom:188.603600pt;}
.y9b{bottom:191.249200pt;}
.y166{bottom:191.387200pt;}
.y74{bottom:193.873867pt;}
.y192{bottom:194.493867pt;}
.y147{bottom:195.805200pt;}
.y12f{bottom:196.043333pt;}
.y112{bottom:197.169733pt;}
.ye3{bottom:199.357200pt;}
.y45{bottom:200.840667pt;}
.y11f{bottom:201.401733pt;}
.yfc{bottom:201.940400pt;}
.y106{bottom:202.765867pt;}
.ybe{bottom:203.279200pt;}
.y1e{bottom:203.548133pt;}
.y1ab{bottom:203.835200pt;}
.y9a{bottom:206.588533pt;}
.y165{bottom:206.723200pt;}
.y73{bottom:209.213200pt;}
.y191{bottom:209.829867pt;}
.y146{bottom:211.144533pt;}
.y12e{bottom:211.382667pt;}
.y111{bottom:212.509067pt;}
.ye2{bottom:214.696533pt;}
.y44{bottom:216.180000pt;}
.yfb{bottom:217.279733pt;}
.y105{bottom:218.101867pt;}
.ybd{bottom:218.618533pt;}
.y1aa{bottom:219.174533pt;}
.y1d{bottom:219.546133pt;}
.yca{bottom:219.662933pt;}
.y99{bottom:221.927867pt;}
.y164{bottom:222.059200pt;}
.y72{bottom:224.552533pt;}
.y190{bottom:225.165867pt;}
.y145{bottom:226.483867pt;}
.y12d{bottom:226.722000pt;}
.y110{bottom:227.848400pt;}
.ye1{bottom:230.035867pt;}
.y43{bottom:231.519333pt;}
.yfa{bottom:232.619067pt;}
.ybc{bottom:233.957867pt;}
.y1a9{bottom:234.513867pt;}
.yc9{bottom:235.002267pt;}
.y1c{bottom:235.544133pt;}
.y98{bottom:237.267200pt;}
.y163{bottom:237.395200pt;}
.y71{bottom:239.891867pt;}
.y18f{bottom:240.501867pt;}
.y144{bottom:241.823200pt;}
.y12c{bottom:242.061333pt;}
.y10f{bottom:243.187733pt;}
.ye0{bottom:245.375200pt;}
.y42{bottom:246.858667pt;}
.yf9{bottom:247.958400pt;}
.ybb{bottom:249.297200pt;}
.y1a8{bottom:249.853200pt;}
.yc8{bottom:250.341600pt;}
.y1b{bottom:251.542133pt;}
.y97{bottom:252.606533pt;}
.y162{bottom:252.731200pt;}
.y70{bottom:255.231200pt;}
.y18e{bottom:255.837867pt;}
.y143{bottom:257.162533pt;}
.y12b{bottom:257.400667pt;}
.y10e{bottom:258.527067pt;}
.ydf{bottom:260.714533pt;}
.y41{bottom:262.198000pt;}
.yf8{bottom:263.297733pt;}
.yba{bottom:264.636533pt;}
.y1a7{bottom:265.192533pt;}
.yc7{bottom:265.680933pt;}
.y1a{bottom:267.540133pt;}
.y96{bottom:267.945867pt;}
.y161{bottom:268.067200pt;}
.y6f{bottom:270.570533pt;}
.y18d{bottom:271.173867pt;}
.y142{bottom:272.501867pt;}
.y12a{bottom:272.740000pt;}
.yde{bottom:276.053867pt;}
.yf7{bottom:278.637067pt;}
.yb9{bottom:279.975867pt;}
.y1a6{bottom:280.531867pt;}
.yc6{bottom:281.020267pt;}
.y95{bottom:283.285200pt;}
.y160{bottom:283.403200pt;}
.y19{bottom:283.538133pt;}
.y10d{bottom:285.199067pt;}
.y6e{bottom:285.909867pt;}
.y18c{bottom:286.509867pt;}
.y141{bottom:287.841200pt;}
.y129{bottom:288.079333pt;}
.ydd{bottom:291.393200pt;}
.y40{bottom:293.531333pt;}
.yf6{bottom:293.976400pt;}
.yb8{bottom:295.315200pt;}
.y1a5{bottom:295.871200pt;}
.yc5{bottom:296.359600pt;}
.y94{bottom:298.624533pt;}
.y15f{bottom:298.739200pt;}
.y18{bottom:299.536133pt;}
.y10c{bottom:301.199067pt;}
.y6d{bottom:301.249200pt;}
.y18b{bottom:301.845867pt;}
.y140{bottom:303.180533pt;}
.y128{bottom:303.418667pt;}
.ydc{bottom:306.732533pt;}
.yf5{bottom:309.315733pt;}
.y3f{bottom:309.531333pt;}
.yb7{bottom:310.654533pt;}
.y93{bottom:313.963867pt;}
.y15e{bottom:314.075200pt;}
.y17{bottom:315.534133pt;}
.y6c{bottom:316.588533pt;}
.y18a{bottom:317.181867pt;}
.y13f{bottom:318.519867pt;}
.y127{bottom:318.758000pt;}
.ydb{bottom:322.071867pt;}
.yf4{bottom:324.655067pt;}
.yb6{bottom:325.993867pt;}
.y92{bottom:329.303200pt;}
.y15d{bottom:329.411200pt;}
.y1a4{bottom:329.868533pt;}
.y16{bottom:331.532133pt;}
.y6b{bottom:331.927867pt;}
.y189{bottom:332.517867pt;}
.yec{bottom:332.651733pt;}
.y13e{bottom:333.859200pt;}
.y126{bottom:334.097333pt;}
.yda{bottom:337.411200pt;}
.yf3{bottom:339.994400pt;}
.yb5{bottom:341.333200pt;}
.y91{bottom:344.642533pt;}
.y15c{bottom:344.747200pt;}
.y1a3{bottom:345.207867pt;}
.yeb{bottom:345.451733pt;}
.y6a{bottom:347.267200pt;}
.yd0{bottom:347.307600pt;}
.y15{bottom:347.530133pt;}
.y188{bottom:347.853867pt;}
.y13d{bottom:349.198533pt;}
.y125{bottom:349.436667pt;}
.yd9{bottom:352.750533pt;}
.yf2{bottom:355.333733pt;}
.yb4{bottom:356.672533pt;}
.y3e{bottom:357.531333pt;}
.yea{bottom:358.251733pt;}
.y90{bottom:359.981867pt;}
.y15b{bottom:360.083200pt;}
.ycf{bottom:360.107600pt;}
.y1a2{bottom:360.547200pt;}
.y69{bottom:362.606533pt;}
.y187{bottom:363.189867pt;}
.y13c{bottom:364.537867pt;}
.y124{bottom:364.776000pt;}
.yd8{bottom:368.089867pt;}
.yf1{bottom:370.673067pt;}
.y14{bottom:371.089200pt;}
.yb3{bottom:372.011867pt;}
.y3d{bottom:374.664267pt;}
.y8f{bottom:375.321200pt;}
.y15a{bottom:375.419200pt;}
.y1a1{bottom:375.886533pt;}
.y68{bottom:377.945867pt;}
.y186{bottom:378.525867pt;}
.y13b{bottom:379.877200pt;}
.y123{bottom:380.115333pt;}
.yd7{bottom:383.429200pt;}
.yf0{bottom:386.012400pt;}
.yb2{bottom:387.351200pt;}
.y8e{bottom:390.660533pt;}
.y3c{bottom:390.662267pt;}
.y159{bottom:390.755200pt;}
.y1a0{bottom:391.225867pt;}
.y67{bottom:393.285200pt;}
.y185{bottom:393.861867pt;}
.y13a{bottom:395.216533pt;}
.y122{bottom:395.454667pt;}
.yd6{bottom:398.768533pt;}
.yef{bottom:401.351733pt;}
.yb1{bottom:402.690533pt;}
.y8d{bottom:405.999867pt;}
.y158{bottom:406.091200pt;}
.y19f{bottom:406.565200pt;}
.y3b{bottom:406.660267pt;}
.y66{bottom:408.624533pt;}
.y184{bottom:409.197867pt;}
.y139{bottom:410.555867pt;}
.y121{bottom:410.794000pt;}
.yd4{bottom:411.253733pt;}
.yee{bottom:416.691067pt;}
.yb0{bottom:418.029867pt;}
.y8c{bottom:421.339200pt;}
.y157{bottom:421.427200pt;}
.y19e{bottom:421.904533pt;}
.y3a{bottom:422.658267pt;}
.y65{bottom:423.963867pt;}
.yd3{bottom:424.053733pt;}
.y183{bottom:424.533867pt;}
.y138{bottom:425.895200pt;}
.yed{bottom:432.030400pt;}
.yd5{bottom:432.768533pt;}
.yaf{bottom:433.369200pt;}
.y8b{bottom:436.678533pt;}
.y156{bottom:436.763200pt;}
.yd2{bottom:436.853733pt;}
.y19d{bottom:437.243867pt;}
.y39{bottom:438.656267pt;}
.y64{bottom:439.303200pt;}
.y182{bottom:439.869867pt;}
.y13{bottom:442.489733pt;}
.yae{bottom:448.708533pt;}
.yd1{bottom:449.653733pt;}
.y137{bottom:450.834267pt;}
.y8a{bottom:452.017867pt;}
.y155{bottom:452.099200pt;}
.y19c{bottom:452.583200pt;}
.y63{bottom:454.642533pt;}
.y38{bottom:454.654267pt;}
.y181{bottom:455.205867pt;}
.y12{bottom:455.821733pt;}
.y136{bottom:463.634267pt;}
.yad{bottom:464.047867pt;}
.y152{bottom:465.935467pt;}
.y89{bottom:467.357200pt;}
.y154{bottom:467.435200pt;}
.y19b{bottom:467.922533pt;}
.y11{bottom:469.153733pt;}
.y62{bottom:469.981867pt;}
.y180{bottom:470.541867pt;}
.y37{bottom:470.652267pt;}
.y104{bottom:472.070667pt;}
.y151{bottom:478.735467pt;}
.yac{bottom:479.387200pt;}
.y88{bottom:482.696533pt;}
.y19a{bottom:483.261867pt;}
.y103{bottom:484.870667pt;}
.y61{bottom:485.321200pt;}
.y17f{bottom:485.877867pt;}
.y10{bottom:486.266667pt;}
.y36{bottom:486.650267pt;}
.y150{bottom:491.535467pt;}
.yab{bottom:494.726533pt;}
.y87{bottom:498.035867pt;}
.y153{bottom:498.768533pt;}
.y60{bottom:500.660533pt;}
.y17e{bottom:501.213867pt;}
.y35{bottom:502.648267pt;}
.y11e{bottom:502.703067pt;}
.y14f{bottom:504.335467pt;}
.yaa{bottom:510.065867pt;}
.yf{bottom:511.161733pt;}
.y86{bottom:513.375200pt;}
.y199{bottom:514.595200pt;}
.y11d{bottom:515.503067pt;}
.y5f{bottom:515.999867pt;}
.y17d{bottom:516.549867pt;}
.y14e{bottom:517.135467pt;}
.y34{bottom:518.646267pt;}
.ye{bottom:524.493733pt;}
.ya9{bottom:525.405200pt;}
.y85{bottom:528.714533pt;}
.y5e{bottom:531.339200pt;}
.y17c{bottom:531.885867pt;}
.y33{bottom:534.644267pt;}
.yd{bottom:537.825733pt;}
.ya8{bottom:540.744533pt;}
.y84{bottom:544.053867pt;}
.y5d{bottom:546.678533pt;}
.y17b{bottom:547.221867pt;}
.yc{bottom:554.938533pt;}
.ya7{bottom:556.083867pt;}
.y32{bottom:558.203333pt;}
.y83{bottom:559.393200pt;}
.y5c{bottom:562.017867pt;}
.y17a{bottom:562.557867pt;}
.ya6{bottom:571.423200pt;}
.y82{bottom:574.732533pt;}
.y5b{bottom:577.357200pt;}
.y179{bottom:577.893867pt;}
.yb{bottom:579.830933pt;}
.ya5{bottom:586.762533pt;}
.y81{bottom:590.071867pt;}
.y31{bottom:591.803333pt;}
.y5a{bottom:592.696533pt;}
.y178{bottom:593.229867pt;}
.ya4{bottom:602.101867pt;}
.ya{bottom:603.830933pt;}
.y80{bottom:605.411200pt;}
.y59{bottom:608.035867pt;}
.y177{bottom:608.565867pt;}
.y30{bottom:608.934133pt;}
.y7f{bottom:620.750533pt;}
.y58{bottom:623.375200pt;}
.y176{bottom:623.901867pt;}
.y2f{bottom:624.932133pt;}
.y9{bottom:627.830933pt;}
.y7e{bottom:636.089867pt;}
.ya3{bottom:636.099200pt;}
.y57{bottom:638.714533pt;}
.y175{bottom:639.237867pt;}
.y2e{bottom:640.930133pt;}
.y7d{bottom:651.429200pt;}
.ya2{bottom:651.435200pt;}
.y8{bottom:651.830933pt;}
.y56{bottom:654.053867pt;}
.y174{bottom:654.573867pt;}
.y2d{bottom:656.928133pt;}
.y7c{bottom:666.768533pt;}
.y55{bottom:669.393200pt;}
.y173{bottom:669.909867pt;}
.y2c{bottom:672.926133pt;}
.y7{bottom:675.830933pt;}
.ya1{bottom:682.768533pt;}
.y54{bottom:684.732533pt;}
.y172{bottom:685.245867pt;}
.y2b{bottom:688.924133pt;}
.y7b{bottom:698.101867pt;}
.y6{bottom:699.830933pt;}
.y53{bottom:700.071867pt;}
.y171{bottom:700.581867pt;}
.y2a{bottom:704.922133pt;}
.y52{bottom:715.411200pt;}
.y170{bottom:715.917867pt;}
.y29{bottom:720.920133pt;}
.y51{bottom:730.750533pt;}
.y16f{bottom:731.253867pt;}
.y28{bottom:736.918133pt;}
.y50{bottom:746.089867pt;}
.y16e{bottom:746.589867pt;}
.y27{bottom:752.916133pt;}
.y5{bottom:755.353733pt;}
.y4f{bottom:761.429200pt;}
.y16d{bottom:761.925867pt;}
.y4{bottom:771.353733pt;}
.y26{bottom:776.475200pt;}
.y4e{bottom:776.768533pt;}
.y16c{bottom:777.261867pt;}
.y3{bottom:787.353733pt;}
.y2{bottom:803.353733pt;}
.y4c{bottom:815.085067pt;}
.y24{bottom:815.585067pt;}
.h4{height:32.000000pt;}
.hd{height:33.160000pt;}
.hc{height:34.200000pt;}
.he{height:35.370667pt;}
.hb{height:35.400000pt;}
.h11{height:38.698667pt;}
.h12{height:38.706133pt;}
.h13{height:40.512000pt;}
.h7{height:41.040000pt;}
.h2{height:41.184000pt;}
.h10{height:41.909647pt;}
.ha{height:42.480000pt;}
.hf{height:43.099200pt;}
.h9{height:43.320000pt;}
.h14{height:44.840000pt;}
.h8{height:46.566275pt;}
.h3{height:46.796875pt;}
.h6{height:64.064000pt;}
.h5{height:69.849412pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x17{left:56.692933pt;}
.x26{left:60.491200pt;}
.x12{left:64.345200pt;}
.x28{left:69.914933pt;}
.xa{left:71.106133pt;}
.x29{left:73.125600pt;}
.x8{left:75.195333pt;}
.x13{left:79.470000pt;}
.x19{left:81.580933pt;}
.x1a{left:82.766800pt;}
.x9{left:83.746133pt;}
.x1b{left:86.788133pt;}
.xd{left:92.844400pt;}
.x23{left:95.066400pt;}
.x14{left:97.023467pt;}
.x18{left:105.830800pt;}
.x7{left:107.715333pt;}
.x2b{left:109.610133pt;}
.xe{left:117.408400pt;}
.x6{left:143.275333pt;}
.x2a{left:159.920267pt;}
.x2{left:178.046267pt;}
.xf{left:184.368400pt;}
.x11{left:186.600400pt;}
.x25{left:188.331200pt;}
.xc{left:205.869733pt;}
.x16{left:209.763067pt;}
.x10{left:218.618800pt;}
.x27{left:226.501867pt;}
.xb{left:248.406133pt;}
.x24{left:265.199733pt;}
.x1{left:301.091333pt;}
.x1d{left:310.927867pt;}
.x1c{left:313.957200pt;}
.x20{left:315.636133pt;}
.x21{left:324.094800pt;}
.x22{left:330.430800pt;}
.x4{left:349.161733pt;}
.x15{left:353.912400pt;}
.x3{left:363.967067pt;}
.x5{left:365.108400pt;}
.x1e{left:369.221200pt;}
.x1f{left:414.021200pt;}
}




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