
    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_d90e9855e2991bd9acbe72b5.woff2')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_d52e18e66cd6de40396f3bf9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_b74bc50f6f51b4197a6f0021.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_784e193bfb56b9fb41ea64e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_582c6eb06019a0c33a52ee76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_72e1e21c8b96ad8f6159695d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_2d553ded6efcf6919abd6d1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_3df6ed929c3b93b394182ed3.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a90b7428a6cac97caca75269.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_16eb64efeea3865ae38a3137.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.863770;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_9ca3a08b13fcb5e9f85a6f48.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_64fe7ca6dcd96123497a2043.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:27.360000px;}
.ls53{letter-spacing:-1.512000px;}
.ls59{letter-spacing:-1.192320px;}
.ls3e{letter-spacing:-0.794880px;}
.ls2a{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.463680px;}
.ls3b{letter-spacing:-0.397440px;}
.ls1f{letter-spacing:-0.358560px;}
.ls23{letter-spacing:-0.336960px;}
.ls1b{letter-spacing:-0.298800px;}
.ls1d{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.264960px;}
.ls14{letter-spacing:-0.252720px;}
.ls19{letter-spacing:-0.239040px;}
.ls12{letter-spacing:-0.216000px;}
.ls3d{letter-spacing:-0.198720px;}
.ls1a{letter-spacing:-0.119520px;}
.ls13{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.084240px;}
.ls17{letter-spacing:-0.077760px;}
.ls49{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.066240px;}
.ls18{letter-spacing:-0.059760px;}
.lse{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.054432px;}
.ls31{letter-spacing:0.059760px;}
.ls3c{letter-spacing:0.066240px;}
.ls43{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.077760px;}
.ls6{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132480px;}
.ls8{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.149760px;}
.ls42{letter-spacing:0.151200px;}
.ls5{letter-spacing:0.155520px;}
.lsb{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.197208px;}
.ls5a{letter-spacing:0.198720px;}
.ls5e{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.239040px;}
.ls2d{letter-spacing:0.264960px;}
.ls54{letter-spacing:0.280800px;}
.ls24{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.331200px;}
.ls3{letter-spacing:0.336960px;}
.ls1e{letter-spacing:0.358560px;}
.ls22{letter-spacing:0.360000px;}
.ls3f{letter-spacing:0.385920px;}
.ls5c{letter-spacing:0.504000px;}
.ls5d{letter-spacing:0.576000px;}
.ls1c{letter-spacing:0.717120px;}
.ls20{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.896400px;}
.ls44{letter-spacing:1.440000px;}
.ls40{letter-spacing:1.461600px;}
.ls9{letter-spacing:1.613520px;}
.ls7{letter-spacing:2.160000px;}
.ls21{letter-spacing:2.880000px;}
.ls2c{letter-spacing:3.444480px;}
.ls27{letter-spacing:3.600000px;}
.ls2b{letter-spacing:4.173120px;}
.ls30{letter-spacing:4.320000px;}
.ls2f{letter-spacing:5.040000px;}
.ls48{letter-spacing:5.199120px;}
.ls41{letter-spacing:5.760000px;}
.ls56{letter-spacing:6.480000px;}
.ls55{letter-spacing:7.200000px;}
.ls2e{letter-spacing:8.640000px;}
.ls57{letter-spacing:14.705280px;}
.ls4b{letter-spacing:16.162560px;}
.ls4d{letter-spacing:17.553600px;}
.ls4a{letter-spacing:19.010880px;}
.ls4f{letter-spacing:19.739520px;}
.ls51{letter-spacing:20.468160px;}
.ls52{letter-spacing:20.880000px;}
.ls5b{letter-spacing:22.464000px;}
.ls4c{letter-spacing:22.654080px;}
.ls58{letter-spacing:27.688320px;}
.ls4e{letter-spacing:30.536640px;}
.ls46{letter-spacing:34.842240px;}
.ls50{letter-spacing:35.570880px;}
.ls45{letter-spacing:36.299520px;}
.ls47{letter-spacing:37.028160px;}
.ls33{letter-spacing:37.756800px;}
.ls35{letter-spacing:39.214080px;}
.ls32{letter-spacing:40.605120px;}
.ls37{letter-spacing:41.333760px;}
.ls3a{letter-spacing:42.062400px;}
.ls34{letter-spacing:44.248320px;}
.ls36{letter-spacing:52.130880px;}
.ls39{letter-spacing:56.436480px;}
.ls38{letter-spacing:57.165120px;}
.ls25{letter-spacing:57.893760px;}
.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;}
}
.ws3d{word-spacing:-66.240000px;}
.ws3{word-spacing:-28.810080px;}
.ws4{word-spacing:-28.725840px;}
.ws5{word-spacing:-26.671680px;}
.wsbf{word-spacing:-23.081760px;}
.ws7{word-spacing:-20.378160px;}
.ws9{word-spacing:-20.318400px;}
.ws87{word-spacing:-20.304000px;}
.ws8{word-spacing:-20.198880px;}
.wsa{word-spacing:-20.139120px;}
.ws68{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.000000px;}
.wsb4{word-spacing:-17.928000px;}
.wsa0{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws51{word-spacing:-16.692480px;}
.ws52{word-spacing:-16.096320px;}
.ws98{word-spacing:-15.298560px;}
.ws9c{word-spacing:-15.235200px;}
.ws3e{word-spacing:-15.102720px;}
.ws69{word-spacing:-15.059520px;}
.ws7f{word-spacing:-15.036480px;}
.ws79{word-spacing:-14.999760px;}
.ws81{word-spacing:-14.970240px;}
.ws7d{word-spacing:-14.904000px;}
.ws6b{word-spacing:-14.880240px;}
.ws80{word-spacing:-14.771520px;}
.ws67{word-spacing:-14.705280px;}
.ws6a{word-spacing:-14.581440px;}
.ws7e{word-spacing:-14.572800px;}
.ws82{word-spacing:-14.175360px;}
.ws1{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.296960px;}
.ws83{word-spacing:-12.445920px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.wse{word-spacing:-9.720000px;}
.ws3f{word-spacing:-4.320000px;}
.ws8e{word-spacing:-4.032000px;}
.ws7a{word-spacing:-3.645360px;}
.ws3b{word-spacing:-3.600000px;}
.ws5d{word-spacing:-3.378240px;}
.ws84{word-spacing:-3.312000px;}
.ws63{word-spacing:-2.980800px;}
.ws1f{word-spacing:-2.880000px;}
.wsbc{word-spacing:-2.649600px;}
.ws20{word-spacing:-2.592000px;}
.ws49{word-spacing:-2.450880px;}
.ws64{word-spacing:-2.318400px;}
.ws65{word-spacing:-2.185920px;}
.ws37{word-spacing:-2.160000px;}
.ws6d{word-spacing:-2.119680px;}
.ws6c{word-spacing:-1.920960px;}
.ws74{word-spacing:-1.872000px;}
.ws62{word-spacing:-1.589760px;}
.ws59{word-spacing:-1.584000px;}
.ws66{word-spacing:-1.457280px;}
.ws38{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.192320px;}
.ws28{word-spacing:-1.152000px;}
.ws5c{word-spacing:-0.993600px;}
.ws1a{word-spacing:-0.956160px;}
.ws91{word-spacing:-0.927360px;}
.ws8f{word-spacing:-0.896400px;}
.ws1d{word-spacing:-0.864000px;}
.ws61{word-spacing:-0.861120px;}
.wsba{word-spacing:-0.794880px;}
.ws6f{word-spacing:-0.728640px;}
.ws1e{word-spacing:-0.720000px;}
.wsc1{word-spacing:-0.673920px;}
.ws14{word-spacing:-0.589680px;}
.ws4b{word-spacing:-0.529920px;}
.ws1c{word-spacing:-0.432000px;}
.ws56{word-spacing:-0.331200px;}
.wsae{word-spacing:-0.288000px;}
.wsb3{word-spacing:-0.252720px;}
.ws7c{word-spacing:-0.239040px;}
.ws19{word-spacing:-0.179280px;}
.ws16{word-spacing:-0.155520px;}
.ws35{word-spacing:-0.144000px;}
.ws57{word-spacing:-0.132480px;}
.ws15{word-spacing:-0.077760px;}
.ws88{word-spacing:-0.072000px;}
.ws89{word-spacing:-0.066240px;}
.ws31{word-spacing:-0.059760px;}
.wsf{word-spacing:0.000000px;}
.ws2f{word-spacing:0.059760px;}
.wsb0{word-spacing:0.066240px;}
.ws8a{word-spacing:0.072000px;}
.ws17{word-spacing:0.155520px;}
.ws12{word-spacing:0.162000px;}
.ws42{word-spacing:0.198720px;}
.ws2a{word-spacing:0.216000px;}
.ws9b{word-spacing:0.239040px;}
.ws13{word-spacing:0.252720px;}
.ws10{word-spacing:0.264960px;}
.ws11{word-spacing:0.270000px;}
.ws1b{word-spacing:0.288000px;}
.wsbb{word-spacing:0.331200px;}
.ws47{word-spacing:0.397440px;}
.ws18{word-spacing:0.537840px;}
.ws90{word-spacing:0.576000px;}
.ws97{word-spacing:0.596160px;}
.ws34{word-spacing:0.720000px;}
.ws32{word-spacing:0.776880px;}
.wsaf{word-spacing:0.794880px;}
.ws41{word-spacing:0.927360px;}
.ws33{word-spacing:1.008000px;}
.ws45{word-spacing:1.126080px;}
.wsb7{word-spacing:1.192320px;}
.ws2d{word-spacing:1.254960px;}
.wsb8{word-spacing:1.258560px;}
.ws2b{word-spacing:1.296000px;}
.ws55{word-spacing:1.324800px;}
.wsad{word-spacing:1.368000px;}
.ws2c{word-spacing:1.440000px;}
.wsb9{word-spacing:1.457280px;}
.ws2e{word-spacing:1.494000px;}
.ws46{word-spacing:1.656000px;}
.ws3c{word-spacing:1.728000px;}
.ws4d{word-spacing:1.854720px;}
.ws9a{word-spacing:2.016000px;}
.ws96{word-spacing:2.053440px;}
.wsb2{word-spacing:2.088000px;}
.ws21{word-spacing:2.160000px;}
.ws92{word-spacing:2.384640px;}
.ws27{word-spacing:2.448000px;}
.ws48{word-spacing:2.583360px;}
.ws9e{word-spacing:2.592000px;}
.ws36{word-spacing:2.736000px;}
.ws22{word-spacing:2.880000px;}
.ws93{word-spacing:2.914560px;}
.ws8b{word-spacing:2.928240px;}
.ws9f{word-spacing:2.952000px;}
.ws8c{word-spacing:3.107520px;}
.ws43{word-spacing:3.113280px;}
.ws23{word-spacing:3.168000px;}
.wsa4{word-spacing:3.312000px;}
.ws8d{word-spacing:3.406320px;}
.ws77{word-spacing:3.456000px;}
.ws29{word-spacing:3.600000px;}
.ws40{word-spacing:3.841920px;}
.ws3a{word-spacing:3.888000px;}
.ws58{word-spacing:4.320000px;}
.wsc0{word-spacing:4.392000px;}
.ws6e{word-spacing:4.504320px;}
.ws5a{word-spacing:4.608000px;}
.wsb6{word-spacing:4.636800px;}
.wsb5{word-spacing:4.703040px;}
.ws30{word-spacing:4.840560px;}
.ws95{word-spacing:4.901760px;}
.ws60{word-spacing:5.034240px;}
.ws73{word-spacing:5.040000px;}
.wsa2{word-spacing:5.112000px;}
.ws78{word-spacing:5.328000px;}
.ws5f{word-spacing:5.431680px;}
.wsa1{word-spacing:5.472000px;}
.ws9d{word-spacing:5.616000px;}
.ws5b{word-spacing:5.760000px;}
.ws4a{word-spacing:5.961600px;}
.ws99{word-spacing:6.048000px;}
.ws24{word-spacing:6.336000px;}
.ws54{word-spacing:6.359040px;}
.wsa3{word-spacing:6.408000px;}
.wsbd{word-spacing:6.425280px;}
.ws26{word-spacing:6.480000px;}
.ws53{word-spacing:6.491520px;}
.ws4c{word-spacing:6.690240px;}
.ws25{word-spacing:6.768000px;}
.wsbe{word-spacing:6.822720px;}
.ws94{word-spacing:7.087680px;}
.ws71{word-spacing:7.200000px;}
.ws70{word-spacing:7.220160px;}
.wsb1{word-spacing:7.272000px;}
.ws5e{word-spacing:7.418880px;}
.ws72{word-spacing:7.488000px;}
.ws39{word-spacing:7.920000px;}
.ws50{word-spacing:8.208000px;}
.ws75{word-spacing:8.640000px;}
.ws4e{word-spacing:8.876160px;}
.ws76{word-spacing:8.928000px;}
.ws4f{word-spacing:9.360000px;}
.ws86{word-spacing:11.520000px;}
.wsac{word-spacing:12.744000px;}
.wsa5{word-spacing:12.960000px;}
.wsaa{word-spacing:13.104000px;}
.wsa6{word-spacing:13.248000px;}
.wsa8{word-spacing:13.392000px;}
.wsa9{word-spacing:13.536000px;}
.wsa7{word-spacing:14.040000px;}
.wsab{word-spacing:14.400000px;}
.ws85{word-spacing:18.824400px;}
.ws7b{word-spacing:22.469760px;}
.wsc2{word-spacing:176.400000px;}
._a{margin-left:-8.640000px;}
._9{margin-left:-3.406320px;}
._6{margin-left:-2.320200px;}
._2{margin-left:-1.063800px;}
._3{width:1.374480px;}
._5{width:2.723400px;}
._4{width:3.894480px;}
._7{width:6.296400px;}
._10{width:7.842240px;}
._8{width:9.409320px;}
._c{width:21.593520px;}
._d{width:23.969520px;}
._e{width:30.953520px;}
._f{width:32.118480px;}
._1{width:94.338000px;}
._0{width:731.538000px;}
._b{width:846.000000px;}
.fc4{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y11d{bottom:165.408840px;}
.y31{bottom:165.414420px;}
.y252{bottom:168.119850px;}
.y53{bottom:170.640000px;}
.yb0{bottom:172.474560px;}
.y13c{bottom:182.688840px;}
.y11c{bottom:182.694420px;}
.y159{bottom:183.600000px;}
.y30{bottom:187.920000px;}
.y1ea{bottom:191.549520px;}
.y251{bottom:191.879850px;}
.yaf{bottom:192.628080px;}
.y269{bottom:195.120000px;}
.y52{bottom:195.660000px;}
.y234{bottom:197.820000px;}
.y282{bottom:198.900000px;}
.y2f{bottom:199.968840px;}
.y13b{bottom:199.974420px;}
.y11b{bottom:205.200000px;}
.y158{bottom:207.360000px;}
.y75{bottom:207.720000px;}
.ye4{bottom:212.760000px;}
.yae{bottom:212.781600px;}
.y103{bottom:213.300000px;}
.y1e9{bottom:214.766640px;}
.y250{bottom:215.639850px;}
.y51{bottom:216.360000px;}
.y2e{bottom:217.254420px;}
.y281{bottom:219.060000px;}
.y233{bottom:221.580000px;}
.y11a{bottom:222.480000px;}
.y268{bottom:224.280000px;}
.y157{bottom:231.300000px;}
.y74{bottom:231.480000px;}
.yad{bottom:232.935120px;}
.ye3{bottom:233.460000px;}
.y176{bottom:234.528120px;}
.y102{bottom:237.060000px;}
.y1e8{bottom:237.801600px;}
.y24f{bottom:239.399850px;}
.y2d{bottom:239.760000px;}
.y232{bottom:245.520000px;}
.y119{bottom:247.320000px;}
.y280{bottom:248.220000px;}
.y2c{bottom:251.802540px;}
.y175{bottom:251.813700px;}
.y267{bottom:253.440000px;}
.y2b4{bottom:254.700000px;}
.y156{bottom:255.060000px;}
.y73{bottom:255.240000px;}
.y1af{bottom:258.380640px;}
.y1e7{bottom:261.018720px;}
.yac{bottom:262.991520px;}
.y24e{bottom:263.339850px;}
.y118{bottom:268.020000px;}
.y27f{bottom:268.380000px;}
.y2b{bottom:268.908840px;}
.y231{bottom:269.280000px;}
.y101{bottom:269.820000px;}
.y174{bottom:274.140000px;}
.ye2{bottom:277.920000px;}
.y2b3{bottom:278.460000px;}
.y1ae{bottom:278.534160px;}
.y72{bottom:279.180000px;}
.yab{bottom:283.145040px;}
.y1e6{bottom:284.235840px;}
.y214{bottom:284.690880px;}
.y266{bottom:285.120000px;}
.y2a{bottom:286.194420px;}
.y50{bottom:286.380000px;}
.y24d{bottom:287.099850px;}
.y155{bottom:287.820000px;}
.y27e{bottom:288.540000px;}
.y192{bottom:290.520000px;}
.y230{bottom:293.040000px;}
.y100{bottom:293.580000px;}
.y1ad{bottom:298.687680px;}
.y173{bottom:298.980000px;}
.ye1{bottom:301.680000px;}
.y2b2{bottom:302.220000px;}
.yaa{bottom:303.298560px;}
.y213{bottom:304.844400px;}
.y1e5{bottom:307.270800px;}
.y29{bottom:308.700000px;}
.y265{bottom:308.880000px;}
.y71{bottom:309.369600px;}
.y4f{bottom:310.320000px;}
.y24c{bottom:310.859850px;}
.y154{bottom:311.580000px;}
.y191{bottom:314.280000px;}
.y22f{bottom:316.800000px;}
.yff{bottom:317.520000px;}
.y27d{bottom:317.700000px;}
.y172{bottom:319.680000px;}
.ya9{bottom:323.452080px;}
.y212{bottom:324.997920px;}
.ye0{bottom:325.440000px;}
.y2b1{bottom:326.160000px;}
.y1ac{bottom:327.849840px;}
.y70{bottom:329.523120px;}
.y13a{bottom:329.760000px;}
.y1e4{bottom:330.487920px;}
.y28{bottom:333.540000px;}
.y4e{bottom:334.080000px;}
.y153{bottom:335.520000px;}
.y27c{bottom:337.860000px;}
.y190{bottom:338.220000px;}
.y264{bottom:339.120000px;}
.y22e{bottom:340.740000px;}
.yfe{bottom:341.280000px;}
.ya8{bottom:343.440000px;}
.y24b{bottom:343.619850px;}
.y1ab{bottom:348.003360px;}
.ydf{bottom:349.200000px;}
.y6f{bottom:349.676640px;}
.y2b0{bottom:349.920000px;}
.y139{bottom:353.700000px;}
.y1e3{bottom:353.705040px;}
.y27{bottom:354.240000px;}
.y211{bottom:355.054320px;}
.y4d{bottom:357.840000px;}
.y152{bottom:359.280000px;}
.y18f{bottom:361.980000px;}
.y1cf{bottom:363.799440px;}
.yfd{bottom:365.040000px;}
.y27b{bottom:367.020000px;}
.y24a{bottom:367.559850px;}
.y1aa{bottom:368.156880px;}
.yde{bottom:373.140000px;}
.y22d{bottom:373.500000px;}
.y2af{bottom:373.680000px;}
.y210{bottom:375.207840px;}
.ya7{bottom:376.020000px;}
.y1e2{bottom:376.740000px;}
.y138{bottom:377.460000px;}
.y263{bottom:379.440000px;}
.y6e{bottom:379.733040px;}
.y26{bottom:382.140000px;}
.y151{bottom:383.040000px;}
.y18e{bottom:385.740000px;}
.y1ce{bottom:385.758000px;}
.y117{bottom:385.920000px;}
.y27a{bottom:387.180000px;}
.y4c{bottom:387.360000px;}
.yfc{bottom:388.800000px;}
.y249{bottom:391.319850px;}
.y2c6{bottom:394.200000px;}
.y171{bottom:395.280000px;}
.y20f{bottom:395.361360px;}
.ydd{bottom:396.900000px;}
.y1a9{bottom:397.136880px;}
.y22c{bottom:397.260000px;}
.y2ae{bottom:397.440000px;}
.y8f{bottom:398.160000px;}
.y6d{bottom:399.886560px;}
.ya6{bottom:399.960000px;}
.y137{bottom:401.220000px;}
.y25{bottom:406.080000px;}
.y150{bottom:406.800000px;}
.y1cd{bottom:407.534400px;}
.y1e1{bottom:408.600000px;}
.y18d{bottom:409.500000px;}
.y116{bottom:409.680000px;}
.yfb{bottom:412.740000px;}
.y248{bottom:415.079850px;}
.y20e{bottom:415.349280px;}
.y279{bottom:416.340000px;}
.y1a8{bottom:417.290400px;}
.y170{bottom:419.040000px;}
.ydc{bottom:420.660000px;}
.y22b{bottom:421.020000px;}
.y2ad{bottom:421.380000px;}
.ya5{bottom:423.720000px;}
.y136{bottom:424.980000px;}
.y1cc{bottom:429.310800px;}
.y262{bottom:429.660000px;}
.y24{bottom:429.840000px;}
.y6c{bottom:429.942960px;}
.y14f{bottom:430.740000px;}
.y1e0{bottom:432.360000px;}
.y115{bottom:433.440000px;}
.y20d{bottom:435.502800px;}
.yfa{bottom:436.500000px;}
.y1a7{bottom:437.443920px;}
.y247{bottom:438.839850px;}
.y2c5{bottom:439.020000px;}
.y18c{bottom:442.440000px;}
.y16f{bottom:442.800000px;}
.y8e{bottom:443.160000px;}
.ydb{bottom:444.420000px;}
.y22a{bottom:444.960000px;}
.y2ac{bottom:445.140000px;}
.ya4{bottom:447.480000px;}
.y278{bottom:448.020000px;}
.y261{bottom:449.640000px;}
.y6b{bottom:450.096480px;}
.y1cb{bottom:451.087200px;}
.y1d1{bottom:451.260000px;}
.y23{bottom:453.600000px;}
.y135{bottom:454.500000px;}
.y20c{bottom:455.656320px;}
.y114{bottom:457.200000px;}
.y1a6{bottom:457.597440px;}
.yf9{bottom:460.260000px;}
.y246{bottom:462.779850px;}
.y18b{bottom:466.200000px;}
.y16e{bottom:466.740000px;}
.y8d{bottom:466.920000px;}
.yda{bottom:468.360000px;}
.y229{bottom:468.720000px;}
.y2ab{bottom:468.900000px;}
.y260{bottom:469.800000px;}
.y6a{bottom:470.250000px;}
.ya3{bottom:471.240000px;}
.y277{bottom:471.780000px;}
.y1ca{bottom:472.863600px;}
.y134{bottom:475.200000px;}
.y4b{bottom:477.540000px;}
.y1df{bottom:477.567360px;}
.y14e{bottom:478.260000px;}
.y2c4{bottom:480.780000px;}
.y113{bottom:481.140000px;}
.yf8{bottom:484.020000px;}
.y20b{bottom:485.712720px;}
.y22{bottom:486.360000px;}
.y245{bottom:486.539850px;}
.y1a5{bottom:486.759600px;}
.y18a{bottom:489.960000px;}
.y8c{bottom:490.680000px;}
.yd9{bottom:492.120000px;}
.y228{bottom:492.480000px;}
.y2aa{bottom:492.660000px;}
.y1c9{bottom:494.640000px;}
.ya2{bottom:495.180000px;}
.y16d{bottom:499.500000px;}
.y25f{bottom:499.860000px;}
.y69{bottom:500.124240px;}
.y1de{bottom:500.784480px;}
.y4a{bottom:501.300000px;}
.y14d{bottom:502.020000px;}
.y276{bottom:504.540000px;}
.y112{bottom:504.900000px;}
.y20a{bottom:505.866240px;}
.y1a4{bottom:506.913120px;}
.yf7{bottom:507.780000px;}
.y189{bottom:513.720000px;}
.yd8{bottom:515.880000px;}
.ya1{bottom:518.940000px;}
.y244{bottom:519.299850px;}
.y21{bottom:519.300000px;}
.y25e{bottom:520.020000px;}
.y133{bottom:520.200000px;}
.y68{bottom:520.277760px;}
.y2c3{bottom:522.540000px;}
.y16c{bottom:523.260000px;}
.y8b{bottom:523.440000px;}
.y1dd{bottom:524.001600px;}
.y49{bottom:525.060000px;}
.y227{bottom:525.240000px;}
.y2a9{bottom:525.600000px;}
.y14c{bottom:525.780000px;}
.y209{bottom:526.019760px;}
.y275{bottom:528.300000px;}
.y111{bottom:528.660000px;}
.y1a3{bottom:536.075280px;}
.y188{bottom:537.660000px;}
.y1c8{bottom:538.380000px;}
.yd7{bottom:539.640000px;}
.y25d{bottom:540.180000px;}
.y67{bottom:540.431280px;}
.yf6{bottom:540.720000px;}
.ya0{bottom:542.700000px;}
.y243{bottom:543.059850px;}
.y132{bottom:543.960000px;}
.y208{bottom:546.173280px;}
.y16b{bottom:547.020000px;}
.y1dc{bottom:547.036560px;}
.y8a{bottom:547.380000px;}
.y48{bottom:549.000000px;}
.y226{bottom:549.180000px;}
.y2a8{bottom:549.360000px;}
.y14b{bottom:549.720000px;}
.y20{bottom:552.060000px;}
.y274{bottom:552.240000px;}
.y110{bottom:552.420000px;}
.y1a2{bottom:556.228800px;}
.y25c{bottom:560.340000px;}
.y66{bottom:560.584800px;}
.y2c2{bottom:561.240000px;}
.y187{bottom:561.420000px;}
.y1c7{bottom:562.140000px;}
.yd6{bottom:563.580000px;}
.yf5{bottom:564.480000px;}
.y9f{bottom:566.460000px;}
.y242{bottom:566.999850px;}
.y131{bottom:567.900000px;}
.y1db{bottom:570.253680px;}
.y16a{bottom:570.960000px;}
.y89{bottom:571.140000px;}
.y47{bottom:572.760000px;}
.y225{bottom:572.940000px;}
.y2a7{bottom:573.120000px;}
.y14a{bottom:573.480000px;}
.y273{bottom:576.000000px;}
.y207{bottom:576.047520px;}
.y10f{bottom:576.360000px;}
.y1a1{bottom:576.382320px;}
.y25b{bottom:580.500000px;}
.y1f{bottom:584.820000px;}
.y186{bottom:585.180000px;}
.y1c6{bottom:585.900000px;}
.yd5{bottom:587.340000px;}
.yf4{bottom:588.240000px;}
.y65{bottom:590.641200px;}
.y241{bottom:590.759850px;}
.y1da{bottom:593.470800px;}
.y169{bottom:594.720000px;}
.y88{bottom:594.900000px;}
.y206{bottom:596.201040px;}
.y224{bottom:596.700000px;}
.y2a6{bottom:596.880000px;}
.y149{bottom:597.240000px;}
.y130{bottom:598.165920px;}
.y9e{bottom:599.400000px;}
.y272{bottom:599.760000px;}
.y25a{bottom:600.660000px;}
.y2c1{bottom:603.000000px;}
.y1a0{bottom:605.362320px;}
.y46{bottom:605.520000px;}
.y1e{bottom:608.580000px;}
.y185{bottom:608.940000px;}
.y10e{bottom:609.120000px;}
.y1c5{bottom:609.660000px;}
.y64{bottom:610.794720px;}
.yd4{bottom:611.100000px;}
.yf3{bottom:612.000000px;}
.y240{bottom:614.519850px;}
.y205{bottom:616.354560px;}
.y1d9{bottom:616.505760px;}
.y168{bottom:618.480000px;}
.y87{bottom:618.660000px;}
.y2a5{bottom:620.640000px;}
.y9d{bottom:623.160000px;}
.y271{bottom:623.520000px;}
.y19f{bottom:625.515840px;}
.y12f{bottom:627.145920px;}
.y45{bottom:629.280000px;}
.y223{bottom:629.460000px;}
.y148{bottom:630.000000px;}
.y259{bottom:630.540000px;}
.y63{bottom:630.948240px;}
.y1d{bottom:632.520000px;}
.y184{bottom:632.700000px;}
.y10d{bottom:632.880000px;}
.y1c4{bottom:633.600000px;}
.yd3{bottom:634.860000px;}
.yf2{bottom:635.940000px;}
.y204{bottom:636.508080px;}
.y23f{bottom:638.279850px;}
.y1d8{bottom:639.722880px;}
.y86{bottom:642.420000px;}
.y2a4{bottom:644.580000px;}
.y2c0{bottom:644.940000px;}
.y19e{bottom:645.669360px;}
.y9c{bottom:646.920000px;}
.y12e{bottom:647.299440px;}
.y270{bottom:647.460000px;}
.y258{bottom:650.700000px;}
.y62{bottom:651.101760px;}
.y167{bottom:651.240000px;}
.y44{bottom:653.220000px;}
.y147{bottom:653.940000px;}
.y1c{bottom:656.280000px;}
.y10c{bottom:656.640000px;}
.y203{bottom:656.661600px;}
.y1c3{bottom:657.360000px;}
.yf1{bottom:659.700000px;}
.y1d7{bottom:662.940000px;}
.yd2{bottom:664.380000px;}
.y85{bottom:666.360000px;}
.y2a3{bottom:668.340000px;}
.y2bf{bottom:668.700000px;}
.y9b{bottom:670.680000px;}
.y257{bottom:670.860000px;}
.y23e{bottom:671.219850px;}
.y26f{bottom:671.220000px;}
.y19d{bottom:674.831520px;}
.y166{bottom:675.180000px;}
.y12d{bottom:676.461600px;}
.y202{bottom:676.815120px;}
.y43{bottom:676.980000px;}
.y222{bottom:677.160000px;}
.y146{bottom:677.700000px;}
.y1b{bottom:680.040000px;}
.y10b{bottom:680.400000px;}
.y61{bottom:680.976000px;}
.y1c2{bottom:681.120000px;}
.yf0{bottom:683.460000px;}
.y84{bottom:690.120000px;}
.y256{bottom:691.020000px;}
.y2a2{bottom:692.100000px;}
.y9a{bottom:694.620000px;}
.y23d{bottom:694.979850px;}
.y19c{bottom:694.985040px;}
.y201{bottom:696.968640px;}
.y165{bottom:698.940000px;}
.y42{bottom:700.740000px;}
.y221{bottom:700.920000px;}
.y60{bottom:701.129520px;}
.y145{bottom:701.460000px;}
.y1a{bottom:703.800000px;}
.y10a{bottom:704.340000px;}
.y1c1{bottom:704.880000px;}
.y12c{bottom:705.623760px;}
.yef{bottom:707.220000px;}
.y2be{bottom:707.400000px;}
.yd1{bottom:709.380000px;}
.y183{bottom:709.920000px;}
.y255{bottom:711.180000px;}
.y26e{bottom:712.800000px;}
.y2a1{bottom:715.860000px;}
.y99{bottom:718.380000px;}
.y23c{bottom:718.739850px;}
.y5f{bottom:721.283040px;}
.y83{bottom:722.880000px;}
.y19b{bottom:724.147200px;}
.y144{bottom:725.220000px;}
.y12b{bottom:725.777280px;}
.y200{bottom:727.025040px;}
.y19{bottom:727.740000px;}
.y109{bottom:728.100000px;}
.y164{bottom:728.460000px;}
.y1d0{bottom:731.160000px;}
.y254{bottom:731.340000px;}
.yd0{bottom:733.140000px;}
.y41{bottom:733.500000px;}
.y220{bottom:733.680000px;}
.y1c0{bottom:734.400000px;}
.y2a0{bottom:739.800000px;}
.yee{bottom:740.160000px;}
.y5e{bottom:741.436560px;}
.y1d6{bottom:742.140000px;}
.y23b{bottom:742.499850px;}
.y19a{bottom:744.300720px;}
.y82{bottom:746.640000px;}
.y1ff{bottom:747.178560px;}
.y143{bottom:749.160000px;}
.y26d{bottom:750.600000px;}
.y98{bottom:751.140000px;}
.y18{bottom:751.500000px;}
.y108{bottom:751.860000px;}
.y182{bottom:754.920000px;}
.y12a{bottom:754.939440px;}
.ycf{bottom:757.080000px;}
.y40{bottom:757.260000px;}
.y21f{bottom:757.440000px;}
.y29f{bottom:763.560000px;}
.yed{bottom:763.920000px;}
.y23a{bottom:766.259850px;}
.y2bd{bottom:766.800000px;}
.y1fe{bottom:767.166480px;}
.y81{bottom:770.580000px;}
.y5d{bottom:771.492960px;}
.y142{bottom:772.920000px;}
.y199{bottom:773.462880px;}
.y97{bottom:774.900000px;}
.y17{bottom:775.260000px;}
.y107{bottom:775.620000px;}
.y181{bottom:778.680000px;}
.y1bf{bottom:779.400000px;}
.y3f{bottom:781.200000px;}
.y21e{bottom:781.380000px;}
.y129{bottom:784.101600px;}
.y1d5{bottom:786.960000px;}
.y1fd{bottom:787.320000px;}
.yce{bottom:787.386240px;}
.yec{bottom:787.680000px;}
.y239{bottom:790.199850px;}
.y5c{bottom:791.646480px;}
.y198{bottom:793.616400px;}
.y80{bottom:794.340000px;}
.y163{bottom:794.552400px;}
.y141{bottom:796.680000px;}
.y96{bottom:798.660000px;}
.y16{bottom:799.020000px;}
.y106{bottom:799.560000px;}
.y180{bottom:802.440000px;}
.y1be{bottom:803.160000px;}
.y128{bottom:804.255120px;}
.y3e{bottom:804.960000px;}
.y21d{bottom:805.140000px;}
.y2bc{bottom:805.500000px;}
.ycd{bottom:807.539760px;}
.y1d4{bottom:810.720000px;}
.y29e{bottom:811.080000px;}
.yeb{bottom:811.440000px;}
.y5b{bottom:811.800000px;}
.y290{bottom:813.515700px;}
.y238{bottom:813.959850px;}
.y162{bottom:817.769520px;}
.y7f{bottom:818.100000px;}
.y1fc{bottom:819.900000px;}
.y140{bottom:820.440000px;}
.y95{bottom:822.600000px;}
.y197{bottom:822.778560px;}
.y105{bottom:823.320000px;}
.y17f{bottom:826.380000px;}
.y287{bottom:826.602300px;}
.y1bd{bottom:827.100000px;}
.ycc{bottom:827.527680px;}
.y3d{bottom:828.720000px;}
.y21c{bottom:828.900000px;}
.y15{bottom:831.780000px;}
.y28f{bottom:832.055700px;}
.y127{bottom:833.417280px;}
.y29d{bottom:835.020000px;}
.yea{bottom:835.380000px;}
.y237{bottom:837.719850px;}
.y161{bottom:840.804480px;}
.y196{bottom:842.932080px;}
.y5a{bottom:844.380000px;}
.y286{bottom:845.142300px;}
.y94{bottom:846.360000px;}
.y2bb{bottom:847.260000px;}
.y7e{bottom:847.620000px;}
.ycb{bottom:847.681200px;}
.y17e{bottom:850.140000px;}
.y28e{bottom:850.775700px;}
.y1bc{bottom:850.860000px;}
.y1d3{bottom:851.760000px;}
.y21b{bottom:852.660000px;}
.y1fb{bottom:852.840000px;}
.y126{bottom:853.570800px;}
.y29c{bottom:858.780000px;}
.ye9{bottom:859.140000px;}
.y236{bottom:861.479850px;}
.y3c{bottom:861.480000px;}
.y195{bottom:862.920000px;}
.y160{bottom:864.021600px;}
.y14{bottom:864.720000px;}
.yca{bottom:867.834720px;}
.y59{bottom:868.140000px;}
.y28d{bottom:869.315700px;}
.y93{bottom:870.120000px;}
.y2ba{bottom:871.020000px;}
.y285{bottom:871.062300px;}
.y17d{bottom:873.900000px;}
.y1bb{bottom:874.620000px;}
.y1fa{bottom:876.600000px;}
.y29b{bottom:882.540000px;}
.y125{bottom:882.550800px;}
.ye8{bottom:882.900000px;}
.y3b{bottom:885.420000px;}
.y15f{bottom:887.238720px;}
.y28c{bottom:888.035700px;}
.y13{bottom:888.480000px;}
.y284{bottom:889.782300px;}
.y1d2{bottom:889.920000px;}
.y235{bottom:891.720000px;}
.y58{bottom:891.900000px;}
.y7d{bottom:892.620000px;}
.y92{bottom:893.880000px;}
.y194{bottom:894.780000px;}
.y2b9{bottom:894.960000px;}
.y17c{bottom:897.660000px;}
.yc9{bottom:897.891120px;}
.y1ba{bottom:898.380000px;}
.y1f9{bottom:900.360000px;}
.y29a{bottom:906.300000px;}
.y28b{bottom:906.575700px;}
.ye7{bottom:906.660000px;}
.y283{bottom:908.322300px;}
.y3a{bottom:909.180000px;}
.y21a{bottom:909.360000px;}
.y15e{bottom:910.455840px;}
.y124{bottom:911.712960px;}
.y57{bottom:915.660000px;}
.y7c{bottom:916.380000px;}
.yc8{bottom:918.044640px;}
.y193{bottom:918.540000px;}
.y12{bottom:921.240000px;}
.y17b{bottom:921.600000px;}
.y1b9{bottom:922.320000px;}
.y1f8{bottom:924.120000px;}
.y253{bottom:924.660000px;}
.y28a{bottom:925.295700px;}
.y299{bottom:930.240000px;}
.y91{bottom:931.860000px;}
.y123{bottom:931.866480px;}
.y39{bottom:932.940000px;}
.y219{bottom:933.120000px;}
.y15d{bottom:933.490800px;}
.y2b8{bottom:933.660000px;}
.y1ef{bottom:938.373900px;}
.y56{bottom:939.600000px;}
.y7b{bottom:940.320000px;}
.y289{bottom:943.835700px;}
.y11{bottom:943.913880px;}
.y1b8{bottom:946.080000px;}
.y1f7{bottom:948.060000px;}
.yc7{bottom:948.101040px;}
.y13f{bottom:948.600000px;}
.y17a{bottom:954.360000px;}
.y15c{bottom:956.707920px;}
.y218{bottom:956.880000px;}
.y1ee{bottom:956.913900px;}
.y122{bottom:961.028640px;}
.y298{bottom:963.000000px;}
.y38{bottom:963.180000px;}
.y55{bottom:963.360000px;}
.y10{bottom:964.794600px;}
.yc6{bottom:968.254560px;}
.y288{bottom:969.755700px;}
.y1b7{bottom:969.840000px;}
.y90{bottom:970.020000px;}
.y1f6{bottom:971.820000px;}
.y13e{bottom:972.360000px;}
.y2b7{bottom:975.060000px;}
.y179{bottom:978.120000px;}
.y15b{bottom:979.925040px;}
.y217{bottom:980.820000px;}
.y121{bottom:981.182160px;}
.y7a{bottom:984.252240px;}
.ybd{bottom:984.605520px;}
.yf{bottom:985.860000px;}
.y297{bottom:986.760000px;}
.y54{bottom:987.120000px;}
.yc5{bottom:988.242480px;}
.y1f5{bottom:995.580000px;}
.y2b6{bottom:995.760000px;}
.y13d{bottom:996.120000px;}
.y1b6{bottom:1000.086480px;}
.yb5{bottom:1001.336070px;}
.ybc{bottom:1001.712000px;}
.y178{bottom:1001.880000px;}
.y15a{bottom:1002.960000px;}
.y216{bottom:1004.580000px;}
.y79{bottom:1006.210800px;}
.yc4{bottom:1008.396000px;}
.y120{bottom:1010.344320px;}
.y296{bottom:1010.520000px;}
.ye{bottom:1010.703600px;}
.y37{bottom:1010.880000px;}
.y2b5{bottom:1016.460000px;}
.yb4{bottom:1018.442550px;}
.y104{bottom:1019.880000px;}
.y1b5{bottom:1020.240000px;}
.ybb{bottom:1021.517760px;}
.y1ed{bottom:1023.668250px;}
.y1f4{bottom:1025.100000px;}
.y78{bottom:1027.987200px;}
.y215{bottom:1028.340000px;}
.yc3{bottom:1028.549520px;}
.yd{bottom:1034.459280px;}
.y295{bottom:1034.460000px;}
.ye6{bottom:1034.640000px;}
.yb3{bottom:1035.366870px;}
.yba{bottom:1038.624240px;}
.y26c{bottom:1039.500000px;}
.y11f{bottom:1039.506480px;}
.y1ec{bottom:1042.388250px;}
.y36{bottom:1043.640000px;}
.y77{bottom:1049.763600px;}
.y1b4{bottom:1050.497280px;}
.yb2{bottom:1052.473350px;}
.yc{bottom:1058.040000px;}
.y294{bottom:1058.220000px;}
.ye5{bottom:1058.580000px;}
.yc2{bottom:1058.605920px;}
.yb9{bottom:1058.612160px;}
.y11e{bottom:1059.660000px;}
.y1eb{bottom:1060.928250px;}
.y35{bottom:1067.580000px;}
.y1f3{bottom:1070.470800px;}
.y1b3{bottom:1070.650800px;}
.y76{bottom:1071.540000px;}
.yb1{bottom:1076.236950px;}
.yb8{bottom:1078.417920px;}
.yc1{bottom:1078.759440px;}
.y26b{bottom:1081.800000px;}
.y293{bottom:1081.980000px;}
.y177{bottom:1082.340000px;}
.y1b2{bottom:1090.804320px;}
.y34{bottom:1091.340000px;}
.y1f2{bottom:1093.687920px;}
.yb7{bottom:1095.524400px;}
.yc0{bottom:1098.912960px;}
.y292{bottom:1105.740000px;}
.yb{bottom:1108.973160px;}
.y26a{bottom:1110.960000px;}
.y33{bottom:1115.100000px;}
.y1f1{bottom:1116.905040px;}
.ybf{bottom:1119.066480px;}
.yb6{bottom:1119.288000px;}
.y1b1{bottom:1119.966480px;}
.ya{bottom:1134.540000px;}
.y291{bottom:1135.980000px;}
.y32{bottom:1138.860000px;}
.ybe{bottom:1139.220000px;}
.y1f0{bottom:1139.940000px;}
.y1b0{bottom:1140.120000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.144500px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h6{height:32.758500px;}
.hd{height:34.114922px;}
.h4{height:38.759766px;}
.h15{height:40.909922px;}
.h16{height:45.345937px;}
.h3{height:47.527312px;}
.h12{height:47.545312px;}
.hc{height:49.289062px;}
.h10{height:52.417969px;}
.he{height:52.435898px;}
.h9{height:52.697813px;}
.ha{height:52.719413px;}
.hb{height:52.722292px;}
.h13{height:58.121719px;}
.hf{height:61.329023px;}
.h14{height:63.126821px;}
.h17{height:63.149861px;}
.h5{height:63.175781px;}
.h8{height:63.635625px;}
.h7{height:68.938594px;}
.h11{height:69.687773px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:115.020000px;}
.x3{left:127.624500px;}
.x19{left:132.660000px;}
.x1{left:152.640000px;}
.x11{left:154.440000px;}
.x1a{left:159.470640px;}
.x20{left:162.900000px;}
.x23{left:168.120000px;}
.x1c{left:170.100000px;}
.x6{left:173.340000px;}
.x7{left:180.732060px;}
.x21{left:189.727200px;}
.x1d{left:191.512080px;}
.x1e{left:207.720000px;}
.x14{left:218.160000px;}
.x1b{left:225.360000px;}
.x12{left:233.820000px;}
.x22{left:253.776150px;}
.x26{left:290.638200px;}
.x4{left:297.180000px;}
.x8{left:307.260000px;}
.x15{left:314.099880px;}
.x10{left:343.620000px;}
.x9{left:459.358560px;}
.x5{left:466.740000px;}
.xe{left:476.100000px;}
.x16{left:481.238550px;}
.xa{left:484.552800px;}
.x17{left:488.077830px;}
.x18{left:494.734950px;}
.x2{left:529.560000px;}
.x27{left:538.903800px;}
.xb{left:560.160000px;}
.xf{left:561.240000px;}
.xc{left:583.197480px;}
.xd{left:657.718200px;}
.x13{left:681.840000px;}
.x1f{left:768.240000px;}
.x25{left:818.460000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:24.320000pt;}
.ls53{letter-spacing:-1.344000pt;}
.ls59{letter-spacing:-1.059840pt;}
.ls3e{letter-spacing:-0.706560pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.412160pt;}
.ls3b{letter-spacing:-0.353280pt;}
.ls1f{letter-spacing:-0.318720pt;}
.ls23{letter-spacing:-0.299520pt;}
.ls1b{letter-spacing:-0.265600pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.235520pt;}
.ls14{letter-spacing:-0.224640pt;}
.ls19{letter-spacing:-0.212480pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls3d{letter-spacing:-0.176640pt;}
.ls1a{letter-spacing:-0.106240pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.074880pt;}
.ls17{letter-spacing:-0.069120pt;}
.ls49{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.058880pt;}
.ls18{letter-spacing:-0.053120pt;}
.lse{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.048384pt;}
.ls31{letter-spacing:0.053120pt;}
.ls3c{letter-spacing:0.058880pt;}
.ls43{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.069120pt;}
.ls6{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117760pt;}
.ls8{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133120pt;}
.ls42{letter-spacing:0.134400pt;}
.ls5{letter-spacing:0.138240pt;}
.lsb{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.175296pt;}
.ls5a{letter-spacing:0.176640pt;}
.ls5e{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.212480pt;}
.ls2d{letter-spacing:0.235520pt;}
.ls54{letter-spacing:0.249600pt;}
.ls24{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.294400pt;}
.ls3{letter-spacing:0.299520pt;}
.ls1e{letter-spacing:0.318720pt;}
.ls22{letter-spacing:0.320000pt;}
.ls3f{letter-spacing:0.343040pt;}
.ls5c{letter-spacing:0.448000pt;}
.ls5d{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:0.637440pt;}
.ls20{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.796800pt;}
.ls44{letter-spacing:1.280000pt;}
.ls40{letter-spacing:1.299200pt;}
.ls9{letter-spacing:1.434240pt;}
.ls7{letter-spacing:1.920000pt;}
.ls21{letter-spacing:2.560000pt;}
.ls2c{letter-spacing:3.061760pt;}
.ls27{letter-spacing:3.200000pt;}
.ls2b{letter-spacing:3.709440pt;}
.ls30{letter-spacing:3.840000pt;}
.ls2f{letter-spacing:4.480000pt;}
.ls48{letter-spacing:4.621440pt;}
.ls41{letter-spacing:5.120000pt;}
.ls56{letter-spacing:5.760000pt;}
.ls55{letter-spacing:6.400000pt;}
.ls2e{letter-spacing:7.680000pt;}
.ls57{letter-spacing:13.071360pt;}
.ls4b{letter-spacing:14.366720pt;}
.ls4d{letter-spacing:15.603200pt;}
.ls4a{letter-spacing:16.898560pt;}
.ls4f{letter-spacing:17.546240pt;}
.ls51{letter-spacing:18.193920pt;}
.ls52{letter-spacing:18.560000pt;}
.ls5b{letter-spacing:19.968000pt;}
.ls4c{letter-spacing:20.136960pt;}
.ls58{letter-spacing:24.611840pt;}
.ls4e{letter-spacing:27.143680pt;}
.ls46{letter-spacing:30.970880pt;}
.ls50{letter-spacing:31.618560pt;}
.ls45{letter-spacing:32.266240pt;}
.ls47{letter-spacing:32.913920pt;}
.ls33{letter-spacing:33.561600pt;}
.ls35{letter-spacing:34.856960pt;}
.ls32{letter-spacing:36.093440pt;}
.ls37{letter-spacing:36.741120pt;}
.ls3a{letter-spacing:37.388800pt;}
.ls34{letter-spacing:39.331840pt;}
.ls36{letter-spacing:46.338560pt;}
.ls39{letter-spacing:50.165760pt;}
.ls38{letter-spacing:50.813440pt;}
.ls25{letter-spacing:51.461120pt;}
.ws3d{word-spacing:-58.880000pt;}
.ws3{word-spacing:-25.608960pt;}
.ws4{word-spacing:-25.534080pt;}
.ws5{word-spacing:-23.708160pt;}
.wsbf{word-spacing:-20.517120pt;}
.ws7{word-spacing:-18.113920pt;}
.ws9{word-spacing:-18.060800pt;}
.ws87{word-spacing:-18.048000pt;}
.ws8{word-spacing:-17.954560pt;}
.wsa{word-spacing:-17.901440pt;}
.ws68{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.000000pt;}
.wsb4{word-spacing:-15.936000pt;}
.wsa0{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws51{word-spacing:-14.837760pt;}
.ws52{word-spacing:-14.307840pt;}
.ws98{word-spacing:-13.598720pt;}
.ws9c{word-spacing:-13.542400pt;}
.ws3e{word-spacing:-13.424640pt;}
.ws69{word-spacing:-13.386240pt;}
.ws7f{word-spacing:-13.365760pt;}
.ws79{word-spacing:-13.333120pt;}
.ws81{word-spacing:-13.306880pt;}
.ws7d{word-spacing:-13.248000pt;}
.ws6b{word-spacing:-13.226880pt;}
.ws80{word-spacing:-13.130240pt;}
.ws67{word-spacing:-13.071360pt;}
.ws6a{word-spacing:-12.961280pt;}
.ws7e{word-spacing:-12.953600pt;}
.ws82{word-spacing:-12.600320pt;}
.ws1{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.819520pt;}
.ws83{word-spacing:-11.063040pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.wse{word-spacing:-8.640000pt;}
.ws3f{word-spacing:-3.840000pt;}
.ws8e{word-spacing:-3.584000pt;}
.ws7a{word-spacing:-3.240320pt;}
.ws3b{word-spacing:-3.200000pt;}
.ws5d{word-spacing:-3.002880pt;}
.ws84{word-spacing:-2.944000pt;}
.ws63{word-spacing:-2.649600pt;}
.ws1f{word-spacing:-2.560000pt;}
.wsbc{word-spacing:-2.355200pt;}
.ws20{word-spacing:-2.304000pt;}
.ws49{word-spacing:-2.178560pt;}
.ws64{word-spacing:-2.060800pt;}
.ws65{word-spacing:-1.943040pt;}
.ws37{word-spacing:-1.920000pt;}
.ws6d{word-spacing:-1.884160pt;}
.ws6c{word-spacing:-1.707520pt;}
.ws74{word-spacing:-1.664000pt;}
.ws62{word-spacing:-1.413120pt;}
.ws59{word-spacing:-1.408000pt;}
.ws66{word-spacing:-1.295360pt;}
.ws38{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.059840pt;}
.ws28{word-spacing:-1.024000pt;}
.ws5c{word-spacing:-0.883200pt;}
.ws1a{word-spacing:-0.849920pt;}
.ws91{word-spacing:-0.824320pt;}
.ws8f{word-spacing:-0.796800pt;}
.ws1d{word-spacing:-0.768000pt;}
.ws61{word-spacing:-0.765440pt;}
.wsba{word-spacing:-0.706560pt;}
.ws6f{word-spacing:-0.647680pt;}
.ws1e{word-spacing:-0.640000pt;}
.wsc1{word-spacing:-0.599040pt;}
.ws14{word-spacing:-0.524160pt;}
.ws4b{word-spacing:-0.471040pt;}
.ws1c{word-spacing:-0.384000pt;}
.ws56{word-spacing:-0.294400pt;}
.wsae{word-spacing:-0.256000pt;}
.wsb3{word-spacing:-0.224640pt;}
.ws7c{word-spacing:-0.212480pt;}
.ws19{word-spacing:-0.159360pt;}
.ws16{word-spacing:-0.138240pt;}
.ws35{word-spacing:-0.128000pt;}
.ws57{word-spacing:-0.117760pt;}
.ws15{word-spacing:-0.069120pt;}
.ws88{word-spacing:-0.064000pt;}
.ws89{word-spacing:-0.058880pt;}
.ws31{word-spacing:-0.053120pt;}
.wsf{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.053120pt;}
.wsb0{word-spacing:0.058880pt;}
.ws8a{word-spacing:0.064000pt;}
.ws17{word-spacing:0.138240pt;}
.ws12{word-spacing:0.144000pt;}
.ws42{word-spacing:0.176640pt;}
.ws2a{word-spacing:0.192000pt;}
.ws9b{word-spacing:0.212480pt;}
.ws13{word-spacing:0.224640pt;}
.ws10{word-spacing:0.235520pt;}
.ws11{word-spacing:0.240000pt;}
.ws1b{word-spacing:0.256000pt;}
.wsbb{word-spacing:0.294400pt;}
.ws47{word-spacing:0.353280pt;}
.ws18{word-spacing:0.478080pt;}
.ws90{word-spacing:0.512000pt;}
.ws97{word-spacing:0.529920pt;}
.ws34{word-spacing:0.640000pt;}
.ws32{word-spacing:0.690560pt;}
.wsaf{word-spacing:0.706560pt;}
.ws41{word-spacing:0.824320pt;}
.ws33{word-spacing:0.896000pt;}
.ws45{word-spacing:1.000960pt;}
.wsb7{word-spacing:1.059840pt;}
.ws2d{word-spacing:1.115520pt;}
.wsb8{word-spacing:1.118720pt;}
.ws2b{word-spacing:1.152000pt;}
.ws55{word-spacing:1.177600pt;}
.wsad{word-spacing:1.216000pt;}
.ws2c{word-spacing:1.280000pt;}
.wsb9{word-spacing:1.295360pt;}
.ws2e{word-spacing:1.328000pt;}
.ws46{word-spacing:1.472000pt;}
.ws3c{word-spacing:1.536000pt;}
.ws4d{word-spacing:1.648640pt;}
.ws9a{word-spacing:1.792000pt;}
.ws96{word-spacing:1.825280pt;}
.wsb2{word-spacing:1.856000pt;}
.ws21{word-spacing:1.920000pt;}
.ws92{word-spacing:2.119680pt;}
.ws27{word-spacing:2.176000pt;}
.ws48{word-spacing:2.296320pt;}
.ws9e{word-spacing:2.304000pt;}
.ws36{word-spacing:2.432000pt;}
.ws22{word-spacing:2.560000pt;}
.ws93{word-spacing:2.590720pt;}
.ws8b{word-spacing:2.602880pt;}
.ws9f{word-spacing:2.624000pt;}
.ws8c{word-spacing:2.762240pt;}
.ws43{word-spacing:2.767360pt;}
.ws23{word-spacing:2.816000pt;}
.wsa4{word-spacing:2.944000pt;}
.ws8d{word-spacing:3.027840pt;}
.ws77{word-spacing:3.072000pt;}
.ws29{word-spacing:3.200000pt;}
.ws40{word-spacing:3.415040pt;}
.ws3a{word-spacing:3.456000pt;}
.ws58{word-spacing:3.840000pt;}
.wsc0{word-spacing:3.904000pt;}
.ws6e{word-spacing:4.003840pt;}
.ws5a{word-spacing:4.096000pt;}
.wsb6{word-spacing:4.121600pt;}
.wsb5{word-spacing:4.180480pt;}
.ws30{word-spacing:4.302720pt;}
.ws95{word-spacing:4.357120pt;}
.ws60{word-spacing:4.474880pt;}
.ws73{word-spacing:4.480000pt;}
.wsa2{word-spacing:4.544000pt;}
.ws78{word-spacing:4.736000pt;}
.ws5f{word-spacing:4.828160pt;}
.wsa1{word-spacing:4.864000pt;}
.ws9d{word-spacing:4.992000pt;}
.ws5b{word-spacing:5.120000pt;}
.ws4a{word-spacing:5.299200pt;}
.ws99{word-spacing:5.376000pt;}
.ws24{word-spacing:5.632000pt;}
.ws54{word-spacing:5.652480pt;}
.wsa3{word-spacing:5.696000pt;}
.wsbd{word-spacing:5.711360pt;}
.ws26{word-spacing:5.760000pt;}
.ws53{word-spacing:5.770240pt;}
.ws4c{word-spacing:5.946880pt;}
.ws25{word-spacing:6.016000pt;}
.wsbe{word-spacing:6.064640pt;}
.ws94{word-spacing:6.300160pt;}
.ws71{word-spacing:6.400000pt;}
.ws70{word-spacing:6.417920pt;}
.wsb1{word-spacing:6.464000pt;}
.ws5e{word-spacing:6.594560pt;}
.ws72{word-spacing:6.656000pt;}
.ws39{word-spacing:7.040000pt;}
.ws50{word-spacing:7.296000pt;}
.ws75{word-spacing:7.680000pt;}
.ws4e{word-spacing:7.889920pt;}
.ws76{word-spacing:7.936000pt;}
.ws4f{word-spacing:8.320000pt;}
.ws86{word-spacing:10.240000pt;}
.wsac{word-spacing:11.328000pt;}
.wsa5{word-spacing:11.520000pt;}
.wsaa{word-spacing:11.648000pt;}
.wsa6{word-spacing:11.776000pt;}
.wsa8{word-spacing:11.904000pt;}
.wsa9{word-spacing:12.032000pt;}
.wsa7{word-spacing:12.480000pt;}
.wsab{word-spacing:12.800000pt;}
.ws85{word-spacing:16.732800pt;}
.ws7b{word-spacing:19.973120pt;}
.wsc2{word-spacing:156.800000pt;}
._a{margin-left:-7.680000pt;}
._9{margin-left:-3.027840pt;}
._6{margin-left:-2.062400pt;}
._2{margin-left:-0.945600pt;}
._3{width:1.221760pt;}
._5{width:2.420800pt;}
._4{width:3.461760pt;}
._7{width:5.596800pt;}
._10{width:6.970880pt;}
._8{width:8.363840pt;}
._c{width:19.194240pt;}
._d{width:21.306240pt;}
._e{width:27.514240pt;}
._f{width:28.549760pt;}
._1{width:83.856000pt;}
._0{width:650.256000pt;}
._b{width:752.000000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y11d{bottom:147.030080pt;}
.y31{bottom:147.035040pt;}
.y252{bottom:149.439867pt;}
.y53{bottom:151.680000pt;}
.yb0{bottom:153.310720pt;}
.y13c{bottom:162.390080pt;}
.y11c{bottom:162.395040pt;}
.y159{bottom:163.200000pt;}
.y30{bottom:167.040000pt;}
.y1ea{bottom:170.266240pt;}
.y251{bottom:170.559867pt;}
.yaf{bottom:171.224960pt;}
.y269{bottom:173.440000pt;}
.y52{bottom:173.920000pt;}
.y234{bottom:175.840000pt;}
.y282{bottom:176.800000pt;}
.y2f{bottom:177.750080pt;}
.y13b{bottom:177.755040pt;}
.y11b{bottom:182.400000pt;}
.y158{bottom:184.320000pt;}
.y75{bottom:184.640000pt;}
.ye4{bottom:189.120000pt;}
.yae{bottom:189.139200pt;}
.y103{bottom:189.600000pt;}
.y1e9{bottom:190.903680pt;}
.y250{bottom:191.679867pt;}
.y51{bottom:192.320000pt;}
.y2e{bottom:193.115040pt;}
.y281{bottom:194.720000pt;}
.y233{bottom:196.960000pt;}
.y11a{bottom:197.760000pt;}
.y268{bottom:199.360000pt;}
.y157{bottom:205.600000pt;}
.y74{bottom:205.760000pt;}
.yad{bottom:207.053440pt;}
.ye3{bottom:207.520000pt;}
.y176{bottom:208.469440pt;}
.y102{bottom:210.720000pt;}
.y1e8{bottom:211.379200pt;}
.y24f{bottom:212.799867pt;}
.y2d{bottom:213.120000pt;}
.y232{bottom:218.240000pt;}
.y119{bottom:219.840000pt;}
.y280{bottom:220.640000pt;}
.y2c{bottom:223.824480pt;}
.y175{bottom:223.834400pt;}
.y267{bottom:225.280000pt;}
.y2b4{bottom:226.400000pt;}
.y156{bottom:226.720000pt;}
.y73{bottom:226.880000pt;}
.y1af{bottom:229.671680pt;}
.y1e7{bottom:232.016640pt;}
.yac{bottom:233.770240pt;}
.y24e{bottom:234.079867pt;}
.y118{bottom:238.240000pt;}
.y27f{bottom:238.560000pt;}
.y2b{bottom:239.030080pt;}
.y231{bottom:239.360000pt;}
.y101{bottom:239.840000pt;}
.y174{bottom:243.680000pt;}
.ye2{bottom:247.040000pt;}
.y2b3{bottom:247.520000pt;}
.y1ae{bottom:247.585920pt;}
.y72{bottom:248.160000pt;}
.yab{bottom:251.684480pt;}
.y1e6{bottom:252.654080pt;}
.y214{bottom:253.058560pt;}
.y266{bottom:253.440000pt;}
.y2a{bottom:254.395040pt;}
.y50{bottom:254.560000pt;}
.y24d{bottom:255.199867pt;}
.y155{bottom:255.840000pt;}
.y27e{bottom:256.480000pt;}
.y192{bottom:258.240000pt;}
.y230{bottom:260.480000pt;}
.y100{bottom:260.960000pt;}
.y1ad{bottom:265.500160pt;}
.y173{bottom:265.760000pt;}
.ye1{bottom:268.160000pt;}
.y2b2{bottom:268.640000pt;}
.yaa{bottom:269.598720pt;}
.y213{bottom:270.972800pt;}
.y1e5{bottom:273.129600pt;}
.y29{bottom:274.400000pt;}
.y265{bottom:274.560000pt;}
.y71{bottom:274.995200pt;}
.y4f{bottom:275.840000pt;}
.y24c{bottom:276.319867pt;}
.y154{bottom:276.960000pt;}
.y191{bottom:279.360000pt;}
.y22f{bottom:281.600000pt;}
.yff{bottom:282.240000pt;}
.y27d{bottom:282.400000pt;}
.y172{bottom:284.160000pt;}
.ya9{bottom:287.512960pt;}
.y212{bottom:288.887040pt;}
.ye0{bottom:289.280000pt;}
.y2b1{bottom:289.920000pt;}
.y1ac{bottom:291.422080pt;}
.y70{bottom:292.909440pt;}
.y13a{bottom:293.120000pt;}
.y1e4{bottom:293.767040pt;}
.y28{bottom:296.480000pt;}
.y4e{bottom:296.960000pt;}
.y153{bottom:298.240000pt;}
.y27c{bottom:300.320000pt;}
.y190{bottom:300.640000pt;}
.y264{bottom:301.440000pt;}
.y22e{bottom:302.880000pt;}
.yfe{bottom:303.360000pt;}
.ya8{bottom:305.280000pt;}
.y24b{bottom:305.439867pt;}
.y1ab{bottom:309.336320pt;}
.ydf{bottom:310.400000pt;}
.y6f{bottom:310.823680pt;}
.y2b0{bottom:311.040000pt;}
.y139{bottom:314.400000pt;}
.y1e3{bottom:314.404480pt;}
.y27{bottom:314.880000pt;}
.y211{bottom:315.603840pt;}
.y4d{bottom:318.080000pt;}
.y152{bottom:319.360000pt;}
.y18f{bottom:321.760000pt;}
.y1cf{bottom:323.377280pt;}
.yfd{bottom:324.480000pt;}
.y27b{bottom:326.240000pt;}
.y24a{bottom:326.719867pt;}
.y1aa{bottom:327.250560pt;}
.yde{bottom:331.680000pt;}
.y22d{bottom:332.000000pt;}
.y2af{bottom:332.160000pt;}
.y210{bottom:333.518080pt;}
.ya7{bottom:334.240000pt;}
.y1e2{bottom:334.880000pt;}
.y138{bottom:335.520000pt;}
.y263{bottom:337.280000pt;}
.y6e{bottom:337.540480pt;}
.y26{bottom:339.680000pt;}
.y151{bottom:340.480000pt;}
.y18e{bottom:342.880000pt;}
.y1ce{bottom:342.896000pt;}
.y117{bottom:343.040000pt;}
.y27a{bottom:344.160000pt;}
.y4c{bottom:344.320000pt;}
.yfc{bottom:345.600000pt;}
.y249{bottom:347.839867pt;}
.y2c6{bottom:350.400000pt;}
.y171{bottom:351.360000pt;}
.y20f{bottom:351.432320pt;}
.ydd{bottom:352.800000pt;}
.y1a9{bottom:353.010560pt;}
.y22c{bottom:353.120000pt;}
.y2ae{bottom:353.280000pt;}
.y8f{bottom:353.920000pt;}
.y6d{bottom:355.454720pt;}
.ya6{bottom:355.520000pt;}
.y137{bottom:356.640000pt;}
.y25{bottom:360.960000pt;}
.y150{bottom:361.600000pt;}
.y1cd{bottom:362.252800pt;}
.y1e1{bottom:363.200000pt;}
.y18d{bottom:364.000000pt;}
.y116{bottom:364.160000pt;}
.yfb{bottom:366.880000pt;}
.y248{bottom:368.959867pt;}
.y20e{bottom:369.199360pt;}
.y279{bottom:370.080000pt;}
.y1a8{bottom:370.924800pt;}
.y170{bottom:372.480000pt;}
.ydc{bottom:373.920000pt;}
.y22b{bottom:374.240000pt;}
.y2ad{bottom:374.560000pt;}
.ya5{bottom:376.640000pt;}
.y136{bottom:377.760000pt;}
.y1cc{bottom:381.609600pt;}
.y262{bottom:381.920000pt;}
.y24{bottom:382.080000pt;}
.y6c{bottom:382.171520pt;}
.y14f{bottom:382.880000pt;}
.y1e0{bottom:384.320000pt;}
.y115{bottom:385.280000pt;}
.y20d{bottom:387.113600pt;}
.yfa{bottom:388.000000pt;}
.y1a7{bottom:388.839040pt;}
.y247{bottom:390.079867pt;}
.y2c5{bottom:390.240000pt;}
.y18c{bottom:393.280000pt;}
.y16f{bottom:393.600000pt;}
.y8e{bottom:393.920000pt;}
.ydb{bottom:395.040000pt;}
.y22a{bottom:395.520000pt;}
.y2ac{bottom:395.680000pt;}
.ya4{bottom:397.760000pt;}
.y278{bottom:398.240000pt;}
.y261{bottom:399.680000pt;}
.y6b{bottom:400.085760pt;}
.y1cb{bottom:400.966400pt;}
.y1d1{bottom:401.120000pt;}
.y23{bottom:403.200000pt;}
.y135{bottom:404.000000pt;}
.y20c{bottom:405.027840pt;}
.y114{bottom:406.400000pt;}
.y1a6{bottom:406.753280pt;}
.yf9{bottom:409.120000pt;}
.y246{bottom:411.359867pt;}
.y18b{bottom:414.400000pt;}
.y16e{bottom:414.880000pt;}
.y8d{bottom:415.040000pt;}
.yda{bottom:416.320000pt;}
.y229{bottom:416.640000pt;}
.y2ab{bottom:416.800000pt;}
.y260{bottom:417.600000pt;}
.y6a{bottom:418.000000pt;}
.ya3{bottom:418.880000pt;}
.y277{bottom:419.360000pt;}
.y1ca{bottom:420.323200pt;}
.y134{bottom:422.400000pt;}
.y4b{bottom:424.480000pt;}
.y1df{bottom:424.504320pt;}
.y14e{bottom:425.120000pt;}
.y2c4{bottom:427.360000pt;}
.y113{bottom:427.680000pt;}
.yf8{bottom:430.240000pt;}
.y20b{bottom:431.744640pt;}
.y22{bottom:432.320000pt;}
.y245{bottom:432.479867pt;}
.y1a5{bottom:432.675200pt;}
.y18a{bottom:435.520000pt;}
.y8c{bottom:436.160000pt;}
.yd9{bottom:437.440000pt;}
.y228{bottom:437.760000pt;}
.y2aa{bottom:437.920000pt;}
.y1c9{bottom:439.680000pt;}
.ya2{bottom:440.160000pt;}
.y16d{bottom:444.000000pt;}
.y25f{bottom:444.320000pt;}
.y69{bottom:444.554880pt;}
.y1de{bottom:445.141760pt;}
.y4a{bottom:445.600000pt;}
.y14d{bottom:446.240000pt;}
.y276{bottom:448.480000pt;}
.y112{bottom:448.800000pt;}
.y20a{bottom:449.658880pt;}
.y1a4{bottom:450.589440pt;}
.yf7{bottom:451.360000pt;}
.y189{bottom:456.640000pt;}
.yd8{bottom:458.560000pt;}
.ya1{bottom:461.280000pt;}
.y244{bottom:461.599867pt;}
.y21{bottom:461.600000pt;}
.y25e{bottom:462.240000pt;}
.y133{bottom:462.400000pt;}
.y68{bottom:462.469120pt;}
.y2c3{bottom:464.480000pt;}
.y16c{bottom:465.120000pt;}
.y8b{bottom:465.280000pt;}
.y1dd{bottom:465.779200pt;}
.y49{bottom:466.720000pt;}
.y227{bottom:466.880000pt;}
.y2a9{bottom:467.200000pt;}
.y14c{bottom:467.360000pt;}
.y209{bottom:467.573120pt;}
.y275{bottom:469.600000pt;}
.y111{bottom:469.920000pt;}
.y1a3{bottom:476.511360pt;}
.y188{bottom:477.920000pt;}
.y1c8{bottom:478.560000pt;}
.yd7{bottom:479.680000pt;}
.y25d{bottom:480.160000pt;}
.y67{bottom:480.383360pt;}
.yf6{bottom:480.640000pt;}
.ya0{bottom:482.400000pt;}
.y243{bottom:482.719867pt;}
.y132{bottom:483.520000pt;}
.y208{bottom:485.487360pt;}
.y16b{bottom:486.240000pt;}
.y1dc{bottom:486.254720pt;}
.y8a{bottom:486.560000pt;}
.y48{bottom:488.000000pt;}
.y226{bottom:488.160000pt;}
.y2a8{bottom:488.320000pt;}
.y14b{bottom:488.640000pt;}
.y20{bottom:490.720000pt;}
.y274{bottom:490.880000pt;}
.y110{bottom:491.040000pt;}
.y1a2{bottom:494.425600pt;}
.y25c{bottom:498.080000pt;}
.y66{bottom:498.297600pt;}
.y2c2{bottom:498.880000pt;}
.y187{bottom:499.040000pt;}
.y1c7{bottom:499.680000pt;}
.yd6{bottom:500.960000pt;}
.yf5{bottom:501.760000pt;}
.y9f{bottom:503.520000pt;}
.y242{bottom:503.999867pt;}
.y131{bottom:504.800000pt;}
.y1db{bottom:506.892160pt;}
.y16a{bottom:507.520000pt;}
.y89{bottom:507.680000pt;}
.y47{bottom:509.120000pt;}
.y225{bottom:509.280000pt;}
.y2a7{bottom:509.440000pt;}
.y14a{bottom:509.760000pt;}
.y273{bottom:512.000000pt;}
.y207{bottom:512.042240pt;}
.y10f{bottom:512.320000pt;}
.y1a1{bottom:512.339840pt;}
.y25b{bottom:516.000000pt;}
.y1f{bottom:519.840000pt;}
.y186{bottom:520.160000pt;}
.y1c6{bottom:520.800000pt;}
.yd5{bottom:522.080000pt;}
.yf4{bottom:522.880000pt;}
.y65{bottom:525.014400pt;}
.y241{bottom:525.119867pt;}
.y1da{bottom:527.529600pt;}
.y169{bottom:528.640000pt;}
.y88{bottom:528.800000pt;}
.y206{bottom:529.956480pt;}
.y224{bottom:530.400000pt;}
.y2a6{bottom:530.560000pt;}
.y149{bottom:530.880000pt;}
.y130{bottom:531.703040pt;}
.y9e{bottom:532.800000pt;}
.y272{bottom:533.120000pt;}
.y25a{bottom:533.920000pt;}
.y2c1{bottom:536.000000pt;}
.y1a0{bottom:538.099840pt;}
.y46{bottom:538.240000pt;}
.y1e{bottom:540.960000pt;}
.y185{bottom:541.280000pt;}
.y10e{bottom:541.440000pt;}
.y1c5{bottom:541.920000pt;}
.y64{bottom:542.928640pt;}
.yd4{bottom:543.200000pt;}
.yf3{bottom:544.000000pt;}
.y240{bottom:546.239867pt;}
.y205{bottom:547.870720pt;}
.y1d9{bottom:548.005120pt;}
.y168{bottom:549.760000pt;}
.y87{bottom:549.920000pt;}
.y2a5{bottom:551.680000pt;}
.y9d{bottom:553.920000pt;}
.y271{bottom:554.240000pt;}
.y19f{bottom:556.014080pt;}
.y12f{bottom:557.463040pt;}
.y45{bottom:559.360000pt;}
.y223{bottom:559.520000pt;}
.y148{bottom:560.000000pt;}
.y259{bottom:560.480000pt;}
.y63{bottom:560.842880pt;}
.y1d{bottom:562.240000pt;}
.y184{bottom:562.400000pt;}
.y10d{bottom:562.560000pt;}
.y1c4{bottom:563.200000pt;}
.yd3{bottom:564.320000pt;}
.yf2{bottom:565.280000pt;}
.y204{bottom:565.784960pt;}
.y23f{bottom:567.359867pt;}
.y1d8{bottom:568.642560pt;}
.y86{bottom:571.040000pt;}
.y2a4{bottom:572.960000pt;}
.y2c0{bottom:573.280000pt;}
.y19e{bottom:573.928320pt;}
.y9c{bottom:575.040000pt;}
.y12e{bottom:575.377280pt;}
.y270{bottom:575.520000pt;}
.y258{bottom:578.400000pt;}
.y62{bottom:578.757120pt;}
.y167{bottom:578.880000pt;}
.y44{bottom:580.640000pt;}
.y147{bottom:581.280000pt;}
.y1c{bottom:583.360000pt;}
.y10c{bottom:583.680000pt;}
.y203{bottom:583.699200pt;}
.y1c3{bottom:584.320000pt;}
.yf1{bottom:586.400000pt;}
.y1d7{bottom:589.280000pt;}
.yd2{bottom:590.560000pt;}
.y85{bottom:592.320000pt;}
.y2a3{bottom:594.080000pt;}
.y2bf{bottom:594.400000pt;}
.y9b{bottom:596.160000pt;}
.y257{bottom:596.320000pt;}
.y23e{bottom:596.639867pt;}
.y26f{bottom:596.640000pt;}
.y19d{bottom:599.850240pt;}
.y166{bottom:600.160000pt;}
.y12d{bottom:601.299200pt;}
.y202{bottom:601.613440pt;}
.y43{bottom:601.760000pt;}
.y222{bottom:601.920000pt;}
.y146{bottom:602.400000pt;}
.y1b{bottom:604.480000pt;}
.y10b{bottom:604.800000pt;}
.y61{bottom:605.312000pt;}
.y1c2{bottom:605.440000pt;}
.yf0{bottom:607.520000pt;}
.y84{bottom:613.440000pt;}
.y256{bottom:614.240000pt;}
.y2a2{bottom:615.200000pt;}
.y9a{bottom:617.440000pt;}
.y23d{bottom:617.759867pt;}
.y19c{bottom:617.764480pt;}
.y201{bottom:619.527680pt;}
.y165{bottom:621.280000pt;}
.y42{bottom:622.880000pt;}
.y221{bottom:623.040000pt;}
.y60{bottom:623.226240pt;}
.y145{bottom:623.520000pt;}
.y1a{bottom:625.600000pt;}
.y10a{bottom:626.080000pt;}
.y1c1{bottom:626.560000pt;}
.y12c{bottom:627.221120pt;}
.yef{bottom:628.640000pt;}
.y2be{bottom:628.800000pt;}
.yd1{bottom:630.560000pt;}
.y183{bottom:631.040000pt;}
.y255{bottom:632.160000pt;}
.y26e{bottom:633.600000pt;}
.y2a1{bottom:636.320000pt;}
.y99{bottom:638.560000pt;}
.y23c{bottom:638.879867pt;}
.y5f{bottom:641.140480pt;}
.y83{bottom:642.560000pt;}
.y19b{bottom:643.686400pt;}
.y144{bottom:644.640000pt;}
.y12b{bottom:645.135360pt;}
.y200{bottom:646.244480pt;}
.y19{bottom:646.880000pt;}
.y109{bottom:647.200000pt;}
.y164{bottom:647.520000pt;}
.y1d0{bottom:649.920000pt;}
.y254{bottom:650.080000pt;}
.yd0{bottom:651.680000pt;}
.y41{bottom:652.000000pt;}
.y220{bottom:652.160000pt;}
.y1c0{bottom:652.800000pt;}
.y2a0{bottom:657.600000pt;}
.yee{bottom:657.920000pt;}
.y5e{bottom:659.054720pt;}
.y1d6{bottom:659.680000pt;}
.y23b{bottom:659.999867pt;}
.y19a{bottom:661.600640pt;}
.y82{bottom:663.680000pt;}
.y1ff{bottom:664.158720pt;}
.y143{bottom:665.920000pt;}
.y26d{bottom:667.200000pt;}
.y98{bottom:667.680000pt;}
.y18{bottom:668.000000pt;}
.y108{bottom:668.320000pt;}
.y182{bottom:671.040000pt;}
.y12a{bottom:671.057280pt;}
.ycf{bottom:672.960000pt;}
.y40{bottom:673.120000pt;}
.y21f{bottom:673.280000pt;}
.y29f{bottom:678.720000pt;}
.yed{bottom:679.040000pt;}
.y23a{bottom:681.119867pt;}
.y2bd{bottom:681.600000pt;}
.y1fe{bottom:681.925760pt;}
.y81{bottom:684.960000pt;}
.y5d{bottom:685.771520pt;}
.y142{bottom:687.040000pt;}
.y199{bottom:687.522560pt;}
.y97{bottom:688.800000pt;}
.y17{bottom:689.120000pt;}
.y107{bottom:689.440000pt;}
.y181{bottom:692.160000pt;}
.y1bf{bottom:692.800000pt;}
.y3f{bottom:694.400000pt;}
.y21e{bottom:694.560000pt;}
.y129{bottom:696.979200pt;}
.y1d5{bottom:699.520000pt;}
.y1fd{bottom:699.840000pt;}
.yce{bottom:699.898880pt;}
.yec{bottom:700.160000pt;}
.y239{bottom:702.399867pt;}
.y5c{bottom:703.685760pt;}
.y198{bottom:705.436800pt;}
.y80{bottom:706.080000pt;}
.y163{bottom:706.268800pt;}
.y141{bottom:708.160000pt;}
.y96{bottom:709.920000pt;}
.y16{bottom:710.240000pt;}
.y106{bottom:710.720000pt;}
.y180{bottom:713.280000pt;}
.y1be{bottom:713.920000pt;}
.y128{bottom:714.893440pt;}
.y3e{bottom:715.520000pt;}
.y21d{bottom:715.680000pt;}
.y2bc{bottom:716.000000pt;}
.ycd{bottom:717.813120pt;}
.y1d4{bottom:720.640000pt;}
.y29e{bottom:720.960000pt;}
.yeb{bottom:721.280000pt;}
.y5b{bottom:721.600000pt;}
.y290{bottom:723.125067pt;}
.y238{bottom:723.519867pt;}
.y162{bottom:726.906240pt;}
.y7f{bottom:727.200000pt;}
.y1fc{bottom:728.800000pt;}
.y140{bottom:729.280000pt;}
.y95{bottom:731.200000pt;}
.y197{bottom:731.358720pt;}
.y105{bottom:731.840000pt;}
.y17f{bottom:734.560000pt;}
.y287{bottom:734.757600pt;}
.y1bd{bottom:735.200000pt;}
.ycc{bottom:735.580160pt;}
.y3d{bottom:736.640000pt;}
.y21c{bottom:736.800000pt;}
.y15{bottom:739.360000pt;}
.y28f{bottom:739.605067pt;}
.y127{bottom:740.815360pt;}
.y29d{bottom:742.240000pt;}
.yea{bottom:742.560000pt;}
.y237{bottom:744.639867pt;}
.y161{bottom:747.381760pt;}
.y196{bottom:749.272960pt;}
.y5a{bottom:750.560000pt;}
.y286{bottom:751.237600pt;}
.y94{bottom:752.320000pt;}
.y2bb{bottom:753.120000pt;}
.y7e{bottom:753.440000pt;}
.ycb{bottom:753.494400pt;}
.y17e{bottom:755.680000pt;}
.y28e{bottom:756.245067pt;}
.y1bc{bottom:756.320000pt;}
.y1d3{bottom:757.120000pt;}
.y21b{bottom:757.920000pt;}
.y1fb{bottom:758.080000pt;}
.y126{bottom:758.729600pt;}
.y29c{bottom:763.360000pt;}
.ye9{bottom:763.680000pt;}
.y236{bottom:765.759867pt;}
.y3c{bottom:765.760000pt;}
.y195{bottom:767.040000pt;}
.y160{bottom:768.019200pt;}
.y14{bottom:768.640000pt;}
.yca{bottom:771.408640pt;}
.y59{bottom:771.680000pt;}
.y28d{bottom:772.725067pt;}
.y93{bottom:773.440000pt;}
.y2ba{bottom:774.240000pt;}
.y285{bottom:774.277600pt;}
.y17d{bottom:776.800000pt;}
.y1bb{bottom:777.440000pt;}
.y1fa{bottom:779.200000pt;}
.y29b{bottom:784.480000pt;}
.y125{bottom:784.489600pt;}
.ye8{bottom:784.800000pt;}
.y3b{bottom:787.040000pt;}
.y15f{bottom:788.656640pt;}
.y28c{bottom:789.365067pt;}
.y13{bottom:789.760000pt;}
.y284{bottom:790.917600pt;}
.y1d2{bottom:791.040000pt;}
.y235{bottom:792.640000pt;}
.y58{bottom:792.800000pt;}
.y7d{bottom:793.440000pt;}
.y92{bottom:794.560000pt;}
.y194{bottom:795.360000pt;}
.y2b9{bottom:795.520000pt;}
.y17c{bottom:797.920000pt;}
.yc9{bottom:798.125440pt;}
.y1ba{bottom:798.560000pt;}
.y1f9{bottom:800.320000pt;}
.y29a{bottom:805.600000pt;}
.y28b{bottom:805.845067pt;}
.ye7{bottom:805.920000pt;}
.y283{bottom:807.397600pt;}
.y3a{bottom:808.160000pt;}
.y21a{bottom:808.320000pt;}
.y15e{bottom:809.294080pt;}
.y124{bottom:810.411520pt;}
.y57{bottom:813.920000pt;}
.y7c{bottom:814.560000pt;}
.yc8{bottom:816.039680pt;}
.y193{bottom:816.480000pt;}
.y12{bottom:818.880000pt;}
.y17b{bottom:819.200000pt;}
.y1b9{bottom:819.840000pt;}
.y1f8{bottom:821.440000pt;}
.y253{bottom:821.920000pt;}
.y28a{bottom:822.485067pt;}
.y299{bottom:826.880000pt;}
.y91{bottom:828.320000pt;}
.y123{bottom:828.325760pt;}
.y39{bottom:829.280000pt;}
.y219{bottom:829.440000pt;}
.y15d{bottom:829.769600pt;}
.y2b8{bottom:829.920000pt;}
.y1ef{bottom:834.110133pt;}
.y56{bottom:835.200000pt;}
.y7b{bottom:835.840000pt;}
.y289{bottom:838.965067pt;}
.y11{bottom:839.034560pt;}
.y1b8{bottom:840.960000pt;}
.y1f7{bottom:842.720000pt;}
.yc7{bottom:842.756480pt;}
.y13f{bottom:843.200000pt;}
.y17a{bottom:848.320000pt;}
.y15c{bottom:850.407040pt;}
.y218{bottom:850.560000pt;}
.y1ee{bottom:850.590133pt;}
.y122{bottom:854.247680pt;}
.y298{bottom:856.000000pt;}
.y38{bottom:856.160000pt;}
.y55{bottom:856.320000pt;}
.y10{bottom:857.595200pt;}
.yc6{bottom:860.670720pt;}
.y288{bottom:862.005067pt;}
.y1b7{bottom:862.080000pt;}
.y90{bottom:862.240000pt;}
.y1f6{bottom:863.840000pt;}
.y13e{bottom:864.320000pt;}
.y2b7{bottom:866.720000pt;}
.y179{bottom:869.440000pt;}
.y15b{bottom:871.044480pt;}
.y217{bottom:871.840000pt;}
.y121{bottom:872.161920pt;}
.y7a{bottom:874.890880pt;}
.ybd{bottom:875.204907pt;}
.yf{bottom:876.320000pt;}
.y297{bottom:877.120000pt;}
.y54{bottom:877.440000pt;}
.yc5{bottom:878.437760pt;}
.y1f5{bottom:884.960000pt;}
.y2b6{bottom:885.120000pt;}
.y13d{bottom:885.440000pt;}
.y1b6{bottom:888.965760pt;}
.yb5{bottom:890.076507pt;}
.ybc{bottom:890.410667pt;}
.y178{bottom:890.560000pt;}
.y15a{bottom:891.520000pt;}
.y216{bottom:892.960000pt;}
.y79{bottom:894.409600pt;}
.yc4{bottom:896.352000pt;}
.y120{bottom:898.083840pt;}
.y296{bottom:898.240000pt;}
.ye{bottom:898.403200pt;}
.y37{bottom:898.560000pt;}
.y2b5{bottom:903.520000pt;}
.yb4{bottom:905.282267pt;}
.y104{bottom:906.560000pt;}
.y1b5{bottom:906.880000pt;}
.ybb{bottom:908.015787pt;}
.y1ed{bottom:909.927333pt;}
.y1f4{bottom:911.200000pt;}
.y78{bottom:913.766400pt;}
.y215{bottom:914.080000pt;}
.yc3{bottom:914.266240pt;}
.yd{bottom:919.519360pt;}
.y295{bottom:919.520000pt;}
.ye6{bottom:919.680000pt;}
.yb3{bottom:920.326107pt;}
.yba{bottom:923.221547pt;}
.y26c{bottom:924.000000pt;}
.y11f{bottom:924.005760pt;}
.y1ec{bottom:926.567333pt;}
.y36{bottom:927.680000pt;}
.y77{bottom:933.123200pt;}
.y1b4{bottom:933.775360pt;}
.yb2{bottom:935.531867pt;}
.yc{bottom:940.480000pt;}
.y294{bottom:940.640000pt;}
.ye5{bottom:940.960000pt;}
.yc2{bottom:940.983040pt;}
.yb9{bottom:940.988587pt;}
.y11e{bottom:941.920000pt;}
.y1eb{bottom:943.047333pt;}
.y35{bottom:948.960000pt;}
.y1f3{bottom:951.529600pt;}
.y1b3{bottom:951.689600pt;}
.y76{bottom:952.480000pt;}
.yb1{bottom:956.655067pt;}
.yb8{bottom:958.593707pt;}
.yc1{bottom:958.897280pt;}
.y26b{bottom:961.600000pt;}
.y293{bottom:961.760000pt;}
.y177{bottom:962.080000pt;}
.y1b2{bottom:969.603840pt;}
.y34{bottom:970.080000pt;}
.y1f2{bottom:972.167040pt;}
.yb7{bottom:973.799467pt;}
.yc0{bottom:976.811520pt;}
.y292{bottom:982.880000pt;}
.yb{bottom:985.753920pt;}
.y26a{bottom:987.520000pt;}
.y33{bottom:991.200000pt;}
.y1f1{bottom:992.804480pt;}
.ybf{bottom:994.725760pt;}
.yb6{bottom:994.922667pt;}
.y1b1{bottom:995.525760pt;}
.ya{bottom:1008.480000pt;}
.y291{bottom:1009.760000pt;}
.y32{bottom:1012.320000pt;}
.ybe{bottom:1012.640000pt;}
.y1f0{bottom:1013.280000pt;}
.y1b0{bottom:1013.440000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.684000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h6{height:29.118667pt;}
.hd{height:30.324375pt;}
.h4{height:34.453125pt;}
.h15{height:36.364375pt;}
.h16{height:40.307500pt;}
.h3{height:42.246500pt;}
.h12{height:42.262500pt;}
.hc{height:43.812500pt;}
.h10{height:46.593750pt;}
.he{height:46.609688pt;}
.h9{height:46.842500pt;}
.ha{height:46.861700pt;}
.hb{height:46.864260pt;}
.h13{height:51.663750pt;}
.hf{height:54.514687pt;}
.h14{height:56.112730pt;}
.h17{height:56.133210pt;}
.h5{height:56.156250pt;}
.h8{height:56.565000pt;}
.h7{height:61.278750pt;}
.h11{height:61.944687pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:102.240000pt;}
.x3{left:113.444000pt;}
.x19{left:117.920000pt;}
.x1{left:135.680000pt;}
.x11{left:137.280000pt;}
.x1a{left:141.751680pt;}
.x20{left:144.800000pt;}
.x23{left:149.440000pt;}
.x1c{left:151.200000pt;}
.x6{left:154.080000pt;}
.x7{left:160.650720pt;}
.x21{left:168.646400pt;}
.x1d{left:170.232960pt;}
.x1e{left:184.640000pt;}
.x14{left:193.920000pt;}
.x1b{left:200.320000pt;}
.x12{left:207.840000pt;}
.x22{left:225.578800pt;}
.x26{left:258.345067pt;}
.x4{left:264.160000pt;}
.x8{left:273.120000pt;}
.x15{left:279.199893pt;}
.x10{left:305.440000pt;}
.x9{left:408.318720pt;}
.x5{left:414.880000pt;}
.xe{left:423.200000pt;}
.x16{left:427.767600pt;}
.xa{left:430.713600pt;}
.x17{left:433.846960pt;}
.x18{left:439.764400pt;}
.x2{left:470.720000pt;}
.x27{left:479.025600pt;}
.xb{left:497.920000pt;}
.xf{left:498.880000pt;}
.xc{left:518.397760pt;}
.xd{left:584.638400pt;}
.x13{left:606.080000pt;}
.x1f{left:682.880000pt;}
.x25{left:727.520000pt;}
}




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