
    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_a3e5754969ff6edc4b0aa9cd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.748000;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_bf6ba431b4aec2e55ad68de5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_b51ef474350d475630250ef8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_2089a31a2e4f66707155b595.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_53b0edb785c5202a467dfb45.woff')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_73590a75304bad346ce89684.woff')format("woff");}.ff6{font-family:ff6;line-height:1.079102;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_65036a48fd22f535e66638cf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_962c27b8b53c9ec1309b0f35.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_0cb7a8389a3fee085defb7bc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_84ea897c36607cb1bdea5a13.woff')format("woff");}.ffa{font-family:ffa;line-height:1.079102;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.v3{vertical-align:20.979000px;}
.ls46{letter-spacing:-7.560000px;}
.ls29{letter-spacing:-6.804000px;}
.ls65{letter-spacing:-5.481000px;}
.ls26{letter-spacing:-4.992000px;}
.ls6b{letter-spacing:-4.851000px;}
.ls16{letter-spacing:-4.788000px;}
.ls4e{letter-spacing:-4.725000px;}
.ls5c{letter-spacing:-4.662000px;}
.ls1a{letter-spacing:-4.608000px;}
.ls52{letter-spacing:-4.536000px;}
.ls76{letter-spacing:-4.347000px;}
.ls3c{letter-spacing:-4.284000px;}
.ls6c{letter-spacing:-4.221000px;}
.ls72{letter-spacing:-4.158000px;}
.ls53{letter-spacing:-4.095000px;}
.ls32{letter-spacing:-3.906000px;}
.ls21{letter-spacing:-3.894000px;}
.ls59{letter-spacing:-3.843000px;}
.ls5b{letter-spacing:-3.780000px;}
.ls2b{letter-spacing:-3.591000px;}
.ls77{letter-spacing:-3.465000px;}
.lse{letter-spacing:-3.348000px;}
.ls47{letter-spacing:-3.213000px;}
.ls6f{letter-spacing:-3.150000px;}
.ls68{letter-spacing:-2.961000px;}
.ls5f{letter-spacing:-2.898000px;}
.ls75{letter-spacing:-2.772000px;}
.ls67{letter-spacing:-2.709000px;}
.ls6d{letter-spacing:-2.646000px;}
.ls5d{letter-spacing:-2.583000px;}
.ls23{letter-spacing:-2.352000px;}
.ls48{letter-spacing:-2.268000px;}
.ls15{letter-spacing:-2.214000px;}
.ls4d{letter-spacing:-2.142000px;}
.ls30{letter-spacing:-2.016000px;}
.ls74{letter-spacing:-1.890000px;}
.ls33{letter-spacing:-1.764000px;}
.ls4f{letter-spacing:-1.638000px;}
.ls12{letter-spacing:-1.458000px;}
.ls69{letter-spacing:-1.386000px;}
.ls71{letter-spacing:-1.323000px;}
.ls45{letter-spacing:-1.260000px;}
.ls6e{letter-spacing:-1.197000px;}
.ls2{letter-spacing:-1.188000px;}
.ls13{letter-spacing:-1.134000px;}
.ls57{letter-spacing:-1.071000px;}
.ls58{letter-spacing:-1.008000px;}
.ls6a{letter-spacing:-0.945000px;}
.ls54{letter-spacing:-0.882000px;}
.ls4b{letter-spacing:-0.819000px;}
.ls9{letter-spacing:-0.768000px;}
.ls56{letter-spacing:-0.756000px;}
.ls5{letter-spacing:-0.720000px;}
.ls43{letter-spacing:-0.693000px;}
.ls4a{letter-spacing:-0.630000px;}
.ls1e{letter-spacing:-0.600000px;}
.ls44{letter-spacing:-0.504000px;}
.ls55{letter-spacing:-0.441000px;}
.ls22{letter-spacing:-0.432000px;}
.ls50{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.315000px;}
.ls2d{letter-spacing:-0.252000px;}
.ls7{letter-spacing:-0.240000px;}
.ls0{letter-spacing:-0.222000px;}
.ls39{letter-spacing:-0.189000px;}
.ls10{letter-spacing:-0.162000px;}
.ls2c{letter-spacing:-0.126000px;}
.ls24{letter-spacing:-0.096000px;}
.ls2e{letter-spacing:-0.063000px;}
.ls28{letter-spacing:-0.048000px;}
.ls18{letter-spacing:-0.030600px;}
.ls4{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.000300px;}
.ls25{letter-spacing:0.048000px;}
.ls2a{letter-spacing:0.063000px;}
.ls6{letter-spacing:0.096000px;}
.ls17{letter-spacing:0.126000px;}
.ls51{letter-spacing:0.189000px;}
.ls61{letter-spacing:0.264000px;}
.ls42{letter-spacing:0.315000px;}
.ls1c{letter-spacing:0.330000px;}
.ls1b{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.378000px;}
.ls1d{letter-spacing:0.420000px;}
.ls31{letter-spacing:0.441000px;}
.ls11{letter-spacing:0.486000px;}
.ls49{letter-spacing:0.504000px;}
.ls3b{letter-spacing:0.567000px;}
.ls27{letter-spacing:0.576000px;}
.ls40{letter-spacing:0.577800px;}
.ls14{letter-spacing:0.594000px;}
.ls3d{letter-spacing:0.630000px;}
.lsc{letter-spacing:0.648000px;}
.ls60{letter-spacing:0.756000px;}
.ls2f{letter-spacing:0.864000px;}
.ls63{letter-spacing:0.882000px;}
.ls8{letter-spacing:0.912000px;}
.ls62{letter-spacing:0.945000px;}
.ls3a{letter-spacing:1.008000px;}
.ls38{letter-spacing:1.122600px;}
.ls64{letter-spacing:1.134000px;}
.ls20{letter-spacing:1.188000px;}
.ls37{letter-spacing:1.197000px;}
.ls1f{letter-spacing:1.260000px;}
.ls19{letter-spacing:1.296000px;}
.ls78{letter-spacing:1.386000px;}
.ls36{letter-spacing:1.449000px;}
.lsf{letter-spacing:1.512000px;}
.ls5a{letter-spacing:1.701000px;}
.lsa{letter-spacing:1.890000px;}
.ls73{letter-spacing:2.079000px;}
.ls3{letter-spacing:2.160000px;}
.ls70{letter-spacing:2.268000px;}
.ls34{letter-spacing:2.289000px;}
.ls1{letter-spacing:2.886000px;}
.ls41{letter-spacing:3.884400px;}
.ls3f{letter-spacing:4.339800px;}
.ls5e{letter-spacing:4.847400px;}
.ls35{letter-spacing:5.514600px;}
.lsb{letter-spacing:5.586632px;}
.ls3e{letter-spacing:9.704400px;}
.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;}
}
.wsd{word-spacing:-18.648000px;}
.wsf{word-spacing:-17.640000px;}
.wse8{word-spacing:-16.884000px;}
.wsfa{word-spacing:-16.758000px;}
.wse2{word-spacing:-16.506000px;}
.wsf3{word-spacing:-16.380000px;}
.wsd9{word-spacing:-16.317000px;}
.wsda{word-spacing:-16.254000px;}
.ws6d{word-spacing:-16.191000px;}
.wsba{word-spacing:-16.128000px;}
.wsa2{word-spacing:-16.065000px;}
.wsbd{word-spacing:-15.939000px;}
.ws7e{word-spacing:-15.876000px;}
.ws50{word-spacing:-15.813000px;}
.ws51{word-spacing:-15.750000px;}
.ws54{word-spacing:-15.687000px;}
.ws52{word-spacing:-15.624000px;}
.wsbb{word-spacing:-15.561000px;}
.ws53{word-spacing:-15.498000px;}
.wse{word-spacing:-15.435000px;}
.wsa3{word-spacing:-15.246000px;}
.wsa6{word-spacing:-15.120000px;}
.wsbe{word-spacing:-15.057000px;}
.wscd{word-spacing:-14.994000px;}
.ws12{word-spacing:-14.931000px;}
.wscc{word-spacing:-14.742000px;}
.ws2a{word-spacing:-14.679000px;}
.wsfb{word-spacing:-14.427000px;}
.ws48{word-spacing:-14.400000px;}
.ws20{word-spacing:-14.175000px;}
.ws3{word-spacing:-14.160000px;}
.wsbc{word-spacing:-14.112000px;}
.ws23{word-spacing:-13.986000px;}
.ws103{word-spacing:-13.860000px;}
.wsa5{word-spacing:-13.734000px;}
.ws28{word-spacing:-13.608000px;}
.ws25{word-spacing:-13.500000px;}
.wsa4{word-spacing:-13.482000px;}
.ws47{word-spacing:-13.392000px;}
.ws22{word-spacing:-13.338000px;}
.ws4{word-spacing:-12.912000px;}
.ws49{word-spacing:-12.606000px;}
.ws4c{word-spacing:-12.576000px;}
.ws1f{word-spacing:-12.537000px;}
.ws26{word-spacing:-12.366000px;}
.ws7d{word-spacing:-12.159000px;}
.ws4b{word-spacing:-12.048000px;}
.ws29{word-spacing:-12.033000px;}
.ws4e{word-spacing:-11.952000px;}
.ws4d{word-spacing:-11.904000px;}
.ws6e{word-spacing:-11.844000px;}
.wsd8{word-spacing:-11.655000px;}
.ws102{word-spacing:-11.592000px;}
.wsf9{word-spacing:-11.529000px;}
.ws1e{word-spacing:-11.088000px;}
.ws44{word-spacing:-10.962000px;}
.wsf4{word-spacing:-10.899000px;}
.ws45{word-spacing:-10.626000px;}
.ws6c{word-spacing:-9.984000px;}
.ws1a{word-spacing:-9.828000px;}
.ws4a{word-spacing:-9.648000px;}
.ws4f{word-spacing:-8.946000px;}
.ws21{word-spacing:-8.190000px;}
.ws24{word-spacing:-7.870500px;}
.ws18{word-spacing:-6.174000px;}
.ws19{word-spacing:-5.229000px;}
.ws108{word-spacing:-4.221000px;}
.wsa8{word-spacing:-4.158000px;}
.ws66{word-spacing:-3.654000px;}
.wsa9{word-spacing:-3.465000px;}
.wsd2{word-spacing:-3.276000px;}
.ws1c{word-spacing:-2.961000px;}
.wsdf{word-spacing:-2.898000px;}
.ws1{word-spacing:-2.886000px;}
.wsee{word-spacing:-2.835000px;}
.wsd7{word-spacing:-2.772000px;}
.wsb4{word-spacing:-2.709000px;}
.ws40{word-spacing:-2.700000px;}
.ws6f{word-spacing:-2.646000px;}
.wsd6{word-spacing:-2.583000px;}
.ws16{word-spacing:-2.394000px;}
.ws9c{word-spacing:-2.331000px;}
.wsd4{word-spacing:-2.268000px;}
.ws84{word-spacing:-2.205000px;}
.ws14{word-spacing:-2.079000px;}
.ws34{word-spacing:-1.998000px;}
.wsb0{word-spacing:-1.953000px;}
.wsa{word-spacing:-1.920000px;}
.ws10{word-spacing:-1.890000px;}
.wsc0{word-spacing:-1.764000px;}
.wsdd{word-spacing:-1.701000px;}
.ws8f{word-spacing:-1.575000px;}
.ws8{word-spacing:-1.536000px;}
.ws70{word-spacing:-1.512000px;}
.ws81{word-spacing:-1.449000px;}
.ws10d{word-spacing:-1.386000px;}
.wsc2{word-spacing:-1.323000px;}
.ws55{word-spacing:-1.296000px;}
.ws59{word-spacing:-1.260000px;}
.ws83{word-spacing:-1.197000px;}
.ws5a{word-spacing:-1.188000px;}
.ws1d{word-spacing:-1.134000px;}
.ws27{word-spacing:-1.071000px;}
.ws9a{word-spacing:-1.008000px;}
.ws92{word-spacing:-0.945000px;}
.ws9{word-spacing:-0.912000px;}
.wsea{word-spacing:-0.882000px;}
.ws6b{word-spacing:-0.864000px;}
.ws8d{word-spacing:-0.819000px;}
.wsd3{word-spacing:-0.756000px;}
.wsaa{word-spacing:-0.693000px;}
.wsb1{word-spacing:-0.630000px;}
.ws32{word-spacing:-0.594000px;}
.ws9e{word-spacing:-0.567000px;}
.ws35{word-spacing:-0.540000px;}
.wsaf{word-spacing:-0.504000px;}
.ws73{word-spacing:-0.441000px;}
.ws58{word-spacing:-0.420000px;}
.ws2d{word-spacing:-0.378000px;}
.ws56{word-spacing:-0.360000px;}
.ws57{word-spacing:-0.330000px;}
.ws17{word-spacing:-0.315000px;}
.ws82{word-spacing:-0.189000px;}
.ws99{word-spacing:-0.126000px;}
.ws46{word-spacing:-0.119400px;}
.ws6{word-spacing:-0.096000px;}
.ws75{word-spacing:-0.063000px;}
.ws2e{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws9d{word-spacing:0.063000px;}
.ws5d{word-spacing:0.096000px;}
.wsd1{word-spacing:0.126000px;}
.ws86{word-spacing:0.189000px;}
.ws7{word-spacing:0.240000px;}
.wsd0{word-spacing:0.252000px;}
.ws11{word-spacing:0.315000px;}
.wsc6{word-spacing:0.378000px;}
.ws5b{word-spacing:0.432000px;}
.ws71{word-spacing:0.441000px;}
.ws39{word-spacing:0.486000px;}
.wse6{word-spacing:0.504000px;}
.ws31{word-spacing:0.540000px;}
.wsab{word-spacing:0.567000px;}
.ws63{word-spacing:0.624000px;}
.wsca{word-spacing:0.630000px;}
.ws76{word-spacing:0.693000px;}
.ws5{word-spacing:0.720000px;}
.wsd5{word-spacing:0.756000px;}
.wsc{word-spacing:0.768000px;}
.ws33{word-spacing:0.810000px;}
.ws105{word-spacing:0.819000px;}
.wsce{word-spacing:0.882000px;}
.wsf7{word-spacing:0.945000px;}
.ws87{word-spacing:1.008000px;}
.ws36{word-spacing:1.026000px;}
.wsb3{word-spacing:1.071000px;}
.ws2c{word-spacing:1.134000px;}
.ws2{word-spacing:1.188000px;}
.wsf1{word-spacing:1.197000px;}
.wsf0{word-spacing:1.323000px;}
.wsb9{word-spacing:1.386000px;}
.ws65{word-spacing:1.392000px;}
.ws88{word-spacing:1.449000px;}
.ws67{word-spacing:1.575000px;}
.ws37{word-spacing:1.620000px;}
.ws68{word-spacing:1.638000px;}
.ws7b{word-spacing:1.764000px;}
.ws85{word-spacing:1.827000px;}
.ws10c{word-spacing:1.890000px;}
.ws42{word-spacing:1.944000px;}
.wsbf{word-spacing:1.953000px;}
.wsf5{word-spacing:2.016000px;}
.wse3{word-spacing:2.079000px;}
.wsb{word-spacing:2.112000px;}
.ws95{word-spacing:2.142000px;}
.ws41{word-spacing:2.214000px;}
.ws7f{word-spacing:2.268000px;}
.wse7{word-spacing:2.394000px;}
.ws5c{word-spacing:2.400000px;}
.wsc3{word-spacing:2.583000px;}
.wse5{word-spacing:2.646000px;}
.wsde{word-spacing:2.709000px;}
.wsc1{word-spacing:2.772000px;}
.wse4{word-spacing:2.898000px;}
.wsc4{word-spacing:2.961000px;}
.wsff{word-spacing:3.150000px;}
.wsb2{word-spacing:3.276000px;}
.ws89{word-spacing:3.339000px;}
.ws2b{word-spacing:3.348000px;}
.ws8a{word-spacing:3.402000px;}
.wsa0{word-spacing:3.465000px;}
.ws9b{word-spacing:3.528000px;}
.wsed{word-spacing:3.591000px;}
.ws106{word-spacing:3.654000px;}
.ws64{word-spacing:3.696000px;}
.wsc5{word-spacing:3.717000px;}
.ws93{word-spacing:3.780000px;}
.wsc8{word-spacing:3.843000px;}
.ws80{word-spacing:3.906000px;}
.ws7a{word-spacing:3.969000px;}
.ws3a{word-spacing:4.158000px;}
.ws100{word-spacing:4.221000px;}
.ws9f{word-spacing:4.284000px;}
.wsb8{word-spacing:4.347000px;}
.wsc9{word-spacing:4.536000px;}
.ws10a{word-spacing:4.599000px;}
.ws3b{word-spacing:4.698000px;}
.wsa7{word-spacing:4.725000px;}
.wsdb{word-spacing:4.788000px;}
.ws8e{word-spacing:4.914000px;}
.ws5f{word-spacing:4.992000px;}
.ws74{word-spacing:5.040000px;}
.ws98{word-spacing:5.103000px;}
.ws69{word-spacing:5.229000px;}
.ws2f{word-spacing:5.238000px;}
.wsec{word-spacing:5.292000px;}
.ws72{word-spacing:5.355000px;}
.wse0{word-spacing:5.418000px;}
.wsdc{word-spacing:5.481000px;}
.ws3f{word-spacing:5.508000px;}
.ws8c{word-spacing:5.544000px;}
.ws8b{word-spacing:5.607000px;}
.ws79{word-spacing:5.670000px;}
.wsb6{word-spacing:5.796000px;}
.wscf{word-spacing:5.859000px;}
.wsb5{word-spacing:5.922000px;}
.ws91{word-spacing:6.111000px;}
.wsfc{word-spacing:6.174000px;}
.ws90{word-spacing:6.300000px;}
.wse9{word-spacing:6.426000px;}
.wsf8{word-spacing:6.489000px;}
.wsb7{word-spacing:6.552000px;}
.ws94{word-spacing:6.741000px;}
.ws38{word-spacing:6.804000px;}
.ws97{word-spacing:6.867000px;}
.ws62{word-spacing:7.104000px;}
.ws3c{word-spacing:7.128000px;}
.ws109{word-spacing:7.182000px;}
.wsc7{word-spacing:7.245000px;}
.wsad{word-spacing:7.308000px;}
.wsac{word-spacing:7.434000px;}
.ws30{word-spacing:7.506000px;}
.ws78{word-spacing:7.812000px;}
.ws77{word-spacing:7.938000px;}
.wsfe{word-spacing:8.001000px;}
.ws43{word-spacing:8.046000px;}
.ws107{word-spacing:8.379000px;}
.wsef{word-spacing:8.820000px;}
.ws3d{word-spacing:9.072000px;}
.ws60{word-spacing:9.120000px;}
.ws3e{word-spacing:9.504000px;}
.wsae{word-spacing:9.702000px;}
.wsf6{word-spacing:9.765000px;}
.ws104{word-spacing:9.954000px;}
.ws10b{word-spacing:10.710000px;}
.wsfd{word-spacing:11.907000px;}
.ws5e{word-spacing:12.048000px;}
.ws96{word-spacing:12.222000px;}
.ws61{word-spacing:12.528000px;}
.wseb{word-spacing:17.073000px;}
.ws1b{word-spacing:69.741000px;}
.ws15{word-spacing:100.926000px;}
.ws13{word-spacing:131.796000px;}
.wsf2{word-spacing:654.010800px;}
.wscb{word-spacing:654.495900px;}
.ws101{word-spacing:655.056600px;}
.wse1{word-spacing:655.302300px;}
.wsa1{word-spacing:658.149900px;}
.ws7c{word-spacing:658.987800px;}
.ws6a{word-spacing:659.750100px;}
._13{margin-left:-16.125000px;}
._b{margin-left:-13.511811px;}
._9{margin-left:-8.101800px;}
._12{margin-left:-6.635700px;}
._7{margin-left:-5.064647px;}
._4{margin-left:-3.369600px;}
._2{margin-left:-2.241600px;}
._3{margin-left:-1.168200px;}
._0{width:1.009800px;}
._1{width:2.646600px;}
._5{width:4.154400px;}
._d{width:5.626800px;}
._e{width:6.932195px;}
._8{width:8.342811px;}
._6{width:9.818211px;}
._a{width:11.240447px;}
._c{width:12.406563px;}
._10{width:13.468200px;}
._14{width:662.571000px;}
._f{width:663.742800px;}
._11{width:665.708400px;}
.fc1{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:0.600000px;}
.fs6{font-size:31.482000px;}
.fsa{font-size:36.729000px;}
.fs7{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:222.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:46.771650px;}
.y7d{bottom:63.779550px;}
.y56{bottom:106.299000px;}
.y34{bottom:106.299150px;}
.y33{bottom:120.549150px;}
.y1ca{bottom:125.271450px;}
.y1f2{bottom:125.273850px;}
.yd5{bottom:125.279700px;}
.yfa{bottom:125.284650px;}
.y97{bottom:125.299050px;}
.y12e{bottom:125.412900px;}
.y11d{bottom:125.549400px;}
.y151{bottom:125.559150px;}
.y55{bottom:125.589150px;}
.y1a6{bottom:125.592900px;}
.y187{bottom:125.619900px;}
.yad{bottom:125.677050px;}
.y163{bottom:126.144000px;}
.y175{bottom:126.200400px;}
.y32{bottom:134.799150px;}
.y1c9{bottom:144.243600px;}
.y1f1{bottom:144.248550px;}
.yd4{bottom:144.260100px;}
.y96{bottom:144.299100px;}
.y12d{bottom:144.526800px;}
.y11c{bottom:144.799650px;}
.y54{bottom:144.879150px;}
.y186{bottom:144.940650px;}
.yac{bottom:145.055100px;}
.y99{bottom:145.836450px;}
.y162{bottom:145.988850px;}
.y174{bottom:146.101800px;}
.y3{bottom:148.818900px;}
.y31{bottom:149.049150px;}
.yf9{bottom:153.720150px;}
.y150{bottom:154.268850px;}
.y1a5{bottom:154.336500px;}
.y1c8{bottom:163.215750px;}
.y1f0{bottom:163.223400px;}
.yd3{bottom:163.240650px;}
.y95{bottom:163.299000px;}
.y30{bottom:163.299150px;}
.y12c{bottom:163.640700px;}
.y11b{bottom:164.050050px;}
.y185{bottom:164.261550px;}
.y161{bottom:165.833550px;}
.y173{bottom:166.003050px;}
.yf8{bottom:172.705650px;}
.y14f{bottom:173.528700px;}
.y53{bottom:173.617050px;}
.y2f{bottom:177.549150px;}
.y1c7{bottom:182.187900px;}
.y1ef{bottom:182.198100px;}
.y94{bottom:182.298900px;}
.y12b{bottom:182.754450px;}
.y11a{bottom:183.300300px;}
.yab{bottom:183.330900px;}
.y184{bottom:183.582300px;}
.y160{bottom:185.678400px;}
.y172{bottom:185.904300px;}
.yd2{bottom:191.671050px;}
.yf7{bottom:191.691150px;}
.y14e{bottom:192.788400px;}
.y52{bottom:192.907050px;}
.y2e{bottom:200.303100px;}
.y1c6{bottom:201.160200px;}
.y1ee{bottom:201.172800px;}
.y119{bottom:202.550550px;}
.yaa{bottom:202.708950px;}
.yd1{bottom:210.651450px;}
.yf6{bottom:210.676500px;}
.y1a4{bottom:211.430100px;}
.y14d{bottom:212.048100px;}
.y2d{bottom:214.553100px;}
.y15f{bottom:214.973100px;}
.y171{bottom:215.255550px;}
.y1c5{bottom:220.132350px;}
.y1ed{bottom:220.147500px;}
.y93{bottom:220.196700px;}
.y12a{bottom:220.766100px;}
.y51{bottom:221.644950px;}
.y118{bottom:221.800800px;}
.y183{bottom:221.800950px;}
.ya9{bottom:222.086850px;}
.y2c{bottom:228.803100px;}
.yd0{bottom:229.632000px;}
.yf5{bottom:229.662000px;}
.y1a3{bottom:230.723850px;}
.y14c{bottom:231.307950px;}
.y15e{bottom:234.817950px;}
.y1c4{bottom:239.104500px;}
.y1ec{bottom:239.122200px;}
.y129{bottom:239.880000px;}
.y50{bottom:240.935100px;}
.y182{bottom:241.121700px;}
.ya8{bottom:241.464750px;}
.y2b{bottom:243.053100px;}
.ycf{bottom:248.612400px;}
.y92{bottom:248.646600px;}
.yf4{bottom:248.647500px;}
.y14b{bottom:250.567800px;}
.y15d{bottom:254.662800px;}
.y2a{bottom:257.303100px;}
.y1c3{bottom:258.076650px;}
.y1eb{bottom:258.096900px;}
.y128{bottom:258.993750px;}
.y117{bottom:259.948950px;}
.ya7{bottom:260.842800px;}
.yf3{bottom:267.633000px;}
.y7c{bottom:267.865650px;}
.y1a2{bottom:268.915350px;}
.y4f{bottom:269.673000px;}
.y181{bottom:269.892450px;}
.y170{bottom:272.956800px;}
.yce{bottom:277.042950px;}
.y1c2{bottom:277.048800px;}
.y1ea{bottom:277.071600px;}
.y127{bottom:278.107650px;}
.y116{bottom:279.199200px;}
.y7b{bottom:282.865650px;}
.y15c{bottom:283.957650px;}
.y29{bottom:284.309100px;}
.y91{bottom:286.544400px;}
.yf2{bottom:286.618350px;}
.y1a1{bottom:288.208950px;}
.y14a{bottom:288.725400px;}
.y180{bottom:289.213200px;}
.y16f{bottom:292.858050px;}
.y1c1{bottom:296.021100px;}
.ycd{bottom:296.023350px;}
.y1e9{bottom:296.046450px;}
.y126{bottom:297.221400px;}
.y7a{bottom:297.865650px;}
.y4e{bottom:298.410900px;}
.y115{bottom:298.449600px;}
.y28{bottom:298.559100px;}
.ya6{bottom:299.118600px;}
.y15b{bottom:303.802350px;}
.y90{bottom:305.544300px;}
.yf1{bottom:305.603850px;}
.y1a0{bottom:307.502550px;}
.y149{bottom:307.985250px;}
.y17f{bottom:308.533950px;}
.y16e{bottom:312.759450px;}
.y79{bottom:312.865650px;}
.ycc{bottom:315.003900px;}
.y1e8{bottom:315.021150px;}
.y114{bottom:317.699850px;}
.y4d{bottom:317.700900px;}
.ya5{bottom:318.496500px;}
.y15a{bottom:323.647200px;}
.y1c0{bottom:324.443250px;}
.y8f{bottom:324.544200px;}
.yf0{bottom:324.589350px;}
.y125{bottom:325.785300px;}
.y19f{bottom:326.796300px;}
.y148{bottom:327.244950px;}
.y17e{bottom:327.854700px;}
.y78{bottom:327.865650px;}
.y16d{bottom:332.660700px;}
.y22{bottom:333.786000px;}
.ycb{bottom:333.984300px;}
.y1e7{bottom:333.995850px;}
.y113{bottom:336.950100px;}
.y4c{bottom:336.990900px;}
.ya4{bottom:337.874550px;}
.y77{bottom:342.865650px;}
.y159{bottom:343.491900px;}
.y19e{bottom:346.089900px;}
.y147{bottom:346.504800px;}
.y17d{bottom:347.175450px;}
.y21{bottom:348.036000px;}
.y16c{bottom:352.561950px;}
.yca{bottom:352.964700px;}
.y1e6{bottom:352.970550px;}
.yef{bottom:353.024850px;}
.y112{bottom:356.200350px;}
.ya3{bottom:357.252450px;}
.y76{bottom:357.865650px;}
.y124{bottom:358.598850px;}
.y20{bottom:362.286000px;}
.y158{bottom:363.336750px;}
.y19d{bottom:365.383500px;}
.y4b{bottom:365.728800px;}
.y17c{bottom:366.496350px;}
.yc9{bottom:371.945250px;}
.yee{bottom:372.010200px;}
.y16b{bottom:372.463200px;}
.y75{bottom:372.865650px;}
.y1f{bottom:376.536000px;}
.y123{bottom:377.712750px;}
.y8e{bottom:378.552000px;}
.y146{bottom:384.662400px;}
.y19c{bottom:384.677100px;}
.y111{bottom:384.900600px;}
.y4a{bottom:385.018950px;}
.y17b{bottom:385.817100px;}
.ya2{bottom:386.080500px;}
.y74{bottom:387.865650px;}
.y1e{bottom:390.786000px;}
.y1e5{bottom:390.919950px;}
.yc8{bottom:390.925800px;}
.yed{bottom:390.995700px;}
.y1bf{bottom:391.133100px;}
.y16a{bottom:392.364600px;}
.y157{bottom:392.631600px;}
.y122{bottom:396.826500px;}
.y8d{bottom:401.803800px;}
.y73{bottom:402.865650px;}
.y145{bottom:403.922250px;}
.y19b{bottom:403.970850px;}
.y110{bottom:404.151000px;}
.y49{bottom:404.308950px;}
.y1d{bottom:405.036000px;}
.y17a{bottom:405.137850px;}
.ya1{bottom:405.458400px;}
.y1e4{bottom:409.894650px;}
.yc7{bottom:409.906200px;}
.yec{bottom:409.981200px;}
.y1be{bottom:410.105250px;}
.y169{bottom:412.265850px;}
.y156{bottom:412.476300px;}
.y121{bottom:415.940250px;}
.y8c{bottom:416.803800px;}
.y72{bottom:417.865650px;}
.y1c{bottom:419.286000px;}
.y19a{bottom:423.264450px;}
.y10f{bottom:423.401250px;}
.y179{bottom:424.458600px;}
.ya0{bottom:424.836300px;}
.y1e3{bottom:428.869350px;}
.yc6{bottom:428.886600px;}
.y1bd{bottom:429.077400px;}
.y168{bottom:432.167100px;}
.y155{bottom:432.321150px;}
.y144{bottom:432.631950px;}
.y71{bottom:432.865650px;}
.y48{bottom:433.046850px;}
.y1b{bottom:433.536000px;}
.y120{bottom:435.054150px;}
.y8b{bottom:436.055850px;}
.y9f{bottom:444.214350px;}
.y1a{bottom:447.786000px;}
.y1e2{bottom:447.844050px;}
.yeb{bottom:447.864600px;}
.y70{bottom:447.865650px;}
.yc5{bottom:447.867150px;}
.y1bc{bottom:448.049550px;}
.y8a{bottom:451.055850px;}
.y143{bottom:451.891800px;}
.y167{bottom:452.068350px;}
.y10e{bottom:452.101500px;}
.y154{bottom:452.166000px;}
.y47{bottom:452.336850px;}
.y178{bottom:453.229350px;}
.y199{bottom:461.455950px;}
.y19{bottom:462.036000px;}
.y6f{bottom:462.865650px;}
.y9e{bottom:463.592250px;}
.y89{bottom:466.055850px;}
.y1e1{bottom:466.818900px;}
.yea{bottom:466.849950px;}
.y1bb{bottom:467.021850px;}
.y142{bottom:471.151500px;}
.y10d{bottom:471.351750px;}
.y46{bottom:471.626850px;}
.y166{bottom:471.969600px;}
.y153{bottom:472.010700px;}
.y177{bottom:472.550100px;}
.y11f{bottom:473.065800px;}
.y18{bottom:476.286000px;}
.yc4{bottom:476.297550px;}
.y6e{bottom:477.865650px;}
.y198{bottom:480.749700px;}
.y88{bottom:481.055850px;}
.y1e0{bottom:485.793600px;}
.ye9{bottom:485.835450px;}
.y141{bottom:490.411350px;}
.y17{bottom:490.536000px;}
.y152{bottom:491.855550px;}
.y165{bottom:491.870850px;}
.y11e{bottom:492.179700px;}
.y9d{bottom:492.420300px;}
.y6d{bottom:492.865650px;}
.yc3{bottom:495.278100px;}
.y1ba{bottom:495.444000px;}
.y87{bottom:496.055850px;}
.y197{bottom:500.043300px;}
.y10c{bottom:500.052000px;}
.y45{bottom:500.364750px;}
.y1df{bottom:504.768300px;}
.y16{bottom:504.786000px;}
.ye8{bottom:504.820950px;}
.y6c{bottom:507.865650px;}
.y140{bottom:509.671200px;}
.y86{bottom:511.055850px;}
.y9c{bottom:511.798200px;}
.y1b9{bottom:514.416150px;}
.y15{bottom:519.036000px;}
.y10b{bottom:519.302250px;}
.y196{bottom:519.336900px;}
.y44{bottom:519.654900px;}
.y6b{bottom:522.865650px;}
.yc2{bottom:523.708500px;}
.y1de{bottom:523.743000px;}
.ye7{bottom:523.806450px;}
.y164{bottom:530.639700px;}
.y9b{bottom:531.176100px;}
.y14{bottom:533.286000px;}
.y1b8{bottom:533.388300px;}
.y6a{bottom:537.865650px;}
.y13f{bottom:538.380900px;}
.y10a{bottom:538.552650px;}
.y195{bottom:538.630500px;}
.y43{bottom:538.944900px;}
.yc1{bottom:542.689050px;}
.y1dd{bottom:542.717700px;}
.ye6{bottom:542.791800px;}
.y13{bottom:547.536000px;}
.y12f{bottom:547.647450px;}
.y9a{bottom:550.554150px;}
.y69{bottom:552.865650px;}
.y85{bottom:555.476100px;}
.y13e{bottom:557.640750px;}
.y109{bottom:557.802900px;}
.yc0{bottom:561.669450px;}
.y1dc{bottom:561.692400px;}
.y1b7{bottom:561.810450px;}
.y194{bottom:567.374250px;}
.y42{bottom:567.682800px;}
.y68{bottom:567.865650px;}
.y12{bottom:574.541850px;}
.y13d{bottom:576.900450px;}
.y108{bottom:577.053150px;}
.ybf{bottom:580.649850px;}
.y1db{bottom:580.667250px;}
.ye5{bottom:580.675200px;}
.y1b6{bottom:580.782600px;}
.y67{bottom:582.865650px;}
.y193{bottom:586.667850px;}
.y41{bottom:586.972800px;}
.y11{bottom:588.791850px;}
.yae{bottom:590.167200px;}
.y13c{bottom:596.160300px;}
.y66{bottom:597.865650px;}
.ybe{bottom:599.630400px;}
.y1da{bottom:599.641950px;}
.ye4{bottom:599.660550px;}
.y1b5{bottom:599.754750px;}
.y192{bottom:605.961600px;}
.y40{bottom:606.262800px;}
.y84{bottom:611.376000px;}
.y65{bottom:612.865650px;}
.y107{bottom:615.201300px;}
.y10{bottom:615.797700px;}
.y1d9{bottom:618.616650px;}
.y1b4{bottom:618.727050px;}
.y13b{bottom:624.870000px;}
.y191{bottom:625.255200px;}
.y64{bottom:627.865650px;}
.ybd{bottom:628.060800px;}
.y83{bottom:629.475900px;}
.yf{bottom:630.047700px;}
.y106{bottom:634.451550px;}
.y3f{bottom:635.000850px;}
.ye3{bottom:637.543950px;}
.y1d8{bottom:637.591350px;}
.y1b3{bottom:637.699200px;}
.y63{bottom:642.865650px;}
.ye{bottom:644.297700px;}
.y190{bottom:644.548800px;}
.ybc{bottom:647.041350px;}
.y82{bottom:647.575800px;}
.y2{bottom:647.714850px;}
.y13a{bottom:653.579850px;}
.y105{bottom:653.701800px;}
.y3e{bottom:654.290850px;}
.ye2{bottom:656.529450px;}
.y1d7{bottom:656.566050px;}
.y1b2{bottom:656.671350px;}
.y62{bottom:657.865650px;}
.yd{bottom:658.547700px;}
.y81{bottom:665.675700px;}
.ybb{bottom:666.021750px;}
.yc{bottom:672.797700px;}
.y61{bottom:672.865650px;}
.y104{bottom:672.952200px;}
.ye1{bottom:675.514950px;}
.y1d6{bottom:675.540750px;}
.y1b1{bottom:675.643500px;}
.y18f{bottom:682.740300px;}
.y3d{bottom:683.028750px;}
.yba{bottom:685.002300px;}
.yb{bottom:687.047700px;}
.y60{bottom:687.865650px;}
.y103{bottom:692.202450px;}
.ye0{bottom:694.500300px;}
.y1d5{bottom:694.515450px;}
.ya{bottom:701.297700px;}
.y18e{bottom:702.033900px;}
.y3c{bottom:702.318750px;}
.y5f{bottom:702.865650px;}
.yb9{bottom:703.982700px;}
.y1b0{bottom:704.065650px;}
.y139{bottom:710.639700px;}
.ydf{bottom:713.485800px;}
.y1d4{bottom:713.490150px;}
.y9{bottom:715.547700px;}
.y5e{bottom:717.865650px;}
.y80{bottom:721.275600px;}
.yb8{bottom:722.963250px;}
.y1af{bottom:723.037950px;}
.y1{bottom:724.665000px;}
.y8{bottom:729.797700px;}
.y138{bottom:729.899400px;}
.y102{bottom:730.350600px;}
.y3b{bottom:731.056650px;}
.y1d3{bottom:732.464850px;}
.y18d{bottom:740.225550px;}
.yb7{bottom:741.943650px;}
.y1ae{bottom:742.010100px;}
.y5d{bottom:742.313550px;}
.y7f{bottom:743.875650px;}
.y7{bottom:744.047700px;}
.y137{bottom:749.159250px;}
.y3a{bottom:750.346650px;}
.yde{bottom:751.369200px;}
.y1d2{bottom:751.439700px;}
.y6{bottom:758.297700px;}
.y101{bottom:759.050850px;}
.y18c{bottom:759.519150px;}
.y1ad{bottom:760.982250px;}
.y136{bottom:768.418950px;}
.ydd{bottom:770.354700px;}
.yb6{bottom:770.374200px;}
.y1d1{bottom:770.414400px;}
.y100{bottom:778.301100px;}
.y18b{bottom:778.812900px;}
.y39{bottom:779.084700px;}
.y5{bottom:785.303700px;}
.y135{bottom:787.678650px;}
.ydc{bottom:789.340050px;}
.yb5{bottom:789.354600px;}
.y1d0{bottom:789.389100px;}
.y1ac{bottom:789.404550px;}
.y1f8{bottom:789.852750px;}
.y5c{bottom:789.857100px;}
.yff{bottom:797.551350px;}
.y18a{bottom:798.106500px;}
.y38{bottom:798.374700px;}
.y4{bottom:799.553700px;}
.y134{bottom:806.938500px;}
.ydb{bottom:808.325550px;}
.yb4{bottom:808.335000px;}
.y1cf{bottom:808.363800px;}
.y1ab{bottom:808.376550px;}
.y1f7{bottom:808.752750px;}
.y5b{bottom:808.757100px;}
.yfe{bottom:816.801600px;}
.y133{bottom:826.198200px;}
.y189{bottom:826.850100px;}
.y37{bottom:827.112600px;}
.yda{bottom:827.310900px;}
.yb3{bottom:827.315550px;}
.y1ce{bottom:827.338500px;}
.y1aa{bottom:827.348850px;}
.y1f6{bottom:827.652750px;}
.yfd{bottom:836.052000px;}
.y5a{bottom:837.105000px;}
.y27{bottom:838.998900px;}
.y132{bottom:845.458050px;}
.yb2{bottom:846.295950px;}
.yd9{bottom:846.296400px;}
.y1cd{bottom:846.313200px;}
.y1a9{bottom:846.321000px;}
.y36{bottom:846.402600px;}
.y1f5{bottom:846.552750px;}
.y26{bottom:853.398900px;}
.yfc{bottom:855.302250px;}
.y59{bottom:856.005000px;}
.y131{bottom:864.717900px;}
.yb1{bottom:865.276500px;}
.yd8{bottom:865.281900px;}
.y1cc{bottom:865.287900px;}
.y1a8{bottom:865.293150px;}
.y1f4{bottom:865.452750px;}
.y25{bottom:867.798900px;}
.yfb{bottom:874.552500px;}
.y24{bottom:882.198900px;}
.y188{bottom:883.943700px;}
.y130{bottom:883.977600px;}
.yb0{bottom:884.256900px;}
.y1cb{bottom:884.262600px;}
.y1a7{bottom:884.265150px;}
.yd7{bottom:884.267250px;}
.y1f3{bottom:884.352750px;}
.y58{bottom:884.352900px;}
.y23{bottom:896.598900px;}
.y35{bottom:901.692750px;}
.yaf{bottom:903.237450px;}
.yd6{bottom:903.252750px;}
.y57{bottom:903.252900px;}
.y98{bottom:952.440900px;}
.y176{bottom:953.858250px;}
.hc{height:0.526465px;}
.hb{height:36.852539px;}
.h5{height:42.117188px;}
.h10{height:42.234375px;}
.h4{height:42.632812px;}
.h9{height:47.381836px;}
.ha{height:47.513672px;}
.hf{height:52.792969px;}
.h7{height:55.278809px;}
.h8{height:55.432617px;}
.h3{height:57.911133px;}
.he{height:58.072266px;}
.h6{height:63.175781px;}
.hd{height:63.351562px;}
.h2{height:162.282000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:107.176350px;}
.xa{left:109.984500px;}
.xd{left:113.482200px;}
.xc{left:114.571650px;}
.x7{left:116.184150px;}
.x9{left:117.935700px;}
.xb{left:121.188300px;}
.x13{left:122.703750px;}
.x12{left:132.088650px;}
.x17{left:140.314950px;}
.x1c{left:157.449300px;}
.xe{left:172.304100px;}
.x25{left:179.303250px;}
.x15{left:185.710650px;}
.x24{left:187.807200px;}
.x10{left:230.808150px;}
.x5{left:236.160300px;}
.x14{left:246.953850px;}
.x1b{left:265.511100px;}
.x1{left:277.665000px;}
.x19{left:282.790800px;}
.x6{left:284.584950px;}
.x22{left:295.515000px;}
.x18{left:297.228450px;}
.x11{left:307.030350px;}
.x3{left:308.509950px;}
.xf{left:317.611650px;}
.x4{left:320.787150px;}
.x1a{left:324.121800px;}
.x16{left:329.331750px;}
.x2{left:331.607550px;}
.x23{left:338.355000px;}
.x1f{left:340.230450px;}
.x20{left:342.484650px;}
.x1d{left:374.173200px;}
.x1e{left:397.957500px;}
.x21{left:424.280400px;}
.x26{left:558.608250px;}
.x27{left:562.119750px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.v3{vertical-align:18.648000pt;}
.ls46{letter-spacing:-6.720000pt;}
.ls29{letter-spacing:-6.048000pt;}
.ls65{letter-spacing:-4.872000pt;}
.ls26{letter-spacing:-4.437333pt;}
.ls6b{letter-spacing:-4.312000pt;}
.ls16{letter-spacing:-4.256000pt;}
.ls4e{letter-spacing:-4.200000pt;}
.ls5c{letter-spacing:-4.144000pt;}
.ls1a{letter-spacing:-4.096000pt;}
.ls52{letter-spacing:-4.032000pt;}
.ls76{letter-spacing:-3.864000pt;}
.ls3c{letter-spacing:-3.808000pt;}
.ls6c{letter-spacing:-3.752000pt;}
.ls72{letter-spacing:-3.696000pt;}
.ls53{letter-spacing:-3.640000pt;}
.ls32{letter-spacing:-3.472000pt;}
.ls21{letter-spacing:-3.461333pt;}
.ls59{letter-spacing:-3.416000pt;}
.ls5b{letter-spacing:-3.360000pt;}
.ls2b{letter-spacing:-3.192000pt;}
.ls77{letter-spacing:-3.080000pt;}
.lse{letter-spacing:-2.976000pt;}
.ls47{letter-spacing:-2.856000pt;}
.ls6f{letter-spacing:-2.800000pt;}
.ls68{letter-spacing:-2.632000pt;}
.ls5f{letter-spacing:-2.576000pt;}
.ls75{letter-spacing:-2.464000pt;}
.ls67{letter-spacing:-2.408000pt;}
.ls6d{letter-spacing:-2.352000pt;}
.ls5d{letter-spacing:-2.296000pt;}
.ls23{letter-spacing:-2.090667pt;}
.ls48{letter-spacing:-2.016000pt;}
.ls15{letter-spacing:-1.968000pt;}
.ls4d{letter-spacing:-1.904000pt;}
.ls30{letter-spacing:-1.792000pt;}
.ls74{letter-spacing:-1.680000pt;}
.ls33{letter-spacing:-1.568000pt;}
.ls4f{letter-spacing:-1.456000pt;}
.ls12{letter-spacing:-1.296000pt;}
.ls69{letter-spacing:-1.232000pt;}
.ls71{letter-spacing:-1.176000pt;}
.ls45{letter-spacing:-1.120000pt;}
.ls6e{letter-spacing:-1.064000pt;}
.ls2{letter-spacing:-1.056000pt;}
.ls13{letter-spacing:-1.008000pt;}
.ls57{letter-spacing:-0.952000pt;}
.ls58{letter-spacing:-0.896000pt;}
.ls6a{letter-spacing:-0.840000pt;}
.ls54{letter-spacing:-0.784000pt;}
.ls4b{letter-spacing:-0.728000pt;}
.ls9{letter-spacing:-0.682667pt;}
.ls56{letter-spacing:-0.672000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls43{letter-spacing:-0.616000pt;}
.ls4a{letter-spacing:-0.560000pt;}
.ls1e{letter-spacing:-0.533333pt;}
.ls44{letter-spacing:-0.448000pt;}
.ls55{letter-spacing:-0.392000pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls50{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.280000pt;}
.ls2d{letter-spacing:-0.224000pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:-0.197333pt;}
.ls39{letter-spacing:-0.168000pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls2c{letter-spacing:-0.112000pt;}
.ls24{letter-spacing:-0.085333pt;}
.ls2e{letter-spacing:-0.056000pt;}
.ls28{letter-spacing:-0.042667pt;}
.ls18{letter-spacing:-0.027200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.000267pt;}
.ls25{letter-spacing:0.042667pt;}
.ls2a{letter-spacing:0.056000pt;}
.ls6{letter-spacing:0.085333pt;}
.ls17{letter-spacing:0.112000pt;}
.ls51{letter-spacing:0.168000pt;}
.ls61{letter-spacing:0.234667pt;}
.ls42{letter-spacing:0.280000pt;}
.ls1c{letter-spacing:0.293333pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.336000pt;}
.ls1d{letter-spacing:0.373333pt;}
.ls31{letter-spacing:0.392000pt;}
.ls11{letter-spacing:0.432000pt;}
.ls49{letter-spacing:0.448000pt;}
.ls3b{letter-spacing:0.504000pt;}
.ls27{letter-spacing:0.512000pt;}
.ls40{letter-spacing:0.513600pt;}
.ls14{letter-spacing:0.528000pt;}
.ls3d{letter-spacing:0.560000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls60{letter-spacing:0.672000pt;}
.ls2f{letter-spacing:0.768000pt;}
.ls63{letter-spacing:0.784000pt;}
.ls8{letter-spacing:0.810667pt;}
.ls62{letter-spacing:0.840000pt;}
.ls3a{letter-spacing:0.896000pt;}
.ls38{letter-spacing:0.997867pt;}
.ls64{letter-spacing:1.008000pt;}
.ls20{letter-spacing:1.056000pt;}
.ls37{letter-spacing:1.064000pt;}
.ls1f{letter-spacing:1.120000pt;}
.ls19{letter-spacing:1.152000pt;}
.ls78{letter-spacing:1.232000pt;}
.ls36{letter-spacing:1.288000pt;}
.lsf{letter-spacing:1.344000pt;}
.ls5a{letter-spacing:1.512000pt;}
.lsa{letter-spacing:1.680000pt;}
.ls73{letter-spacing:1.848000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls70{letter-spacing:2.016000pt;}
.ls34{letter-spacing:2.034667pt;}
.ls1{letter-spacing:2.565333pt;}
.ls41{letter-spacing:3.452800pt;}
.ls3f{letter-spacing:3.857600pt;}
.ls5e{letter-spacing:4.308800pt;}
.ls35{letter-spacing:4.901867pt;}
.lsb{letter-spacing:4.965895pt;}
.ls3e{letter-spacing:8.626133pt;}
.wsd{word-spacing:-16.576000pt;}
.wsf{word-spacing:-15.680000pt;}
.wse8{word-spacing:-15.008000pt;}
.wsfa{word-spacing:-14.896000pt;}
.wse2{word-spacing:-14.672000pt;}
.wsf3{word-spacing:-14.560000pt;}
.wsd9{word-spacing:-14.504000pt;}
.wsda{word-spacing:-14.448000pt;}
.ws6d{word-spacing:-14.392000pt;}
.wsba{word-spacing:-14.336000pt;}
.wsa2{word-spacing:-14.280000pt;}
.wsbd{word-spacing:-14.168000pt;}
.ws7e{word-spacing:-14.112000pt;}
.ws50{word-spacing:-14.056000pt;}
.ws51{word-spacing:-14.000000pt;}
.ws54{word-spacing:-13.944000pt;}
.ws52{word-spacing:-13.888000pt;}
.wsbb{word-spacing:-13.832000pt;}
.ws53{word-spacing:-13.776000pt;}
.wse{word-spacing:-13.720000pt;}
.wsa3{word-spacing:-13.552000pt;}
.wsa6{word-spacing:-13.440000pt;}
.wsbe{word-spacing:-13.384000pt;}
.wscd{word-spacing:-13.328000pt;}
.ws12{word-spacing:-13.272000pt;}
.wscc{word-spacing:-13.104000pt;}
.ws2a{word-spacing:-13.048000pt;}
.wsfb{word-spacing:-12.824000pt;}
.ws48{word-spacing:-12.800000pt;}
.ws20{word-spacing:-12.600000pt;}
.ws3{word-spacing:-12.586667pt;}
.wsbc{word-spacing:-12.544000pt;}
.ws23{word-spacing:-12.432000pt;}
.ws103{word-spacing:-12.320000pt;}
.wsa5{word-spacing:-12.208000pt;}
.ws28{word-spacing:-12.096000pt;}
.ws25{word-spacing:-12.000000pt;}
.wsa4{word-spacing:-11.984000pt;}
.ws47{word-spacing:-11.904000pt;}
.ws22{word-spacing:-11.856000pt;}
.ws4{word-spacing:-11.477333pt;}
.ws49{word-spacing:-11.205333pt;}
.ws4c{word-spacing:-11.178667pt;}
.ws1f{word-spacing:-11.144000pt;}
.ws26{word-spacing:-10.992000pt;}
.ws7d{word-spacing:-10.808000pt;}
.ws4b{word-spacing:-10.709333pt;}
.ws29{word-spacing:-10.696000pt;}
.ws4e{word-spacing:-10.624000pt;}
.ws4d{word-spacing:-10.581333pt;}
.ws6e{word-spacing:-10.528000pt;}
.wsd8{word-spacing:-10.360000pt;}
.ws102{word-spacing:-10.304000pt;}
.wsf9{word-spacing:-10.248000pt;}
.ws1e{word-spacing:-9.856000pt;}
.ws44{word-spacing:-9.744000pt;}
.wsf4{word-spacing:-9.688000pt;}
.ws45{word-spacing:-9.445333pt;}
.ws6c{word-spacing:-8.874667pt;}
.ws1a{word-spacing:-8.736000pt;}
.ws4a{word-spacing:-8.576000pt;}
.ws4f{word-spacing:-7.952000pt;}
.ws21{word-spacing:-7.280000pt;}
.ws24{word-spacing:-6.996000pt;}
.ws18{word-spacing:-5.488000pt;}
.ws19{word-spacing:-4.648000pt;}
.ws108{word-spacing:-3.752000pt;}
.wsa8{word-spacing:-3.696000pt;}
.ws66{word-spacing:-3.248000pt;}
.wsa9{word-spacing:-3.080000pt;}
.wsd2{word-spacing:-2.912000pt;}
.ws1c{word-spacing:-2.632000pt;}
.wsdf{word-spacing:-2.576000pt;}
.ws1{word-spacing:-2.565333pt;}
.wsee{word-spacing:-2.520000pt;}
.wsd7{word-spacing:-2.464000pt;}
.wsb4{word-spacing:-2.408000pt;}
.ws40{word-spacing:-2.400000pt;}
.ws6f{word-spacing:-2.352000pt;}
.wsd6{word-spacing:-2.296000pt;}
.ws16{word-spacing:-2.128000pt;}
.ws9c{word-spacing:-2.072000pt;}
.wsd4{word-spacing:-2.016000pt;}
.ws84{word-spacing:-1.960000pt;}
.ws14{word-spacing:-1.848000pt;}
.ws34{word-spacing:-1.776000pt;}
.wsb0{word-spacing:-1.736000pt;}
.wsa{word-spacing:-1.706667pt;}
.ws10{word-spacing:-1.680000pt;}
.wsc0{word-spacing:-1.568000pt;}
.wsdd{word-spacing:-1.512000pt;}
.ws8f{word-spacing:-1.400000pt;}
.ws8{word-spacing:-1.365333pt;}
.ws70{word-spacing:-1.344000pt;}
.ws81{word-spacing:-1.288000pt;}
.ws10d{word-spacing:-1.232000pt;}
.wsc2{word-spacing:-1.176000pt;}
.ws55{word-spacing:-1.152000pt;}
.ws59{word-spacing:-1.120000pt;}
.ws83{word-spacing:-1.064000pt;}
.ws5a{word-spacing:-1.056000pt;}
.ws1d{word-spacing:-1.008000pt;}
.ws27{word-spacing:-0.952000pt;}
.ws9a{word-spacing:-0.896000pt;}
.ws92{word-spacing:-0.840000pt;}
.ws9{word-spacing:-0.810667pt;}
.wsea{word-spacing:-0.784000pt;}
.ws6b{word-spacing:-0.768000pt;}
.ws8d{word-spacing:-0.728000pt;}
.wsd3{word-spacing:-0.672000pt;}
.wsaa{word-spacing:-0.616000pt;}
.wsb1{word-spacing:-0.560000pt;}
.ws32{word-spacing:-0.528000pt;}
.ws9e{word-spacing:-0.504000pt;}
.ws35{word-spacing:-0.480000pt;}
.wsaf{word-spacing:-0.448000pt;}
.ws73{word-spacing:-0.392000pt;}
.ws58{word-spacing:-0.373333pt;}
.ws2d{word-spacing:-0.336000pt;}
.ws56{word-spacing:-0.320000pt;}
.ws57{word-spacing:-0.293333pt;}
.ws17{word-spacing:-0.280000pt;}
.ws82{word-spacing:-0.168000pt;}
.ws99{word-spacing:-0.112000pt;}
.ws46{word-spacing:-0.106133pt;}
.ws6{word-spacing:-0.085333pt;}
.ws75{word-spacing:-0.056000pt;}
.ws2e{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.056000pt;}
.ws5d{word-spacing:0.085333pt;}
.wsd1{word-spacing:0.112000pt;}
.ws86{word-spacing:0.168000pt;}
.ws7{word-spacing:0.213333pt;}
.wsd0{word-spacing:0.224000pt;}
.ws11{word-spacing:0.280000pt;}
.wsc6{word-spacing:0.336000pt;}
.ws5b{word-spacing:0.384000pt;}
.ws71{word-spacing:0.392000pt;}
.ws39{word-spacing:0.432000pt;}
.wse6{word-spacing:0.448000pt;}
.ws31{word-spacing:0.480000pt;}
.wsab{word-spacing:0.504000pt;}
.ws63{word-spacing:0.554667pt;}
.wsca{word-spacing:0.560000pt;}
.ws76{word-spacing:0.616000pt;}
.ws5{word-spacing:0.640000pt;}
.wsd5{word-spacing:0.672000pt;}
.wsc{word-spacing:0.682667pt;}
.ws33{word-spacing:0.720000pt;}
.ws105{word-spacing:0.728000pt;}
.wsce{word-spacing:0.784000pt;}
.wsf7{word-spacing:0.840000pt;}
.ws87{word-spacing:0.896000pt;}
.ws36{word-spacing:0.912000pt;}
.wsb3{word-spacing:0.952000pt;}
.ws2c{word-spacing:1.008000pt;}
.ws2{word-spacing:1.056000pt;}
.wsf1{word-spacing:1.064000pt;}
.wsf0{word-spacing:1.176000pt;}
.wsb9{word-spacing:1.232000pt;}
.ws65{word-spacing:1.237333pt;}
.ws88{word-spacing:1.288000pt;}
.ws67{word-spacing:1.400000pt;}
.ws37{word-spacing:1.440000pt;}
.ws68{word-spacing:1.456000pt;}
.ws7b{word-spacing:1.568000pt;}
.ws85{word-spacing:1.624000pt;}
.ws10c{word-spacing:1.680000pt;}
.ws42{word-spacing:1.728000pt;}
.wsbf{word-spacing:1.736000pt;}
.wsf5{word-spacing:1.792000pt;}
.wse3{word-spacing:1.848000pt;}
.wsb{word-spacing:1.877333pt;}
.ws95{word-spacing:1.904000pt;}
.ws41{word-spacing:1.968000pt;}
.ws7f{word-spacing:2.016000pt;}
.wse7{word-spacing:2.128000pt;}
.ws5c{word-spacing:2.133333pt;}
.wsc3{word-spacing:2.296000pt;}
.wse5{word-spacing:2.352000pt;}
.wsde{word-spacing:2.408000pt;}
.wsc1{word-spacing:2.464000pt;}
.wse4{word-spacing:2.576000pt;}
.wsc4{word-spacing:2.632000pt;}
.wsff{word-spacing:2.800000pt;}
.wsb2{word-spacing:2.912000pt;}
.ws89{word-spacing:2.968000pt;}
.ws2b{word-spacing:2.976000pt;}
.ws8a{word-spacing:3.024000pt;}
.wsa0{word-spacing:3.080000pt;}
.ws9b{word-spacing:3.136000pt;}
.wsed{word-spacing:3.192000pt;}
.ws106{word-spacing:3.248000pt;}
.ws64{word-spacing:3.285333pt;}
.wsc5{word-spacing:3.304000pt;}
.ws93{word-spacing:3.360000pt;}
.wsc8{word-spacing:3.416000pt;}
.ws80{word-spacing:3.472000pt;}
.ws7a{word-spacing:3.528000pt;}
.ws3a{word-spacing:3.696000pt;}
.ws100{word-spacing:3.752000pt;}
.ws9f{word-spacing:3.808000pt;}
.wsb8{word-spacing:3.864000pt;}
.wsc9{word-spacing:4.032000pt;}
.ws10a{word-spacing:4.088000pt;}
.ws3b{word-spacing:4.176000pt;}
.wsa7{word-spacing:4.200000pt;}
.wsdb{word-spacing:4.256000pt;}
.ws8e{word-spacing:4.368000pt;}
.ws5f{word-spacing:4.437333pt;}
.ws74{word-spacing:4.480000pt;}
.ws98{word-spacing:4.536000pt;}
.ws69{word-spacing:4.648000pt;}
.ws2f{word-spacing:4.656000pt;}
.wsec{word-spacing:4.704000pt;}
.ws72{word-spacing:4.760000pt;}
.wse0{word-spacing:4.816000pt;}
.wsdc{word-spacing:4.872000pt;}
.ws3f{word-spacing:4.896000pt;}
.ws8c{word-spacing:4.928000pt;}
.ws8b{word-spacing:4.984000pt;}
.ws79{word-spacing:5.040000pt;}
.wsb6{word-spacing:5.152000pt;}
.wscf{word-spacing:5.208000pt;}
.wsb5{word-spacing:5.264000pt;}
.ws91{word-spacing:5.432000pt;}
.wsfc{word-spacing:5.488000pt;}
.ws90{word-spacing:5.600000pt;}
.wse9{word-spacing:5.712000pt;}
.wsf8{word-spacing:5.768000pt;}
.wsb7{word-spacing:5.824000pt;}
.ws94{word-spacing:5.992000pt;}
.ws38{word-spacing:6.048000pt;}
.ws97{word-spacing:6.104000pt;}
.ws62{word-spacing:6.314667pt;}
.ws3c{word-spacing:6.336000pt;}
.ws109{word-spacing:6.384000pt;}
.wsc7{word-spacing:6.440000pt;}
.wsad{word-spacing:6.496000pt;}
.wsac{word-spacing:6.608000pt;}
.ws30{word-spacing:6.672000pt;}
.ws78{word-spacing:6.944000pt;}
.ws77{word-spacing:7.056000pt;}
.wsfe{word-spacing:7.112000pt;}
.ws43{word-spacing:7.152000pt;}
.ws107{word-spacing:7.448000pt;}
.wsef{word-spacing:7.840000pt;}
.ws3d{word-spacing:8.064000pt;}
.ws60{word-spacing:8.106667pt;}
.ws3e{word-spacing:8.448000pt;}
.wsae{word-spacing:8.624000pt;}
.wsf6{word-spacing:8.680000pt;}
.ws104{word-spacing:8.848000pt;}
.ws10b{word-spacing:9.520000pt;}
.wsfd{word-spacing:10.584000pt;}
.ws5e{word-spacing:10.709333pt;}
.ws96{word-spacing:10.864000pt;}
.ws61{word-spacing:11.136000pt;}
.wseb{word-spacing:15.176000pt;}
.ws1b{word-spacing:61.992000pt;}
.ws15{word-spacing:89.712000pt;}
.ws13{word-spacing:117.152000pt;}
.wsf2{word-spacing:581.342933pt;}
.wscb{word-spacing:581.774133pt;}
.ws101{word-spacing:582.272533pt;}
.wse1{word-spacing:582.490933pt;}
.wsa1{word-spacing:585.022133pt;}
.ws7c{word-spacing:585.766933pt;}
.ws6a{word-spacing:586.444533pt;}
._13{margin-left:-14.333333pt;}
._b{margin-left:-12.010498pt;}
._9{margin-left:-7.201600pt;}
._12{margin-left:-5.898400pt;}
._7{margin-left:-4.501909pt;}
._4{margin-left:-2.995200pt;}
._2{margin-left:-1.992533pt;}
._3{margin-left:-1.038400pt;}
._0{width:0.897600pt;}
._1{width:2.352533pt;}
._5{width:3.692800pt;}
._d{width:5.001600pt;}
._e{width:6.161951pt;}
._8{width:7.415832pt;}
._6{width:8.727298pt;}
._a{width:9.991509pt;}
._c{width:11.028056pt;}
._10{width:11.971733pt;}
._14{width:588.952000pt;}
._f{width:589.993600pt;}
._11{width:591.740800pt;}
.fs8{font-size:0.533333pt;}
.fs6{font-size:27.984000pt;}
.fsa{font-size:32.648000pt;}
.fs7{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:197.333333pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:41.574800pt;}
.y7d{bottom:56.692933pt;}
.y56{bottom:94.488000pt;}
.y34{bottom:94.488133pt;}
.y33{bottom:107.154800pt;}
.y1ca{bottom:111.352400pt;}
.y1f2{bottom:111.354533pt;}
.yd5{bottom:111.359733pt;}
.yfa{bottom:111.364133pt;}
.y97{bottom:111.376933pt;}
.y12e{bottom:111.478133pt;}
.y11d{bottom:111.599467pt;}
.y151{bottom:111.608133pt;}
.y55{bottom:111.634800pt;}
.y1a6{bottom:111.638133pt;}
.y187{bottom:111.662133pt;}
.yad{bottom:111.712933pt;}
.y163{bottom:112.128000pt;}
.y175{bottom:112.178133pt;}
.y32{bottom:119.821467pt;}
.y1c9{bottom:128.216533pt;}
.y1f1{bottom:128.220933pt;}
.yd4{bottom:128.231200pt;}
.y96{bottom:128.265867pt;}
.y12d{bottom:128.468267pt;}
.y11c{bottom:128.710800pt;}
.y54{bottom:128.781467pt;}
.y186{bottom:128.836133pt;}
.yac{bottom:128.937867pt;}
.y99{bottom:129.632400pt;}
.y162{bottom:129.767867pt;}
.y174{bottom:129.868267pt;}
.y3{bottom:132.283467pt;}
.y31{bottom:132.488133pt;}
.yf9{bottom:136.640133pt;}
.y150{bottom:137.127867pt;}
.y1a5{bottom:137.188000pt;}
.y1c8{bottom:145.080667pt;}
.y1f0{bottom:145.087467pt;}
.yd3{bottom:145.102800pt;}
.y95{bottom:145.154667pt;}
.y30{bottom:145.154800pt;}
.y12c{bottom:145.458400pt;}
.y11b{bottom:145.822267pt;}
.y185{bottom:146.010267pt;}
.y161{bottom:147.407600pt;}
.y173{bottom:147.558267pt;}
.yf8{bottom:153.516133pt;}
.y14f{bottom:154.247733pt;}
.y53{bottom:154.326267pt;}
.y2f{bottom:157.821467pt;}
.y1c7{bottom:161.944800pt;}
.y1ef{bottom:161.953867pt;}
.y94{bottom:162.043467pt;}
.y12b{bottom:162.448400pt;}
.y11a{bottom:162.933600pt;}
.yab{bottom:162.960800pt;}
.y184{bottom:163.184267pt;}
.y160{bottom:165.047467pt;}
.y172{bottom:165.248267pt;}
.yd2{bottom:170.374267pt;}
.yf7{bottom:170.392133pt;}
.y14e{bottom:171.367467pt;}
.y52{bottom:171.472933pt;}
.y2e{bottom:178.047200pt;}
.y1c6{bottom:178.809067pt;}
.y1ee{bottom:178.820267pt;}
.y119{bottom:180.044933pt;}
.yaa{bottom:180.185733pt;}
.yd1{bottom:187.245733pt;}
.yf6{bottom:187.268000pt;}
.y1a4{bottom:187.937867pt;}
.y14d{bottom:188.487200pt;}
.y2d{bottom:190.713867pt;}
.y15f{bottom:191.087200pt;}
.y171{bottom:191.338267pt;}
.y1c5{bottom:195.673200pt;}
.y1ed{bottom:195.686667pt;}
.y93{bottom:195.730400pt;}
.y12a{bottom:196.236533pt;}
.y51{bottom:197.017733pt;}
.y118{bottom:197.156267pt;}
.y183{bottom:197.156400pt;}
.ya9{bottom:197.410533pt;}
.y2c{bottom:203.380533pt;}
.yd0{bottom:204.117333pt;}
.yf5{bottom:204.144000pt;}
.y1a3{bottom:205.087867pt;}
.y14c{bottom:205.607067pt;}
.y15e{bottom:208.727067pt;}
.y1c4{bottom:212.537333pt;}
.y1ec{bottom:212.553067pt;}
.y129{bottom:213.226667pt;}
.y50{bottom:214.164533pt;}
.y182{bottom:214.330400pt;}
.ya8{bottom:214.635333pt;}
.y2b{bottom:216.047200pt;}
.ycf{bottom:220.988800pt;}
.y92{bottom:221.019200pt;}
.yf4{bottom:221.020000pt;}
.y14b{bottom:222.726933pt;}
.y15d{bottom:226.366933pt;}
.y2a{bottom:228.713867pt;}
.y1c3{bottom:229.401467pt;}
.y1eb{bottom:229.419467pt;}
.y128{bottom:230.216667pt;}
.y117{bottom:231.065733pt;}
.ya7{bottom:231.860267pt;}
.yf3{bottom:237.896000pt;}
.y7c{bottom:238.102800pt;}
.y1a2{bottom:239.035867pt;}
.y4f{bottom:239.709333pt;}
.y181{bottom:239.904400pt;}
.y170{bottom:242.628267pt;}
.yce{bottom:246.260400pt;}
.y1c2{bottom:246.265600pt;}
.y1ea{bottom:246.285867pt;}
.y127{bottom:247.206800pt;}
.y116{bottom:248.177067pt;}
.y7b{bottom:251.436133pt;}
.y15c{bottom:252.406800pt;}
.y29{bottom:252.719200pt;}
.y91{bottom:254.706133pt;}
.yf2{bottom:254.771867pt;}
.y1a1{bottom:256.185733pt;}
.y14a{bottom:256.644800pt;}
.y180{bottom:257.078400pt;}
.y16f{bottom:260.318267pt;}
.y1c1{bottom:263.129867pt;}
.ycd{bottom:263.131867pt;}
.y1e9{bottom:263.152400pt;}
.y126{bottom:264.196800pt;}
.y7a{bottom:264.769467pt;}
.y4e{bottom:265.254133pt;}
.y115{bottom:265.288533pt;}
.y28{bottom:265.385867pt;}
.ya6{bottom:265.883200pt;}
.y15b{bottom:270.046533pt;}
.y90{bottom:271.594933pt;}
.yf1{bottom:271.647867pt;}
.y1a0{bottom:273.335600pt;}
.y149{bottom:273.764667pt;}
.y17f{bottom:274.252400pt;}
.y16e{bottom:278.008400pt;}
.y79{bottom:278.102800pt;}
.ycc{bottom:280.003467pt;}
.y1e8{bottom:280.018800pt;}
.y114{bottom:282.399867pt;}
.y4d{bottom:282.400800pt;}
.ya5{bottom:283.108000pt;}
.y15a{bottom:287.686400pt;}
.y1c0{bottom:288.394000pt;}
.y8f{bottom:288.483733pt;}
.yf0{bottom:288.523867pt;}
.y125{bottom:289.586933pt;}
.y19f{bottom:290.485600pt;}
.y148{bottom:290.884400pt;}
.y17e{bottom:291.426400pt;}
.y78{bottom:291.436133pt;}
.y16d{bottom:295.698400pt;}
.y22{bottom:296.698667pt;}
.ycb{bottom:296.874933pt;}
.y1e7{bottom:296.885200pt;}
.y113{bottom:299.511200pt;}
.y4c{bottom:299.547467pt;}
.ya4{bottom:300.332933pt;}
.y77{bottom:304.769467pt;}
.y159{bottom:305.326133pt;}
.y19e{bottom:307.635467pt;}
.y147{bottom:308.004267pt;}
.y17d{bottom:308.600400pt;}
.y21{bottom:309.365333pt;}
.y16c{bottom:313.388400pt;}
.yca{bottom:313.746400pt;}
.y1e6{bottom:313.751600pt;}
.yef{bottom:313.799867pt;}
.y112{bottom:316.622533pt;}
.ya3{bottom:317.557733pt;}
.y76{bottom:318.102800pt;}
.y124{bottom:318.754533pt;}
.y20{bottom:322.032000pt;}
.y158{bottom:322.966000pt;}
.y19d{bottom:324.785333pt;}
.y4b{bottom:325.092267pt;}
.y17c{bottom:325.774533pt;}
.yc9{bottom:330.618000pt;}
.yee{bottom:330.675733pt;}
.y16b{bottom:331.078400pt;}
.y75{bottom:331.436133pt;}
.y1f{bottom:334.698667pt;}
.y123{bottom:335.744667pt;}
.y8e{bottom:336.490667pt;}
.y146{bottom:341.922133pt;}
.y19c{bottom:341.935200pt;}
.y111{bottom:342.133867pt;}
.y4a{bottom:342.239067pt;}
.y17b{bottom:342.948533pt;}
.ya2{bottom:343.182667pt;}
.y74{bottom:344.769467pt;}
.y1e{bottom:347.365333pt;}
.y1e5{bottom:347.484400pt;}
.yc8{bottom:347.489600pt;}
.yed{bottom:347.551733pt;}
.y1bf{bottom:347.673867pt;}
.y16a{bottom:348.768533pt;}
.y157{bottom:349.005867pt;}
.y122{bottom:352.734667pt;}
.y8d{bottom:357.158933pt;}
.y73{bottom:358.102800pt;}
.y145{bottom:359.042000pt;}
.y19b{bottom:359.085200pt;}
.y110{bottom:359.245333pt;}
.y49{bottom:359.385733pt;}
.y1d{bottom:360.032000pt;}
.y17a{bottom:360.122533pt;}
.ya1{bottom:360.407467pt;}
.y1e4{bottom:364.350800pt;}
.yc7{bottom:364.361067pt;}
.yec{bottom:364.427733pt;}
.y1be{bottom:364.538000pt;}
.y169{bottom:366.458533pt;}
.y156{bottom:366.645600pt;}
.y121{bottom:369.724667pt;}
.y8c{bottom:370.492267pt;}
.y72{bottom:371.436133pt;}
.y1c{bottom:372.698667pt;}
.y19a{bottom:376.235067pt;}
.y10f{bottom:376.356667pt;}
.y179{bottom:377.296533pt;}
.ya0{bottom:377.632267pt;}
.y1e3{bottom:381.217200pt;}
.yc6{bottom:381.232533pt;}
.y1bd{bottom:381.402133pt;}
.y168{bottom:384.148533pt;}
.y155{bottom:384.285467pt;}
.y144{bottom:384.561733pt;}
.y71{bottom:384.769467pt;}
.y48{bottom:384.930533pt;}
.y1b{bottom:385.365333pt;}
.y120{bottom:386.714800pt;}
.y8b{bottom:387.605200pt;}
.y9f{bottom:394.857200pt;}
.y1a{bottom:398.032000pt;}
.y1e2{bottom:398.083600pt;}
.yeb{bottom:398.101867pt;}
.y70{bottom:398.102800pt;}
.yc5{bottom:398.104133pt;}
.y1bc{bottom:398.266267pt;}
.y8a{bottom:400.938533pt;}
.y143{bottom:401.681600pt;}
.y167{bottom:401.838533pt;}
.y10e{bottom:401.868000pt;}
.y154{bottom:401.925333pt;}
.y47{bottom:402.077200pt;}
.y178{bottom:402.870533pt;}
.y199{bottom:410.183067pt;}
.y19{bottom:410.698667pt;}
.y6f{bottom:411.436133pt;}
.y9e{bottom:412.082000pt;}
.y89{bottom:414.271867pt;}
.y1e1{bottom:414.950133pt;}
.yea{bottom:414.977733pt;}
.y1bb{bottom:415.130533pt;}
.y142{bottom:418.801333pt;}
.y10d{bottom:418.979333pt;}
.y46{bottom:419.223867pt;}
.y166{bottom:419.528533pt;}
.y153{bottom:419.565067pt;}
.y177{bottom:420.044533pt;}
.y11f{bottom:420.502933pt;}
.y18{bottom:423.365333pt;}
.yc4{bottom:423.375600pt;}
.y6e{bottom:424.769467pt;}
.y198{bottom:427.333067pt;}
.y88{bottom:427.605200pt;}
.y1e0{bottom:431.816533pt;}
.ye9{bottom:431.853733pt;}
.y141{bottom:435.921200pt;}
.y17{bottom:436.032000pt;}
.y152{bottom:437.204933pt;}
.y165{bottom:437.218533pt;}
.y11e{bottom:437.493067pt;}
.y9d{bottom:437.706933pt;}
.y6d{bottom:438.102800pt;}
.yc3{bottom:440.247200pt;}
.y1ba{bottom:440.394667pt;}
.y87{bottom:440.938533pt;}
.y197{bottom:444.482933pt;}
.y10c{bottom:444.490667pt;}
.y45{bottom:444.768667pt;}
.y1df{bottom:448.682933pt;}
.y16{bottom:448.698667pt;}
.ye8{bottom:448.729733pt;}
.y6c{bottom:451.436133pt;}
.y140{bottom:453.041067pt;}
.y86{bottom:454.271867pt;}
.y9c{bottom:454.931733pt;}
.y1b9{bottom:457.258800pt;}
.y15{bottom:461.365333pt;}
.y10b{bottom:461.602000pt;}
.y196{bottom:461.632800pt;}
.y44{bottom:461.915467pt;}
.y6b{bottom:464.769467pt;}
.yc2{bottom:465.518667pt;}
.y1de{bottom:465.549333pt;}
.ye7{bottom:465.605733pt;}
.y164{bottom:471.679733pt;}
.y9b{bottom:472.156533pt;}
.y14{bottom:474.032000pt;}
.y1b8{bottom:474.122933pt;}
.y6a{bottom:478.102800pt;}
.y13f{bottom:478.560800pt;}
.y10a{bottom:478.713467pt;}
.y195{bottom:478.782667pt;}
.y43{bottom:479.062133pt;}
.yc1{bottom:482.390267pt;}
.y1dd{bottom:482.415733pt;}
.ye6{bottom:482.481600pt;}
.y13{bottom:486.698667pt;}
.y12f{bottom:486.797733pt;}
.y9a{bottom:489.381467pt;}
.y69{bottom:491.436133pt;}
.y85{bottom:493.756533pt;}
.y13e{bottom:495.680667pt;}
.y109{bottom:495.824800pt;}
.yc0{bottom:499.261733pt;}
.y1dc{bottom:499.282133pt;}
.y1b7{bottom:499.387067pt;}
.y194{bottom:504.332667pt;}
.y42{bottom:504.606933pt;}
.y68{bottom:504.769467pt;}
.y12{bottom:510.703867pt;}
.y13d{bottom:512.800400pt;}
.y108{bottom:512.936133pt;}
.ybf{bottom:516.133200pt;}
.y1db{bottom:516.148667pt;}
.ye5{bottom:516.155733pt;}
.y1b6{bottom:516.251200pt;}
.y67{bottom:518.102800pt;}
.y193{bottom:521.482533pt;}
.y41{bottom:521.753600pt;}
.y11{bottom:523.370533pt;}
.yae{bottom:524.593067pt;}
.y13c{bottom:529.920267pt;}
.y66{bottom:531.436133pt;}
.ybe{bottom:533.004800pt;}
.y1da{bottom:533.015067pt;}
.ye4{bottom:533.031600pt;}
.y1b5{bottom:533.115333pt;}
.y192{bottom:538.632533pt;}
.y40{bottom:538.900267pt;}
.y84{bottom:543.445333pt;}
.y65{bottom:544.769467pt;}
.y107{bottom:546.845600pt;}
.y10{bottom:547.375733pt;}
.y1d9{bottom:549.881467pt;}
.y1b4{bottom:549.979600pt;}
.y13b{bottom:555.440000pt;}
.y191{bottom:555.782400pt;}
.y64{bottom:558.102800pt;}
.ybd{bottom:558.276267pt;}
.y83{bottom:559.534133pt;}
.yf{bottom:560.042400pt;}
.y106{bottom:563.956933pt;}
.y3f{bottom:564.445200pt;}
.ye3{bottom:566.705733pt;}
.y1d8{bottom:566.747867pt;}
.y1b3{bottom:566.843733pt;}
.y63{bottom:571.436133pt;}
.ye{bottom:572.709067pt;}
.y190{bottom:572.932267pt;}
.ybc{bottom:575.147867pt;}
.y82{bottom:575.622933pt;}
.y2{bottom:575.746533pt;}
.y13a{bottom:580.959867pt;}
.y105{bottom:581.068267pt;}
.y3e{bottom:581.591867pt;}
.ye2{bottom:583.581733pt;}
.y1d7{bottom:583.614267pt;}
.y1b2{bottom:583.707867pt;}
.y62{bottom:584.769467pt;}
.yd{bottom:585.375733pt;}
.y81{bottom:591.711733pt;}
.ybb{bottom:592.019333pt;}
.yc{bottom:598.042400pt;}
.y61{bottom:598.102800pt;}
.y104{bottom:598.179733pt;}
.ye1{bottom:600.457733pt;}
.y1d6{bottom:600.480667pt;}
.y1b1{bottom:600.572000pt;}
.y18f{bottom:606.880267pt;}
.y3d{bottom:607.136667pt;}
.yba{bottom:608.890933pt;}
.yb{bottom:610.709067pt;}
.y60{bottom:611.436133pt;}
.y103{bottom:615.291067pt;}
.ye0{bottom:617.333600pt;}
.y1d5{bottom:617.347067pt;}
.ya{bottom:623.375733pt;}
.y18e{bottom:624.030133pt;}
.y3c{bottom:624.283333pt;}
.y5f{bottom:624.769467pt;}
.yb9{bottom:625.762400pt;}
.y1b0{bottom:625.836133pt;}
.y139{bottom:631.679733pt;}
.ydf{bottom:634.209600pt;}
.y1d4{bottom:634.213467pt;}
.y9{bottom:636.042400pt;}
.y5e{bottom:638.102800pt;}
.y80{bottom:641.133867pt;}
.yb8{bottom:642.634000pt;}
.y1af{bottom:642.700400pt;}
.y1{bottom:644.146667pt;}
.y8{bottom:648.709067pt;}
.y138{bottom:648.799467pt;}
.y102{bottom:649.200533pt;}
.y3b{bottom:649.828133pt;}
.y1d3{bottom:651.079867pt;}
.y18d{bottom:657.978267pt;}
.yb7{bottom:659.505467pt;}
.y1ae{bottom:659.564533pt;}
.y5d{bottom:659.834267pt;}
.y7f{bottom:661.222800pt;}
.y7{bottom:661.375733pt;}
.y137{bottom:665.919333pt;}
.y3a{bottom:666.974800pt;}
.yde{bottom:667.883733pt;}
.y1d2{bottom:667.946400pt;}
.y6{bottom:674.042400pt;}
.y101{bottom:674.711867pt;}
.y18c{bottom:675.128133pt;}
.y1ad{bottom:676.428667pt;}
.y136{bottom:683.039067pt;}
.ydd{bottom:684.759733pt;}
.yb6{bottom:684.777067pt;}
.y1d1{bottom:684.812800pt;}
.y100{bottom:691.823200pt;}
.y18b{bottom:692.278133pt;}
.y39{bottom:692.519733pt;}
.y5{bottom:698.047733pt;}
.y135{bottom:700.158800pt;}
.ydc{bottom:701.635600pt;}
.yb5{bottom:701.648533pt;}
.y1d0{bottom:701.679200pt;}
.y1ac{bottom:701.692933pt;}
.y1f8{bottom:702.091333pt;}
.y5c{bottom:702.095200pt;}
.yff{bottom:708.934533pt;}
.y18a{bottom:709.428000pt;}
.y38{bottom:709.666400pt;}
.y4{bottom:710.714400pt;}
.y134{bottom:717.278667pt;}
.ydb{bottom:718.511600pt;}
.yb4{bottom:718.520000pt;}
.y1cf{bottom:718.545600pt;}
.y1ab{bottom:718.556933pt;}
.y1f7{bottom:718.891333pt;}
.y5b{bottom:718.895200pt;}
.yfe{bottom:726.045867pt;}
.y133{bottom:734.398400pt;}
.y189{bottom:734.977867pt;}
.y37{bottom:735.211200pt;}
.yda{bottom:735.387467pt;}
.yb3{bottom:735.391600pt;}
.y1ce{bottom:735.412000pt;}
.y1aa{bottom:735.421200pt;}
.y1f6{bottom:735.691333pt;}
.yfd{bottom:743.157333pt;}
.y5a{bottom:744.093333pt;}
.y27{bottom:745.776800pt;}
.y132{bottom:751.518267pt;}
.yb2{bottom:752.263067pt;}
.yd9{bottom:752.263467pt;}
.y1cd{bottom:752.278400pt;}
.y1a9{bottom:752.285333pt;}
.y36{bottom:752.357867pt;}
.y1f5{bottom:752.491333pt;}
.y26{bottom:758.576800pt;}
.yfc{bottom:760.268667pt;}
.y59{bottom:760.893333pt;}
.y131{bottom:768.638133pt;}
.yb1{bottom:769.134667pt;}
.yd8{bottom:769.139467pt;}
.y1cc{bottom:769.144800pt;}
.y1a8{bottom:769.149467pt;}
.y1f4{bottom:769.291333pt;}
.y25{bottom:771.376800pt;}
.yfb{bottom:777.380000pt;}
.y24{bottom:784.176800pt;}
.y188{bottom:785.727733pt;}
.y130{bottom:785.757867pt;}
.yb0{bottom:786.006133pt;}
.y1cb{bottom:786.011200pt;}
.y1a7{bottom:786.013467pt;}
.yd7{bottom:786.015333pt;}
.y1f3{bottom:786.091333pt;}
.y58{bottom:786.091467pt;}
.y23{bottom:796.976800pt;}
.y35{bottom:801.504667pt;}
.yaf{bottom:802.877733pt;}
.yd6{bottom:802.891333pt;}
.y57{bottom:802.891467pt;}
.y98{bottom:846.614133pt;}
.y176{bottom:847.874000pt;}
.hc{height:0.467969pt;}
.hb{height:32.757812pt;}
.h5{height:37.437500pt;}
.h10{height:37.541667pt;}
.h4{height:37.895833pt;}
.h9{height:42.117188pt;}
.ha{height:42.234375pt;}
.hf{height:46.927083pt;}
.h7{height:49.136719pt;}
.h8{height:49.273438pt;}
.h3{height:51.476562pt;}
.he{height:51.619792pt;}
.h6{height:56.156250pt;}
.hd{height:56.312500pt;}
.h2{height:144.250667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:95.267867pt;}
.xa{left:97.764000pt;}
.xd{left:100.873067pt;}
.xc{left:101.841467pt;}
.x7{left:103.274800pt;}
.x9{left:104.831733pt;}
.xb{left:107.722933pt;}
.x13{left:109.070000pt;}
.x12{left:117.412133pt;}
.x17{left:124.724400pt;}
.x1c{left:139.954933pt;}
.xe{left:153.159200pt;}
.x25{left:159.380667pt;}
.x15{left:165.076133pt;}
.x24{left:166.939733pt;}
.x10{left:205.162800pt;}
.x5{left:209.920267pt;}
.x14{left:219.514533pt;}
.x1b{left:236.009867pt;}
.x1{left:246.813333pt;}
.x19{left:251.369600pt;}
.x6{left:252.964400pt;}
.x22{left:262.680000pt;}
.x18{left:264.203067pt;}
.x11{left:272.915867pt;}
.x3{left:274.231067pt;}
.xf{left:282.321467pt;}
.x4{left:285.144133pt;}
.x1a{left:288.108267pt;}
.x16{left:292.739333pt;}
.x2{left:294.762267pt;}
.x23{left:300.760000pt;}
.x1f{left:302.427067pt;}
.x20{left:304.430800pt;}
.x1d{left:332.598400pt;}
.x1e{left:353.740000pt;}
.x21{left:377.138133pt;}
.x26{left:496.540667pt;}
.x27{left:499.662000pt;}
}




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