
    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_66c6a4ab4e04e80325f6a0c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_7bf94641895d976b8ed86048.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933000;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_628e4d9fcfe5c3b9e1bdca5d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_76cee69fe0c9d222bfcf10e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_44eb83799f226fe92aa98756.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_66c6a4ab4e04e80325f6a0c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_2f2634e2a438f653972f3ab7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_4ed43333ec32bdcb41423786.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_34f1b6724e2ee9986f21f845.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.070312;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_9c205b90b4aeba6e940e46fe.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a2af3a0b31702cbbf5db9484.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;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_66c6a4ab4e04e80325f6a0c2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_41b54f536059080a6ac96c6d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.844727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_efb6fcae83d659758a6aa997.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_acb3884bf2042839c5a8781c.woff2')format("woff");}.fff{font-family:fff;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dd04e27470cfb13c7745dad1.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.160160px;}
.ls9{letter-spacing:-1.523520px;}
.ls4b{letter-spacing:-1.013040px;}
.ls2a{letter-spacing:-0.993600px;}
.lse{letter-spacing:-0.964800px;}
.ls27{letter-spacing:-0.927360px;}
.lsf{letter-spacing:-0.916560px;}
.ls22{letter-spacing:-0.861120px;}
.ls5a{letter-spacing:-0.810000px;}
.ls25{letter-spacing:-0.794880px;}
.ls28{letter-spacing:-0.728640px;}
.ls5{letter-spacing:-0.721440px;}
.ls24{letter-spacing:-0.662400px;}
.ls29{letter-spacing:-0.596160px;}
.ls26{letter-spacing:-0.529920px;}
.ls23{letter-spacing:-0.463680px;}
.ls21{letter-spacing:-0.397440px;}
.ls3a{letter-spacing:-0.331200px;}
.ls57{letter-spacing:-0.300600px;}
.ls48{letter-spacing:-0.298800px;}
.ls13{letter-spacing:-0.287280px;}
.ls14{letter-spacing:-0.264960px;}
.ls4{letter-spacing:-0.240480px;}
.ls47{letter-spacing:-0.239040px;}
.ls30{letter-spacing:-0.198720px;}
.lsd{letter-spacing:-0.192960px;}
.ls58{letter-spacing:-0.162000px;}
.ls2{letter-spacing:-0.155520px;}
.lsc{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.132480px;}
.ls3{letter-spacing:-0.120240px;}
.ls46{letter-spacing:-0.119520px;}
.ls59{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.095760px;}
.ls45{letter-spacing:-0.084240px;}
.ls55{letter-spacing:-0.083880px;}
.lsb{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.066240px;}
.ls5b{letter-spacing:-0.065880px;}
.ls49{letter-spacing:-0.059760px;}
.ls4a{letter-spacing:-0.048240px;}
.ls1{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.013248px;}
.ls51{letter-spacing:0.018000px;}
.ls33{letter-spacing:0.033120px;}
.ls56{letter-spacing:0.060120px;}
.ls35{letter-spacing:0.066240px;}
.ls4c{letter-spacing:0.096480px;}
.ls52{letter-spacing:0.108000px;}
.ls4d{letter-spacing:0.120240px;}
.ls16{letter-spacing:0.132480px;}
.ls1c{letter-spacing:0.139104px;}
.ls0{letter-spacing:0.155520px;}
.ls54{letter-spacing:0.167760px;}
.ls2f{letter-spacing:0.178848px;}
.ls3f{letter-spacing:0.191520px;}
.ls32{letter-spacing:0.192096px;}
.ls5c{letter-spacing:0.216000px;}
.ls44{letter-spacing:0.239040px;}
.ls2d{letter-spacing:0.245088px;}
.ls43{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.264960px;}
.lsa{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.289440px;}
.ls39{letter-spacing:0.324576px;}
.ls36{letter-spacing:0.331200px;}
.ls4e{letter-spacing:0.378000px;}
.ls11{letter-spacing:0.861120px;}
.ls34{letter-spacing:0.920736px;}
.ls1b{letter-spacing:1.073088px;}
.ls18{letter-spacing:1.589760px;}
.ls4f{letter-spacing:1.908000px;}
.ls1e{letter-spacing:2.318400px;}
.ls6{letter-spacing:2.412000px;}
.ls2b{letter-spacing:3.047040px;}
.ls37{letter-spacing:3.775680px;}
.ls40{letter-spacing:3.788928px;}
.ls41{letter-spacing:3.875040px;}
.ls5d{letter-spacing:4.212000px;}
.ls2c{letter-spacing:4.438080px;}
.ls38{letter-spacing:4.477824px;}
.ls1d{letter-spacing:5.166720px;}
.ls2e{letter-spacing:5.232960px;}
.ls3e{letter-spacing:5.895360px;}
.ls42{letter-spacing:5.948352px;}
.ls31{letter-spacing:6.624000px;}
.ls1a{letter-spacing:7.352640px;}
.ls19{letter-spacing:7.425504px;}
.ls1f{letter-spacing:7.485120px;}
.ls3d{letter-spacing:8.809920px;}
.ls17{letter-spacing:9.384480px;}
.ls3b{letter-spacing:11.658240px;}
.ls5e{letter-spacing:13.428000px;}
.ls50{letter-spacing:27.828000px;}
.ls53{letter-spacing:39.111120px;}
.ls10{letter-spacing:66.372480px;}
.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;}
}
.wsa0{word-spacing:-23.486400px;}
.ws8f{word-spacing:-23.334480px;}
.wsa1{word-spacing:-23.234760px;}
.ws2{word-spacing:-22.965840px;}
.ws79{word-spacing:-21.833280px;}
.ws86{word-spacing:-21.641760px;}
.ws29{word-spacing:-21.354480px;}
.wsf{word-spacing:-20.304000px;}
.wsc{word-spacing:-19.944000px;}
.wsb{word-spacing:-19.872000px;}
.wsa{word-spacing:-18.282240px;}
.ws9{word-spacing:-16.891200px;}
.ws94{word-spacing:-16.852320px;}
.wsa3{word-spacing:-16.833600px;}
.wsa4{word-spacing:-16.773480px;}
.ws93{word-spacing:-16.613280px;}
.ws91{word-spacing:-16.493760px;}
.wsa2{word-spacing:-16.412760px;}
.ws90{word-spacing:-16.374240px;}
.ws92{word-spacing:-16.314480px;}
.ws7a{word-spacing:-15.301440px;}
.ws2a{word-spacing:-15.235200px;}
.wsd0{word-spacing:-15.120000px;}
.ws34{word-spacing:-15.102720px;}
.ws1{word-spacing:-15.085440px;}
.wsc2{word-spacing:-15.012000px;}
.ws2f{word-spacing:-14.970240px;}
.ws32{word-spacing:-14.904000px;}
.wsa5{word-spacing:-14.850000px;}
.wsa7{word-spacing:-14.823000px;}
.ws0{word-spacing:-14.774400px;}
.ws5f{word-spacing:-14.771520px;}
.ws30{word-spacing:-14.705280px;}
.ws60{word-spacing:-14.572800px;}
.ws31{word-spacing:-14.506560px;}
.ws36{word-spacing:-14.440320px;}
.ws72{word-spacing:-14.374080px;}
.ws35{word-spacing:-14.241600px;}
.wsa6{word-spacing:-14.202000px;}
.ws33{word-spacing:-14.175360px;}
.ws69{word-spacing:-14.109120px;}
.ws6a{word-spacing:-14.042880px;}
.ws95{word-spacing:-13.507200px;}
.wsd{word-spacing:-13.410720px;}
.wse{word-spacing:-13.217760px;}
.ws8d{word-spacing:-4.305600px;}
.ws88{word-spacing:-4.106880px;}
.ws4d{word-spacing:-3.576960px;}
.ws4f{word-spacing:-3.378240px;}
.ws4e{word-spacing:-3.179520px;}
.ws4a{word-spacing:-2.848320px;}
.ws42{word-spacing:-2.649600px;}
.wsaf{word-spacing:-2.592000px;}
.ws44{word-spacing:-2.450880px;}
.ws23{word-spacing:-2.412000px;}
.ws70{word-spacing:-2.119680px;}
.ws71{word-spacing:-1.920960px;}
.ws63{word-spacing:-1.722240px;}
.ws20{word-spacing:-1.688400px;}
.wsbc{word-spacing:-1.674000px;}
.wsbb{word-spacing:-1.566000px;}
.wsbd{word-spacing:-1.512000px;}
.ws5d{word-spacing:-1.391040px;}
.ws50{word-spacing:-1.192320px;}
.ws51{word-spacing:-0.993600px;}
.wscc{word-spacing:-0.972000px;}
.ws1c{word-spacing:-0.964800px;}
.ws81{word-spacing:-0.861120px;}
.wscd{word-spacing:-0.810000px;}
.ws38{word-spacing:-0.728640px;}
.ws2e{word-spacing:-0.529920px;}
.ws4b{word-spacing:-0.331200px;}
.ws99{word-spacing:-0.298800px;}
.ws9d{word-spacing:-0.289440px;}
.ws11{word-spacing:-0.264960px;}
.ws1a{word-spacing:-0.241200px;}
.ws9a{word-spacing:-0.239040px;}
.wsc0{word-spacing:-0.216000px;}
.ws87{word-spacing:-0.191520px;}
.wsa9{word-spacing:-0.180360px;}
.ws12{word-spacing:-0.144000px;}
.ws5e{word-spacing:-0.132480px;}
.wsae{word-spacing:-0.108000px;}
.ws6c{word-spacing:-0.066240px;}
.wsab{word-spacing:-0.060120px;}
.wsc1{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws96{word-spacing:0.059760px;}
.ws43{word-spacing:0.066240px;}
.ws37{word-spacing:0.095760px;}
.wsb1{word-spacing:0.108000px;}
.ws9b{word-spacing:0.119520px;}
.ws7{word-spacing:0.120240px;}
.ws2c{word-spacing:0.132480px;}
.wsb3{word-spacing:0.162000px;}
.wsa8{word-spacing:0.167760px;}
.ws1b{word-spacing:0.192960px;}
.ws2d{word-spacing:0.198720px;}
.ws13{word-spacing:0.216000px;}
.ws8{word-spacing:0.233280px;}
.ws5{word-spacing:0.240480px;}
.ws3f{word-spacing:0.264960px;}
.wsb0{word-spacing:0.270000px;}
.wsaa{word-spacing:0.300600px;}
.ws76{word-spacing:0.331200px;}
.ws9c{word-spacing:0.337680px;}
.ws4{word-spacing:0.388800px;}
.ws2b{word-spacing:0.397440px;}
.ws10{word-spacing:0.463680px;}
.ws27{word-spacing:0.482400px;}
.ws41{word-spacing:0.529920px;}
.ws56{word-spacing:0.596160px;}
.wsbf{word-spacing:0.648000px;}
.ws77{word-spacing:0.662400px;}
.ws6{word-spacing:0.721440px;}
.ws49{word-spacing:0.728640px;}
.ws6b{word-spacing:0.766080px;}
.ws98{word-spacing:0.776880px;}
.ws3a{word-spacing:0.794880px;}
.ws39{word-spacing:0.861120px;}
.ws24{word-spacing:0.916560px;}
.ws47{word-spacing:0.927360px;}
.ws57{word-spacing:0.993600px;}
.ws48{word-spacing:1.126080px;}
.ws9f{word-spacing:1.135440px;}
.ws14{word-spacing:1.206000px;}
.ws9e{word-spacing:1.302480px;}
.ws53{word-spacing:1.457280px;}
.ws3b{word-spacing:1.656000px;}
.ws85{word-spacing:1.722240px;}
.wsbe{word-spacing:1.728000px;}
.ws3c{word-spacing:1.854720px;}
.ws16{word-spacing:1.929600px;}
.wsad{word-spacing:1.944000px;}
.wsac{word-spacing:2.106000px;}
.ws55{word-spacing:2.185920px;}
.ws5a{word-spacing:2.384640px;}
.ws5c{word-spacing:2.517120px;}
.ws54{word-spacing:2.583360px;}
.wsb6{word-spacing:2.646000px;}
.ws21{word-spacing:2.653200px;}
.wsb7{word-spacing:2.808000px;}
.ws7e{word-spacing:2.914560px;}
.ws8e{word-spacing:2.980800px;}
.wsd5{word-spacing:3.024000px;}
.ws6f{word-spacing:3.113280px;}
.wsd4{word-spacing:3.186000px;}
.ws64{word-spacing:3.312000px;}
.ws1d{word-spacing:3.328560px;}
.ws8c{word-spacing:3.444480px;}
.ws84{word-spacing:3.643200px;}
.ws68{word-spacing:3.841920px;}
.wsb5{word-spacing:3.888000px;}
.ws5b{word-spacing:4.040640px;}
.ws22{word-spacing:4.052160px;}
.wsc5{word-spacing:4.104000px;}
.wsc6{word-spacing:4.266000px;}
.ws6d{word-spacing:4.305600px;}
.wsd1{word-spacing:4.428000px;}
.ws6e{word-spacing:4.504320px;}
.wsd2{word-spacing:4.590000px;}
.ws8b{word-spacing:4.636800px;}
.ws65{word-spacing:4.703040px;}
.ws25{word-spacing:4.775760px;}
.wsc4{word-spacing:4.968000px;}
.ws62{word-spacing:5.034240px;}
.ws74{word-spacing:5.166720px;}
.ws52{word-spacing:5.232960px;}
.wsb4{word-spacing:5.346000px;}
.ws61{word-spacing:5.431680px;}
.ws28{word-spacing:5.499360px;}
.ws7b{word-spacing:5.762880px;}
.ws7d{word-spacing:5.961600px;}
.wsba{word-spacing:6.048000px;}
.ws7c{word-spacing:6.160320px;}
.ws17{word-spacing:6.222960px;}
.ws82{word-spacing:6.491520px;}
.ws59{word-spacing:6.690240px;}
.ws40{word-spacing:6.756480px;}
.ws58{word-spacing:6.888960px;}
.ws18{word-spacing:6.994800px;}
.ws3e{word-spacing:7.220160px;}
.ws66{word-spacing:7.352640px;}
.ws4c{word-spacing:7.418880px;}
.ws3d{word-spacing:7.617600px;}
.ws1e{word-spacing:7.670160px;}
.ws78{word-spacing:7.948800px;}
.ws67{word-spacing:8.147520px;}
.ws19{word-spacing:8.393760px;}
.wsd3{word-spacing:8.586000px;}
.ws46{word-spacing:8.677440px;}
.wscb{word-spacing:8.910000px;}
.ws45{word-spacing:9.074880px;}
.ws89{word-spacing:9.406080px;}
.ws83{word-spacing:9.604800px;}
.ws8a{word-spacing:9.803520px;}
.wsd9{word-spacing:9.990000px;}
.wsca{word-spacing:10.368000px;}
.ws7f{word-spacing:11.525760px;}
.wsc7{word-spacing:11.664000px;}
.ws80{word-spacing:11.724480px;}
.wsc9{word-spacing:11.772000px;}
.wsc8{word-spacing:11.826000px;}
.ws75{word-spacing:11.923200px;}
.wsc3{word-spacing:12.906000px;}
.wsce{word-spacing:13.446000px;}
.wscf{word-spacing:13.608000px;}
.ws15{word-spacing:14.134320px;}
.ws26{word-spacing:14.857920px;}
.ws73{word-spacing:15.566400px;}
.ws1f{word-spacing:17.752320px;}
.wsd7{word-spacing:18.144000px;}
.wsd8{word-spacing:18.306000px;}
.ws97{word-spacing:20.258640px;}
.wsd6{word-spacing:25.488000px;}
.wsb2{word-spacing:28.026000px;}
.wsda{word-spacing:38.448000px;}
.wsb8{word-spacing:38.803320px;}
.wsb9{word-spacing:39.150000px;}
._6{margin-left:-12.738096px;}
._5{margin-left:-5.968800px;}
._b{margin-left:-3.471696px;}
._4{margin-left:-2.454480px;}
._2{margin-left:-1.034064px;}
._1{width:1.127520px;}
._3{width:2.904480px;}
._a{width:4.504320px;}
._8{width:5.803344px;}
._7{width:7.010496px;}
._9{width:8.015040px;}
._e{width:9.272160px;}
._d{width:11.290176px;}
._11{width:13.402080px;}
._13{width:18.498960px;}
._12{width:25.542000px;}
._f{width:28.464480px;}
._10{width:38.988000px;}
._c{width:848.998080px;}
._0{width:2127.032640px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(46,116,181);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:11.880000px;}
.fs9{font-size:18.000000px;}
.fs5{font-size:36.000000px;}
.fs7{font-size:48.240000px;}
.fsd{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fsc{font-size:60.120000px;}
.fsa{font-size:65.880000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fsb{font-size:83.880000px;}
.fs8{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y5c{bottom:-234.180000px;}
.y5b{bottom:-206.280000px;}
.y5a{bottom:-175.140000px;}
.y59{bottom:-144.180000px;}
.y58{bottom:-113.040000px;}
.y79{bottom:-110.520000px;}
.y78{bottom:-84.780000px;}
.y57{bottom:-82.080000px;}
.y27{bottom:-81.180000px;}
.y77{bottom:-58.860000px;}
.y26{bottom:-54.720000px;}
.y56{bottom:-50.940000px;}
.y1f{bottom:-49.140000px;}
.y25{bottom:-38.700000px;}
.y76{bottom:-32.940000px;}
.y55{bottom:-19.980000px;}
.y1e{bottom:-14.040000px;}
.y52{bottom:-9.360000px;}
.y75{bottom:-6.840000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:3.600000px;}
.y181{bottom:5.760000px;}
.y17f{bottom:5.940000px;}
.y73{bottom:9.540000px;}
.y1df{bottom:9.810000px;}
.y1d4{bottom:9.900000px;}
.y1d3{bottom:9.990000px;}
.y16b{bottom:10.440000px;}
.y24{bottom:10.620000px;}
.y54{bottom:10.980000px;}
.y32{bottom:13.140000px;}
.y1c7{bottom:13.680000px;}
.y1d{bottom:14.760000px;}
.y30{bottom:19.440000px;}
.y1f5{bottom:19.530000px;}
.y1a2{bottom:20.880000px;}
.y4f{bottom:21.600000px;}
.y17d{bottom:25.740000px;}
.y1d9{bottom:27.630000px;}
.y1dc{bottom:27.720000px;}
.y2c{bottom:28.260000px;}
.y167{bottom:28.620000px;}
.y1c5{bottom:29.700000px;}
.y1eb{bottom:29.880000px;}
.y72{bottom:30.240000px;}
.y1f9{bottom:32.130000px;}
.y1fe{bottom:32.220000px;}
.y211{bottom:32.310000px;}
.y1e9{bottom:33.030000px;}
.y22{bottom:35.280000px;}
.y4d{bottom:42.300000px;}
.y17c{bottom:45.540000px;}
.y1a1{bottom:48.600000px;}
.y16a{bottom:50.220000px;}
.y70{bottom:51.120000px;}
.y2a{bottom:52.920000px;}
.y1c3{bottom:54.540000px;}
.y1cb{bottom:57.510720px;}
.y4{bottom:57.774240px;}
.y7c{bottom:57.786480px;}
.y21{bottom:59.940000px;}
.y4b{bottom:63.000000px;}
.y17a{bottom:65.520000px;}
.y1c1{bottom:70.380000px;}
.y3{bottom:73.440000px;}
.y23b{bottom:76.860000px;}
.y237{bottom:76.950000px;}
.y29{bottom:77.580000px;}
.y1ca{bottom:77.670000px;}
.y7b{bottom:77.940000px;}
.y4a{bottom:83.700000px;}
.y178{bottom:85.320000px;}
.y19e{bottom:89.280000px;}
.y6f{bottom:92.340000px;}
.y1bf{bottom:95.220000px;}
.y1c9{bottom:98.280000px;}
.y7a{bottom:101.700000px;}
.y26e{bottom:102.870000px;}
.y48{bottom:104.400000px;}
.y176{bottom:105.120000px;}
.y19c{bottom:105.300000px;}
.y1bd{bottom:111.060000px;}
.y204{bottom:112.500000px;}
.y6e{bottom:113.040000px;}
.y1ad{bottom:113.940000px;}
.y116{bottom:114.189840px;}
.y236{bottom:115.380000px;}
.y74{bottom:117.360000px;}
.y19a{bottom:121.140000px;}
.ya9{bottom:122.130720px;}
.y205{bottom:122.310000px;}
.yf4{bottom:123.918480px;}
.y5d{bottom:124.200000px;}
.y174{bottom:124.920000px;}
.y46{bottom:125.100000px;}
.y23e{bottom:125.194500px;}
.y23a{bottom:125.284500px;}
.y12a{bottom:130.219920px;}
.y6d{bottom:133.740000px;}
.y1bb{bottom:135.900000px;}
.y26d{bottom:137.880000px;}
.y1c6{bottom:143.640000px;}
.y173{bottom:144.720000px;}
.y44{bottom:145.800000px;}
.y198{bottom:145.980000px;}
.ya8{bottom:147.152880px;}
.y23d{bottom:147.510000px;}
.y239{bottom:147.600000px;}
.y115{bottom:148.204080px;}
.yf3{bottom:149.122800px;}
.y1b9{bottom:151.920000px;}
.y202{bottom:152.730000px;}
.y6c{bottom:154.440000px;}
.y129{bottom:155.424240px;}
.y26c{bottom:160.200000px;}
.y141{bottom:160.822800px;}
.y196{bottom:161.820000px;}
.y203{bottom:162.540000px;}
.y171{bottom:164.700000px;}
.y42{bottom:166.500000px;}
.y1b8{bottom:167.760000px;}
.y165{bottom:167.851440px;}
.y1c4{bottom:168.480000px;}
.y23c{bottom:169.920000px;}
.y238{bottom:170.010000px;}
.ya7{bottom:172.357200px;}
.y114{bottom:173.408400px;}
.yf2{bottom:174.144960px;}
.y6b{bottom:175.140000px;}
.y71{bottom:175.320000px;}
.y128{bottom:180.628560px;}
.y26b{bottom:182.520000px;}
.y1b6{bottom:183.600000px;}
.y1c2{bottom:184.320000px;}
.y16f{bottom:184.500000px;}
.y194{bottom:186.660000px;}
.y40{bottom:187.200000px;}
.ycd{bottom:189.620640px;}
.y164{bottom:193.055760px;}
.y140{bottom:195.019200px;}
.y6a{bottom:195.840000px;}
.y200{bottom:197.370000px;}
.ya6{bottom:197.561520px;}
.y113{bottom:198.612720px;}
.yf1{bottom:199.349280px;}
.y1b4{bottom:199.440000px;}
.y192{bottom:202.500000px;}
.y16e{bottom:204.120000px;}
.y235{bottom:204.750000px;}
.y269{bottom:204.930000px;}
.y127{bottom:205.832880px;}
.y201{bottom:207.270000px;}
.y3f{bottom:207.900000px;}
.y1c0{bottom:209.160000px;}
.y26a{bottom:214.740000px;}
.ycc{bottom:214.824960px;}
.y1b3{bottom:215.280000px;}
.y69{bottom:216.540000px;}
.y163{bottom:218.077920px;}
.ya5{bottom:222.765840px;}
.y112{bottom:223.817040px;}
.yf0{bottom:224.553600px;}
.y1be{bottom:225.000000px;}
.y234{bottom:227.070000px;}
.y190{bottom:227.340000px;}
.y3d{bottom:228.600000px;}
.y13f{bottom:229.215600px;}
.y126{bottom:231.037200px;}
.y1b1{bottom:231.300000px;}
.y68{bottom:237.240000px;}
.y1fd{bottom:237.600000px;}
.ycb{bottom:240.029280px;}
.y162{bottom:243.282240px;}
.y18e{bottom:243.360000px;}
.y1b0{bottom:243.900000px;}
.y267{bottom:245.070000px;}
.y1ac{bottom:245.520000px;}
.y1ff{bottom:247.500000px;}
.ya4{bottom:247.970160px;}
.y111{bottom:249.021360px;}
.y3b{bottom:249.300000px;}
.y233{bottom:249.480000px;}
.yef{bottom:249.757920px;}
.y1bc{bottom:249.840000px;}
.y1af{bottom:254.160000px;}
.y268{bottom:254.970000px;}
.y125{bottom:256.241520px;}
.y66{bottom:257.940000px;}
.y13e{bottom:263.412000px;}
.y1aa{bottom:264.240000px;}
.yca{bottom:265.233600px;}
.y1ba{bottom:265.860000px;}
.y18c{bottom:268.200000px;}
.y161{bottom:268.486560px;}
.y3a{bottom:270.000000px;}
.y232{bottom:271.800000px;}
.ya3{bottom:273.174480px;}
.y1ae{bottom:274.140000px;}
.yee{bottom:274.962240px;}
.y1c8{bottom:276.840000px;}
.y64{bottom:278.640000px;}
.y1a8{bottom:280.080000px;}
.y1fb{bottom:282.330000px;}
.y110{bottom:283.217760px;}
.y18a{bottom:284.040000px;}
.y266{bottom:285.300000px;}
.yc9{bottom:290.437920px;}
.y38{bottom:290.700000px;}
.y1fc{bottom:292.140000px;}
.y160{bottom:293.690880px;}
.y230{bottom:294.120000px;}
.y1a6{bottom:295.920000px;}
.y1b7{bottom:297.540000px;}
.y13d{bottom:297.608400px;}
.y63{bottom:299.340000px;}
.y189{bottom:299.880000px;}
.yed{bottom:300.166560px;}
.y231{bottom:304.020000px;}
.ya2{bottom:307.370880px;}
.y265{bottom:307.620000px;}
.y10f{bottom:308.422080px;}
.y1a5{bottom:308.700000px;}
.y37{bottom:311.400000px;}
.y1b5{bottom:313.380000px;}
.yc8{bottom:315.642240px;}
.y187{bottom:315.900000px;}
.y15f{bottom:318.895200px;}
.y1a3{bottom:318.960000px;}
.y61{bottom:320.040000px;}
.y1f8{bottom:322.560000px;}
.yec{bottom:325.370880px;}
.y186{bottom:328.500000px;}
.y264{bottom:330.030000px;}
.y13c{bottom:331.804800px;}
.y36{bottom:332.100000px;}
.y1fa{bottom:332.370000px;}
.ya1{bottom:332.575200px;}
.y10e{bottom:333.626400px;}
.y22e{bottom:334.350000px;}
.y11e{bottom:334.362960px;}
.y184{bottom:338.940000px;}
.yc7{bottom:340.664400px;}
.y5f{bottom:340.740000px;}
.y15e{bottom:344.099520px;}
.y22f{bottom:344.160000px;}
.y1b2{bottom:345.240000px;}
.yeb{bottom:350.575200px;}
.y261{bottom:352.350000px;}
.y35{bottom:352.800000px;}
.y183{bottom:357.480000px;}
.ya0{bottom:357.597360px;}
.y10d{bottom:358.648560px;}
.y11d{bottom:359.567280px;}
.y5e{bottom:361.440000px;}
.y263{bottom:362.160000px;}
.yc6{bottom:365.868720px;}
.y13b{bottom:366.001200px;}
.y1f7{bottom:367.200000px;}
.y15d{bottom:369.303840px;}
.y22d{bottom:374.580000px;}
.y262{bottom:380.070000px;}
.y67{bottom:382.140000px;}
.y9f{bottom:382.801680px;}
.y10c{bottom:383.852880px;}
.yea{bottom:384.589440px;}
.y1f6{bottom:389.610000px;}
.y124{bottom:391.073040px;}
.y15c{bottom:394.326000px;}
.y22b{bottom:396.900000px;}
.y1b{bottom:398.746080px;}
.yc5{bottom:400.065120px;}
.y13a{bottom:400.197600px;}
.y182{bottom:401.940000px;}
.y65{bottom:402.840000px;}
.y22c{bottom:406.800000px;}
.y9e{bottom:408.006000px;}
.y10b{bottom:409.057200px;}
.ye9{bottom:409.793760px;}
.y25f{bottom:410.400000px;}
.y1f4{bottom:411.930000px;}
.y123{bottom:416.277360px;}
.y260{bottom:420.300000px;}
.yc4{bottom:425.269440px;}
.y15b{bottom:428.522400px;}
.y9d{bottom:433.210320px;}
.y139{bottom:434.211840px;}
.y1f3{bottom:434.250000px;}
.y10a{bottom:434.261520px;}
.ye8{bottom:434.998080px;}
.y1a{bottom:436.900320px;}
.y22a{bottom:437.130000px;}
.y122{bottom:441.481680px;}
.y62{bottom:444.240000px;}
.yc3{bottom:450.473760px;}
.y25d{bottom:450.630000px;}
.y15a{bottom:453.726720px;}
.y1f1{bottom:456.660000px;}
.y9c{bottom:458.414640px;}
.y229{bottom:459.450000px;}
.y109{bottom:459.465840px;}
.ye7{bottom:460.202400px;}
.y25e{bottom:460.440000px;}
.y60{bottom:464.940000px;}
.y1f2{bottom:466.470000px;}
.y138{bottom:468.408240px;}
.y19{bottom:475.054560px;}
.y1a0{bottom:475.380000px;}
.yc2{bottom:475.678080px;}
.y159{bottom:478.931040px;}
.y228{bottom:481.860000px;}
.y108{bottom:484.670160px;}
.ye6{bottom:485.406720px;}
.y25c{bottom:490.860000px;}
.y19f{bottom:491.220000px;}
.y9b{bottom:492.611040px;}
.y53{bottom:496.620000px;}
.y1ef{bottom:496.890000px;}
.yc1{bottom:500.882400px;}
.y137{bottom:502.604640px;}
.y158{bottom:504.135360px;}
.y227{bottom:504.180000px;}
.y1f0{bottom:506.700000px;}
.y19d{bottom:507.240000px;}
.y107{bottom:509.874480px;}
.ye5{bottom:510.611040px;}
.y25a{bottom:513.180000px;}
.y18{bottom:513.208800px;}
.y9a{bottom:517.815360px;}
.y25b{bottom:522.990000px;}
.y19b{bottom:523.080000px;}
.y51{bottom:524.340000px;}
.yc0{bottom:526.086720px;}
.y226{bottom:526.500000px;}
.y34{bottom:528.840000px;}
.y157{bottom:529.339680px;}
.y106{bottom:535.078800px;}
.ye4{bottom:535.815360px;}
.y136{bottom:536.801040px;}
.y1ed{bottom:537.030000px;}
.y99{bottom:542.837520px;}
.y1ee{bottom:546.930000px;}
.y199{bottom:547.920000px;}
.y225{bottom:548.910000px;}
.y50{bottom:550.440000px;}
.ybf{bottom:551.108880px;}
.y17{bottom:551.363040px;}
.y259{bottom:553.410000px;}
.y156{bottom:554.544000px;}
.ye3{bottom:560.837520px;}
.y197{bottom:563.760000px;}
.y98{bottom:568.041840px;}
.y105{bottom:569.093040px;}
.y135{bottom:570.997440px;}
.y4e{bottom:571.140000px;}
.y223{bottom:571.230000px;}
.y258{bottom:575.730000px;}
.y121{bottom:576.313200px;}
.y1e8{bottom:577.260000px;}
.y155{bottom:579.748320px;}
.y224{bottom:581.040000px;}
.ybe{bottom:585.305280px;}
.ye2{bottom:586.041840px;}
.y1ec{bottom:587.070000px;}
.y195{bottom:588.600000px;}
.y16{bottom:589.517280px;}
.y4c{bottom:591.840000px;}
.y97{bottom:593.246160px;}
.y104{bottom:594.297360px;}
.y11c{bottom:595.033920px;}
.y257{bottom:598.050000px;}
.y120{bottom:601.517520px;}
.y193{bottom:604.440000px;}
.y134{bottom:605.193840px;}
.y1ea{bottom:607.140000px;}
.ybd{bottom:610.509600px;}
.ye1{bottom:611.246160px;}
.y222{bottom:611.460000px;}
.y154{bottom:613.762560px;}
.y96{bottom:618.450480px;}
.y103{bottom:619.501680px;}
.y11b{bottom:620.238240px;}
.y255{bottom:620.460000px;}
.y1e6{bottom:622.800000px;}
.y11f{bottom:626.721840px;}
.y15{bottom:627.671520px;}
.y191{bottom:629.280000px;}
.y256{bottom:630.270000px;}
.y1e7{bottom:632.610000px;}
.y49{bottom:633.240000px;}
.y220{bottom:633.780000px;}
.ybc{bottom:635.713920px;}
.ye0{bottom:636.450480px;}
.y153{bottom:638.966880px;}
.y133{bottom:639.390240px;}
.y221{bottom:643.680000px;}
.y102{bottom:644.706000px;}
.y18f{bottom:645.300000px;}
.y11a{bottom:645.442560px;}
.y95{bottom:652.646880px;}
.y47{bottom:653.940000px;}
.y253{bottom:660.690000px;}
.ybb{bottom:660.918240px;}
.y1e4{bottom:662.940000px;}
.y152{bottom:664.171200px;}
.y14{bottom:665.825760px;}
.y1ab{bottom:666.180000px;}
.y101{bottom:669.910320px;}
.y18d{bottom:670.140000px;}
.y254{bottom:670.500000px;}
.ydf{bottom:670.646880px;}
.y1e5{bottom:672.840000px;}
.y132{bottom:673.404480px;}
.y21e{bottom:674.010000px;}
.y45{bottom:674.640000px;}
.y94{bottom:677.851200px;}
.y1a9{bottom:682.020000px;}
.y21f{bottom:683.820000px;}
.y18b{bottom:685.980000px;}
.yba{bottom:686.122560px;}
.y151{bottom:689.375520px;}
.y100{bottom:695.114640px;}
.y43{bottom:695.340000px;}
.yde{bottom:695.851200px;}
.y1a7{bottom:697.860000px;}
.y252{bottom:700.830000px;}
.y93{bottom:703.055520px;}
.y1e3{bottom:703.170000px;}
.y13{bottom:703.980000px;}
.y131{bottom:707.600880px;}
.yb9{bottom:711.326880px;}
.y21c{bottom:714.240000px;}
.y150{bottom:714.579840px;}
.y41{bottom:716.040000px;}
.y188{bottom:717.840000px;}
.yff{bottom:720.318960px;}
.y1a4{bottom:720.900000px;}
.ydd{bottom:721.055520px;}
.y251{bottom:723.240000px;}
.y21d{bottom:724.050000px;}
.y1e2{bottom:725.580000px;}
.y92{bottom:728.259840px;}
.yb8{bottom:736.349040px;}
.y14f{bottom:739.784160px;}
.y185{bottom:740.880000px;}
.y130{bottom:741.797280px;}
.y12{bottom:742.852800px;}
.yfe{bottom:745.341120px;}
.y250{bottom:745.560000px;}
.ydc{bottom:746.259840px;}
.y1e1{bottom:747.900000px;}
.y91{bottom:753.282000px;}
.y21a{bottom:754.380000px;}
.y3e{bottom:757.440000px;}
.yb7{bottom:761.553360px;}
.y21b{bottom:764.280000px;}
.y14e{bottom:764.988480px;}
.y24e{bottom:767.880000px;}
.y11{bottom:768.241440px;}
.y1e0{bottom:770.220000px;}
.yfd{bottom:770.545440px;}
.y180{bottom:770.580000px;}
.ydb{bottom:771.282000px;}
.y12f{bottom:775.993680px;}
.y24f{bottom:777.780000px;}
.y3c{bottom:778.140000px;}
.y90{bottom:778.486320px;}
.y14d{bottom:790.192800px;}
.y16d{bottom:790.380000px;}
.y10{bottom:790.558560px;}
.y1de{bottom:792.630000px;}
.y219{bottom:794.610000px;}
.yb6{bottom:795.749760px;}
.yda{bottom:796.486320px;}
.y119{bottom:805.478400px;}
.y24c{bottom:808.110000px;}
.y12e{bottom:810.190080px;}
.yf{bottom:812.525760px;}
.y8f{bottom:812.682720px;}
.y1db{bottom:814.950000px;}
.y14c{bottom:815.214960px;}
.y17e{bottom:816.120000px;}
.y216{bottom:816.930000px;}
.y24d{bottom:817.920000px;}
.y39{bottom:819.540000px;}
.yb5{bottom:820.954080px;}
.yd9{bottom:821.690640px;}
.y1dd{bottom:824.760000px;}
.y217{bottom:826.830000px;}
.yfc{bottom:829.946160px;}
.y118{bottom:830.682720px;}
.y218{bottom:831.330000px;}
.ye{bottom:834.298560px;}
.y8e{bottom:837.887040px;}
.y14b{bottom:840.419280px;}
.y12d{bottom:844.386480px;}
.yb4{bottom:846.158400px;}
.yd8{bottom:846.894960px;}
.y24b{bottom:848.340000px;}
.yfb{bottom:855.150480px;}
.y1d8{bottom:855.180000px;}
.y117{bottom:855.887040px;}
.y17b{bottom:855.900000px;}
.y213{bottom:861.660000px;}
.y8d{bottom:863.091360px;}
.y1da{bottom:864.990000px;}
.y14a{bottom:865.623600px;}
.y24a{bottom:870.660000px;}
.yb3{bottom:871.362720px;}
.y214{bottom:871.470000px;}
.yd{bottom:873.309960px;}
.y179{bottom:875.700000px;}
.y215{bottom:875.970000px;}
.y12c{bottom:878.582880px;}
.yfa{bottom:880.354800px;}
.yd7{bottom:881.091360px;}
.y8c{bottom:888.295680px;}
.y31{bottom:892.620000px;}
.y249{bottom:892.980000px;}
.y1d5{bottom:895.320000px;}
.y177{bottom:895.500000px;}
.yb2{bottom:896.567040px;}
.y149{bottom:899.820000px;}
.y1d7{bottom:905.220000px;}
.yf9{bottom:905.559120px;}
.y33{bottom:905.760000px;}
.yd6{bottom:906.295680px;}
.y210{bottom:906.390000px;}
.yc{bottom:909.682560px;}
.y12b{bottom:912.779280px;}
.y8b{bottom:913.500000px;}
.y175{bottom:915.300000px;}
.y247{bottom:915.390000px;}
.y212{bottom:916.290000px;}
.yb1{bottom:921.771360px;}
.y2f{bottom:922.500000px;}
.y1d6{bottom:923.040000px;}
.y148{bottom:925.024320px;}
.y248{bottom:925.200000px;}
.yf8{bottom:930.763440px;}
.yd5{bottom:931.500000px;}
.y8a{bottom:938.704320px;}
.yb{bottom:945.874800px;}
.yb0{bottom:946.793520px;}
.y83{bottom:949.307040px;}
.y147{bottom:950.228640px;}
.y20f{bottom:951.120000px;}
.y1d2{bottom:953.370000px;}
.y172{bottom:955.080000px;}
.y244{bottom:955.620000px;}
.yf7{bottom:955.785600px;}
.y28{bottom:955.800000px;}
.yd4{bottom:956.704320px;}
.y89{bottom:963.726480px;}
.y246{bottom:965.430000px;}
.y20e{bottom:973.440000px;}
.y170{bottom:974.880000px;}
.y146{bottom:975.432960px;}
.y82{bottom:978.651360px;}
.yaf{bottom:980.989920px;}
.yd3{bottom:981.726480px;}
.ya{bottom:982.247400px;}
.y245{bottom:983.250000px;}
.y2d{bottom:984.060000px;}
.y88{bottom:988.930800px;}
.y1d1{bottom:992.430000px;}
.y20b{bottom:995.760000px;}
.y20d{bottom:1005.660000px;}
.yae{bottom:1006.194240px;}
.yd2{bottom:1006.930800px;}
.y81{bottom:1007.813520px;}
.y169{bottom:1008.540000px;}
.y2b{bottom:1008.720000px;}
.y145{bottom:1009.629360px;}
.y243{bottom:1013.670000px;}
.yf6{bottom:1015.186320px;}
.y9{bottom:1018.620000px;}
.y16c{bottom:1018.980000px;}
.y1d0{bottom:1023.022800px;}
.y87{bottom:1023.127200px;}
.y20c{bottom:1023.480000px;}
.yad{bottom:1031.398560px;}
.y80{bottom:1037.157840px;}
.yf5{bottom:1040.390640px;}
.yd1{bottom:1041.127200px;}
.y1cf{bottom:1041.660000px;}
.y144{bottom:1043.643600px;}
.y20{bottom:1050.120000px;}
.y8{bottom:1052.097840px;}
.y20a{bottom:1053.810000px;}
.y86{bottom:1057.323600px;}
.y1ce{bottom:1060.282800px;}
.y242{bottom:1063.710000px;}
.yac{bottom:1065.594960px;}
.y7f{bottom:1066.320000px;}
.y166{bottom:1072.620000px;}
.y7{bottom:1074.065040px;}
.yd0{bottom:1075.323600px;}
.y208{bottom:1076.220000px;}
.y143{bottom:1077.840000px;}
.y1cd{bottom:1078.920000px;}
.y23{bottom:1085.400000px;}
.y209{bottom:1086.030000px;}
.yab{bottom:1090.799280px;}
.y7e{bottom:1090.800000px;}
.y85{bottom:1091.520000px;}
.y240{bottom:1094.040000px;}
.y6{bottom:1095.837840px;}
.y1cc{bottom:1100.880000px;}
.y168{bottom:1101.240000px;}
.y142{bottom:1102.327380px;}
.y241{bottom:1103.850000px;}
.ycf{bottom:1109.520000px;}
.y84{bottom:1116.000000px;}
.yaa{bottom:1116.003600px;}
.y206{bottom:1116.360000px;}
.y5{bottom:1117.980000px;}
.y207{bottom:1126.260000px;}
.y1c{bottom:1126.800000px;}
.yce{bottom:1134.000000px;}
.y23f{bottom:1134.270000px;}
.y7d{bottom:1141.207920px;}
.y2{bottom:1227.240000px;}
.y1{bottom:1247.400000px;}
.h14{height:4.500000px;}
.h18{height:6.840000px;}
.h30{height:10.215176px;}
.h20{height:15.477539px;}
.h1e{height:19.800000px;}
.h2d{height:22.320000px;}
.h2c{height:22.321500px;}
.h26{height:22.410000px;}
.hc{height:26.208984px;}
.h15{height:27.720000px;}
.h7{height:29.880000px;}
.hf{height:33.300000px;}
.h17{height:35.120039px;}
.h27{height:39.313477px;}
.h2a{height:40.140000px;}
.h2e{height:40.141500px;}
.h2b{height:40.230000px;}
.h13{height:41.479805px;}
.h11{height:43.506914px;}
.h35{height:43.769004px;}
.h22{height:43.909277px;}
.h31{height:44.640000px;}
.h32{height:44.730000px;}
.h33{height:44.731500px;}
.h2f{height:45.540000px;}
.h28{height:46.432617px;}
.h10{height:51.385430px;}
.h24{height:51.694980px;}
.h25{height:51.723780px;}
.hb{height:52.417969px;}
.h3{height:52.526250px;}
.h5{height:54.432000px;}
.h4{height:55.598400px;}
.h8{height:56.957344px;}
.h29{height:58.050000px;}
.h23{height:61.066934px;}
.h1b{height:61.329023px;}
.h1c{height:64.078500px;}
.h19{height:65.460938px;}
.hd{height:69.715898px;}
.ha{height:76.680000px;}
.h9{height:82.340508px;}
.h1a{height:84.060000px;}
.h6{height:85.971600px;}
.h34{height:89.370000px;}
.he{height:94.320000px;}
.h1d{height:218.160000px;}
.h21{height:288.000000px;}
.h12{height:363.780000px;}
.h1f{height:368.640000px;}
.h16{height:372.420000px;}
.h2{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:68.130000px;}
.w5{width:342.000000px;}
.w6{width:342.180000px;}
.w8{width:618.210000px;}
.w3{width:669.958500px;}
.w4{width:684.180000px;}
.w2{width:892.965000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x43{left:80.100000px;}
.x1f{left:106.200000px;}
.x1{left:111.600000px;}
.x3{left:114.300000px;}
.x1d{left:122.400000px;}
.x21{left:133.200000px;}
.x33{left:136.440000px;}
.x1a{left:142.740000px;}
.x2b{left:147.780000px;}
.x2d{left:151.740000px;}
.xb{left:158.940000px;}
.x22{left:160.204320px;}
.x3e{left:161.640000px;}
.x11{left:164.160000px;}
.x32{left:166.860000px;}
.x41{left:174.420000px;}
.x35{left:180.180000px;}
.x42{left:182.520000px;}
.x28{left:187.020000px;}
.x1e{left:190.440000px;}
.x3f{left:194.940000px;}
.x31{left:209.160000px;}
.xa{left:216.180000px;}
.x24{left:218.340000px;}
.x3c{left:221.580000px;}
.x2e{left:229.140000px;}
.x16{left:233.280000px;}
.x27{left:236.880000px;}
.x26{left:237.960000px;}
.x34{left:239.940000px;}
.xd{left:241.560000px;}
.x25{left:249.480000px;}
.x2{left:251.100000px;}
.xc{left:257.580000px;}
.x30{left:267.660000px;}
.x12{left:270.000000px;}
.x8{left:278.280000px;}
.x2c{left:283.680000px;}
.xe{left:286.920000px;}
.x19{left:289.620000px;}
.x1c{left:296.460000px;}
.x4{left:317.520000px;}
.x14{left:322.020000px;}
.x2f{left:324.360000px;}
.x2a{left:338.580000px;}
.x15{left:348.300000px;}
.x3d{left:375.660000px;}
.x17{left:380.160000px;}
.x23{left:429.120000px;}
.x20{left:433.440000px;}
.x40{left:446.490000px;}
.x36{left:448.200000px;}
.x44{left:461.160000px;}
.x18{left:467.100000px;}
.x10{left:483.660000px;}
.xf{left:498.240000px;}
.x29{left:512.460000px;}
.x5{left:520.380000px;}
.x38{left:527.220000px;}
.x39{left:567.000000px;}
.x3b{left:574.200000px;}
.x1b{left:594.000000px;}
.x6{left:597.420000px;}
.x3a{left:600.300000px;}
.x37{left:684.900000px;}
.x9{left:740.880000px;}
.x13{left:748.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.697920pt;}
.ls9{letter-spacing:-1.354240pt;}
.ls4b{letter-spacing:-0.900480pt;}
.ls2a{letter-spacing:-0.883200pt;}
.lse{letter-spacing:-0.857600pt;}
.ls27{letter-spacing:-0.824320pt;}
.lsf{letter-spacing:-0.814720pt;}
.ls22{letter-spacing:-0.765440pt;}
.ls5a{letter-spacing:-0.720000pt;}
.ls25{letter-spacing:-0.706560pt;}
.ls28{letter-spacing:-0.647680pt;}
.ls5{letter-spacing:-0.641280pt;}
.ls24{letter-spacing:-0.588800pt;}
.ls29{letter-spacing:-0.529920pt;}
.ls26{letter-spacing:-0.471040pt;}
.ls23{letter-spacing:-0.412160pt;}
.ls21{letter-spacing:-0.353280pt;}
.ls3a{letter-spacing:-0.294400pt;}
.ls57{letter-spacing:-0.267200pt;}
.ls48{letter-spacing:-0.265600pt;}
.ls13{letter-spacing:-0.255360pt;}
.ls14{letter-spacing:-0.235520pt;}
.ls4{letter-spacing:-0.213760pt;}
.ls47{letter-spacing:-0.212480pt;}
.ls30{letter-spacing:-0.176640pt;}
.lsd{letter-spacing:-0.171520pt;}
.ls58{letter-spacing:-0.144000pt;}
.ls2{letter-spacing:-0.138240pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.117760pt;}
.ls3{letter-spacing:-0.106880pt;}
.ls46{letter-spacing:-0.106240pt;}
.ls59{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.085120pt;}
.ls45{letter-spacing:-0.074880pt;}
.ls55{letter-spacing:-0.074560pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.058880pt;}
.ls5b{letter-spacing:-0.058560pt;}
.ls49{letter-spacing:-0.053120pt;}
.ls4a{letter-spacing:-0.042880pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.011776pt;}
.ls51{letter-spacing:0.016000pt;}
.ls33{letter-spacing:0.029440pt;}
.ls56{letter-spacing:0.053440pt;}
.ls35{letter-spacing:0.058880pt;}
.ls4c{letter-spacing:0.085760pt;}
.ls52{letter-spacing:0.096000pt;}
.ls4d{letter-spacing:0.106880pt;}
.ls16{letter-spacing:0.117760pt;}
.ls1c{letter-spacing:0.123648pt;}
.ls0{letter-spacing:0.138240pt;}
.ls54{letter-spacing:0.149120pt;}
.ls2f{letter-spacing:0.158976pt;}
.ls3f{letter-spacing:0.170240pt;}
.ls32{letter-spacing:0.170752pt;}
.ls5c{letter-spacing:0.192000pt;}
.ls44{letter-spacing:0.212480pt;}
.ls2d{letter-spacing:0.217856pt;}
.ls43{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.235520pt;}
.lsa{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.257280pt;}
.ls39{letter-spacing:0.288512pt;}
.ls36{letter-spacing:0.294400pt;}
.ls4e{letter-spacing:0.336000pt;}
.ls11{letter-spacing:0.765440pt;}
.ls34{letter-spacing:0.818432pt;}
.ls1b{letter-spacing:0.953856pt;}
.ls18{letter-spacing:1.413120pt;}
.ls4f{letter-spacing:1.696000pt;}
.ls1e{letter-spacing:2.060800pt;}
.ls6{letter-spacing:2.144000pt;}
.ls2b{letter-spacing:2.708480pt;}
.ls37{letter-spacing:3.356160pt;}
.ls40{letter-spacing:3.367936pt;}
.ls41{letter-spacing:3.444480pt;}
.ls5d{letter-spacing:3.744000pt;}
.ls2c{letter-spacing:3.944960pt;}
.ls38{letter-spacing:3.980288pt;}
.ls1d{letter-spacing:4.592640pt;}
.ls2e{letter-spacing:4.651520pt;}
.ls3e{letter-spacing:5.240320pt;}
.ls42{letter-spacing:5.287424pt;}
.ls31{letter-spacing:5.888000pt;}
.ls1a{letter-spacing:6.535680pt;}
.ls19{letter-spacing:6.600448pt;}
.ls1f{letter-spacing:6.653440pt;}
.ls3d{letter-spacing:7.831040pt;}
.ls17{letter-spacing:8.341760pt;}
.ls3b{letter-spacing:10.362880pt;}
.ls5e{letter-spacing:11.936000pt;}
.ls50{letter-spacing:24.736000pt;}
.ls53{letter-spacing:34.765440pt;}
.ls10{letter-spacing:58.997760pt;}
.wsa0{word-spacing:-20.876800pt;}
.ws8f{word-spacing:-20.741760pt;}
.wsa1{word-spacing:-20.653120pt;}
.ws2{word-spacing:-20.414080pt;}
.ws79{word-spacing:-19.407360pt;}
.ws86{word-spacing:-19.237120pt;}
.ws29{word-spacing:-18.981760pt;}
.wsf{word-spacing:-18.048000pt;}
.wsc{word-spacing:-17.728000pt;}
.wsb{word-spacing:-17.664000pt;}
.wsa{word-spacing:-16.250880pt;}
.ws9{word-spacing:-15.014400pt;}
.ws94{word-spacing:-14.979840pt;}
.wsa3{word-spacing:-14.963200pt;}
.wsa4{word-spacing:-14.909760pt;}
.ws93{word-spacing:-14.767360pt;}
.ws91{word-spacing:-14.661120pt;}
.wsa2{word-spacing:-14.589120pt;}
.ws90{word-spacing:-14.554880pt;}
.ws92{word-spacing:-14.501760pt;}
.ws7a{word-spacing:-13.601280pt;}
.ws2a{word-spacing:-13.542400pt;}
.wsd0{word-spacing:-13.440000pt;}
.ws34{word-spacing:-13.424640pt;}
.ws1{word-spacing:-13.409280pt;}
.wsc2{word-spacing:-13.344000pt;}
.ws2f{word-spacing:-13.306880pt;}
.ws32{word-spacing:-13.248000pt;}
.wsa5{word-spacing:-13.200000pt;}
.wsa7{word-spacing:-13.176000pt;}
.ws0{word-spacing:-13.132800pt;}
.ws5f{word-spacing:-13.130240pt;}
.ws30{word-spacing:-13.071360pt;}
.ws60{word-spacing:-12.953600pt;}
.ws31{word-spacing:-12.894720pt;}
.ws36{word-spacing:-12.835840pt;}
.ws72{word-spacing:-12.776960pt;}
.ws35{word-spacing:-12.659200pt;}
.wsa6{word-spacing:-12.624000pt;}
.ws33{word-spacing:-12.600320pt;}
.ws69{word-spacing:-12.541440pt;}
.ws6a{word-spacing:-12.482560pt;}
.ws95{word-spacing:-12.006400pt;}
.wsd{word-spacing:-11.920640pt;}
.wse{word-spacing:-11.749120pt;}
.ws8d{word-spacing:-3.827200pt;}
.ws88{word-spacing:-3.650560pt;}
.ws4d{word-spacing:-3.179520pt;}
.ws4f{word-spacing:-3.002880pt;}
.ws4e{word-spacing:-2.826240pt;}
.ws4a{word-spacing:-2.531840pt;}
.ws42{word-spacing:-2.355200pt;}
.wsaf{word-spacing:-2.304000pt;}
.ws44{word-spacing:-2.178560pt;}
.ws23{word-spacing:-2.144000pt;}
.ws70{word-spacing:-1.884160pt;}
.ws71{word-spacing:-1.707520pt;}
.ws63{word-spacing:-1.530880pt;}
.ws20{word-spacing:-1.500800pt;}
.wsbc{word-spacing:-1.488000pt;}
.wsbb{word-spacing:-1.392000pt;}
.wsbd{word-spacing:-1.344000pt;}
.ws5d{word-spacing:-1.236480pt;}
.ws50{word-spacing:-1.059840pt;}
.ws51{word-spacing:-0.883200pt;}
.wscc{word-spacing:-0.864000pt;}
.ws1c{word-spacing:-0.857600pt;}
.ws81{word-spacing:-0.765440pt;}
.wscd{word-spacing:-0.720000pt;}
.ws38{word-spacing:-0.647680pt;}
.ws2e{word-spacing:-0.471040pt;}
.ws4b{word-spacing:-0.294400pt;}
.ws99{word-spacing:-0.265600pt;}
.ws9d{word-spacing:-0.257280pt;}
.ws11{word-spacing:-0.235520pt;}
.ws1a{word-spacing:-0.214400pt;}
.ws9a{word-spacing:-0.212480pt;}
.wsc0{word-spacing:-0.192000pt;}
.ws87{word-spacing:-0.170240pt;}
.wsa9{word-spacing:-0.160320pt;}
.ws12{word-spacing:-0.128000pt;}
.ws5e{word-spacing:-0.117760pt;}
.wsae{word-spacing:-0.096000pt;}
.ws6c{word-spacing:-0.058880pt;}
.wsab{word-spacing:-0.053440pt;}
.wsc1{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws96{word-spacing:0.053120pt;}
.ws43{word-spacing:0.058880pt;}
.ws37{word-spacing:0.085120pt;}
.wsb1{word-spacing:0.096000pt;}
.ws9b{word-spacing:0.106240pt;}
.ws7{word-spacing:0.106880pt;}
.ws2c{word-spacing:0.117760pt;}
.wsb3{word-spacing:0.144000pt;}
.wsa8{word-spacing:0.149120pt;}
.ws1b{word-spacing:0.171520pt;}
.ws2d{word-spacing:0.176640pt;}
.ws13{word-spacing:0.192000pt;}
.ws8{word-spacing:0.207360pt;}
.ws5{word-spacing:0.213760pt;}
.ws3f{word-spacing:0.235520pt;}
.wsb0{word-spacing:0.240000pt;}
.wsaa{word-spacing:0.267200pt;}
.ws76{word-spacing:0.294400pt;}
.ws9c{word-spacing:0.300160pt;}
.ws4{word-spacing:0.345600pt;}
.ws2b{word-spacing:0.353280pt;}
.ws10{word-spacing:0.412160pt;}
.ws27{word-spacing:0.428800pt;}
.ws41{word-spacing:0.471040pt;}
.ws56{word-spacing:0.529920pt;}
.wsbf{word-spacing:0.576000pt;}
.ws77{word-spacing:0.588800pt;}
.ws6{word-spacing:0.641280pt;}
.ws49{word-spacing:0.647680pt;}
.ws6b{word-spacing:0.680960pt;}
.ws98{word-spacing:0.690560pt;}
.ws3a{word-spacing:0.706560pt;}
.ws39{word-spacing:0.765440pt;}
.ws24{word-spacing:0.814720pt;}
.ws47{word-spacing:0.824320pt;}
.ws57{word-spacing:0.883200pt;}
.ws48{word-spacing:1.000960pt;}
.ws9f{word-spacing:1.009280pt;}
.ws14{word-spacing:1.072000pt;}
.ws9e{word-spacing:1.157760pt;}
.ws53{word-spacing:1.295360pt;}
.ws3b{word-spacing:1.472000pt;}
.ws85{word-spacing:1.530880pt;}
.wsbe{word-spacing:1.536000pt;}
.ws3c{word-spacing:1.648640pt;}
.ws16{word-spacing:1.715200pt;}
.wsad{word-spacing:1.728000pt;}
.wsac{word-spacing:1.872000pt;}
.ws55{word-spacing:1.943040pt;}
.ws5a{word-spacing:2.119680pt;}
.ws5c{word-spacing:2.237440pt;}
.ws54{word-spacing:2.296320pt;}
.wsb6{word-spacing:2.352000pt;}
.ws21{word-spacing:2.358400pt;}
.wsb7{word-spacing:2.496000pt;}
.ws7e{word-spacing:2.590720pt;}
.ws8e{word-spacing:2.649600pt;}
.wsd5{word-spacing:2.688000pt;}
.ws6f{word-spacing:2.767360pt;}
.wsd4{word-spacing:2.832000pt;}
.ws64{word-spacing:2.944000pt;}
.ws1d{word-spacing:2.958720pt;}
.ws8c{word-spacing:3.061760pt;}
.ws84{word-spacing:3.238400pt;}
.ws68{word-spacing:3.415040pt;}
.wsb5{word-spacing:3.456000pt;}
.ws5b{word-spacing:3.591680pt;}
.ws22{word-spacing:3.601920pt;}
.wsc5{word-spacing:3.648000pt;}
.wsc6{word-spacing:3.792000pt;}
.ws6d{word-spacing:3.827200pt;}
.wsd1{word-spacing:3.936000pt;}
.ws6e{word-spacing:4.003840pt;}
.wsd2{word-spacing:4.080000pt;}
.ws8b{word-spacing:4.121600pt;}
.ws65{word-spacing:4.180480pt;}
.ws25{word-spacing:4.245120pt;}
.wsc4{word-spacing:4.416000pt;}
.ws62{word-spacing:4.474880pt;}
.ws74{word-spacing:4.592640pt;}
.ws52{word-spacing:4.651520pt;}
.wsb4{word-spacing:4.752000pt;}
.ws61{word-spacing:4.828160pt;}
.ws28{word-spacing:4.888320pt;}
.ws7b{word-spacing:5.122560pt;}
.ws7d{word-spacing:5.299200pt;}
.wsba{word-spacing:5.376000pt;}
.ws7c{word-spacing:5.475840pt;}
.ws17{word-spacing:5.531520pt;}
.ws82{word-spacing:5.770240pt;}
.ws59{word-spacing:5.946880pt;}
.ws40{word-spacing:6.005760pt;}
.ws58{word-spacing:6.123520pt;}
.ws18{word-spacing:6.217600pt;}
.ws3e{word-spacing:6.417920pt;}
.ws66{word-spacing:6.535680pt;}
.ws4c{word-spacing:6.594560pt;}
.ws3d{word-spacing:6.771200pt;}
.ws1e{word-spacing:6.817920pt;}
.ws78{word-spacing:7.065600pt;}
.ws67{word-spacing:7.242240pt;}
.ws19{word-spacing:7.461120pt;}
.wsd3{word-spacing:7.632000pt;}
.ws46{word-spacing:7.713280pt;}
.wscb{word-spacing:7.920000pt;}
.ws45{word-spacing:8.066560pt;}
.ws89{word-spacing:8.360960pt;}
.ws83{word-spacing:8.537600pt;}
.ws8a{word-spacing:8.714240pt;}
.wsd9{word-spacing:8.880000pt;}
.wsca{word-spacing:9.216000pt;}
.ws7f{word-spacing:10.245120pt;}
.wsc7{word-spacing:10.368000pt;}
.ws80{word-spacing:10.421760pt;}
.wsc9{word-spacing:10.464000pt;}
.wsc8{word-spacing:10.512000pt;}
.ws75{word-spacing:10.598400pt;}
.wsc3{word-spacing:11.472000pt;}
.wsce{word-spacing:11.952000pt;}
.wscf{word-spacing:12.096000pt;}
.ws15{word-spacing:12.563840pt;}
.ws26{word-spacing:13.207040pt;}
.ws73{word-spacing:13.836800pt;}
.ws1f{word-spacing:15.779840pt;}
.wsd7{word-spacing:16.128000pt;}
.wsd8{word-spacing:16.272000pt;}
.ws97{word-spacing:18.007680pt;}
.wsd6{word-spacing:22.656000pt;}
.wsb2{word-spacing:24.912000pt;}
.wsda{word-spacing:34.176000pt;}
.wsb8{word-spacing:34.491840pt;}
.wsb9{word-spacing:34.800000pt;}
._6{margin-left:-11.322752pt;}
._5{margin-left:-5.305600pt;}
._b{margin-left:-3.085952pt;}
._4{margin-left:-2.181760pt;}
._2{margin-left:-0.919168pt;}
._1{width:1.002240pt;}
._3{width:2.581760pt;}
._a{width:4.003840pt;}
._8{width:5.158528pt;}
._7{width:6.231552pt;}
._9{width:7.124480pt;}
._e{width:8.241920pt;}
._d{width:10.035712pt;}
._11{width:11.912960pt;}
._13{width:16.443520pt;}
._12{width:22.704000pt;}
._f{width:25.301760pt;}
._10{width:34.656000pt;}
._c{width:754.664960pt;}
._0{width:1890.695680pt;}
.fse{font-size:10.560000pt;}
.fs9{font-size:16.000000pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:42.880000pt;}
.fsd{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fsc{font-size:53.440000pt;}
.fsa{font-size:58.560000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fsb{font-size:74.560000pt;}
.fs8{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y5c{bottom:-208.160000pt;}
.y5b{bottom:-183.360000pt;}
.y5a{bottom:-155.680000pt;}
.y59{bottom:-128.160000pt;}
.y58{bottom:-100.480000pt;}
.y79{bottom:-98.240000pt;}
.y78{bottom:-75.360000pt;}
.y57{bottom:-72.960000pt;}
.y27{bottom:-72.160000pt;}
.y77{bottom:-52.320000pt;}
.y26{bottom:-48.640000pt;}
.y56{bottom:-45.280000pt;}
.y1f{bottom:-43.680000pt;}
.y25{bottom:-34.400000pt;}
.y76{bottom:-29.280000pt;}
.y55{bottom:-17.760000pt;}
.y1e{bottom:-12.480000pt;}
.y52{bottom:-8.320000pt;}
.y75{bottom:-6.080000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:3.200000pt;}
.y181{bottom:5.120000pt;}
.y17f{bottom:5.280000pt;}
.y73{bottom:8.480000pt;}
.y1df{bottom:8.720000pt;}
.y1d4{bottom:8.800000pt;}
.y1d3{bottom:8.880000pt;}
.y16b{bottom:9.280000pt;}
.y24{bottom:9.440000pt;}
.y54{bottom:9.760000pt;}
.y32{bottom:11.680000pt;}
.y1c7{bottom:12.160000pt;}
.y1d{bottom:13.120000pt;}
.y30{bottom:17.280000pt;}
.y1f5{bottom:17.360000pt;}
.y1a2{bottom:18.560000pt;}
.y4f{bottom:19.200000pt;}
.y17d{bottom:22.880000pt;}
.y1d9{bottom:24.560000pt;}
.y1dc{bottom:24.640000pt;}
.y2c{bottom:25.120000pt;}
.y167{bottom:25.440000pt;}
.y1c5{bottom:26.400000pt;}
.y1eb{bottom:26.560000pt;}
.y72{bottom:26.880000pt;}
.y1f9{bottom:28.560000pt;}
.y1fe{bottom:28.640000pt;}
.y211{bottom:28.720000pt;}
.y1e9{bottom:29.360000pt;}
.y22{bottom:31.360000pt;}
.y4d{bottom:37.600000pt;}
.y17c{bottom:40.480000pt;}
.y1a1{bottom:43.200000pt;}
.y16a{bottom:44.640000pt;}
.y70{bottom:45.440000pt;}
.y2a{bottom:47.040000pt;}
.y1c3{bottom:48.480000pt;}
.y1cb{bottom:51.120640pt;}
.y4{bottom:51.354880pt;}
.y7c{bottom:51.365760pt;}
.y21{bottom:53.280000pt;}
.y4b{bottom:56.000000pt;}
.y17a{bottom:58.240000pt;}
.y1c1{bottom:62.560000pt;}
.y3{bottom:65.280000pt;}
.y23b{bottom:68.320000pt;}
.y237{bottom:68.400000pt;}
.y29{bottom:68.960000pt;}
.y1ca{bottom:69.040000pt;}
.y7b{bottom:69.280000pt;}
.y4a{bottom:74.400000pt;}
.y178{bottom:75.840000pt;}
.y19e{bottom:79.360000pt;}
.y6f{bottom:82.080000pt;}
.y1bf{bottom:84.640000pt;}
.y1c9{bottom:87.360000pt;}
.y7a{bottom:90.400000pt;}
.y26e{bottom:91.440000pt;}
.y48{bottom:92.800000pt;}
.y176{bottom:93.440000pt;}
.y19c{bottom:93.600000pt;}
.y1bd{bottom:98.720000pt;}
.y204{bottom:100.000000pt;}
.y6e{bottom:100.480000pt;}
.y1ad{bottom:101.280000pt;}
.y116{bottom:101.502080pt;}
.y236{bottom:102.560000pt;}
.y74{bottom:104.320000pt;}
.y19a{bottom:107.680000pt;}
.ya9{bottom:108.560640pt;}
.y205{bottom:108.720000pt;}
.yf4{bottom:110.149760pt;}
.y5d{bottom:110.400000pt;}
.y174{bottom:111.040000pt;}
.y46{bottom:111.200000pt;}
.y23e{bottom:111.284000pt;}
.y23a{bottom:111.364000pt;}
.y12a{bottom:115.751040pt;}
.y6d{bottom:118.880000pt;}
.y1bb{bottom:120.800000pt;}
.y26d{bottom:122.560000pt;}
.y1c6{bottom:127.680000pt;}
.y173{bottom:128.640000pt;}
.y44{bottom:129.600000pt;}
.y198{bottom:129.760000pt;}
.ya8{bottom:130.802560pt;}
.y23d{bottom:131.120000pt;}
.y239{bottom:131.200000pt;}
.y115{bottom:131.736960pt;}
.yf3{bottom:132.553600pt;}
.y1b9{bottom:135.040000pt;}
.y202{bottom:135.760000pt;}
.y6c{bottom:137.280000pt;}
.y129{bottom:138.154880pt;}
.y26c{bottom:142.400000pt;}
.y141{bottom:142.953600pt;}
.y196{bottom:143.840000pt;}
.y203{bottom:144.480000pt;}
.y171{bottom:146.400000pt;}
.y42{bottom:148.000000pt;}
.y1b8{bottom:149.120000pt;}
.y165{bottom:149.201280pt;}
.y1c4{bottom:149.760000pt;}
.y23c{bottom:151.040000pt;}
.y238{bottom:151.120000pt;}
.ya7{bottom:153.206400pt;}
.y114{bottom:154.140800pt;}
.yf2{bottom:154.795520pt;}
.y6b{bottom:155.680000pt;}
.y71{bottom:155.840000pt;}
.y128{bottom:160.558720pt;}
.y26b{bottom:162.240000pt;}
.y1b6{bottom:163.200000pt;}
.y1c2{bottom:163.840000pt;}
.y16f{bottom:164.000000pt;}
.y194{bottom:165.920000pt;}
.y40{bottom:166.400000pt;}
.ycd{bottom:168.551680pt;}
.y164{bottom:171.605120pt;}
.y140{bottom:173.350400pt;}
.y6a{bottom:174.080000pt;}
.y200{bottom:175.440000pt;}
.ya6{bottom:175.610240pt;}
.y113{bottom:176.544640pt;}
.yf1{bottom:177.199360pt;}
.y1b4{bottom:177.280000pt;}
.y192{bottom:180.000000pt;}
.y16e{bottom:181.440000pt;}
.y235{bottom:182.000000pt;}
.y269{bottom:182.160000pt;}
.y127{bottom:182.962560pt;}
.y201{bottom:184.240000pt;}
.y3f{bottom:184.800000pt;}
.y1c0{bottom:185.920000pt;}
.y26a{bottom:190.880000pt;}
.ycc{bottom:190.955520pt;}
.y1b3{bottom:191.360000pt;}
.y69{bottom:192.480000pt;}
.y163{bottom:193.847040pt;}
.ya5{bottom:198.014080pt;}
.y112{bottom:198.948480pt;}
.yf0{bottom:199.603200pt;}
.y1be{bottom:200.000000pt;}
.y234{bottom:201.840000pt;}
.y190{bottom:202.080000pt;}
.y3d{bottom:203.200000pt;}
.y13f{bottom:203.747200pt;}
.y126{bottom:205.366400pt;}
.y1b1{bottom:205.600000pt;}
.y68{bottom:210.880000pt;}
.y1fd{bottom:211.200000pt;}
.ycb{bottom:213.359360pt;}
.y162{bottom:216.250880pt;}
.y18e{bottom:216.320000pt;}
.y1b0{bottom:216.800000pt;}
.y267{bottom:217.840000pt;}
.y1ac{bottom:218.240000pt;}
.y1ff{bottom:220.000000pt;}
.ya4{bottom:220.417920pt;}
.y111{bottom:221.352320pt;}
.y3b{bottom:221.600000pt;}
.y233{bottom:221.760000pt;}
.yef{bottom:222.007040pt;}
.y1bc{bottom:222.080000pt;}
.y1af{bottom:225.920000pt;}
.y268{bottom:226.640000pt;}
.y125{bottom:227.770240pt;}
.y66{bottom:229.280000pt;}
.y13e{bottom:234.144000pt;}
.y1aa{bottom:234.880000pt;}
.yca{bottom:235.763200pt;}
.y1ba{bottom:236.320000pt;}
.y18c{bottom:238.400000pt;}
.y161{bottom:238.654720pt;}
.y3a{bottom:240.000000pt;}
.y232{bottom:241.600000pt;}
.ya3{bottom:242.821760pt;}
.y1ae{bottom:243.680000pt;}
.yee{bottom:244.410880pt;}
.y1c8{bottom:246.080000pt;}
.y64{bottom:247.680000pt;}
.y1a8{bottom:248.960000pt;}
.y1fb{bottom:250.960000pt;}
.y110{bottom:251.749120pt;}
.y18a{bottom:252.480000pt;}
.y266{bottom:253.600000pt;}
.yc9{bottom:258.167040pt;}
.y38{bottom:258.400000pt;}
.y1fc{bottom:259.680000pt;}
.y160{bottom:261.058560pt;}
.y230{bottom:261.440000pt;}
.y1a6{bottom:263.040000pt;}
.y1b7{bottom:264.480000pt;}
.y13d{bottom:264.540800pt;}
.y63{bottom:266.080000pt;}
.y189{bottom:266.560000pt;}
.yed{bottom:266.814720pt;}
.y231{bottom:270.240000pt;}
.ya2{bottom:273.218560pt;}
.y265{bottom:273.440000pt;}
.y10f{bottom:274.152960pt;}
.y1a5{bottom:274.400000pt;}
.y37{bottom:276.800000pt;}
.y1b5{bottom:278.560000pt;}
.yc8{bottom:280.570880pt;}
.y187{bottom:280.800000pt;}
.y15f{bottom:283.462400pt;}
.y1a3{bottom:283.520000pt;}
.y61{bottom:284.480000pt;}
.y1f8{bottom:286.720000pt;}
.yec{bottom:289.218560pt;}
.y186{bottom:292.000000pt;}
.y264{bottom:293.360000pt;}
.y13c{bottom:294.937600pt;}
.y36{bottom:295.200000pt;}
.y1fa{bottom:295.440000pt;}
.ya1{bottom:295.622400pt;}
.y10e{bottom:296.556800pt;}
.y22e{bottom:297.200000pt;}
.y11e{bottom:297.211520pt;}
.y184{bottom:301.280000pt;}
.yc7{bottom:302.812800pt;}
.y5f{bottom:302.880000pt;}
.y15e{bottom:305.866240pt;}
.y22f{bottom:305.920000pt;}
.y1b2{bottom:306.880000pt;}
.yeb{bottom:311.622400pt;}
.y261{bottom:313.200000pt;}
.y35{bottom:313.600000pt;}
.y183{bottom:317.760000pt;}
.ya0{bottom:317.864320pt;}
.y10d{bottom:318.798720pt;}
.y11d{bottom:319.615360pt;}
.y5e{bottom:321.280000pt;}
.y263{bottom:321.920000pt;}
.yc6{bottom:325.216640pt;}
.y13b{bottom:325.334400pt;}
.y1f7{bottom:326.400000pt;}
.y15d{bottom:328.270080pt;}
.y22d{bottom:332.960000pt;}
.y262{bottom:337.840000pt;}
.y67{bottom:339.680000pt;}
.y9f{bottom:340.268160pt;}
.y10c{bottom:341.202560pt;}
.yea{bottom:341.857280pt;}
.y1f6{bottom:346.320000pt;}
.y124{bottom:347.620480pt;}
.y15c{bottom:350.512000pt;}
.y22b{bottom:352.800000pt;}
.y1b{bottom:354.440960pt;}
.yc5{bottom:355.613440pt;}
.y13a{bottom:355.731200pt;}
.y182{bottom:357.280000pt;}
.y65{bottom:358.080000pt;}
.y22c{bottom:361.600000pt;}
.y9e{bottom:362.672000pt;}
.y10b{bottom:363.606400pt;}
.ye9{bottom:364.261120pt;}
.y25f{bottom:364.800000pt;}
.y1f4{bottom:366.160000pt;}
.y123{bottom:370.024320pt;}
.y260{bottom:373.600000pt;}
.yc4{bottom:378.017280pt;}
.y15b{bottom:380.908800pt;}
.y9d{bottom:385.075840pt;}
.y139{bottom:385.966080pt;}
.y1f3{bottom:386.000000pt;}
.y10a{bottom:386.010240pt;}
.ye8{bottom:386.664960pt;}
.y1a{bottom:388.355840pt;}
.y22a{bottom:388.560000pt;}
.y122{bottom:392.428160pt;}
.y62{bottom:394.880000pt;}
.yc3{bottom:400.421120pt;}
.y25d{bottom:400.560000pt;}
.y15a{bottom:403.312640pt;}
.y1f1{bottom:405.920000pt;}
.y9c{bottom:407.479680pt;}
.y229{bottom:408.400000pt;}
.y109{bottom:408.414080pt;}
.ye7{bottom:409.068800pt;}
.y25e{bottom:409.280000pt;}
.y60{bottom:413.280000pt;}
.y1f2{bottom:414.640000pt;}
.y138{bottom:416.362880pt;}
.y19{bottom:422.270720pt;}
.y1a0{bottom:422.560000pt;}
.yc2{bottom:422.824960pt;}
.y159{bottom:425.716480pt;}
.y228{bottom:428.320000pt;}
.y108{bottom:430.817920pt;}
.ye6{bottom:431.472640pt;}
.y25c{bottom:436.320000pt;}
.y19f{bottom:436.640000pt;}
.y9b{bottom:437.876480pt;}
.y53{bottom:441.440000pt;}
.y1ef{bottom:441.680000pt;}
.yc1{bottom:445.228800pt;}
.y137{bottom:446.759680pt;}
.y158{bottom:448.120320pt;}
.y227{bottom:448.160000pt;}
.y1f0{bottom:450.400000pt;}
.y19d{bottom:450.880000pt;}
.y107{bottom:453.221760pt;}
.ye5{bottom:453.876480pt;}
.y25a{bottom:456.160000pt;}
.y18{bottom:456.185600pt;}
.y9a{bottom:460.280320pt;}
.y25b{bottom:464.880000pt;}
.y19b{bottom:464.960000pt;}
.y51{bottom:466.080000pt;}
.yc0{bottom:467.632640pt;}
.y226{bottom:468.000000pt;}
.y34{bottom:470.080000pt;}
.y157{bottom:470.524160pt;}
.y106{bottom:475.625600pt;}
.ye4{bottom:476.280320pt;}
.y136{bottom:477.156480pt;}
.y1ed{bottom:477.360000pt;}
.y99{bottom:482.522240pt;}
.y1ee{bottom:486.160000pt;}
.y199{bottom:487.040000pt;}
.y225{bottom:487.920000pt;}
.y50{bottom:489.280000pt;}
.ybf{bottom:489.874560pt;}
.y17{bottom:490.100480pt;}
.y259{bottom:491.920000pt;}
.y156{bottom:492.928000pt;}
.ye3{bottom:498.522240pt;}
.y197{bottom:501.120000pt;}
.y98{bottom:504.926080pt;}
.y105{bottom:505.860480pt;}
.y135{bottom:507.553280pt;}
.y4e{bottom:507.680000pt;}
.y223{bottom:507.760000pt;}
.y258{bottom:511.760000pt;}
.y121{bottom:512.278400pt;}
.y1e8{bottom:513.120000pt;}
.y155{bottom:515.331840pt;}
.y224{bottom:516.480000pt;}
.ybe{bottom:520.271360pt;}
.ye2{bottom:520.926080pt;}
.y1ec{bottom:521.840000pt;}
.y195{bottom:523.200000pt;}
.y16{bottom:524.015360pt;}
.y4c{bottom:526.080000pt;}
.y97{bottom:527.329920pt;}
.y104{bottom:528.264320pt;}
.y11c{bottom:528.919040pt;}
.y257{bottom:531.600000pt;}
.y120{bottom:534.682240pt;}
.y193{bottom:537.280000pt;}
.y134{bottom:537.950080pt;}
.y1ea{bottom:539.680000pt;}
.ybd{bottom:542.675200pt;}
.ye1{bottom:543.329920pt;}
.y222{bottom:543.520000pt;}
.y154{bottom:545.566720pt;}
.y96{bottom:549.733760pt;}
.y103{bottom:550.668160pt;}
.y11b{bottom:551.322880pt;}
.y255{bottom:551.520000pt;}
.y1e6{bottom:553.600000pt;}
.y11f{bottom:557.086080pt;}
.y15{bottom:557.930240pt;}
.y191{bottom:559.360000pt;}
.y256{bottom:560.240000pt;}
.y1e7{bottom:562.320000pt;}
.y49{bottom:562.880000pt;}
.y220{bottom:563.360000pt;}
.ybc{bottom:565.079040pt;}
.ye0{bottom:565.733760pt;}
.y153{bottom:567.970560pt;}
.y133{bottom:568.346880pt;}
.y221{bottom:572.160000pt;}
.y102{bottom:573.072000pt;}
.y18f{bottom:573.600000pt;}
.y11a{bottom:573.726720pt;}
.y95{bottom:580.130560pt;}
.y47{bottom:581.280000pt;}
.y253{bottom:587.280000pt;}
.ybb{bottom:587.482880pt;}
.y1e4{bottom:589.280000pt;}
.y152{bottom:590.374400pt;}
.y14{bottom:591.845120pt;}
.y1ab{bottom:592.160000pt;}
.y101{bottom:595.475840pt;}
.y18d{bottom:595.680000pt;}
.y254{bottom:596.000000pt;}
.ydf{bottom:596.130560pt;}
.y1e5{bottom:598.080000pt;}
.y132{bottom:598.581760pt;}
.y21e{bottom:599.120000pt;}
.y45{bottom:599.680000pt;}
.y94{bottom:602.534400pt;}
.y1a9{bottom:606.240000pt;}
.y21f{bottom:607.840000pt;}
.y18b{bottom:609.760000pt;}
.yba{bottom:609.886720pt;}
.y151{bottom:612.778240pt;}
.y100{bottom:617.879680pt;}
.y43{bottom:618.080000pt;}
.yde{bottom:618.534400pt;}
.y1a7{bottom:620.320000pt;}
.y252{bottom:622.960000pt;}
.y93{bottom:624.938240pt;}
.y1e3{bottom:625.040000pt;}
.y13{bottom:625.760000pt;}
.y131{bottom:628.978560pt;}
.yb9{bottom:632.290560pt;}
.y21c{bottom:634.880000pt;}
.y150{bottom:635.182080pt;}
.y41{bottom:636.480000pt;}
.y188{bottom:638.080000pt;}
.yff{bottom:640.283520pt;}
.y1a4{bottom:640.800000pt;}
.ydd{bottom:640.938240pt;}
.y251{bottom:642.880000pt;}
.y21d{bottom:643.600000pt;}
.y1e2{bottom:644.960000pt;}
.y92{bottom:647.342080pt;}
.yb8{bottom:654.532480pt;}
.y14f{bottom:657.585920pt;}
.y185{bottom:658.560000pt;}
.y130{bottom:659.375360pt;}
.y12{bottom:660.313600pt;}
.yfe{bottom:662.525440pt;}
.y250{bottom:662.720000pt;}
.ydc{bottom:663.342080pt;}
.y1e1{bottom:664.800000pt;}
.y91{bottom:669.584000pt;}
.y21a{bottom:670.560000pt;}
.y3e{bottom:673.280000pt;}
.yb7{bottom:676.936320pt;}
.y21b{bottom:679.360000pt;}
.y14e{bottom:679.989760pt;}
.y24e{bottom:682.560000pt;}
.y11{bottom:682.881280pt;}
.y1e0{bottom:684.640000pt;}
.yfd{bottom:684.929280pt;}
.y180{bottom:684.960000pt;}
.ydb{bottom:685.584000pt;}
.y12f{bottom:689.772160pt;}
.y24f{bottom:691.360000pt;}
.y3c{bottom:691.680000pt;}
.y90{bottom:691.987840pt;}
.y14d{bottom:702.393600pt;}
.y16d{bottom:702.560000pt;}
.y10{bottom:702.718720pt;}
.y1de{bottom:704.560000pt;}
.y219{bottom:706.320000pt;}
.yb6{bottom:707.333120pt;}
.yda{bottom:707.987840pt;}
.y119{bottom:715.980800pt;}
.y24c{bottom:718.320000pt;}
.y12e{bottom:720.168960pt;}
.yf{bottom:722.245120pt;}
.y8f{bottom:722.384640pt;}
.y1db{bottom:724.400000pt;}
.y14c{bottom:724.635520pt;}
.y17e{bottom:725.440000pt;}
.y216{bottom:726.160000pt;}
.y24d{bottom:727.040000pt;}
.y39{bottom:728.480000pt;}
.yb5{bottom:729.736960pt;}
.yd9{bottom:730.391680pt;}
.y1dd{bottom:733.120000pt;}
.y217{bottom:734.960000pt;}
.yfc{bottom:737.729920pt;}
.y118{bottom:738.384640pt;}
.y218{bottom:738.960000pt;}
.ye{bottom:741.598720pt;}
.y8e{bottom:744.788480pt;}
.y14b{bottom:747.039360pt;}
.y12d{bottom:750.565760pt;}
.yb4{bottom:752.140800pt;}
.yd8{bottom:752.795520pt;}
.y24b{bottom:754.080000pt;}
.yfb{bottom:760.133760pt;}
.y1d8{bottom:760.160000pt;}
.y117{bottom:760.788480pt;}
.y17b{bottom:760.800000pt;}
.y213{bottom:765.920000pt;}
.y8d{bottom:767.192320pt;}
.y1da{bottom:768.880000pt;}
.y14a{bottom:769.443200pt;}
.y24a{bottom:773.920000pt;}
.yb3{bottom:774.544640pt;}
.y214{bottom:774.640000pt;}
.yd{bottom:776.275520pt;}
.y179{bottom:778.400000pt;}
.y215{bottom:778.640000pt;}
.y12c{bottom:780.962560pt;}
.yfa{bottom:782.537600pt;}
.yd7{bottom:783.192320pt;}
.y8c{bottom:789.596160pt;}
.y31{bottom:793.440000pt;}
.y249{bottom:793.760000pt;}
.y1d5{bottom:795.840000pt;}
.y177{bottom:796.000000pt;}
.yb2{bottom:796.948480pt;}
.y149{bottom:799.840000pt;}
.y1d7{bottom:804.640000pt;}
.yf9{bottom:804.941440pt;}
.y33{bottom:805.120000pt;}
.yd6{bottom:805.596160pt;}
.y210{bottom:805.680000pt;}
.yc{bottom:808.606720pt;}
.y12b{bottom:811.359360pt;}
.y8b{bottom:812.000000pt;}
.y175{bottom:813.600000pt;}
.y247{bottom:813.680000pt;}
.y212{bottom:814.480000pt;}
.yb1{bottom:819.352320pt;}
.y2f{bottom:820.000000pt;}
.y1d6{bottom:820.480000pt;}
.y148{bottom:822.243840pt;}
.y248{bottom:822.400000pt;}
.yf8{bottom:827.345280pt;}
.yd5{bottom:828.000000pt;}
.y8a{bottom:834.403840pt;}
.yb{bottom:840.777600pt;}
.yb0{bottom:841.594240pt;}
.y83{bottom:843.828480pt;}
.y147{bottom:844.647680pt;}
.y20f{bottom:845.440000pt;}
.y1d2{bottom:847.440000pt;}
.y172{bottom:848.960000pt;}
.y244{bottom:849.440000pt;}
.yf7{bottom:849.587200pt;}
.y28{bottom:849.600000pt;}
.yd4{bottom:850.403840pt;}
.y89{bottom:856.645760pt;}
.y246{bottom:858.160000pt;}
.y20e{bottom:865.280000pt;}
.y170{bottom:866.560000pt;}
.y146{bottom:867.051520pt;}
.y82{bottom:869.912320pt;}
.yaf{bottom:871.991040pt;}
.yd3{bottom:872.645760pt;}
.ya{bottom:873.108800pt;}
.y245{bottom:874.000000pt;}
.y2d{bottom:874.720000pt;}
.y88{bottom:879.049600pt;}
.y1d1{bottom:882.160000pt;}
.y20b{bottom:885.120000pt;}
.y20d{bottom:893.920000pt;}
.yae{bottom:894.394880pt;}
.yd2{bottom:895.049600pt;}
.y81{bottom:895.834240pt;}
.y169{bottom:896.480000pt;}
.y2b{bottom:896.640000pt;}
.y145{bottom:897.448320pt;}
.y243{bottom:901.040000pt;}
.yf6{bottom:902.387840pt;}
.y9{bottom:905.440000pt;}
.y16c{bottom:905.760000pt;}
.y1d0{bottom:909.353600pt;}
.y87{bottom:909.446400pt;}
.y20c{bottom:909.760000pt;}
.yad{bottom:916.798720pt;}
.y80{bottom:921.918080pt;}
.yf5{bottom:924.791680pt;}
.yd1{bottom:925.446400pt;}
.y1cf{bottom:925.920000pt;}
.y144{bottom:927.683200pt;}
.y20{bottom:933.440000pt;}
.y8{bottom:935.198080pt;}
.y20a{bottom:936.720000pt;}
.y86{bottom:939.843200pt;}
.y1ce{bottom:942.473600pt;}
.y242{bottom:945.520000pt;}
.yac{bottom:947.195520pt;}
.y7f{bottom:947.840000pt;}
.y166{bottom:953.440000pt;}
.y7{bottom:954.724480pt;}
.yd0{bottom:955.843200pt;}
.y208{bottom:956.640000pt;}
.y143{bottom:958.080000pt;}
.y1cd{bottom:959.040000pt;}
.y23{bottom:964.800000pt;}
.y209{bottom:965.360000pt;}
.yab{bottom:969.599360pt;}
.y7e{bottom:969.600000pt;}
.y85{bottom:970.240000pt;}
.y240{bottom:972.480000pt;}
.y6{bottom:974.078080pt;}
.y1cc{bottom:978.560000pt;}
.y168{bottom:978.880000pt;}
.y142{bottom:979.846560pt;}
.y241{bottom:981.200000pt;}
.ycf{bottom:986.240000pt;}
.y84{bottom:992.000000pt;}
.yaa{bottom:992.003200pt;}
.y206{bottom:992.320000pt;}
.y5{bottom:993.760000pt;}
.y207{bottom:1001.120000pt;}
.y1c{bottom:1001.600000pt;}
.yce{bottom:1008.000000pt;}
.y23f{bottom:1008.240000pt;}
.y7d{bottom:1014.407040pt;}
.y2{bottom:1090.880000pt;}
.y1{bottom:1108.800000pt;}
.h14{height:4.000000pt;}
.h18{height:6.080000pt;}
.h30{height:9.080156pt;}
.h20{height:13.757812pt;}
.h1e{height:17.600000pt;}
.h2d{height:19.840000pt;}
.h2c{height:19.841333pt;}
.h26{height:19.920000pt;}
.hc{height:23.296875pt;}
.h15{height:24.640000pt;}
.h7{height:26.560000pt;}
.hf{height:29.600000pt;}
.h17{height:31.217812pt;}
.h27{height:34.945312pt;}
.h2a{height:35.680000pt;}
.h2e{height:35.681333pt;}
.h2b{height:35.760000pt;}
.h13{height:36.870937pt;}
.h11{height:38.672812pt;}
.h35{height:38.905781pt;}
.h22{height:39.030469pt;}
.h31{height:39.680000pt;}
.h32{height:39.760000pt;}
.h33{height:39.761333pt;}
.h2f{height:40.480000pt;}
.h28{height:41.273438pt;}
.h10{height:45.675938pt;}
.h24{height:45.951094pt;}
.h25{height:45.976694pt;}
.hb{height:46.593750pt;}
.h3{height:46.690000pt;}
.h5{height:48.384000pt;}
.h4{height:49.420800pt;}
.h8{height:50.628750pt;}
.h29{height:51.600000pt;}
.h23{height:54.281719pt;}
.h1b{height:54.514687pt;}
.h1c{height:56.958667pt;}
.h19{height:58.187500pt;}
.hd{height:61.969687pt;}
.ha{height:68.160000pt;}
.h9{height:73.191563pt;}
.h1a{height:74.720000pt;}
.h6{height:76.419200pt;}
.h34{height:79.440000pt;}
.he{height:83.840000pt;}
.h1d{height:193.920000pt;}
.h21{height:256.000000pt;}
.h12{height:323.360000pt;}
.h1f{height:327.680000pt;}
.h16{height:331.040000pt;}
.h2{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:60.560000pt;}
.w5{width:304.000000pt;}
.w6{width:304.160000pt;}
.w8{width:549.520000pt;}
.w3{width:595.518667pt;}
.w4{width:608.160000pt;}
.w2{width:793.746667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x43{left:71.200000pt;}
.x1f{left:94.400000pt;}
.x1{left:99.200000pt;}
.x3{left:101.600000pt;}
.x1d{left:108.800000pt;}
.x21{left:118.400000pt;}
.x33{left:121.280000pt;}
.x1a{left:126.880000pt;}
.x2b{left:131.360000pt;}
.x2d{left:134.880000pt;}
.xb{left:141.280000pt;}
.x22{left:142.403840pt;}
.x3e{left:143.680000pt;}
.x11{left:145.920000pt;}
.x32{left:148.320000pt;}
.x41{left:155.040000pt;}
.x35{left:160.160000pt;}
.x42{left:162.240000pt;}
.x28{left:166.240000pt;}
.x1e{left:169.280000pt;}
.x3f{left:173.280000pt;}
.x31{left:185.920000pt;}
.xa{left:192.160000pt;}
.x24{left:194.080000pt;}
.x3c{left:196.960000pt;}
.x2e{left:203.680000pt;}
.x16{left:207.360000pt;}
.x27{left:210.560000pt;}
.x26{left:211.520000pt;}
.x34{left:213.280000pt;}
.xd{left:214.720000pt;}
.x25{left:221.760000pt;}
.x2{left:223.200000pt;}
.xc{left:228.960000pt;}
.x30{left:237.920000pt;}
.x12{left:240.000000pt;}
.x8{left:247.360000pt;}
.x2c{left:252.160000pt;}
.xe{left:255.040000pt;}
.x19{left:257.440000pt;}
.x1c{left:263.520000pt;}
.x4{left:282.240000pt;}
.x14{left:286.240000pt;}
.x2f{left:288.320000pt;}
.x2a{left:300.960000pt;}
.x15{left:309.600000pt;}
.x3d{left:333.920000pt;}
.x17{left:337.920000pt;}
.x23{left:381.440000pt;}
.x20{left:385.280000pt;}
.x40{left:396.880000pt;}
.x36{left:398.400000pt;}
.x44{left:409.920000pt;}
.x18{left:415.200000pt;}
.x10{left:429.920000pt;}
.xf{left:442.880000pt;}
.x29{left:455.520000pt;}
.x5{left:462.560000pt;}
.x38{left:468.640000pt;}
.x39{left:504.000000pt;}
.x3b{left:510.400000pt;}
.x1b{left:528.000000pt;}
.x6{left:531.040000pt;}
.x3a{left:533.600000pt;}
.x37{left:608.800000pt;}
.x9{left:658.560000pt;}
.x13{left:665.120000pt;}
}




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