
    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_e1388e047a7a08c38569d674.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_ede4051c51c3a45f9d386cec.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_384809d65f004adfc1f7e678.woff')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_2c1bad3404cf5b1aef052f8e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_7b12589f4d16f78b0d89d99b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_6d4a4c3d57eeae8ba326e80c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.677734;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_b219342fdf7d8432ed689fc4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_b219342fdf7d8432ed689fc4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_de9d618e3d1c7499a173eb5e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.ls71{letter-spacing:-4.371840px;}
.ls56{letter-spacing:-1.722240px;}
.ls49{letter-spacing:-1.656000px;}
.ls57{letter-spacing:-1.589760px;}
.ls4d{letter-spacing:-1.523520px;}
.ls41{letter-spacing:-1.457280px;}
.ls4b{letter-spacing:-1.391040px;}
.ls59{letter-spacing:-1.324800px;}
.ls4a{letter-spacing:-1.258560px;}
.ls4c{letter-spacing:-1.192320px;}
.ls58{letter-spacing:-1.059840px;}
.ls10{letter-spacing:-0.927360px;}
.ls4f{letter-spacing:-0.861120px;}
.ls60{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.794880px;}
.ls4e{letter-spacing:-0.728640px;}
.ls3f{letter-spacing:-0.673920px;}
.ls12{letter-spacing:-0.662400px;}
.ls11{letter-spacing:-0.596160px;}
.ls5a{letter-spacing:-0.589680px;}
.ls37{letter-spacing:-0.529920px;}
.ls7b{letter-spacing:-0.505440px;}
.lsb{letter-spacing:-0.463680px;}
.ls40{letter-spacing:-0.421200px;}
.ls36{letter-spacing:-0.397440px;}
.ls7e{letter-spacing:-0.378000px;}
.ls5{letter-spacing:-0.331200px;}
.ls21{letter-spacing:-0.298800px;}
.ls6{letter-spacing:-0.264960px;}
.ls1f{letter-spacing:-0.263520px;}
.ls33{letter-spacing:-0.252720px;}
.ls26{letter-spacing:-0.239040px;}
.ls5c{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.198720px;}
.ls22{letter-spacing:-0.179280px;}
.ls61{letter-spacing:-0.162000px;}
.lsd{letter-spacing:-0.132480px;}
.ls9{letter-spacing:-0.131760px;}
.ls27{letter-spacing:-0.119520px;}
.ls66{letter-spacing:-0.108000px;}
.ls72{letter-spacing:-0.084240px;}
.lsa{letter-spacing:-0.066240px;}
.ls23{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.036000px;}
.ls55{letter-spacing:0.054000px;}
.ls24{letter-spacing:0.059760px;}
.lsf{letter-spacing:0.066240px;}
.ls34{letter-spacing:0.084240px;}
.ls7a{letter-spacing:0.086112px;}
.ls78{letter-spacing:0.105984px;}
.ls1a{letter-spacing:0.131760px;}
.ls3{letter-spacing:0.132480px;}
.ls6b{letter-spacing:0.139104px;}
.ls74{letter-spacing:0.145728px;}
.ls14{letter-spacing:0.149760px;}
.ls51{letter-spacing:0.162000px;}
.ls19{letter-spacing:0.168480px;}
.ls5f{letter-spacing:0.172224px;}
.ls28{letter-spacing:0.179280px;}
.ls13{letter-spacing:0.198720px;}
.ls6a{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.256320px;}
.ls1{letter-spacing:0.264960px;}
.ls17{letter-spacing:0.287280px;}
.ls25{letter-spacing:0.298800px;}
.ls50{letter-spacing:0.324000px;}
.ls35{letter-spacing:0.331200px;}
.ls20{letter-spacing:0.358560px;}
.ls5b{letter-spacing:0.375840px;}
.ls7c{letter-spacing:0.397440px;}
.ls1c{letter-spacing:0.861120px;}
.ls31{letter-spacing:1.589760px;}
.ls62{letter-spacing:2.318400px;}
.ls2c{letter-spacing:3.047040px;}
.ls3d{letter-spacing:3.775680px;}
.ls0{letter-spacing:4.021920px;}
.ls7{letter-spacing:4.404960px;}
.ls3c{letter-spacing:4.438080px;}
.ls8{letter-spacing:4.692240px;}
.ls45{letter-spacing:5.166720px;}
.ls73{letter-spacing:5.193216px;}
.ls5e{letter-spacing:5.266080px;}
.ls2e{letter-spacing:5.895360px;}
.ls2d{letter-spacing:6.624000px;}
.ls3e{letter-spacing:6.637248px;}
.ls2b{letter-spacing:7.352640px;}
.ls42{letter-spacing:8.081280px;}
.ls65{letter-spacing:8.809920px;}
.ls54{letter-spacing:9.518688px;}
.ls47{letter-spacing:9.538560px;}
.ls46{letter-spacing:9.648000px;}
.ls75{letter-spacing:10.200960px;}
.ls32{letter-spacing:10.929600px;}
.ls2f{letter-spacing:11.658240px;}
.ls30{letter-spacing:11.777472px;}
.ls18{letter-spacing:12.386880px;}
.ls79{letter-spacing:13.115520px;}
.ls67{letter-spacing:13.844160px;}
.ls38{letter-spacing:14.572800px;}
.ls39{letter-spacing:15.301440px;}
.ls6e{letter-spacing:16.692480px;}
.ls6f{letter-spacing:16.732224px;}
.ls43{letter-spacing:17.421120px;}
.ls6d{letter-spacing:18.103392px;}
.ls3b{letter-spacing:18.918144px;}
.ls3a{letter-spacing:19.607040px;}
.ls29{letter-spacing:19.796400px;}
.ls5d{letter-spacing:22.455360px;}
.ls6c{letter-spacing:23.184000px;}
.ls52{letter-spacing:23.912640px;}
.ls53{letter-spacing:24.641280px;}
.ls64{letter-spacing:26.098560px;}
.ls69{letter-spacing:26.760960px;}
.ls68{letter-spacing:27.489600px;}
.ls44{letter-spacing:28.218240px;}
.ls7f{letter-spacing:28.946880px;}
.ls7d{letter-spacing:30.404160px;}
.ls63{letter-spacing:50.541120px;}
.ls70{letter-spacing:59.351040px;}
.ls1b{letter-spacing:78.984000px;}
.ls1d{letter-spacing:101.304000px;}
.ls2a{letter-spacing:170.249040px;}
.ls1e{letter-spacing:849.029760px;}
.ls16{letter-spacing:861.252480px;}
.ls15{letter-spacing:1397.919600px;}
.ls76{letter-spacing:2159.642880px;}
.ls77{letter-spacing:2160.080640px;}
.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;}
}
.wsd3{word-spacing:-66.240000px;}
.ws3d{word-spacing:-29.514240px;}
.ws1f{word-spacing:-21.929040px;}
.ws5f{word-spacing:-19.206720px;}
.ws5e{word-spacing:-19.122480px;}
.wsa7{word-spacing:-19.038240px;}
.wsd2{word-spacing:-18.954000px;}
.ws5d{word-spacing:-18.785520px;}
.ws72{word-spacing:-18.617040px;}
.wse2{word-spacing:-18.532800px;}
.wsa8{word-spacing:-18.448560px;}
.ws60{word-spacing:-15.301440px;}
.wsa{word-spacing:-15.235200px;}
.ws8{word-spacing:-15.168960px;}
.wsd0{word-spacing:-15.109344px;}
.ws5{word-spacing:-15.102720px;}
.ws1d{word-spacing:-15.036480px;}
.ws0{word-spacing:-14.970240px;}
.ws1e{word-spacing:-14.904000px;}
.ws4{word-spacing:-14.837760px;}
.ws7{word-spacing:-14.771520px;}
.ws1{word-spacing:-14.705280px;}
.ws2{word-spacing:-14.639040px;}
.ws73{word-spacing:-14.572800px;}
.ws9{word-spacing:-14.506560px;}
.ws74{word-spacing:-14.440320px;}
.ws6{word-spacing:-14.374080px;}
.ws1c{word-spacing:-14.307840px;}
.wse3{word-spacing:-14.241600px;}
.ws3{word-spacing:-14.175360px;}
.wsc4{word-spacing:-14.042880px;}
.wsa6{word-spacing:-13.910400px;}
.ws4e{word-spacing:-13.864320px;}
.ws55{word-spacing:-13.685040px;}
.ws8b{word-spacing:-13.579200px;}
.ws51{word-spacing:-13.565520px;}
.wsa5{word-spacing:-13.512960px;}
.ws56{word-spacing:-13.505760px;}
.ws8d{word-spacing:-13.446720px;}
.ws52{word-spacing:-13.446000px;}
.ws54{word-spacing:-13.386240px;}
.ws50{word-spacing:-13.326480px;}
.ws8a{word-spacing:-13.314240px;}
.ws53{word-spacing:-13.266720px;}
.ws4f{word-spacing:-13.206960px;}
.wsf6{word-spacing:-12.528000px;}
.ws8e{word-spacing:-12.204000px;}
.wsdf{word-spacing:-12.096000px;}
.wsd1{word-spacing:-10.598400px;}
.wsa9{word-spacing:-9.813600px;}
.ws8c{word-spacing:-9.437760px;}
.wsa4{word-spacing:-8.786880px;}
.ws12{word-spacing:-4.692240px;}
.ws11{word-spacing:-4.404960px;}
.wsec{word-spacing:-4.106880px;}
.ws31{word-spacing:-3.576960px;}
.wsb7{word-spacing:-3.444480px;}
.ws43{word-spacing:-3.378240px;}
.wsb6{word-spacing:-3.245760px;}
.ws30{word-spacing:-3.179520px;}
.ws104{word-spacing:-2.988000px;}
.ws2a{word-spacing:-2.649600px;}
.ws29{word-spacing:-2.450880px;}
.ws89{word-spacing:-2.185920px;}
.ws2f{word-spacing:-2.119680px;}
.ws64{word-spacing:-1.920960px;}
.ws92{word-spacing:-1.788480px;}
.ws4d{word-spacing:-1.722240px;}
.ws9a{word-spacing:-1.523520px;}
.wsce{word-spacing:-1.391040px;}
.ws99{word-spacing:-1.324800px;}
.ws2d{word-spacing:-1.192320px;}
.ws77{word-spacing:-1.179360px;}
.ws98{word-spacing:-1.059840px;}
.ws42{word-spacing:-0.993600px;}
.wsb8{word-spacing:-0.927360px;}
.wsff{word-spacing:-0.861120px;}
.wsc7{word-spacing:-0.794880px;}
.ws21{word-spacing:-0.728640px;}
.ws101{word-spacing:-0.662400px;}
.ws100{word-spacing:-0.596160px;}
.ws14{word-spacing:-0.529920px;}
.ws2b{word-spacing:-0.505440px;}
.wsee{word-spacing:-0.463680px;}
.ws88{word-spacing:-0.421200px;}
.ws16{word-spacing:-0.397440px;}
.ws1a{word-spacing:-0.331200px;}
.wsa1{word-spacing:-0.324000px;}
.ws107{word-spacing:-0.298800px;}
.wsa3{word-spacing:-0.270000px;}
.wsc{word-spacing:-0.264960px;}
.ws20{word-spacing:-0.263520px;}
.ws76{word-spacing:-0.168480px;}
.wscf{word-spacing:-0.162000px;}
.ws10{word-spacing:-0.132480px;}
.ws13{word-spacing:-0.131760px;}
.ws59{word-spacing:-0.119520px;}
.wsa2{word-spacing:-0.108000px;}
.ws17{word-spacing:-0.066240px;}
.wsb{word-spacing:0.000000px;}
.wsba{word-spacing:0.054000px;}
.ws1b{word-spacing:0.066240px;}
.wsef{word-spacing:0.108000px;}
.ws3e{word-spacing:0.132480px;}
.wscc{word-spacing:0.162000px;}
.ws15{word-spacing:0.198720px;}
.wsc3{word-spacing:0.216000px;}
.ws58{word-spacing:0.239040px;}
.ws3f{word-spacing:0.263520px;}
.wse{word-spacing:0.264960px;}
.wsbb{word-spacing:0.270000px;}
.ws2c{word-spacing:0.331200px;}
.wsd{word-spacing:0.397440px;}
.ws5b{word-spacing:0.418320px;}
.wsf0{word-spacing:0.432000px;}
.wsf{word-spacing:0.463680px;}
.ws71{word-spacing:0.529920px;}
.ws25{word-spacing:0.596160px;}
.ws19{word-spacing:0.662400px;}
.ws75{word-spacing:0.673920px;}
.ws32{word-spacing:0.728640px;}
.ws67{word-spacing:0.794880px;}
.wsc2{word-spacing:0.810000px;}
.ws9c{word-spacing:0.861120px;}
.ws18{word-spacing:0.927360px;}
.wsfd{word-spacing:0.993600px;}
.ws87{word-spacing:1.059840px;}
.ws2e{word-spacing:1.126080px;}
.wsfe{word-spacing:1.192320px;}
.wsb5{word-spacing:1.258560px;}
.wsc6{word-spacing:1.324800px;}
.wsae{word-spacing:1.391040px;}
.ws62{word-spacing:1.457280px;}
.ws9d{word-spacing:1.523520px;}
.wsaf{word-spacing:1.589760px;}
.ws3c{word-spacing:1.656000px;}
.ws9b{word-spacing:1.788480px;}
.ws6c{word-spacing:1.854720px;}
.wsda{word-spacing:2.185920px;}
.wse8{word-spacing:2.252160px;}
.ws35{word-spacing:2.384640px;}
.ws93{word-spacing:2.517120px;}
.ws3a{word-spacing:2.583360px;}
.wsdb{word-spacing:2.782080px;}
.ws63{word-spacing:2.914560px;}
.wscd{word-spacing:3.047040px;}
.ws44{word-spacing:3.113280px;}
.wsb0{word-spacing:3.245760px;}
.ws65{word-spacing:3.312000px;}
.wsc0{word-spacing:3.444480px;}
.wsbf{word-spacing:3.643200px;}
.wsfb{word-spacing:3.775680px;}
.ws5c{word-spacing:3.824640px;}
.ws61{word-spacing:3.841920px;}
.ws47{word-spacing:4.040640px;}
.wsfc{word-spacing:4.173120px;}
.ws83{word-spacing:4.305600px;}
.wsab{word-spacing:4.438080px;}
.ws40{word-spacing:4.504320px;}
.wsac{word-spacing:4.570560px;}
.wsbd{word-spacing:4.636800px;}
.ws84{word-spacing:4.703040px;}
.wsaa{word-spacing:4.769280px;}
.ws105{word-spacing:4.900320px;}
.wsc1{word-spacing:5.034240px;}
.ws3b{word-spacing:5.232960px;}
.ws106{word-spacing:5.258880px;}
.ws24{word-spacing:5.431680px;}
.wsd9{word-spacing:5.564160px;}
.ws23{word-spacing:5.762880px;}
.wsf7{word-spacing:5.895360px;}
.ws22{word-spacing:5.961600px;}
.wsbc{word-spacing:6.160320px;}
.ws97{word-spacing:6.359040px;}
.wsdc{word-spacing:6.491520px;}
.ws41{word-spacing:6.690240px;}
.ws66{word-spacing:6.822720px;}
.ws48{word-spacing:6.888960px;}
.ws102{word-spacing:7.051680px;}
.wsf8{word-spacing:7.153920px;}
.ws70{word-spacing:7.220160px;}
.ws4b{word-spacing:7.418880px;}
.wsb9{word-spacing:7.551360px;}
.ws103{word-spacing:7.589520px;}
.ws6f{word-spacing:7.617600px;}
.ws6e{word-spacing:7.750080px;}
.wse0{word-spacing:7.948800px;}
.ws7e{word-spacing:8.147520px;}
.wsa0{word-spacing:8.280000px;}
.ws45{word-spacing:8.346240px;}
.wse1{word-spacing:8.611200px;}
.ws38{word-spacing:8.677440px;}
.ws69{word-spacing:8.876160px;}
.ws34{word-spacing:9.074880px;}
.ws9e{word-spacing:9.406080px;}
.ws37{word-spacing:9.472320px;}
.ws33{word-spacing:9.604800px;}
.ws4a{word-spacing:9.803520px;}
.wsd4{word-spacing:10.267200px;}
.ws9f{word-spacing:10.333440px;}
.wsfa{word-spacing:10.465920px;}
.ws6d{word-spacing:10.797120px;}
.wsb4{word-spacing:10.863360px;}
.ws6b{word-spacing:10.995840px;}
.ws39{word-spacing:11.194560px;}
.wsf2{word-spacing:11.525760px;}
.ws4c{word-spacing:11.724480px;}
.ws6a{word-spacing:11.923200px;}
.wsf1{word-spacing:12.254400px;}
.ws28{word-spacing:12.453120px;}
.ws36{word-spacing:12.651840px;}
.ws7a{word-spacing:12.983040px;}
.ws26{word-spacing:13.181760px;}
.ws27{word-spacing:13.380480px;}
.ws5a{word-spacing:13.386240px;}
.ws8f{word-spacing:13.645440px;}
.ws90{word-spacing:13.844160px;}
.ws49{word-spacing:13.910400px;}
.ws46{word-spacing:14.109120px;}
.wsf9{word-spacing:14.506560px;}
.ws78{word-spacing:14.639040px;}
.wsb3{word-spacing:14.771520px;}
.ws79{word-spacing:14.837760px;}
.wsed{word-spacing:15.367680px;}
.wsad{word-spacing:15.500160px;}
.wsd6{word-spacing:15.566400px;}
.ws7b{word-spacing:16.030080px;}
.wsc5{word-spacing:16.162560px;}
.ws7c{word-spacing:16.228800px;}
.wsde{word-spacing:16.427520px;}
.ws7d{word-spacing:16.758720px;}
.wsf5{word-spacing:16.957440px;}
.wsdd{word-spacing:17.487360px;}
.ws81{word-spacing:18.944640px;}
.ws96{word-spacing:19.077120px;}
.ws82{word-spacing:19.143360px;}
.ws85{word-spacing:19.673280px;}
.ws86{word-spacing:19.872000px;}
.ws80{word-spacing:20.203200px;}
.ws7f{word-spacing:20.401920px;}
.wse4{word-spacing:21.064320px;}
.wse9{word-spacing:22.322880px;}
.wsd5{word-spacing:22.521600px;}
.wsbe{word-spacing:22.720320px;}
.wscb{word-spacing:23.846400px;}
.wsca{word-spacing:24.906240px;}
.wsb1{word-spacing:24.972480px;}
.wsb2{word-spacing:25.568640px;}
.wsc9{word-spacing:26.164800px;}
.wse5{word-spacing:26.363520px;}
.ws94{word-spacing:26.760960px;}
.ws68{word-spacing:26.827200px;}
.ws95{word-spacing:27.025920px;}
.wse7{word-spacing:27.357120px;}
.wse6{word-spacing:27.555840px;}
.wseb{word-spacing:27.688320px;}
.wsea{word-spacing:27.754560px;}
.ws91{word-spacing:29.874240px;}
.wsf4{word-spacing:30.470400px;}
.wsf3{word-spacing:30.669120px;}
.ws57{word-spacing:33.120000px;}
.wsd7{word-spacing:38.352960px;}
.wsd8{word-spacing:39.280320px;}
.wsc8{word-spacing:50.806080px;}
._6{margin-left:-1397.919600px;}
._21{margin-left:-28.277856px;}
._a{margin-left:-13.618944px;}
._f{margin-left:-12.428640px;}
._d{margin-left:-11.342304px;}
._c{margin-left:-9.924768px;}
._10{margin-left:-8.030304px;}
._b{margin-left:-7.021440px;}
._e{margin-left:-5.023008px;}
._11{margin-left:-3.543840px;}
._9{margin-left:-2.305152px;}
._1{margin-left:-1.185696px;}
._0{width:1.669248px;}
._1c{width:2.980800px;}
._1b{width:4.241952px;}
._2{width:5.321232px;}
._1e{width:6.544512px;}
._15{width:8.081280px;}
._17{width:9.797760px;}
._12{width:10.929600px;}
._13{width:13.373856px;}
._14{width:16.553376px;}
._16{width:18.414720px;}
._1f{width:19.607040px;}
._1a{width:21.501504px;}
._19{width:22.726944px;}
._1d{width:25.376544px;}
._20{width:39.267072px;}
._3{width:848.998080px;}
._18{width:1096.265376px;}
._7{width:1130.114016px;}
._4{width:1320.153120px;}
._8{width:1475.662320px;}
._5{width:1518.145200px;}
.fc4{color:rgb(14,40,65);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:23.760000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y25{bottom:1.980000px;}
.y9c{bottom:3.960000px;}
.y12{bottom:4.500000px;}
.ya6{bottom:8.100000px;}
.yaa{bottom:8.280000px;}
.ya2{bottom:22.140000px;}
.yb1{bottom:22.320000px;}
.y21{bottom:24.660000px;}
.y126{bottom:34.920000px;}
.y19{bottom:44.820000px;}
.y14{bottom:64.980000px;}
.y28{bottom:72.000000px;}
.y27{bottom:89.820000px;}
.y158{bottom:116.820000px;}
.y124{bottom:117.187920px;}
.ye4{bottom:117.749520px;}
.y90{bottom:121.235760px;}
.y1fa{bottom:125.136000px;}
.y1c3{bottom:126.183600px;}
.y173{bottom:126.213120px;}
.y143{bottom:128.700000px;}
.y24d{bottom:129.833280px;}
.y153{bottom:130.893120px;}
.y157{bottom:131.400000px;}
.y219{bottom:131.416560px;}
.y123{bottom:137.341440px;}
.ye3{bottom:139.343760px;}
.y28a{bottom:141.833520px;}
.y1b9{bottom:142.020000px;}
.y8f{bottom:143.012160px;}
.y183{bottom:144.182880px;}
.y1bc{bottom:146.334240px;}
.y1bd{bottom:146.340000px;}
.y1f9{bottom:146.912400px;}
.y172{bottom:147.807360px;}
.y1c2{bottom:147.960000px;}
.y1c1{bottom:148.500000px;}
.y24c{bottom:149.986800px;}
.y1a6{bottom:151.405200px;}
.ybd{bottom:151.563600px;}
.y23a{bottom:152.490240px;}
.y152{bottom:152.669520px;}
.y218{bottom:153.192960px;}
.ye2{bottom:161.120160px;}
.y142{bottom:162.895500px;}
.y122{bottom:163.440000px;}
.y8e{bottom:164.788560px;}
.y182{bottom:165.777120px;}
.y1f8{bottom:168.688800px;}
.y1cd{bottom:169.020000px;}
.y171{bottom:169.583760px;}
.y24b{bottom:170.140320px;}
.y10b{bottom:170.510400px;}
.y1a5{bottom:173.181600px;}
.ybc{bottom:173.340000px;}
.y239{bottom:174.084480px;}
.y151{bottom:174.445920px;}
.y217{bottom:174.969360px;}
.y1b8{bottom:175.675500px;}
.y141{bottom:179.460000px;}
.y1bb{bottom:179.815500px;}
.y1c0{bottom:182.155500px;}
.ye1{bottom:182.896560px;}
.y121{bottom:183.612960px;}
.y1d4{bottom:184.680000px;}
.y181{bottom:187.553520px;}
.ybb{bottom:189.000000px;}
.y24a{bottom:190.293840px;}
.y10a{bottom:190.663920px;}
.y8d{bottom:191.069280px;}
.y170{bottom:191.360160px;}
.y1b7{bottom:192.240000px;}
.y140{bottom:193.140000px;}
.y238{bottom:195.860880px;}
.y150{bottom:196.222320px;}
.y1ba{bottom:196.380000px;}
.y216{bottom:196.563600px;}
.y1bf{bottom:198.720000px;}
.y1cc{bottom:202.320000px;}
.y120{bottom:203.766480px;}
.ye0{bottom:204.672960px;}
.y1a4{bottom:206.848080px;}
.yba{bottom:207.180000px;}
.y1f7{bottom:208.283760px;}
.y249{bottom:210.447360px;}
.y109{bottom:210.817440px;}
.y8c{bottom:212.663520px;}
.y16f{bottom:213.136560px;}
.y237{bottom:217.637280px;}
.y14f{bottom:217.816560px;}
.y1d3{bottom:218.340000px;}
.y180{bottom:221.220000px;}
.y1b6{bottom:223.020000px;}
.y11f{bottom:223.944480px;}
.y1be{bottom:225.180000px;}
.yb9{bottom:225.540000px;}
.ydf{bottom:226.267200px;}
.y1a3{bottom:228.624480px;}
.y1f6{bottom:230.060160px;}
.y108{bottom:230.970960px;}
.y27c{bottom:232.027920px;}
.y8b{bottom:234.439920px;}
.y16e{bottom:234.730800px;}
.y1cb{bottom:235.440000px;}
.y248{bottom:236.545920px;}
.y236{bottom:239.413680px;}
.y14e{bottom:239.592960px;}
.y1d2{bottom:240.123600px;}
.yb8{bottom:243.900000px;}
.y11e{bottom:243.932400px;}
.yde{bottom:248.043600px;}
.y17f{bottom:250.560000px;}
.y107{bottom:251.124480px;}
.y1f5{bottom:251.836560px;}
.y215{bottom:255.600000px;}
.y16d{bottom:256.507200px;}
.y247{bottom:256.699440px;}
.y8a{bottom:260.720640px;}
.y14d{bottom:261.369360px;}
.y1d1{bottom:261.900000px;}
.yb7{bottom:262.260000px;}
.y1a2{bottom:262.456560px;}
.y11d{bottom:264.085920px;}
.y27b{bottom:265.860000px;}
.y1ca{bottom:269.635500px;}
.ydd{bottom:269.820000px;}
.y106{bottom:271.278000px;}
.y235{bottom:273.080160px;}
.y1f4{bottom:273.612960px;}
.y23{bottom:276.846480px;}
.y246{bottom:276.852960px;}
.y16c{bottom:278.283600px;}
.yb6{bottom:280.440000px;}
.y89{bottom:282.497040px;}
.y14c{bottom:283.145760px;}
.y1a1{bottom:284.050800px;}
.y11c{bottom:284.239440px;}
.y1c9{bottom:286.200000px;}
.y289{bottom:287.632980px;}
.y214{bottom:288.185040px;}
.y17e{bottom:288.720000px;}
.y105{bottom:291.431520px;}
.y234{bottom:294.856560px;}
.y1d0{bottom:295.200000px;}
.y1f3{bottom:295.207200px;}
.y22{bottom:297.000000px;}
.y245{bottom:297.006480px;}
.y27a{bottom:298.620000px;}
.ydc{bottom:299.160000px;}
.y16b{bottom:300.060000px;}
.yb5{bottom:302.940000px;}
.y88{bottom:304.091280px;}
.y11b{bottom:304.392960px;}
.y14b{bottom:304.740000px;}
.y1a0{bottom:305.827200px;}
.y104{bottom:311.419440px;}
.y1c8{bottom:312.672240px;}
.y20{bottom:313.380000px;}
.y233{bottom:316.632960px;}
.y1f2{bottom:316.983600px;}
.y244{bottom:317.160000px;}
.y288{bottom:319.500000px;}
.yb4{bottom:321.300000px;}
.y17d{bottom:322.920000px;}
.y11a{bottom:324.546480px;}
.y19f{bottom:327.603600px;}
.y1cf{bottom:328.855500px;}
.y279{bottom:330.300000px;}
.y87{bottom:330.372000px;}
.y103{bottom:331.572960px;}
.ydb{bottom:337.248000px;}
.y232{bottom:338.227200px;}
.y1f1{bottom:338.760000px;}
.y14a{bottom:338.935500px;}
.y16a{bottom:339.302880px;}
.yb3{bottom:339.660000px;}
.y287{bottom:341.444160px;}
.y119{bottom:344.700000px;}
.y1ce{bottom:345.420000px;}
.y243{bottom:346.500000px;}
.y19e{bottom:349.380000px;}
.y17c{bottom:349.418880px;}
.y102{bottom:351.726480px;}
.y86{bottom:352.148400px;}
.y1f{bottom:354.420000px;}
.y149{bottom:355.500000px;}
.yda{bottom:359.024400px;}
.y286{bottom:359.626140px;}
.y231{bottom:360.003600px;}
.yb2{bottom:362.160000px;}
.y278{bottom:364.149360px;}
.y118{bottom:364.866480px;}
.y148{bottom:369.920160px;}
.y101{bottom:371.880000px;}
.y85{bottom:373.924800px;}
.y1e{bottom:375.300000px;}
.y169{bottom:376.015500px;}
.y285{bottom:377.987400px;}
.y1f0{bottom:380.160000px;}
.yb0{bottom:380.340000px;}
.yd9{bottom:380.800800px;}
.y230{bottom:381.780000px;}
.y19d{bottom:383.040000px;}
.y117{bottom:385.020000px;}
.y277{bottom:385.743600px;}
.y69{bottom:388.982160px;}
.y168{bottom:392.580000px;}
.y1d{bottom:396.180000px;}
.y284{bottom:396.348660px;}
.y242{bottom:397.832400px;}
.y84{bottom:400.023360px;}
.y100{bottom:401.227200px;}
.yd8{bottom:402.577200px;}
.y116{bottom:405.186480px;}
.y19c{bottom:405.720000px;}
.y276{bottom:407.520000px;}
.y53{bottom:408.420000px;}
.y22f{bottom:411.120000px;}
.y283{bottom:414.530640px;}
.y1c{bottom:417.060000px;}
.y241{bottom:417.985920px;}
.y1ef{bottom:418.174560px;}
.y83{bottom:421.799760px;}
.yd7{bottom:424.171440px;}
.y167{bottom:425.000160px;}
.y115{bottom:425.340000px;}
.y19b{bottom:428.220000px;}
.y68{bottom:430.017840px;}
.y282{bottom:432.891900px;}
.y1b{bottom:437.940000px;}
.y240{bottom:438.139440px;}
.yaf{bottom:439.560000px;}
.y1ee{bottom:439.950960px;}
.yff{bottom:440.820000px;}
.y275{bottom:441.218160px;}
.y52{bottom:442.160640px;}
.y1aa{bottom:442.620000px;}
.y212{bottom:442.900080px;}
.y82{bottom:443.576160px;}
.yd6{bottom:445.947840px;}
.y19a{bottom:450.900000px;}
.y114{bottom:451.440000px;}
.y281{bottom:454.315860px;}
.yae{bottom:457.920000px;}
.y23f{bottom:458.292960px;}
.y18{bottom:458.820000px;}
.y67{bottom:459.180000px;}
.y1ed{bottom:461.727360px;}
.y274{bottom:462.994560px;}
.y22e{bottom:464.245200px;}
.y211{bottom:464.494320px;}
.yd5{bottom:467.724240px;}
.y81{bottom:469.856880px;}
.y280{bottom:471.601440px;}
.y113{bottom:471.631680px;}
.y199{bottom:473.585760px;}
.y51{bottom:475.827120px;}
.y1a9{bottom:476.275500px;}
.y23e{bottom:478.446480px;}
.yad{bottom:480.420000px;}
.y1a{bottom:483.480000px;}
.y22d{bottom:485.839440px;}
.y210{bottom:486.270720px;}
.y66{bottom:488.520000px;}
.yd4{bottom:489.500640px;}
.y80{bottom:491.451120px;}
.y112{bottom:491.785200px;}
.yfe{bottom:492.426720px;}
.y1a8{bottom:492.840000px;}
.y198{bottom:495.180000px;}
.y1ec{bottom:495.393840px;}
.y156{bottom:496.435500px;}
.y273{bottom:496.826640px;}
.y50{bottom:497.603520px;}
.yac{bottom:498.600000px;}
.y22c{bottom:507.615840px;}
.yd3{bottom:511.094880px;}
.y111{bottom:511.773120px;}
.yfd{bottom:512.580240px;}
.y155{bottom:513.000000px;}
.y7f{bottom:513.227520px;}
.y1eb{bottom:517.170240px;}
.y65{bottom:517.680000px;}
.y197{bottom:517.860000px;}
.y272{bottom:518.420880px;}
.y1a7{bottom:519.341040px;}
.y4f{bottom:519.379920px;}
.y17{bottom:520.020000px;}
.yab{bottom:521.100000px;}
.y225{bottom:522.272160px;}
.y1b5{bottom:523.080000px;}
.y20f{bottom:526.047840px;}
.y154{bottom:527.604480px;}
.y22b{bottom:529.392240px;}
.y110{bottom:531.926640px;}
.yfc{bottom:532.733760px;}
.yd2{bottom:532.871280px;}
.y25e{bottom:533.160000px;}
.y23d{bottom:537.840000px;}
.y1ea{bottom:538.946640px;}
.y7e{bottom:539.508240px;}
.y196{bottom:539.640000px;}
.y13f{bottom:540.038880px;}
.y271{bottom:540.197280px;}
.y13{bottom:540.900000px;}
.y4e{bottom:541.156320px;}
.y1b4{bottom:542.738880px;}
.ya9{bottom:543.600000px;}
.y224{bottom:544.048560px;}
.y64{bottom:546.840000px;}
.y20e{bottom:547.824240px;}
.y22a{bottom:551.168640px;}
.y10f{bottom:552.080160px;}
.yfb{bottom:552.887280px;}
.yd1{bottom:554.647680px;}
.y13e{bottom:560.192400px;}
.y1e9{bottom:560.540880px;}
.y7d{bottom:561.284640px;}
.y195{bottom:562.173840px;}
.y25d{bottom:562.500000px;}
.y4d{bottom:562.750560px;}
.y1b3{bottom:562.892400px;}
.y16{bottom:565.566480px;}
.y223{bottom:565.824960px;}
.ya8{bottom:566.100000px;}
.y20d{bottom:569.600640px;}
.y10e{bottom:572.233680px;}
.y229{bottom:572.762880px;}
.yfa{bottom:573.040800px;}
.y270{bottom:574.029360px;}
.y23c{bottom:574.560000px;}
.y63{bottom:576.180000px;}
.yd0{bottom:576.424080px;}
.y27f{bottom:576.540000px;}
.y13d{bottom:580.345920px;}
.y1e8{bottom:582.317280px;}
.y1b2{bottom:583.045920px;}
.y7c{bottom:583.061040px;}
.ya7{bottom:584.460000px;}
.y4c{bottom:584.526960px;}
.y15{bottom:585.720000px;}
.y222{bottom:587.601360px;}
.y20c{bottom:591.194880px;}
.y10d{bottom:592.387200px;}
.yf9{bottom:593.194320px;}
.y26f{bottom:595.623600px;}
.y194{bottom:596.916720px;}
.y13c{bottom:600.499440px;}
.y1b1{bottom:603.199440px;}
.y1e7{bottom:604.093680px;}
.y62{bottom:605.340000px;}
.y4b{bottom:606.303360px;}
.ya5{bottom:606.960000px;}
.y23b{bottom:607.142160px;}
.y7b{bottom:609.159600px;}
.ycf{bottom:610.090560px;}
.y228{bottom:612.540000px;}
.y20b{bottom:612.971280px;}
.yf8{bottom:613.347840px;}
.y25c{bottom:614.014560px;}
.y26e{bottom:617.400000px;}
.y10c{bottom:618.485760px;}
.y193{bottom:618.510960px;}
.y13b{bottom:620.652960px;}
.y11{bottom:622.260000px;}
.y1b0{bottom:623.352960px;}
.y1e6{bottom:625.870080px;}
.y221{bottom:627.196320px;}
.y4a{bottom:628.079760px;}
.ya4{bottom:629.460000px;}
.y7a{bottom:630.936000px;}
.yce{bottom:631.866960px;}
.yf7{bottom:633.501360px;}
.y25b{bottom:634.168080px;}
.y61{bottom:634.680000px;}
.y20a{bottom:634.747680px;}
.y125{bottom:640.260000px;}
.y192{bottom:640.287360px;}
.y13a{bottom:640.806480px;}
.y1af{bottom:643.506480px;}
.y38{bottom:647.100000px;}
.y10{bottom:647.640000px;}
.ya3{bottom:647.820000px;}
.y220{bottom:648.972720px;}
.y227{bottom:649.800000px;}
.y49{bottom:649.856160px;}
.y26d{bottom:651.063600px;}
.y79{bottom:652.712400px;}
.ycd{bottom:653.643360px;}
.yf6{bottom:653.654880px;}
.y25a{bottom:654.321600px;}
.y127{bottom:658.620000px;}
.y1e5{bottom:659.536560px;}
.y139{bottom:660.958560px;}
.y191{bottom:662.063760px;}
.y1ae{bottom:663.660000px;}
.y60{bottom:663.840000px;}
.ya1{bottom:666.180000px;}
.y21f{bottom:670.749120px;}
.y48{bottom:671.450400px;}
.yf5{bottom:673.642800px;}
.y259{bottom:674.475120px;}
.y209{bottom:674.524800px;}
.yf{bottom:675.180000px;}
.ycc{bottom:675.237600px;}
.y78{bottom:678.993120px;}
.y37{bottom:680.767200px;}
.y1e4{bottom:681.312960px;}
.y226{bottom:682.380000px;}
.y190{bottom:683.840160px;}
.y26c{bottom:684.895680px;}
.y138{bottom:688.680000px;}
.y21e{bottom:692.525520px;}
.y5f{bottom:693.000000px;}
.y47{bottom:693.226800px;}
.yf4{bottom:693.796320px;}
.y258{bottom:694.628640px;}
.y208{bottom:696.119040px;}
.ycb{bottom:697.014000px;}
.y27e{bottom:697.493520px;}
.y1ad{bottom:697.855500px;}
.y213{bottom:700.380000px;}
.y36{bottom:702.543600px;}
.ya0{bottom:702.720000px;}
.y1e3{bottom:703.089360px;}
.y77{bottom:705.091680px;}
.y18f{bottom:705.616560px;}
.y26b{bottom:706.672080px;}
.yf3{bottom:713.949840px;}
.y21d{bottom:714.119760px;}
.y1ac{bottom:714.420000px;}
.y46{bottom:715.003200px;}
.y166{bottom:717.863760px;}
.y207{bottom:717.895440px;}
.y137{bottom:718.020000px;}
.yca{bottom:718.790400px;}
.y9f{bottom:721.080000px;}
.y5e{bottom:722.340000px;}
.y35{bottom:724.320000px;}
.y1e2{bottom:724.683600px;}
.y76{bottom:726.868080px;}
.y18e{bottom:727.210800px;}
.ye{bottom:727.560000px;}
.y257{bottom:728.295120px;}
.yf2{bottom:734.103360px;}
.y21c{bottom:735.896160px;}
.y45{bottom:736.779600px;}
.y9e{bottom:739.260000px;}
.y165{bottom:739.640160px;}
.y206{bottom:739.671840px;}
.y26a{bottom:740.338560px;}
.yc9{bottom:740.566800px;}
.y1ab{bottom:740.880000px;}
.y1e1{bottom:746.460000px;}
.y34{bottom:748.620000px;}
.y75{bottom:748.644480px;}
.y18d{bottom:748.987200px;}
.y256{bottom:750.982320px;}
.y5d{bottom:751.500000px;}
.yf1{bottom:754.256880px;}
.yd{bottom:754.958160px;}
.y136{bottom:756.082800px;}
.y9d{bottom:757.620000px;}
.y21b{bottom:757.672560px;}
.y44{bottom:758.373840px;}
.y164{bottom:761.416560px;}
.y205{bottom:761.448240px;}
.y269{bottom:762.114960px;}
.yc8{bottom:762.161040px;}
.y18c{bottom:770.763600px;}
.y255{bottom:773.487360px;}
.yf0{bottom:774.410400px;}
.y74{bottom:774.925200px;}
.yc{bottom:774.946080px;}
.y1e0{bottom:775.800000px;}
.y135{bottom:776.236320px;}
.y9b{bottom:776.700000px;}
.y21a{bottom:779.448960px;}
.y43{bottom:780.150240px;}
.y5c{bottom:780.840000px;}
.y163{bottom:783.192960px;}
.y33{bottom:789.663600px;}
.y18b{bottom:792.540000px;}
.yef{bottom:794.563920px;}
.yb{bottom:795.099600px;}
.y268{bottom:795.781440px;}
.yc7{bottom:795.993120px;}
.y254{bottom:796.174560px;}
.y134{bottom:796.389840px;}
.y73{bottom:801.023760px;}
.y204{bottom:801.043200px;}
.y42{bottom:801.926640px;}
.y162{bottom:804.787200px;}
.y9a{bottom:808.740000px;}
.y5b{bottom:810.000000px;}
.y32{bottom:811.440000px;}
.yee{bottom:814.717440px;}
.ya{bottom:815.253120px;}
.y133{bottom:816.543360px;}
.y267{bottom:817.557840px;}
.yc6{bottom:817.769520px;}
.y253{bottom:818.861760px;}
.y18a{bottom:821.880000px;}
.y72{bottom:822.800160px;}
.y203{bottom:822.819600px;}
.y41{bottom:823.703040px;}
.y161{bottom:826.563600px;}
.y1df{bottom:828.936720px;}
.yed{bottom:834.870960px;}
.y9{bottom:835.406640px;}
.y132{bottom:836.696880px;}
.y31{bottom:838.980000px;}
.y5a{bottom:839.340000px;}
.yc5{bottom:839.363760px;}
.y252{bottom:841.366800px;}
.y202{bottom:844.596000px;}
.y40{bottom:845.297280px;}
.y160{bottom:848.340000px;}
.y71{bottom:849.080880px;}
.y1de{bottom:850.713120px;}
.y266{bottom:851.224320px;}
.yec{bottom:855.024480px;}
.y8{bottom:855.560160px;}
.y131{bottom:856.850400px;}
.y189{bottom:859.860000px;}
.y17b{bottom:860.261760px;}
.yc4{bottom:861.140160px;}
.y99{bottom:861.851520px;}
.y251{bottom:864.054000px;}
.y201{bottom:866.372400px;}
.y3f{bottom:867.073680px;}
.y59{bottom:868.500000px;}
.y15f{bottom:870.142320px;}
.y70{bottom:870.857280px;}
.y1dd{bottom:872.307360px;}
.y265{bottom:873.000720px;}
.yeb{bottom:875.012400px;}
.y7{bottom:875.713680px;}
.y130{bottom:877.003920px;}
.yc3{bottom:882.916560px;}
.y98{bottom:887.950080px;}
.y200{bottom:887.966640px;}
.y30{bottom:888.660000px;}
.y188{bottom:889.200000px;}
.y250{bottom:891.046800px;}
.y15e{bottom:891.736560px;}
.y6f{bottom:892.451520px;}
.y1dc{bottom:894.083760px;}
.y17a{bottom:894.093840px;}
.y264{bottom:894.777120px;}
.yea{bottom:895.165920px;}
.y6{bottom:895.867200px;}
.y12f{bottom:897.157440px;}
.y58{bottom:897.660000px;}
.y3e{bottom:900.740160px;}
.yc2{bottom:904.692960px;}
.y2f{bottom:905.040000px;}
.y1ff{bottom:909.743040px;}
.y24f{bottom:911.200320px;}
.y15d{bottom:913.512960px;}
.y97{bottom:914.230800px;}
.ye9{bottom:915.319440px;}
.y1c7{bottom:915.671520px;}
.y179{bottom:915.688080px;}
.y1db{bottom:915.860160px;}
.y5{bottom:916.020720px;}
.y12e{bottom:917.145360px;}
.y6e{bottom:918.732240px;}
.y3d{bottom:922.516560px;}
.y2e{bottom:925.920000px;}
.yc1{bottom:926.287200px;}
.y57{bottom:927.000000px;}
.y263{bottom:928.443600px;}
.y27d{bottom:929.880000px;}
.y24e{bottom:931.353840px;}
.y1fe{bottom:931.519440px;}
.y15c{bottom:935.289360px;}
.ye8{bottom:935.472960px;}
.y4{bottom:936.174240px;}
.y12d{bottom:937.298880px;}
.y1c6{bottom:937.447920px;}
.y178{bottom:937.464480px;}
.y1da{bottom:937.636560px;}
.y6d{bottom:940.508640px;}
.y96{bottom:940.511520px;}
.y187{bottom:942.316560px;}
.y3c{bottom:944.292960px;}
.y2d{bottom:946.800000px;}
.yc0{bottom:948.063600px;}
.y147{bottom:949.520160px;}
.y262{bottom:950.220000px;}
.y2{bottom:951.840000px;}
.y1fd{bottom:953.295840px;}
.ye7{bottom:955.626480px;}
.y56{bottom:956.160000px;}
.y15b{bottom:957.065760px;}
.y12c{bottom:957.452400px;}
.y1c5{bottom:959.224320px;}
.y1d9{bottom:959.230800px;}
.y177{bottom:959.240880px;}
.y186{bottom:962.470080px;}
.y3b{bottom:966.069360px;}
.y6c{bottom:966.789360px;}
.y95{bottom:966.792240px;}
.y2c{bottom:967.680000px;}
.y3{bottom:968.400000px;}
.ybf{bottom:969.840000px;}
.y146{bottom:971.296560px;}
.y1fc{bottom:974.890080px;}
.ye6{bottom:975.780000px;}
.y12b{bottom:977.605920px;}
.y15a{bottom:978.660000px;}
.y1c4{bottom:981.000720px;}
.y1d8{bottom:981.007200px;}
.y176{bottom:981.017280px;}
.y185{bottom:982.623600px;}
.y261{bottom:984.065760px;}
.y55{bottom:985.500000px;}
.y3a{bottom:987.845760px;}
.y6b{bottom:988.383600px;}
.y94{bottom:988.386480px;}
.y2b{bottom:988.560000px;}
.y145{bottom:992.890800px;}
.y1fb{bottom:996.666480px;}
.y12a{bottom:997.759440px;}
.ybe{bottom:999.177660px;}
.y175{bottom:1002.611520px;}
.y184{bottom:1002.777120px;}
.y1d7{bottom:1002.783600px;}
.ye5{bottom:1005.120000px;}
.y260{bottom:1005.660000px;}
.y2a{bottom:1009.440000px;}
.y6a{bottom:1010.160000px;}
.y93{bottom:1010.162880px;}
.y54{bottom:1014.660000px;}
.y144{bottom:1014.667200px;}
.y129{bottom:1017.912960px;}
.y159{bottom:1020.060000px;}
.y174{bottom:1024.387920px;}
.y1d6{bottom:1024.560000px;}
.y25f{bottom:1026.720000px;}
.y92{bottom:1036.443600px;}
.y128{bottom:1038.066480px;}
.y39{bottom:1038.960000px;}
.y29{bottom:1042.380000px;}
.y1d5{bottom:1053.900000px;}
.y91{bottom:1058.220000px;}
.y1{bottom:1064.340000px;}
.y26{bottom:1087.920000px;}
.y24{bottom:1093.680000px;}
.hb{height:17.054297px;}
.h16{height:18.178500px;}
.h12{height:18.180000px;}
.hf{height:18.360000px;}
.h8{height:20.160000px;}
.h6{height:20.161500px;}
.h15{height:22.498500px;}
.h14{height:22.500000px;}
.h13{height:36.538500px;}
.h17{height:36.720000px;}
.h1c{height:38.759766px;}
.ha{height:40.320000px;}
.h25{height:40.826953px;}
.h23{height:42.247687px;}
.h11{height:42.894141px;}
.h10{height:43.390195px;}
.h20{height:45.345937px;}
.h21{height:45.496125px;}
.h22{height:46.004062px;}
.h1{height:47.545312px;}
.h1b{height:47.878500px;}
.hd{height:47.988281px;}
.h3{height:48.095156px;}
.h24{height:51.550087px;}
.h1a{height:51.581767px;}
.h19{height:53.734219px;}
.h1e{height:53.739979px;}
.h9{height:60.480000px;}
.hc{height:61.164492px;}
.h1d{height:69.086250px;}
.he{height:69.520227px;}
.h4{height:69.528867px;}
.h7{height:80.640000px;}
.h18{height:87.859687px;}
.h2{height:94.500000px;}
.h5{height:95.667539px;}
.h1f{height:340.018500px;}
.h0{height:1188.000000px;}
.w6{width:83.881500px;}
.w7{width:105.660000px;}
.w2{width:147.780000px;}
.w8{width:158.220000px;}
.w9{width:188.460000px;}
.w4{width:322.920000px;}
.wc{width:343.798500px;}
.wd{width:343.980000px;}
.w1{width:350.640000px;}
.w5{width:389.520000px;}
.wa{width:513.000000px;}
.w3{width:552.061500px;}
.wb{width:743.400000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1b{left:14.400000px;}
.x13{left:102.060000px;}
.x1{left:108.000000px;}
.x9{left:109.260000px;}
.x2c{left:110.520000px;}
.x33{left:113.580000px;}
.x1f{left:115.020000px;}
.x28{left:116.100000px;}
.x22{left:118.800000px;}
.x1a{left:120.060000px;}
.x31{left:123.660000px;}
.x15{left:126.000000px;}
.x37{left:127.980000px;}
.x19{left:134.998920px;}
.x35{left:137.340000px;}
.x3e{left:145.620000px;}
.x43{left:147.956040px;}
.x34{left:149.395500px;}
.x1c{left:153.000000px;}
.x36{left:158.035500px;}
.x2a{left:162.000000px;}
.x23{left:169.020000px;}
.x17{left:171.905040px;}
.x5{left:173.340000px;}
.x32{left:179.995500px;}
.x29{left:184.680000px;}
.x2e{left:186.840000px;}
.xd{left:193.320000px;}
.x3d{left:200.520000px;}
.x2f{left:202.851000px;}
.x2b{left:204.840000px;}
.x3f{left:208.260000px;}
.x3b{left:220.131000px;}
.x7{left:257.220000px;}
.x8{left:264.960000px;}
.x12{left:280.620000px;}
.x2d{left:286.911000px;}
.xb{left:288.720000px;}
.x2{left:294.480000px;}
.x18{left:296.460000px;}
.xe{left:299.700000px;}
.x24{left:301.324500px;}
.x26{left:304.380000px;}
.x20{left:311.769000px;}
.x1d{left:340.740000px;}
.xc{left:349.560000px;}
.x16{left:365.040000px;}
.x4{left:375.660000px;}
.x10{left:392.400000px;}
.x14{left:397.260000px;}
.x11{left:419.580000px;}
.xa{left:430.920000px;}
.x38{left:437.575500px;}
.x39{left:459.000000px;}
.x1e{left:465.300000px;}
.x44{left:544.486680px;}
.xf{left:651.060000px;}
.x3a{left:655.200000px;}
.x40{left:678.240000px;}
.x30{left:729.000000px;}
.x42{left:766.980000px;}
.x3{left:775.620000px;}
.x41{left:782.998560px;}
.x3c{left:785.160000px;}
.x25{left:797.760000px;}
.x27{left:810.011520px;}
.x21{left:837.008640px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.ls71{letter-spacing:-3.886080pt;}
.ls56{letter-spacing:-1.530880pt;}
.ls49{letter-spacing:-1.472000pt;}
.ls57{letter-spacing:-1.413120pt;}
.ls4d{letter-spacing:-1.354240pt;}
.ls41{letter-spacing:-1.295360pt;}
.ls4b{letter-spacing:-1.236480pt;}
.ls59{letter-spacing:-1.177600pt;}
.ls4a{letter-spacing:-1.118720pt;}
.ls4c{letter-spacing:-1.059840pt;}
.ls58{letter-spacing:-0.942080pt;}
.ls10{letter-spacing:-0.824320pt;}
.ls4f{letter-spacing:-0.765440pt;}
.ls60{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.706560pt;}
.ls4e{letter-spacing:-0.647680pt;}
.ls3f{letter-spacing:-0.599040pt;}
.ls12{letter-spacing:-0.588800pt;}
.ls11{letter-spacing:-0.529920pt;}
.ls5a{letter-spacing:-0.524160pt;}
.ls37{letter-spacing:-0.471040pt;}
.ls7b{letter-spacing:-0.449280pt;}
.lsb{letter-spacing:-0.412160pt;}
.ls40{letter-spacing:-0.374400pt;}
.ls36{letter-spacing:-0.353280pt;}
.ls7e{letter-spacing:-0.336000pt;}
.ls5{letter-spacing:-0.294400pt;}
.ls21{letter-spacing:-0.265600pt;}
.ls6{letter-spacing:-0.235520pt;}
.ls1f{letter-spacing:-0.234240pt;}
.ls33{letter-spacing:-0.224640pt;}
.ls26{letter-spacing:-0.212480pt;}
.ls5c{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.176640pt;}
.ls22{letter-spacing:-0.159360pt;}
.ls61{letter-spacing:-0.144000pt;}
.lsd{letter-spacing:-0.117760pt;}
.ls9{letter-spacing:-0.117120pt;}
.ls27{letter-spacing:-0.106240pt;}
.ls66{letter-spacing:-0.096000pt;}
.ls72{letter-spacing:-0.074880pt;}
.lsa{letter-spacing:-0.058880pt;}
.ls23{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.032000pt;}
.ls55{letter-spacing:0.048000pt;}
.ls24{letter-spacing:0.053120pt;}
.lsf{letter-spacing:0.058880pt;}
.ls34{letter-spacing:0.074880pt;}
.ls7a{letter-spacing:0.076544pt;}
.ls78{letter-spacing:0.094208pt;}
.ls1a{letter-spacing:0.117120pt;}
.ls3{letter-spacing:0.117760pt;}
.ls6b{letter-spacing:0.123648pt;}
.ls74{letter-spacing:0.129536pt;}
.ls14{letter-spacing:0.133120pt;}
.ls51{letter-spacing:0.144000pt;}
.ls19{letter-spacing:0.149760pt;}
.ls5f{letter-spacing:0.153088pt;}
.ls28{letter-spacing:0.159360pt;}
.ls13{letter-spacing:0.176640pt;}
.ls6a{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.227840pt;}
.ls1{letter-spacing:0.235520pt;}
.ls17{letter-spacing:0.255360pt;}
.ls25{letter-spacing:0.265600pt;}
.ls50{letter-spacing:0.288000pt;}
.ls35{letter-spacing:0.294400pt;}
.ls20{letter-spacing:0.318720pt;}
.ls5b{letter-spacing:0.334080pt;}
.ls7c{letter-spacing:0.353280pt;}
.ls1c{letter-spacing:0.765440pt;}
.ls31{letter-spacing:1.413120pt;}
.ls62{letter-spacing:2.060800pt;}
.ls2c{letter-spacing:2.708480pt;}
.ls3d{letter-spacing:3.356160pt;}
.ls0{letter-spacing:3.575040pt;}
.ls7{letter-spacing:3.915520pt;}
.ls3c{letter-spacing:3.944960pt;}
.ls8{letter-spacing:4.170880pt;}
.ls45{letter-spacing:4.592640pt;}
.ls73{letter-spacing:4.616192pt;}
.ls5e{letter-spacing:4.680960pt;}
.ls2e{letter-spacing:5.240320pt;}
.ls2d{letter-spacing:5.888000pt;}
.ls3e{letter-spacing:5.899776pt;}
.ls2b{letter-spacing:6.535680pt;}
.ls42{letter-spacing:7.183360pt;}
.ls65{letter-spacing:7.831040pt;}
.ls54{letter-spacing:8.461056pt;}
.ls47{letter-spacing:8.478720pt;}
.ls46{letter-spacing:8.576000pt;}
.ls75{letter-spacing:9.067520pt;}
.ls32{letter-spacing:9.715200pt;}
.ls2f{letter-spacing:10.362880pt;}
.ls30{letter-spacing:10.468864pt;}
.ls18{letter-spacing:11.010560pt;}
.ls79{letter-spacing:11.658240pt;}
.ls67{letter-spacing:12.305920pt;}
.ls38{letter-spacing:12.953600pt;}
.ls39{letter-spacing:13.601280pt;}
.ls6e{letter-spacing:14.837760pt;}
.ls6f{letter-spacing:14.873088pt;}
.ls43{letter-spacing:15.485440pt;}
.ls6d{letter-spacing:16.091904pt;}
.ls3b{letter-spacing:16.816128pt;}
.ls3a{letter-spacing:17.428480pt;}
.ls29{letter-spacing:17.596800pt;}
.ls5d{letter-spacing:19.960320pt;}
.ls6c{letter-spacing:20.608000pt;}
.ls52{letter-spacing:21.255680pt;}
.ls53{letter-spacing:21.903360pt;}
.ls64{letter-spacing:23.198720pt;}
.ls69{letter-spacing:23.787520pt;}
.ls68{letter-spacing:24.435200pt;}
.ls44{letter-spacing:25.082880pt;}
.ls7f{letter-spacing:25.730560pt;}
.ls7d{letter-spacing:27.025920pt;}
.ls63{letter-spacing:44.925440pt;}
.ls70{letter-spacing:52.756480pt;}
.ls1b{letter-spacing:70.208000pt;}
.ls1d{letter-spacing:90.048000pt;}
.ls2a{letter-spacing:151.332480pt;}
.ls1e{letter-spacing:754.693120pt;}
.ls16{letter-spacing:765.557760pt;}
.ls15{letter-spacing:1242.595200pt;}
.ls76{letter-spacing:1919.682560pt;}
.ls77{letter-spacing:1920.071680pt;}
.wsd3{word-spacing:-58.880000pt;}
.ws3d{word-spacing:-26.234880pt;}
.ws1f{word-spacing:-19.492480pt;}
.ws5f{word-spacing:-17.072640pt;}
.ws5e{word-spacing:-16.997760pt;}
.wsa7{word-spacing:-16.922880pt;}
.wsd2{word-spacing:-16.848000pt;}
.ws5d{word-spacing:-16.698240pt;}
.ws72{word-spacing:-16.548480pt;}
.wse2{word-spacing:-16.473600pt;}
.wsa8{word-spacing:-16.398720pt;}
.ws60{word-spacing:-13.601280pt;}
.wsa{word-spacing:-13.542400pt;}
.ws8{word-spacing:-13.483520pt;}
.wsd0{word-spacing:-13.430528pt;}
.ws5{word-spacing:-13.424640pt;}
.ws1d{word-spacing:-13.365760pt;}
.ws0{word-spacing:-13.306880pt;}
.ws1e{word-spacing:-13.248000pt;}
.ws4{word-spacing:-13.189120pt;}
.ws7{word-spacing:-13.130240pt;}
.ws1{word-spacing:-13.071360pt;}
.ws2{word-spacing:-13.012480pt;}
.ws73{word-spacing:-12.953600pt;}
.ws9{word-spacing:-12.894720pt;}
.ws74{word-spacing:-12.835840pt;}
.ws6{word-spacing:-12.776960pt;}
.ws1c{word-spacing:-12.718080pt;}
.wse3{word-spacing:-12.659200pt;}
.ws3{word-spacing:-12.600320pt;}
.wsc4{word-spacing:-12.482560pt;}
.wsa6{word-spacing:-12.364800pt;}
.ws4e{word-spacing:-12.323840pt;}
.ws55{word-spacing:-12.164480pt;}
.ws8b{word-spacing:-12.070400pt;}
.ws51{word-spacing:-12.058240pt;}
.wsa5{word-spacing:-12.011520pt;}
.ws56{word-spacing:-12.005120pt;}
.ws8d{word-spacing:-11.952640pt;}
.ws52{word-spacing:-11.952000pt;}
.ws54{word-spacing:-11.898880pt;}
.ws50{word-spacing:-11.845760pt;}
.ws8a{word-spacing:-11.834880pt;}
.ws53{word-spacing:-11.792640pt;}
.ws4f{word-spacing:-11.739520pt;}
.wsf6{word-spacing:-11.136000pt;}
.ws8e{word-spacing:-10.848000pt;}
.wsdf{word-spacing:-10.752000pt;}
.wsd1{word-spacing:-9.420800pt;}
.wsa9{word-spacing:-8.723200pt;}
.ws8c{word-spacing:-8.389120pt;}
.wsa4{word-spacing:-7.810560pt;}
.ws12{word-spacing:-4.170880pt;}
.ws11{word-spacing:-3.915520pt;}
.wsec{word-spacing:-3.650560pt;}
.ws31{word-spacing:-3.179520pt;}
.wsb7{word-spacing:-3.061760pt;}
.ws43{word-spacing:-3.002880pt;}
.wsb6{word-spacing:-2.885120pt;}
.ws30{word-spacing:-2.826240pt;}
.ws104{word-spacing:-2.656000pt;}
.ws2a{word-spacing:-2.355200pt;}
.ws29{word-spacing:-2.178560pt;}
.ws89{word-spacing:-1.943040pt;}
.ws2f{word-spacing:-1.884160pt;}
.ws64{word-spacing:-1.707520pt;}
.ws92{word-spacing:-1.589760pt;}
.ws4d{word-spacing:-1.530880pt;}
.ws9a{word-spacing:-1.354240pt;}
.wsce{word-spacing:-1.236480pt;}
.ws99{word-spacing:-1.177600pt;}
.ws2d{word-spacing:-1.059840pt;}
.ws77{word-spacing:-1.048320pt;}
.ws98{word-spacing:-0.942080pt;}
.ws42{word-spacing:-0.883200pt;}
.wsb8{word-spacing:-0.824320pt;}
.wsff{word-spacing:-0.765440pt;}
.wsc7{word-spacing:-0.706560pt;}
.ws21{word-spacing:-0.647680pt;}
.ws101{word-spacing:-0.588800pt;}
.ws100{word-spacing:-0.529920pt;}
.ws14{word-spacing:-0.471040pt;}
.ws2b{word-spacing:-0.449280pt;}
.wsee{word-spacing:-0.412160pt;}
.ws88{word-spacing:-0.374400pt;}
.ws16{word-spacing:-0.353280pt;}
.ws1a{word-spacing:-0.294400pt;}
.wsa1{word-spacing:-0.288000pt;}
.ws107{word-spacing:-0.265600pt;}
.wsa3{word-spacing:-0.240000pt;}
.wsc{word-spacing:-0.235520pt;}
.ws20{word-spacing:-0.234240pt;}
.ws76{word-spacing:-0.149760pt;}
.wscf{word-spacing:-0.144000pt;}
.ws10{word-spacing:-0.117760pt;}
.ws13{word-spacing:-0.117120pt;}
.ws59{word-spacing:-0.106240pt;}
.wsa2{word-spacing:-0.096000pt;}
.ws17{word-spacing:-0.058880pt;}
.wsb{word-spacing:0.000000pt;}
.wsba{word-spacing:0.048000pt;}
.ws1b{word-spacing:0.058880pt;}
.wsef{word-spacing:0.096000pt;}
.ws3e{word-spacing:0.117760pt;}
.wscc{word-spacing:0.144000pt;}
.ws15{word-spacing:0.176640pt;}
.wsc3{word-spacing:0.192000pt;}
.ws58{word-spacing:0.212480pt;}
.ws3f{word-spacing:0.234240pt;}
.wse{word-spacing:0.235520pt;}
.wsbb{word-spacing:0.240000pt;}
.ws2c{word-spacing:0.294400pt;}
.wsd{word-spacing:0.353280pt;}
.ws5b{word-spacing:0.371840pt;}
.wsf0{word-spacing:0.384000pt;}
.wsf{word-spacing:0.412160pt;}
.ws71{word-spacing:0.471040pt;}
.ws25{word-spacing:0.529920pt;}
.ws19{word-spacing:0.588800pt;}
.ws75{word-spacing:0.599040pt;}
.ws32{word-spacing:0.647680pt;}
.ws67{word-spacing:0.706560pt;}
.wsc2{word-spacing:0.720000pt;}
.ws9c{word-spacing:0.765440pt;}
.ws18{word-spacing:0.824320pt;}
.wsfd{word-spacing:0.883200pt;}
.ws87{word-spacing:0.942080pt;}
.ws2e{word-spacing:1.000960pt;}
.wsfe{word-spacing:1.059840pt;}
.wsb5{word-spacing:1.118720pt;}
.wsc6{word-spacing:1.177600pt;}
.wsae{word-spacing:1.236480pt;}
.ws62{word-spacing:1.295360pt;}
.ws9d{word-spacing:1.354240pt;}
.wsaf{word-spacing:1.413120pt;}
.ws3c{word-spacing:1.472000pt;}
.ws9b{word-spacing:1.589760pt;}
.ws6c{word-spacing:1.648640pt;}
.wsda{word-spacing:1.943040pt;}
.wse8{word-spacing:2.001920pt;}
.ws35{word-spacing:2.119680pt;}
.ws93{word-spacing:2.237440pt;}
.ws3a{word-spacing:2.296320pt;}
.wsdb{word-spacing:2.472960pt;}
.ws63{word-spacing:2.590720pt;}
.wscd{word-spacing:2.708480pt;}
.ws44{word-spacing:2.767360pt;}
.wsb0{word-spacing:2.885120pt;}
.ws65{word-spacing:2.944000pt;}
.wsc0{word-spacing:3.061760pt;}
.wsbf{word-spacing:3.238400pt;}
.wsfb{word-spacing:3.356160pt;}
.ws5c{word-spacing:3.399680pt;}
.ws61{word-spacing:3.415040pt;}
.ws47{word-spacing:3.591680pt;}
.wsfc{word-spacing:3.709440pt;}
.ws83{word-spacing:3.827200pt;}
.wsab{word-spacing:3.944960pt;}
.ws40{word-spacing:4.003840pt;}
.wsac{word-spacing:4.062720pt;}
.wsbd{word-spacing:4.121600pt;}
.ws84{word-spacing:4.180480pt;}
.wsaa{word-spacing:4.239360pt;}
.ws105{word-spacing:4.355840pt;}
.wsc1{word-spacing:4.474880pt;}
.ws3b{word-spacing:4.651520pt;}
.ws106{word-spacing:4.674560pt;}
.ws24{word-spacing:4.828160pt;}
.wsd9{word-spacing:4.945920pt;}
.ws23{word-spacing:5.122560pt;}
.wsf7{word-spacing:5.240320pt;}
.ws22{word-spacing:5.299200pt;}
.wsbc{word-spacing:5.475840pt;}
.ws97{word-spacing:5.652480pt;}
.wsdc{word-spacing:5.770240pt;}
.ws41{word-spacing:5.946880pt;}
.ws66{word-spacing:6.064640pt;}
.ws48{word-spacing:6.123520pt;}
.ws102{word-spacing:6.268160pt;}
.wsf8{word-spacing:6.359040pt;}
.ws70{word-spacing:6.417920pt;}
.ws4b{word-spacing:6.594560pt;}
.wsb9{word-spacing:6.712320pt;}
.ws103{word-spacing:6.746240pt;}
.ws6f{word-spacing:6.771200pt;}
.ws6e{word-spacing:6.888960pt;}
.wse0{word-spacing:7.065600pt;}
.ws7e{word-spacing:7.242240pt;}
.wsa0{word-spacing:7.360000pt;}
.ws45{word-spacing:7.418880pt;}
.wse1{word-spacing:7.654400pt;}
.ws38{word-spacing:7.713280pt;}
.ws69{word-spacing:7.889920pt;}
.ws34{word-spacing:8.066560pt;}
.ws9e{word-spacing:8.360960pt;}
.ws37{word-spacing:8.419840pt;}
.ws33{word-spacing:8.537600pt;}
.ws4a{word-spacing:8.714240pt;}
.wsd4{word-spacing:9.126400pt;}
.ws9f{word-spacing:9.185280pt;}
.wsfa{word-spacing:9.303040pt;}
.ws6d{word-spacing:9.597440pt;}
.wsb4{word-spacing:9.656320pt;}
.ws6b{word-spacing:9.774080pt;}
.ws39{word-spacing:9.950720pt;}
.wsf2{word-spacing:10.245120pt;}
.ws4c{word-spacing:10.421760pt;}
.ws6a{word-spacing:10.598400pt;}
.wsf1{word-spacing:10.892800pt;}
.ws28{word-spacing:11.069440pt;}
.ws36{word-spacing:11.246080pt;}
.ws7a{word-spacing:11.540480pt;}
.ws26{word-spacing:11.717120pt;}
.ws27{word-spacing:11.893760pt;}
.ws5a{word-spacing:11.898880pt;}
.ws8f{word-spacing:12.129280pt;}
.ws90{word-spacing:12.305920pt;}
.ws49{word-spacing:12.364800pt;}
.ws46{word-spacing:12.541440pt;}
.wsf9{word-spacing:12.894720pt;}
.ws78{word-spacing:13.012480pt;}
.wsb3{word-spacing:13.130240pt;}
.ws79{word-spacing:13.189120pt;}
.wsed{word-spacing:13.660160pt;}
.wsad{word-spacing:13.777920pt;}
.wsd6{word-spacing:13.836800pt;}
.ws7b{word-spacing:14.248960pt;}
.wsc5{word-spacing:14.366720pt;}
.ws7c{word-spacing:14.425600pt;}
.wsde{word-spacing:14.602240pt;}
.ws7d{word-spacing:14.896640pt;}
.wsf5{word-spacing:15.073280pt;}
.wsdd{word-spacing:15.544320pt;}
.ws81{word-spacing:16.839680pt;}
.ws96{word-spacing:16.957440pt;}
.ws82{word-spacing:17.016320pt;}
.ws85{word-spacing:17.487360pt;}
.ws86{word-spacing:17.664000pt;}
.ws80{word-spacing:17.958400pt;}
.ws7f{word-spacing:18.135040pt;}
.wse4{word-spacing:18.723840pt;}
.wse9{word-spacing:19.842560pt;}
.wsd5{word-spacing:20.019200pt;}
.wsbe{word-spacing:20.195840pt;}
.wscb{word-spacing:21.196800pt;}
.wsca{word-spacing:22.138880pt;}
.wsb1{word-spacing:22.197760pt;}
.wsb2{word-spacing:22.727680pt;}
.wsc9{word-spacing:23.257600pt;}
.wse5{word-spacing:23.434240pt;}
.ws94{word-spacing:23.787520pt;}
.ws68{word-spacing:23.846400pt;}
.ws95{word-spacing:24.023040pt;}
.wse7{word-spacing:24.317440pt;}
.wse6{word-spacing:24.494080pt;}
.wseb{word-spacing:24.611840pt;}
.wsea{word-spacing:24.670720pt;}
.ws91{word-spacing:26.554880pt;}
.wsf4{word-spacing:27.084800pt;}
.wsf3{word-spacing:27.261440pt;}
.ws57{word-spacing:29.440000pt;}
.wsd7{word-spacing:34.091520pt;}
.wsd8{word-spacing:34.915840pt;}
.wsc8{word-spacing:45.160960pt;}
._6{margin-left:-1242.595200pt;}
._21{margin-left:-25.135872pt;}
._a{margin-left:-12.105728pt;}
._f{margin-left:-11.047680pt;}
._d{margin-left:-10.082048pt;}
._c{margin-left:-8.822016pt;}
._10{margin-left:-7.138048pt;}
._b{margin-left:-6.241280pt;}
._e{margin-left:-4.464896pt;}
._11{margin-left:-3.150080pt;}
._9{margin-left:-2.049024pt;}
._1{margin-left:-1.053952pt;}
._0{width:1.483776pt;}
._1c{width:2.649600pt;}
._1b{width:3.770624pt;}
._2{width:4.729984pt;}
._1e{width:5.817344pt;}
._15{width:7.183360pt;}
._17{width:8.709120pt;}
._12{width:9.715200pt;}
._13{width:11.887872pt;}
._14{width:14.714112pt;}
._16{width:16.368640pt;}
._1f{width:17.428480pt;}
._1a{width:19.112448pt;}
._19{width:20.201728pt;}
._1d{width:22.556928pt;}
._20{width:34.904064pt;}
._3{width:754.664960pt;}
._18{width:974.458112pt;}
._7{width:1004.545792pt;}
._4{width:1173.469440pt;}
._8{width:1311.699840pt;}
._5{width:1349.462400pt;}
.fs3{font-size:21.120000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:1.760000pt;}
.y9c{bottom:3.520000pt;}
.y12{bottom:4.000000pt;}
.ya6{bottom:7.200000pt;}
.yaa{bottom:7.360000pt;}
.ya2{bottom:19.680000pt;}
.yb1{bottom:19.840000pt;}
.y21{bottom:21.920000pt;}
.y126{bottom:31.040000pt;}
.y19{bottom:39.840000pt;}
.y14{bottom:57.760000pt;}
.y28{bottom:64.000000pt;}
.y27{bottom:79.840000pt;}
.y158{bottom:103.840000pt;}
.y124{bottom:104.167040pt;}
.ye4{bottom:104.666240pt;}
.y90{bottom:107.765120pt;}
.y1fa{bottom:111.232000pt;}
.y1c3{bottom:112.163200pt;}
.y173{bottom:112.189440pt;}
.y143{bottom:114.400000pt;}
.y24d{bottom:115.407360pt;}
.y153{bottom:116.349440pt;}
.y157{bottom:116.800000pt;}
.y219{bottom:116.814720pt;}
.y123{bottom:122.081280pt;}
.ye3{bottom:123.861120pt;}
.y28a{bottom:126.074240pt;}
.y1b9{bottom:126.240000pt;}
.y8f{bottom:127.121920pt;}
.y183{bottom:128.162560pt;}
.y1bc{bottom:130.074880pt;}
.y1bd{bottom:130.080000pt;}
.y1f9{bottom:130.588800pt;}
.y172{bottom:131.384320pt;}
.y1c2{bottom:131.520000pt;}
.y1c1{bottom:132.000000pt;}
.y24c{bottom:133.321600pt;}
.y1a6{bottom:134.582400pt;}
.ybd{bottom:134.723200pt;}
.y23a{bottom:135.546880pt;}
.y152{bottom:135.706240pt;}
.y218{bottom:136.171520pt;}
.ye2{bottom:143.217920pt;}
.y142{bottom:144.796000pt;}
.y122{bottom:145.280000pt;}
.y8e{bottom:146.478720pt;}
.y182{bottom:147.357440pt;}
.y1f8{bottom:149.945600pt;}
.y1cd{bottom:150.240000pt;}
.y171{bottom:150.741120pt;}
.y24b{bottom:151.235840pt;}
.y10b{bottom:151.564800pt;}
.y1a5{bottom:153.939200pt;}
.ybc{bottom:154.080000pt;}
.y239{bottom:154.741760pt;}
.y151{bottom:155.063040pt;}
.y217{bottom:155.528320pt;}
.y1b8{bottom:156.156000pt;}
.y141{bottom:159.520000pt;}
.y1bb{bottom:159.836000pt;}
.y1c0{bottom:161.916000pt;}
.ye1{bottom:162.574720pt;}
.y121{bottom:163.211520pt;}
.y1d4{bottom:164.160000pt;}
.y181{bottom:166.714240pt;}
.ybb{bottom:168.000000pt;}
.y24a{bottom:169.150080pt;}
.y10a{bottom:169.479040pt;}
.y8d{bottom:169.839360pt;}
.y170{bottom:170.097920pt;}
.y1b7{bottom:170.880000pt;}
.y140{bottom:171.680000pt;}
.y238{bottom:174.098560pt;}
.y150{bottom:174.419840pt;}
.y1ba{bottom:174.560000pt;}
.y216{bottom:174.723200pt;}
.y1bf{bottom:176.640000pt;}
.y1cc{bottom:179.840000pt;}
.y120{bottom:181.125760pt;}
.ye0{bottom:181.931520pt;}
.y1a4{bottom:183.864960pt;}
.yba{bottom:184.160000pt;}
.y1f7{bottom:185.141120pt;}
.y249{bottom:187.064320pt;}
.y109{bottom:187.393280pt;}
.y8c{bottom:189.034240pt;}
.y16f{bottom:189.454720pt;}
.y237{bottom:193.455360pt;}
.y14f{bottom:193.614720pt;}
.y1d3{bottom:194.080000pt;}
.y180{bottom:196.640000pt;}
.y1b6{bottom:198.240000pt;}
.y11f{bottom:199.061760pt;}
.y1be{bottom:200.160000pt;}
.yb9{bottom:200.480000pt;}
.ydf{bottom:201.126400pt;}
.y1a3{bottom:203.221760pt;}
.y1f6{bottom:204.497920pt;}
.y108{bottom:205.307520pt;}
.y27c{bottom:206.247040pt;}
.y8b{bottom:208.391040pt;}
.y16e{bottom:208.649600pt;}
.y1cb{bottom:209.280000pt;}
.y248{bottom:210.263040pt;}
.y236{bottom:212.812160pt;}
.y14e{bottom:212.971520pt;}
.y1d2{bottom:213.443200pt;}
.yb8{bottom:216.800000pt;}
.y11e{bottom:216.828800pt;}
.yde{bottom:220.483200pt;}
.y17f{bottom:222.720000pt;}
.y107{bottom:223.221760pt;}
.y1f5{bottom:223.854720pt;}
.y215{bottom:227.200000pt;}
.y16d{bottom:228.006400pt;}
.y247{bottom:228.177280pt;}
.y8a{bottom:231.751680pt;}
.y14d{bottom:232.328320pt;}
.y1d1{bottom:232.800000pt;}
.yb7{bottom:233.120000pt;}
.y1a2{bottom:233.294720pt;}
.y11d{bottom:234.743040pt;}
.y27b{bottom:236.320000pt;}
.y1ca{bottom:239.676000pt;}
.ydd{bottom:239.840000pt;}
.y106{bottom:241.136000pt;}
.y235{bottom:242.737920pt;}
.y1f4{bottom:243.211520pt;}
.y23{bottom:246.085760pt;}
.y246{bottom:246.091520pt;}
.y16c{bottom:247.363200pt;}
.yb6{bottom:249.280000pt;}
.y89{bottom:251.108480pt;}
.y14c{bottom:251.685120pt;}
.y1a1{bottom:252.489600pt;}
.y11c{bottom:252.657280pt;}
.y1c9{bottom:254.400000pt;}
.y289{bottom:255.673760pt;}
.y214{bottom:256.164480pt;}
.y17e{bottom:256.640000pt;}
.y105{bottom:259.050240pt;}
.y234{bottom:262.094720pt;}
.y1d0{bottom:262.400000pt;}
.y1f3{bottom:262.406400pt;}
.y22{bottom:264.000000pt;}
.y245{bottom:264.005760pt;}
.y27a{bottom:265.440000pt;}
.ydc{bottom:265.920000pt;}
.y16b{bottom:266.720000pt;}
.yb5{bottom:269.280000pt;}
.y88{bottom:270.303360pt;}
.y11b{bottom:270.571520pt;}
.y14b{bottom:270.880000pt;}
.y1a0{bottom:271.846400pt;}
.y104{bottom:276.817280pt;}
.y1c8{bottom:277.930880pt;}
.y20{bottom:278.560000pt;}
.y233{bottom:281.451520pt;}
.y1f2{bottom:281.763200pt;}
.y244{bottom:281.920000pt;}
.y288{bottom:284.000000pt;}
.yb4{bottom:285.600000pt;}
.y17d{bottom:287.040000pt;}
.y11a{bottom:288.485760pt;}
.y19f{bottom:291.203200pt;}
.y1cf{bottom:292.316000pt;}
.y279{bottom:293.600000pt;}
.y87{bottom:293.664000pt;}
.y103{bottom:294.731520pt;}
.ydb{bottom:299.776000pt;}
.y232{bottom:300.646400pt;}
.y1f1{bottom:301.120000pt;}
.y14a{bottom:301.276000pt;}
.y16a{bottom:301.602560pt;}
.yb3{bottom:301.920000pt;}
.y287{bottom:303.505920pt;}
.y119{bottom:306.400000pt;}
.y1ce{bottom:307.040000pt;}
.y243{bottom:308.000000pt;}
.y19e{bottom:310.560000pt;}
.y17c{bottom:310.594560pt;}
.y102{bottom:312.645760pt;}
.y86{bottom:313.020800pt;}
.y1f{bottom:315.040000pt;}
.y149{bottom:316.000000pt;}
.yda{bottom:319.132800pt;}
.y286{bottom:319.667680pt;}
.y231{bottom:320.003200pt;}
.yb2{bottom:321.920000pt;}
.y278{bottom:323.688320pt;}
.y118{bottom:324.325760pt;}
.y148{bottom:328.817920pt;}
.y101{bottom:330.560000pt;}
.y85{bottom:332.377600pt;}
.y1e{bottom:333.600000pt;}
.y169{bottom:334.236000pt;}
.y285{bottom:335.988800pt;}
.y1f0{bottom:337.920000pt;}
.yb0{bottom:338.080000pt;}
.yd9{bottom:338.489600pt;}
.y230{bottom:339.360000pt;}
.y19d{bottom:340.480000pt;}
.y117{bottom:342.240000pt;}
.y277{bottom:342.883200pt;}
.y69{bottom:345.761920pt;}
.y168{bottom:348.960000pt;}
.y1d{bottom:352.160000pt;}
.y284{bottom:352.309920pt;}
.y242{bottom:353.628800pt;}
.y84{bottom:355.576320pt;}
.y100{bottom:356.646400pt;}
.yd8{bottom:357.846400pt;}
.y116{bottom:360.165760pt;}
.y19c{bottom:360.640000pt;}
.y276{bottom:362.240000pt;}
.y53{bottom:363.040000pt;}
.y22f{bottom:365.440000pt;}
.y283{bottom:368.471680pt;}
.y1c{bottom:370.720000pt;}
.y241{bottom:371.543040pt;}
.y1ef{bottom:371.710720pt;}
.y83{bottom:374.933120pt;}
.yd7{bottom:377.041280pt;}
.y167{bottom:377.777920pt;}
.y115{bottom:378.080000pt;}
.y19b{bottom:380.640000pt;}
.y68{bottom:382.238080pt;}
.y282{bottom:384.792800pt;}
.y1b{bottom:389.280000pt;}
.y240{bottom:389.457280pt;}
.yaf{bottom:390.720000pt;}
.y1ee{bottom:391.067520pt;}
.yff{bottom:391.840000pt;}
.y275{bottom:392.193920pt;}
.y52{bottom:393.031680pt;}
.y1aa{bottom:393.440000pt;}
.y212{bottom:393.688960pt;}
.y82{bottom:394.289920pt;}
.yd6{bottom:396.398080pt;}
.y19a{bottom:400.800000pt;}
.y114{bottom:401.280000pt;}
.y281{bottom:403.836320pt;}
.yae{bottom:407.040000pt;}
.y23f{bottom:407.371520pt;}
.y18{bottom:407.840000pt;}
.y67{bottom:408.160000pt;}
.y1ed{bottom:410.424320pt;}
.y274{bottom:411.550720pt;}
.y22e{bottom:412.662400pt;}
.y211{bottom:412.883840pt;}
.yd5{bottom:415.754880pt;}
.y81{bottom:417.650560pt;}
.y280{bottom:419.201280pt;}
.y113{bottom:419.228160pt;}
.y199{bottom:420.965120pt;}
.y51{bottom:422.957440pt;}
.y1a9{bottom:423.356000pt;}
.y23e{bottom:425.285760pt;}
.yad{bottom:427.040000pt;}
.y1a{bottom:429.760000pt;}
.y22d{bottom:431.857280pt;}
.y210{bottom:432.240640pt;}
.y66{bottom:434.240000pt;}
.yd4{bottom:435.111680pt;}
.y80{bottom:436.845440pt;}
.y112{bottom:437.142400pt;}
.yfe{bottom:437.712640pt;}
.y1a8{bottom:438.080000pt;}
.y198{bottom:440.160000pt;}
.y1ec{bottom:440.350080pt;}
.y156{bottom:441.276000pt;}
.y273{bottom:441.623680pt;}
.y50{bottom:442.314240pt;}
.yac{bottom:443.200000pt;}
.y22c{bottom:451.214080pt;}
.yd3{bottom:454.306560pt;}
.y111{bottom:454.909440pt;}
.yfd{bottom:455.626880pt;}
.y155{bottom:456.000000pt;}
.y7f{bottom:456.202240pt;}
.y1eb{bottom:459.706880pt;}
.y65{bottom:460.160000pt;}
.y197{bottom:460.320000pt;}
.y272{bottom:460.818560pt;}
.y1a7{bottom:461.636480pt;}
.y4f{bottom:461.671040pt;}
.y17{bottom:462.240000pt;}
.yab{bottom:463.200000pt;}
.y225{bottom:464.241920pt;}
.y1b5{bottom:464.960000pt;}
.y20f{bottom:467.598080pt;}
.y154{bottom:468.981760pt;}
.y22b{bottom:470.570880pt;}
.y110{bottom:472.823680pt;}
.yfc{bottom:473.541120pt;}
.yd2{bottom:473.663360pt;}
.y25e{bottom:473.920000pt;}
.y23d{bottom:478.080000pt;}
.y1ea{bottom:479.063680pt;}
.y7e{bottom:479.562880pt;}
.y196{bottom:479.680000pt;}
.y13f{bottom:480.034560pt;}
.y271{bottom:480.175360pt;}
.y13{bottom:480.800000pt;}
.y4e{bottom:481.027840pt;}
.y1b4{bottom:482.434560pt;}
.ya9{bottom:483.200000pt;}
.y224{bottom:483.598720pt;}
.y64{bottom:486.080000pt;}
.y20e{bottom:486.954880pt;}
.y22a{bottom:489.927680pt;}
.y10f{bottom:490.737920pt;}
.yfb{bottom:491.455360pt;}
.yd1{bottom:493.020160pt;}
.y13e{bottom:497.948800pt;}
.y1e9{bottom:498.258560pt;}
.y7d{bottom:498.919680pt;}
.y195{bottom:499.710080pt;}
.y25d{bottom:500.000000pt;}
.y4d{bottom:500.222720pt;}
.y1b3{bottom:500.348800pt;}
.y16{bottom:502.725760pt;}
.y223{bottom:502.955520pt;}
.ya8{bottom:503.200000pt;}
.y20d{bottom:506.311680pt;}
.y10e{bottom:508.652160pt;}
.y229{bottom:509.122560pt;}
.yfa{bottom:509.369600pt;}
.y270{bottom:510.248320pt;}
.y23c{bottom:510.720000pt;}
.y63{bottom:512.160000pt;}
.yd0{bottom:512.376960pt;}
.y27f{bottom:512.480000pt;}
.y13d{bottom:515.863040pt;}
.y1e8{bottom:517.615360pt;}
.y1b2{bottom:518.263040pt;}
.y7c{bottom:518.276480pt;}
.ya7{bottom:519.520000pt;}
.y4c{bottom:519.579520pt;}
.y15{bottom:520.640000pt;}
.y222{bottom:522.312320pt;}
.y20c{bottom:525.506560pt;}
.y10d{bottom:526.566400pt;}
.yf9{bottom:527.283840pt;}
.y26f{bottom:529.443200pt;}
.y194{bottom:530.592640pt;}
.y13c{bottom:533.777280pt;}
.y1b1{bottom:536.177280pt;}
.y1e7{bottom:536.972160pt;}
.y62{bottom:538.080000pt;}
.y4b{bottom:538.936320pt;}
.ya5{bottom:539.520000pt;}
.y23b{bottom:539.681920pt;}
.y7b{bottom:541.475200pt;}
.ycf{bottom:542.302720pt;}
.y228{bottom:544.480000pt;}
.y20b{bottom:544.863360pt;}
.yf8{bottom:545.198080pt;}
.y25c{bottom:545.790720pt;}
.y26e{bottom:548.800000pt;}
.y10c{bottom:549.765120pt;}
.y193{bottom:549.787520pt;}
.y13b{bottom:551.691520pt;}
.y11{bottom:553.120000pt;}
.y1b0{bottom:554.091520pt;}
.y1e6{bottom:556.328960pt;}
.y221{bottom:557.507840pt;}
.y4a{bottom:558.293120pt;}
.ya4{bottom:559.520000pt;}
.y7a{bottom:560.832000pt;}
.yce{bottom:561.659520pt;}
.yf7{bottom:563.112320pt;}
.y25b{bottom:563.704960pt;}
.y61{bottom:564.160000pt;}
.y20a{bottom:564.220160pt;}
.y125{bottom:569.120000pt;}
.y192{bottom:569.144320pt;}
.y13a{bottom:569.605760pt;}
.y1af{bottom:572.005760pt;}
.y38{bottom:575.200000pt;}
.y10{bottom:575.680000pt;}
.ya3{bottom:575.840000pt;}
.y220{bottom:576.864640pt;}
.y227{bottom:577.600000pt;}
.y49{bottom:577.649920pt;}
.y26d{bottom:578.723200pt;}
.y79{bottom:580.188800pt;}
.ycd{bottom:581.016320pt;}
.yf6{bottom:581.026560pt;}
.y25a{bottom:581.619200pt;}
.y127{bottom:585.440000pt;}
.y1e5{bottom:586.254720pt;}
.y139{bottom:587.518720pt;}
.y191{bottom:588.501120pt;}
.y1ae{bottom:589.920000pt;}
.y60{bottom:590.080000pt;}
.ya1{bottom:592.160000pt;}
.y21f{bottom:596.221440pt;}
.y48{bottom:596.844800pt;}
.yf5{bottom:598.793600pt;}
.y259{bottom:599.533440pt;}
.y209{bottom:599.577600pt;}
.yf{bottom:600.160000pt;}
.ycc{bottom:600.211200pt;}
.y78{bottom:603.549440pt;}
.y37{bottom:605.126400pt;}
.y1e4{bottom:605.611520pt;}
.y226{bottom:606.560000pt;}
.y190{bottom:607.857920pt;}
.y26c{bottom:608.796160pt;}
.y138{bottom:612.160000pt;}
.y21e{bottom:615.578240pt;}
.y5f{bottom:616.000000pt;}
.y47{bottom:616.201600pt;}
.yf4{bottom:616.707840pt;}
.y258{bottom:617.447680pt;}
.y208{bottom:618.772480pt;}
.ycb{bottom:619.568000pt;}
.y27e{bottom:619.994240pt;}
.y1ad{bottom:620.316000pt;}
.y213{bottom:622.560000pt;}
.y36{bottom:624.483200pt;}
.ya0{bottom:624.640000pt;}
.y1e3{bottom:624.968320pt;}
.y77{bottom:626.748160pt;}
.y18f{bottom:627.214720pt;}
.y26b{bottom:628.152960pt;}
.yf3{bottom:634.622080pt;}
.y21d{bottom:634.773120pt;}
.y1ac{bottom:635.040000pt;}
.y46{bottom:635.558400pt;}
.y166{bottom:638.101120pt;}
.y207{bottom:638.129280pt;}
.y137{bottom:638.240000pt;}
.yca{bottom:638.924800pt;}
.y9f{bottom:640.960000pt;}
.y5e{bottom:642.080000pt;}
.y35{bottom:643.840000pt;}
.y1e2{bottom:644.163200pt;}
.y76{bottom:646.104960pt;}
.y18e{bottom:646.409600pt;}
.ye{bottom:646.720000pt;}
.y257{bottom:647.373440pt;}
.yf2{bottom:652.536320pt;}
.y21c{bottom:654.129920pt;}
.y45{bottom:654.915200pt;}
.y9e{bottom:657.120000pt;}
.y165{bottom:657.457920pt;}
.y206{bottom:657.486080pt;}
.y26a{bottom:658.078720pt;}
.yc9{bottom:658.281600pt;}
.y1ab{bottom:658.560000pt;}
.y1e1{bottom:663.520000pt;}
.y34{bottom:665.440000pt;}
.y75{bottom:665.461760pt;}
.y18d{bottom:665.766400pt;}
.y256{bottom:667.539840pt;}
.y5d{bottom:668.000000pt;}
.yf1{bottom:670.450560pt;}
.yd{bottom:671.073920pt;}
.y136{bottom:672.073600pt;}
.y9d{bottom:673.440000pt;}
.y21b{bottom:673.486720pt;}
.y44{bottom:674.110080pt;}
.y164{bottom:676.814720pt;}
.y205{bottom:676.842880pt;}
.y269{bottom:677.435520pt;}
.yc8{bottom:677.476480pt;}
.y18c{bottom:685.123200pt;}
.y255{bottom:687.544320pt;}
.yf0{bottom:688.364800pt;}
.y74{bottom:688.822400pt;}
.yc{bottom:688.840960pt;}
.y1e0{bottom:689.600000pt;}
.y135{bottom:689.987840pt;}
.y9b{bottom:690.400000pt;}
.y21a{bottom:692.843520pt;}
.y43{bottom:693.466880pt;}
.y5c{bottom:694.080000pt;}
.y163{bottom:696.171520pt;}
.y33{bottom:701.923200pt;}
.y18b{bottom:704.480000pt;}
.yef{bottom:706.279040pt;}
.yb{bottom:706.755200pt;}
.y268{bottom:707.361280pt;}
.yc7{bottom:707.549440pt;}
.y254{bottom:707.710720pt;}
.y134{bottom:707.902080pt;}
.y73{bottom:712.021120pt;}
.y204{bottom:712.038400pt;}
.y42{bottom:712.823680pt;}
.y162{bottom:715.366400pt;}
.y9a{bottom:718.880000pt;}
.y5b{bottom:720.000000pt;}
.y32{bottom:721.280000pt;}
.yee{bottom:724.193280pt;}
.ya{bottom:724.669440pt;}
.y133{bottom:725.816320pt;}
.y267{bottom:726.718080pt;}
.yc6{bottom:726.906240pt;}
.y253{bottom:727.877120pt;}
.y18a{bottom:730.560000pt;}
.y72{bottom:731.377920pt;}
.y203{bottom:731.395200pt;}
.y41{bottom:732.180480pt;}
.y161{bottom:734.723200pt;}
.y1df{bottom:736.832640pt;}
.yed{bottom:742.107520pt;}
.y9{bottom:742.583680pt;}
.y132{bottom:743.730560pt;}
.y31{bottom:745.760000pt;}
.y5a{bottom:746.080000pt;}
.yc5{bottom:746.101120pt;}
.y252{bottom:747.881600pt;}
.y202{bottom:750.752000pt;}
.y40{bottom:751.375360pt;}
.y160{bottom:754.080000pt;}
.y71{bottom:754.738560pt;}
.y1de{bottom:756.189440pt;}
.y266{bottom:756.643840pt;}
.yec{bottom:760.021760pt;}
.y8{bottom:760.497920pt;}
.y131{bottom:761.644800pt;}
.y189{bottom:764.320000pt;}
.y17b{bottom:764.677120pt;}
.yc4{bottom:765.457920pt;}
.y99{bottom:766.090240pt;}
.y251{bottom:768.048000pt;}
.y201{bottom:770.108800pt;}
.y3f{bottom:770.732160pt;}
.y59{bottom:772.000000pt;}
.y15f{bottom:773.459840pt;}
.y70{bottom:774.095360pt;}
.y1dd{bottom:775.384320pt;}
.y265{bottom:776.000640pt;}
.yeb{bottom:777.788800pt;}
.y7{bottom:778.412160pt;}
.y130{bottom:779.559040pt;}
.yc3{bottom:784.814720pt;}
.y98{bottom:789.288960pt;}
.y200{bottom:789.303680pt;}
.y30{bottom:789.920000pt;}
.y188{bottom:790.400000pt;}
.y250{bottom:792.041600pt;}
.y15e{bottom:792.654720pt;}
.y6f{bottom:793.290240pt;}
.y1dc{bottom:794.741120pt;}
.y17a{bottom:794.750080pt;}
.y264{bottom:795.357440pt;}
.yea{bottom:795.703040pt;}
.y6{bottom:796.326400pt;}
.y12f{bottom:797.473280pt;}
.y58{bottom:797.920000pt;}
.y3e{bottom:800.657920pt;}
.yc2{bottom:804.171520pt;}
.y2f{bottom:804.480000pt;}
.y1ff{bottom:808.660480pt;}
.y24f{bottom:809.955840pt;}
.y15d{bottom:812.011520pt;}
.y97{bottom:812.649600pt;}
.ye9{bottom:813.617280pt;}
.y1c7{bottom:813.930240pt;}
.y179{bottom:813.944960pt;}
.y1db{bottom:814.097920pt;}
.y5{bottom:814.240640pt;}
.y12e{bottom:815.240320pt;}
.y6e{bottom:816.650880pt;}
.y3d{bottom:820.014720pt;}
.y2e{bottom:823.040000pt;}
.yc1{bottom:823.366400pt;}
.y57{bottom:824.000000pt;}
.y263{bottom:825.283200pt;}
.y27d{bottom:826.560000pt;}
.y24e{bottom:827.870080pt;}
.y1fe{bottom:828.017280pt;}
.y15c{bottom:831.368320pt;}
.ye8{bottom:831.531520pt;}
.y4{bottom:832.154880pt;}
.y12d{bottom:833.154560pt;}
.y1c6{bottom:833.287040pt;}
.y178{bottom:833.301760pt;}
.y1da{bottom:833.454720pt;}
.y6d{bottom:836.007680pt;}
.y96{bottom:836.010240pt;}
.y187{bottom:837.614720pt;}
.y3c{bottom:839.371520pt;}
.y2d{bottom:841.600000pt;}
.yc0{bottom:842.723200pt;}
.y147{bottom:844.017920pt;}
.y262{bottom:844.640000pt;}
.y2{bottom:846.080000pt;}
.y1fd{bottom:847.374080pt;}
.ye7{bottom:849.445760pt;}
.y56{bottom:849.920000pt;}
.y15b{bottom:850.725120pt;}
.y12c{bottom:851.068800pt;}
.y1c5{bottom:852.643840pt;}
.y1d9{bottom:852.649600pt;}
.y177{bottom:852.658560pt;}
.y186{bottom:855.528960pt;}
.y3b{bottom:858.728320pt;}
.y6c{bottom:859.368320pt;}
.y95{bottom:859.370880pt;}
.y2c{bottom:860.160000pt;}
.y3{bottom:860.800000pt;}
.ybf{bottom:862.080000pt;}
.y146{bottom:863.374720pt;}
.y1fc{bottom:866.568960pt;}
.ye6{bottom:867.360000pt;}
.y12b{bottom:868.983040pt;}
.y15a{bottom:869.920000pt;}
.y1c4{bottom:872.000640pt;}
.y1d8{bottom:872.006400pt;}
.y176{bottom:872.015360pt;}
.y185{bottom:873.443200pt;}
.y261{bottom:874.725120pt;}
.y55{bottom:876.000000pt;}
.y3a{bottom:878.085120pt;}
.y6b{bottom:878.563200pt;}
.y94{bottom:878.565760pt;}
.y2b{bottom:878.720000pt;}
.y145{bottom:882.569600pt;}
.y1fb{bottom:885.925760pt;}
.y12a{bottom:886.897280pt;}
.ybe{bottom:888.157920pt;}
.y175{bottom:891.210240pt;}
.y184{bottom:891.357440pt;}
.y1d7{bottom:891.363200pt;}
.ye5{bottom:893.440000pt;}
.y260{bottom:893.920000pt;}
.y2a{bottom:897.280000pt;}
.y6a{bottom:897.920000pt;}
.y93{bottom:897.922560pt;}
.y54{bottom:901.920000pt;}
.y144{bottom:901.926400pt;}
.y129{bottom:904.811520pt;}
.y159{bottom:906.720000pt;}
.y174{bottom:910.567040pt;}
.y1d6{bottom:910.720000pt;}
.y25f{bottom:912.640000pt;}
.y92{bottom:921.283200pt;}
.y128{bottom:922.725760pt;}
.y39{bottom:923.520000pt;}
.y29{bottom:926.560000pt;}
.y1d5{bottom:936.800000pt;}
.y91{bottom:940.640000pt;}
.y1{bottom:946.080000pt;}
.y26{bottom:967.040000pt;}
.y24{bottom:972.160000pt;}
.hb{height:15.159375pt;}
.h16{height:16.158667pt;}
.h12{height:16.160000pt;}
.hf{height:16.320000pt;}
.h8{height:17.920000pt;}
.h6{height:17.921333pt;}
.h15{height:19.998667pt;}
.h14{height:20.000000pt;}
.h13{height:32.478667pt;}
.h17{height:32.640000pt;}
.h1c{height:34.453125pt;}
.ha{height:35.840000pt;}
.h25{height:36.290625pt;}
.h23{height:37.553500pt;}
.h11{height:38.128125pt;}
.h10{height:38.569063pt;}
.h20{height:40.307500pt;}
.h21{height:40.441000pt;}
.h22{height:40.892500pt;}
.h1{height:42.262500pt;}
.h1b{height:42.558667pt;}
.hd{height:42.656250pt;}
.h3{height:42.751250pt;}
.h24{height:45.822300pt;}
.h1a{height:45.850460pt;}
.h19{height:47.763750pt;}
.h1e{height:47.768870pt;}
.h9{height:53.760000pt;}
.hc{height:54.368437pt;}
.h1d{height:61.410000pt;}
.he{height:61.795757pt;}
.h4{height:61.803437pt;}
.h7{height:71.680000pt;}
.h18{height:78.097500pt;}
.h2{height:84.000000pt;}
.h5{height:85.037812pt;}
.h1f{height:302.238667pt;}
.h0{height:1056.000000pt;}
.w6{width:74.561333pt;}
.w7{width:93.920000pt;}
.w2{width:131.360000pt;}
.w8{width:140.640000pt;}
.w9{width:167.520000pt;}
.w4{width:287.040000pt;}
.wc{width:305.598667pt;}
.wd{width:305.760000pt;}
.w1{width:311.680000pt;}
.w5{width:346.240000pt;}
.wa{width:456.000000pt;}
.w3{width:490.721333pt;}
.wb{width:660.800000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1b{left:12.800000pt;}
.x13{left:90.720000pt;}
.x1{left:96.000000pt;}
.x9{left:97.120000pt;}
.x2c{left:98.240000pt;}
.x33{left:100.960000pt;}
.x1f{left:102.240000pt;}
.x28{left:103.200000pt;}
.x22{left:105.600000pt;}
.x1a{left:106.720000pt;}
.x31{left:109.920000pt;}
.x15{left:112.000000pt;}
.x37{left:113.760000pt;}
.x19{left:119.999040pt;}
.x35{left:122.080000pt;}
.x3e{left:129.440000pt;}
.x43{left:131.516480pt;}
.x34{left:132.796000pt;}
.x1c{left:136.000000pt;}
.x36{left:140.476000pt;}
.x2a{left:144.000000pt;}
.x23{left:150.240000pt;}
.x17{left:152.804480pt;}
.x5{left:154.080000pt;}
.x32{left:159.996000pt;}
.x29{left:164.160000pt;}
.x2e{left:166.080000pt;}
.xd{left:171.840000pt;}
.x3d{left:178.240000pt;}
.x2f{left:180.312000pt;}
.x2b{left:182.080000pt;}
.x3f{left:185.120000pt;}
.x3b{left:195.672000pt;}
.x7{left:228.640000pt;}
.x8{left:235.520000pt;}
.x12{left:249.440000pt;}
.x2d{left:255.032000pt;}
.xb{left:256.640000pt;}
.x2{left:261.760000pt;}
.x18{left:263.520000pt;}
.xe{left:266.400000pt;}
.x24{left:267.844000pt;}
.x26{left:270.560000pt;}
.x20{left:277.128000pt;}
.x1d{left:302.880000pt;}
.xc{left:310.720000pt;}
.x16{left:324.480000pt;}
.x4{left:333.920000pt;}
.x10{left:348.800000pt;}
.x14{left:353.120000pt;}
.x11{left:372.960000pt;}
.xa{left:383.040000pt;}
.x38{left:388.956000pt;}
.x39{left:408.000000pt;}
.x1e{left:413.600000pt;}
.x44{left:483.988160pt;}
.xf{left:578.720000pt;}
.x3a{left:582.400000pt;}
.x40{left:602.880000pt;}
.x30{left:648.000000pt;}
.x42{left:681.760000pt;}
.x3{left:689.440000pt;}
.x41{left:695.998720pt;}
.x3c{left:697.920000pt;}
.x25{left:709.120000pt;}
.x27{left:720.010240pt;}
.x21{left:744.007680pt;}
}




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