
    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_bc7d7c37a2d5a50080a78ab5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.669434;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_b944440570f01fc135305a70.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_d279082c0e57523264a05c64.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_58b55ee9cb36c15b958a8b6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_74b9afeb6159dd9dcb3bf287.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.165333;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_cb608143223948cc27bcd167.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_fdd9db46f400f2c461e778ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.047133;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_969f9c4b5c63e8d6e6350743.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979600;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_6017f1c6315b0d7e54e0c262.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.018533;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_a48093e024ece8e056642f29.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_a9f9796c73aa83e7396543ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976600;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_81bd7f9cdde99de4361f511a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_74620949eb4008930f930555.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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:23.760000px;}
.ls36{letter-spacing:-3.841920px;}
.ls11{letter-spacing:-1.059840px;}
.ls22{letter-spacing:-0.964800px;}
.ls55{letter-spacing:-0.927360px;}
.ls26{letter-spacing:-0.916560px;}
.ls3d{letter-spacing:-0.728640px;}
.ls3f{letter-spacing:-0.627120px;}
.ls1b{letter-spacing:-0.596160px;}
.ls1c{letter-spacing:-0.530640px;}
.ls31{letter-spacing:-0.529920px;}
.lsa{letter-spacing:-0.486000px;}
.ls1a{letter-spacing:-0.463680px;}
.ls1d{letter-spacing:-0.434160px;}
.ls48{letter-spacing:-0.397440px;}
.ls4d{letter-spacing:-0.378000px;}
.ls1f{letter-spacing:-0.337680px;}
.lsc{letter-spacing:-0.331200px;}
.ls2b{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.264960px;}
.ls2c{letter-spacing:-0.241200px;}
.lsd{letter-spacing:-0.198720px;}
.ls21{letter-spacing:-0.192960px;}
.ls7{letter-spacing:-0.191520px;}
.ls32{letter-spacing:-0.144000px;}
.ls3e{letter-spacing:-0.132480px;}
.ls9{letter-spacing:-0.119520px;}
.ls10{letter-spacing:-0.066240px;}
.ls6{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.018000px;}
.ls35{letter-spacing:0.033120px;}
.ls16{letter-spacing:0.063360px;}
.lse{letter-spacing:0.066240px;}
.ls1{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.072360px;}
.ls2a{letter-spacing:0.096480px;}
.ls5a{letter-spacing:0.099360px;}
.ls59{letter-spacing:0.125856px;}
.ls18{letter-spacing:0.132480px;}
.ls44{letter-spacing:0.155520px;}
.ls23{letter-spacing:0.156960px;}
.ls4b{letter-spacing:0.162000px;}
.ls29{letter-spacing:0.165600px;}
.ls1e{letter-spacing:0.192960px;}
.lsf{letter-spacing:0.198720px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.239040px;}
.ls17{letter-spacing:0.253440px;}
.ls28{letter-spacing:0.258336px;}
.ls13{letter-spacing:0.264960px;}
.ls4c{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.289440px;}
.ls30{letter-spacing:0.291456px;}
.ls2f{letter-spacing:0.298080px;}
.ls4{letter-spacing:0.298800px;}
.ls53{letter-spacing:0.304704px;}
.ls45{letter-spacing:0.331200px;}
.ls3b{letter-spacing:0.342504px;}
.ls46{letter-spacing:0.344448px;}
.ls43{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.364536px;}
.ls4e{letter-spacing:0.378000px;}
.ls57{letter-spacing:0.384192px;}
.ls20{letter-spacing:0.385920px;}
.ls3c{letter-spacing:0.390744px;}
.lsb{letter-spacing:0.397440px;}
.ls47{letter-spacing:0.404064px;}
.ls0{letter-spacing:0.419760px;}
.ls4f{letter-spacing:0.463680px;}
.ls49{letter-spacing:0.470304px;}
.ls58{letter-spacing:0.543168px;}
.ls33{letter-spacing:1.192320px;}
.ls54{letter-spacing:1.736640px;}
.ls37{letter-spacing:1.993824px;}
.ls40{letter-spacing:2.649600px;}
.ls2e{letter-spacing:3.312000px;}
.ls52{letter-spacing:4.631040px;}
.ls4a{letter-spacing:7.308000px;}
.ls15{letter-spacing:8.827920px;}
.ls27{letter-spacing:10.532160px;}
.ls24{letter-spacing:13.446720px;}
.ls39{letter-spacing:14.864256px;}
.ls38{letter-spacing:15.566400px;}
.ls34{letter-spacing:16.295040px;}
.ls51{letter-spacing:23.515200px;}
.ls42{letter-spacing:24.588000px;}
.ls56{letter-spacing:31.397760px;}
.ls50{letter-spacing:59.351040px;}
.ls3a{letter-spacing:66.571200px;}
.ls14{letter-spacing:847.728000px;}
.ls12{letter-spacing:1009.134720px;}
.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;}
}
.ws13a{word-spacing:-66.240000px;}
.ws152{word-spacing:-19.656000px;}
.wsf7{word-spacing:-19.296000px;}
.ws6{word-spacing:-18.083520px;}
.wsf8{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.493760px;}
.ws107{word-spacing:-16.427520px;}
.ws25{word-spacing:-16.361280px;}
.wsc8{word-spacing:-16.295040px;}
.ws24{word-spacing:-16.228800px;}
.ws7c{word-spacing:-16.162560px;}
.ws7{word-spacing:-16.096320px;}
.ws26{word-spacing:-16.030080px;}
.wsfa{word-spacing:-15.963840px;}
.ws5{word-spacing:-15.897600px;}
.ws5a{word-spacing:-15.831360px;}
.ws4{word-spacing:-15.765120px;}
.ws159{word-spacing:-15.698880px;}
.wsb1{word-spacing:-15.566400px;}
.ws7b{word-spacing:-15.500160px;}
.ws130{word-spacing:-15.390000px;}
.ws15b{word-spacing:-15.367680px;}
.ws125{word-spacing:-15.282000px;}
.ws2{word-spacing:-15.228000px;}
.ws1{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.526000px;}
.ws97{word-spacing:-13.700160px;}
.ws5c{word-spacing:-13.410720px;}
.ws98{word-spacing:-13.217760px;}
.ws5b{word-spacing:-12.494160px;}
.ws27{word-spacing:-12.060000px;}
.ws28{word-spacing:-11.867040px;}
.ws29{word-spacing:-11.095200px;}
.ws106{word-spacing:-9.603360px;}
.wsf9{word-spacing:-9.447840px;}
.ws155{word-spacing:-4.769280px;}
.ws10d{word-spacing:-4.428000px;}
.ws101{word-spacing:-4.040640px;}
.wsc7{word-spacing:-3.908160px;}
.ws149{word-spacing:-3.775680px;}
.ws10c{word-spacing:-3.672000px;}
.ws14a{word-spacing:-3.643200px;}
.ws82{word-spacing:-3.510720px;}
.ws13d{word-spacing:-3.378240px;}
.wsbe{word-spacing:-3.312000px;}
.wsca{word-spacing:-3.179520px;}
.ws88{word-spacing:-2.914560px;}
.wsbf{word-spacing:-2.782080px;}
.ws32{word-spacing:-2.583360px;}
.wsc2{word-spacing:-2.517120px;}
.wsab{word-spacing:-2.450880px;}
.ws104{word-spacing:-2.412000px;}
.ws6a{word-spacing:-2.185920px;}
.wsd5{word-spacing:-2.053440px;}
.ws83{word-spacing:-1.920960px;}
.wsba{word-spacing:-1.854720px;}
.wsbb{word-spacing:-1.788480px;}
.ws33{word-spacing:-1.656000px;}
.ws34{word-spacing:-1.523520px;}
.ws10a{word-spacing:-1.512000px;}
.wsbc{word-spacing:-1.391040px;}
.wsde{word-spacing:-1.192320px;}
.wsa1{word-spacing:-1.126080px;}
.wsa8{word-spacing:-1.059840px;}
.ws158{word-spacing:-0.993600px;}
.wsad{word-spacing:-0.964800px;}
.wsd6{word-spacing:-0.927360px;}
.wsf{word-spacing:-0.810000px;}
.ws12{word-spacing:-0.794880px;}
.ws1c{word-spacing:-0.662400px;}
.ws15a{word-spacing:-0.596160px;}
.ws2b{word-spacing:-0.570240px;}
.ws4f{word-spacing:-0.529920px;}
.ws23{word-spacing:-0.463680px;}
.ws2d{word-spacing:-0.397440px;}
.wsb0{word-spacing:-0.385920px;}
.ws2a{word-spacing:-0.380160px;}
.ws108{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.331200px;}
.ws143{word-spacing:-0.289440px;}
.wsb7{word-spacing:-0.264960px;}
.ws103{word-spacing:-0.241200px;}
.wse{word-spacing:-0.216000px;}
.ws2c{word-spacing:-0.198720px;}
.wsa{word-spacing:-0.144000px;}
.ws3d{word-spacing:-0.132480px;}
.wsd{word-spacing:-0.108000px;}
.wsae{word-spacing:-0.096480px;}
.ws10{word-spacing:-0.066240px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:0.059760px;}
.ws11{word-spacing:0.066240px;}
.wsc{word-spacing:0.119520px;}
.wsc4{word-spacing:0.144000px;}
.ws9{word-spacing:0.191520px;}
.ws79{word-spacing:0.192960px;}
.ws4e{word-spacing:0.198720px;}
.wsaf{word-spacing:0.241200px;}
.ws1f{word-spacing:0.264960px;}
.ws99{word-spacing:0.288000px;}
.ws3c{word-spacing:0.331200px;}
.ws53{word-spacing:0.337680px;}
.ws132{word-spacing:0.378000px;}
.ws73{word-spacing:0.397440px;}
.wsa7{word-spacing:0.463680px;}
.ws77{word-spacing:0.482400px;}
.ws10b{word-spacing:0.486000px;}
.ws9c{word-spacing:0.529920px;}
.ws55{word-spacing:0.530640px;}
.ws3b{word-spacing:0.596160px;}
.ws105{word-spacing:0.627120px;}
.ws131{word-spacing:0.648000px;}
.ws14{word-spacing:0.662400px;}
.wsfe{word-spacing:0.728640px;}
.ws96{word-spacing:0.794880px;}
.ws144{word-spacing:0.927360px;}
.ws14e{word-spacing:0.993600px;}
.ws60{word-spacing:1.059840px;}
.wsa4{word-spacing:1.126080px;}
.wsa3{word-spacing:1.258560px;}
.ws10e{word-spacing:1.350000px;}
.wsb2{word-spacing:1.391040px;}
.ws1a{word-spacing:1.523520px;}
.wsc9{word-spacing:1.722240px;}
.ws11d{word-spacing:1.920960px;}
.ws102{word-spacing:1.929600px;}
.ws123{word-spacing:1.987200px;}
.ws118{word-spacing:2.052000px;}
.ws63{word-spacing:2.119680px;}
.wsf0{word-spacing:2.185920px;}
.wsb4{word-spacing:2.252160px;}
.ws4a{word-spacing:2.450880px;}
.wsdf{word-spacing:2.583360px;}
.ws57{word-spacing:2.701440px;}
.wsa5{word-spacing:2.715840px;}
.ws116{word-spacing:2.808000px;}
.ws58{word-spacing:2.846160px;}
.ws4b{word-spacing:2.848320px;}
.ws59{word-spacing:2.894400px;}
.ws21{word-spacing:2.980800px;}
.ws12a{word-spacing:3.179520px;}
.ws36{word-spacing:3.245760px;}
.wsd9{word-spacing:3.312000px;}
.wse9{word-spacing:3.328560px;}
.ws56{word-spacing:3.376800px;}
.ws1e{word-spacing:3.444480px;}
.ws12f{word-spacing:3.510000px;}
.ws91{word-spacing:3.576960px;}
.ws139{word-spacing:3.643200px;}
.wscb{word-spacing:3.709440px;}
.ws37{word-spacing:3.841920px;}
.wse7{word-spacing:4.040640px;}
.ws78{word-spacing:4.052160px;}
.wsee{word-spacing:4.106880px;}
.ws51{word-spacing:4.196880px;}
.ws113{word-spacing:4.212000px;}
.ws35{word-spacing:4.239360px;}
.ws50{word-spacing:4.293360px;}
.wsef{word-spacing:4.371840px;}
.ws67{word-spacing:4.570560px;}
.ws7f{word-spacing:4.636800px;}
.ws7d{word-spacing:4.703040px;}
.wseb{word-spacing:4.769280px;}
.ws142{word-spacing:4.775760px;}
.ws93{word-spacing:4.835520px;}
.wsd4{word-spacing:4.968000px;}
.ws157{word-spacing:5.034240px;}
.ws95{word-spacing:5.100480px;}
.wsf4{word-spacing:5.299200px;}
.ws3f{word-spacing:5.431680px;}
.ws76{word-spacing:5.499360px;}
.ws6e{word-spacing:5.564160px;}
.wsa2{word-spacing:5.696640px;}
.wsa0{word-spacing:5.829120px;}
.ws126{word-spacing:6.027840px;}
.ws11c{word-spacing:6.160320px;}
.ws135{word-spacing:6.292800px;}
.ws134{word-spacing:6.372000px;}
.wsb5{word-spacing:6.425280px;}
.wsb6{word-spacing:6.557760px;}
.ws68{word-spacing:6.690240px;}
.ws13b{word-spacing:6.756480px;}
.wse1{word-spacing:6.955200px;}
.ws12d{word-spacing:7.128000px;}
.ws1b{word-spacing:7.153920px;}
.ws12c{word-spacing:7.182000px;}
.wsc6{word-spacing:7.286400px;}
.ws127{word-spacing:7.485120px;}
.wsfb{word-spacing:7.488000px;}
.ws92{word-spacing:7.617600px;}
.wsdb{word-spacing:7.750080px;}
.ws47{word-spacing:7.882560px;}
.ws48{word-spacing:7.948800px;}
.wsd2{word-spacing:8.015040px;}
.ws85{word-spacing:8.213760px;}
.wse3{word-spacing:8.280000px;}
.wsd7{word-spacing:8.346240px;}
.ws84{word-spacing:8.412480px;}
.wse2{word-spacing:8.478720px;}
.ws6f{word-spacing:8.611200px;}
.wsa9{word-spacing:8.743680px;}
.ws40{word-spacing:8.809920px;}
.wsbd{word-spacing:8.876160px;}
.wsd8{word-spacing:9.008640px;}
.ws7a{word-spacing:9.117360px;}
.ws41{word-spacing:9.141120px;}
.ws54{word-spacing:9.165600px;}
.ws9a{word-spacing:9.273600px;}
.ws119{word-spacing:9.288000px;}
.ws128{word-spacing:9.406080px;}
.wse0{word-spacing:9.604800px;}
.wsfd{word-spacing:9.671040px;}
.wsf2{word-spacing:9.737280px;}
.ws122{word-spacing:9.803520px;}
.ws11a{word-spacing:9.990000px;}
.ws90{word-spacing:10.002240px;}
.ws150{word-spacing:10.068480px;}
.ws2f{word-spacing:10.333440px;}
.ws81{word-spacing:10.465920px;}
.wsac{word-spacing:10.598400px;}
.ws6d{word-spacing:10.730880px;}
.ws15{word-spacing:11.062080px;}
.ws39{word-spacing:11.194560px;}
.ws11b{word-spacing:11.260800px;}
.ws42{word-spacing:11.327040px;}
.ws112{word-spacing:11.448000px;}
.ws6c{word-spacing:11.459520px;}
.ws6b{word-spacing:11.592000px;}
.ws146{word-spacing:11.724480px;}
.ws66{word-spacing:11.923200px;}
.wsea{word-spacing:12.055680px;}
.ws115{word-spacing:12.150000px;}
.ws38{word-spacing:12.188160px;}
.ws80{word-spacing:12.519360px;}
.wsb3{word-spacing:12.651840px;}
.ws12b{word-spacing:12.718080px;}
.ws4d{word-spacing:12.916800px;}
.ws86{word-spacing:13.049280px;}
.ws5e{word-spacing:13.181760px;}
.ws87{word-spacing:13.248000px;}
.ws5d{word-spacing:13.380480px;}
.wsaa{word-spacing:13.645440px;}
.ws11e{word-spacing:13.711680px;}
.wsc0{word-spacing:13.777920px;}
.wsc3{word-spacing:13.976640px;}
.ws138{word-spacing:14.241600px;}
.ws3a{word-spacing:14.374080px;}
.ws8b{word-spacing:14.506560px;}
.ws124{word-spacing:14.771520px;}
.wsda{word-spacing:14.904000px;}
.ws9e{word-spacing:15.036480px;}
.ws9f{word-spacing:15.168960px;}
.ws94{word-spacing:15.367680px;}
.wse6{word-spacing:15.433920px;}
.ws153{word-spacing:15.500160px;}
.ws69{word-spacing:15.632640px;}
.wsb9{word-spacing:15.765120px;}
.ws117{word-spacing:15.768000px;}
.wse5{word-spacing:15.897600px;}
.wsc1{word-spacing:16.228800px;}
.ws89{word-spacing:16.361280px;}
.ws20{word-spacing:16.493760px;}
.ws8a{word-spacing:16.626240px;}
.ws121{word-spacing:16.824960px;}
.ws137{word-spacing:17.089920px;}
.ws114{word-spacing:17.172000px;}
.ws61{word-spacing:17.553600px;}
.ws109{word-spacing:17.686080px;}
.ws9d{word-spacing:17.951040px;}
.ws62{word-spacing:18.083520px;}
.ws8d{word-spacing:18.282240px;}
.ws120{word-spacing:18.480960px;}
.wsd3{word-spacing:18.679680px;}
.ws11f{word-spacing:18.812160px;}
.ws13c{word-spacing:19.143360px;}
.wsf1{word-spacing:19.275840px;}
.ws31{word-spacing:19.408320px;}
.ws136{word-spacing:19.739520px;}
.ws7e{word-spacing:20.136960px;}
.wsf3{word-spacing:20.468160px;}
.ws64{word-spacing:20.534400px;}
.wse8{word-spacing:20.600640px;}
.ws16{word-spacing:20.666880px;}
.ws65{word-spacing:20.799360px;}
.ws1d{word-spacing:20.931840px;}
.wsce{word-spacing:21.196800px;}
.ws70{word-spacing:21.263040px;}
.ws151{word-spacing:21.528000px;}
.wsa6{word-spacing:21.660480px;}
.ws75{word-spacing:21.925440px;}
.wsb8{word-spacing:21.991680px;}
.wsec{word-spacing:22.256640px;}
.wsed{word-spacing:22.389120px;}
.wscc{word-spacing:22.720320px;}
.wscd{word-spacing:22.852800px;}
.ws13f{word-spacing:22.985280px;}
.ws13e{word-spacing:23.051520px;}
.ws100{word-spacing:23.117760px;}
.ws74{word-spacing:23.316480px;}
.ws140{word-spacing:23.581440px;}
.wsd0{word-spacing:23.713920px;}
.ws45{word-spacing:24.177600px;}
.ws111{word-spacing:24.408000px;}
.ws154{word-spacing:24.442560px;}
.ws52{word-spacing:24.457680px;}
.ws14d{word-spacing:24.575040px;}
.ws147{word-spacing:24.940080px;}
.ws10f{word-spacing:25.110000px;}
.wsfc{word-spacing:25.171200px;}
.wsc5{word-spacing:25.701120px;}
.ws133{word-spacing:25.812000px;}
.ws71{word-spacing:25.833600px;}
.ws72{word-spacing:25.966080px;}
.ws5f{word-spacing:26.562240px;}
.ws8e{word-spacing:26.694720px;}
.ws8f{word-spacing:27.423360px;}
.ws14f{word-spacing:27.754560px;}
.ws145{word-spacing:27.864000px;}
.ws30{word-spacing:28.748160px;}
.ws2e{word-spacing:29.476800px;}
.ws9b{word-spacing:29.609280px;}
.wsd1{word-spacing:29.874240px;}
.ws129{word-spacing:30.337920px;}
.wse4{word-spacing:30.934080px;}
.ws14b{word-spacing:31.199040px;}
.ws14c{word-spacing:31.728960px;}
.wscf{word-spacing:32.060160px;}
.wsdd{word-spacing:32.656320px;}
.wsdc{word-spacing:32.855040px;}
.ws148{word-spacing:33.782400px;}
.ws17{word-spacing:34.246080px;}
.ws3e{word-spacing:35.107200px;}
.ws44{word-spacing:35.239680px;}
.ws18{word-spacing:35.372160px;}
.ws4c{word-spacing:37.823040px;}
.ws46{word-spacing:38.684160px;}
.ws156{word-spacing:39.147840px;}
.wsf5{word-spacing:39.412800px;}
.wsf6{word-spacing:39.545280px;}
.ws19{word-spacing:42.526080px;}
.wsff{word-spacing:45.043200px;}
.ws43{word-spacing:45.308160px;}
.ws8c{word-spacing:46.036800px;}
.ws22{word-spacing:50.342400px;}
.ws12e{word-spacing:53.892000px;}
.ws49{word-spacing:64.848960px;}
.ws141{word-spacing:66.173760px;}
.ws110{word-spacing:72.630000px;}
._8{margin-left:-3.571200px;}
._2{margin-left:-2.330496px;}
._1{margin-left:-1.008000px;}
._0{width:1.264032px;}
._3{width:2.446272px;}
._6{width:3.666240px;}
._5{width:5.113440px;}
._b{width:7.065792px;}
._e{width:8.605728px;}
._9{width:9.864000px;}
._a{width:11.011104px;}
._4{width:12.240576px;}
._7{width:14.722272px;}
._c{width:19.443744px;}
._d{width:25.002144px;}
.fc4{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(39,91,156);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y8b{bottom:-8.100000px;}
.y0{bottom:0.000000px;}
.y17a{bottom:2.880000px;}
.y180{bottom:3.060000px;}
.y4c{bottom:3.240000px;}
.y18{bottom:4.860000px;}
.y179{bottom:18.360000px;}
.y17d{bottom:18.540000px;}
.y18c{bottom:26.100000px;}
.y4a{bottom:33.840000px;}
.y182{bottom:34.020000px;}
.y18b{bottom:41.580000px;}
.y18e{bottom:49.500000px;}
.y49{bottom:55.800000px;}
.y86{bottom:62.100000px;}
.y1b8{bottom:64.980000px;}
.y4b{bottom:77.580000px;}
.y48{bottom:77.760000px;}
.y1c6{bottom:80.640000px;}
.y27{bottom:86.940000px;}
.y1bf{bottom:95.940000px;}
.y1a2{bottom:97.380000px;}
.y147{bottom:97.383060px;}
.yf8{bottom:97.386120px;}
.yb4{bottom:97.396200px;}
.y204{bottom:97.400160px;}
.y171{bottom:97.410240px;}
.y85{bottom:99.360000px;}
.y1e9{bottom:100.196640px;}
.y42{bottom:100.828800px;}
.y1bd{bottom:101.340000px;}
.y134{bottom:105.439680px;}
.y225{bottom:106.097760px;}
.y8a{bottom:106.203060px;}
.y270{bottom:110.520000px;}
.y2b9{bottom:110.530080px;}
.y2a2{bottom:110.535120px;}
.y146{bottom:111.240000px;}
.yf7{bottom:111.243060px;}
.yb3{bottom:111.253140px;}
.y203{bottom:111.257100px;}
.y170{bottom:111.267180px;}
.y1bc{bottom:112.140000px;}
.y1a1{bottom:113.580000px;}
.y114{bottom:114.471360px;}
.y11d{bottom:115.089840px;}
.y89{bottom:120.067020px;}
.yd4{bottom:124.081920px;}
.yf6{bottom:125.100000px;}
.yb2{bottom:125.110080px;}
.y202{bottom:125.114040px;}
.y16f{bottom:125.124120px;}
.y1e8{bottom:125.400960px;}
.y145{bottom:127.440000px;}
.y133{bottom:130.644000px;}
.y224{bottom:131.119920px;}
.y41{bottom:131.613840px;}
.y26f{bottom:132.488640px;}
.y2a1{bottom:132.493680px;}
.y291{bottom:132.495120px;}
.y1b7{bottom:133.200000px;}
.y88{bottom:133.743060px;}
.y84{bottom:135.000000px;}
.y1a0{bottom:135.540000px;}
.yb1{bottom:138.786120px;}
.y201{bottom:138.790080px;}
.y16e{bottom:138.800160px;}
.y23c{bottom:139.615920px;}
.y113{bottom:139.675680px;}
.y11c{bottom:140.112000px;}
.yf5{bottom:141.120000px;}
.y87{bottom:147.600000px;}
.yd3{bottom:149.104080px;}
.y144{bottom:149.400000px;}
.y1e7{bottom:150.423120px;}
.y2d9{bottom:150.660000px;}
.y1bb{bottom:151.731000px;}
.yb0{bottom:152.643060px;}
.y200{bottom:152.647020px;}
.y16d{bottom:152.657100px;}
.y243{bottom:153.010080px;}
.y26e{bottom:154.265040px;}
.y2a0{bottom:154.270080px;}
.y290{bottom:154.271520px;}
.y132{bottom:155.848320px;}
.y223{bottom:156.324240px;}
.y19f{bottom:157.500000px;}
.y40{bottom:162.581040px;}
.yf4{bottom:163.080000px;}
.y23b{bottom:164.820240px;}
.y112{bottom:164.880000px;}
.y11b{bottom:165.316320px;}
.yaf{bottom:166.500000px;}
.y1ff{bottom:166.503960px;}
.y16c{bottom:166.514040px;}
.y1ba{bottom:167.215500px;}
.y1b6{bottom:167.220000px;}
.y83{bottom:169.052400px;}
.y143{bottom:171.360000px;}
.yd2{bottom:174.308400px;}
.y242{bottom:174.786480px;}
.y1e6{bottom:175.627440px;}
.y26d{bottom:176.223600px;}
.y29f{bottom:176.228640px;}
.y28f{bottom:176.230080px;}
.y2d8{bottom:178.038720px;}
.y1fe{bottom:180.180000px;}
.y16b{bottom:180.190080px;}
.y131{bottom:180.870480px;}
.y222{bottom:181.528560px;}
.yae{bottom:182.520000px;}
.y1b9{bottom:182.700000px;}
.y3f{bottom:184.357440px;}
.yf3{bottom:185.040000px;}
.y68{bottom:186.300000px;}
.y23a{bottom:189.842400px;}
.y11a{bottom:190.520640px;}
.y19e{bottom:190.762560px;}
.y16a{bottom:194.047020px;}
.y111{bottom:196.200000px;}
.y1fd{bottom:196.380000px;}
.y241{bottom:196.745040px;}
.y26c{bottom:198.000000px;}
.y29e{bottom:198.005040px;}
.y28e{bottom:198.006480px;}
.yd1{bottom:199.512720px;}
.y2d7{bottom:199.815120px;}
.y82{bottom:200.185200px;}
.y1e5{bottom:200.831760px;}
.yad{bottom:204.480000px;}
.y130{bottom:206.074800px;}
.y3e{bottom:206.316000px;}
.y221{bottom:206.550720px;}
.y169{bottom:207.723060px;}
.y1b5{bottom:211.500000px;}
.y239{bottom:215.046720px;}
.y148{bottom:215.542800px;}
.y142{bottom:215.596080px;}
.y19d{bottom:215.784720px;}
.y1fc{bottom:218.340000px;}
.y240{bottom:218.521440px;}
.y26b{bottom:219.960000px;}
.y29d{bottom:219.963600px;}
.y28d{bottom:219.965040px;}
.y168{bottom:221.580000px;}
.y2d6{bottom:221.773680px;}
.yf2{bottom:224.034480px;}
.yd0{bottom:224.534880px;}
.yac{bottom:226.440000px;}
.y3d{bottom:228.092400px;}
.y1e4{bottom:234.846000px;}
.y81{bottom:236.733120px;}
.y167{bottom:237.780000px;}
.y238{bottom:240.251040px;}
.y12f{bottom:240.271200px;}
.y1fb{bottom:240.300000px;}
.y23f{bottom:240.480000px;}
.y110{bottom:240.747120px;}
.y141{bottom:240.800400px;}
.y19c{bottom:240.989040px;}
.y29c{bottom:241.740000px;}
.y28c{bottom:241.741440px;}
.y26a{bottom:241.753680px;}
.y2d5{bottom:243.550080px;}
.yf1{bottom:249.238800px;}
.ycf{bottom:249.739200px;}
.y3c{bottom:249.868800px;}
.y220{bottom:250.509600px;}
.y80{bottom:258.873840px;}
.y166{bottom:259.740000px;}
.y1e3{bottom:260.050320px;}
.y1b4{bottom:260.172000px;}
.y28b{bottom:263.700000px;}
.y269{bottom:263.712240px;}
.y237{bottom:265.273200px;}
.y12e{bottom:265.293360px;}
.y2d4{bottom:265.508640px;}
.y10f{bottom:265.951440px;}
.yab{bottom:265.998240px;}
.y140{bottom:266.004720px;}
.y19b{bottom:266.193360px;}
.y23e{bottom:271.620000px;}
.y3b{bottom:271.827360px;}
.yf0{bottom:274.260960px;}
.yce{bottom:274.943520px;}
.y21f{bottom:275.713920px;}
.y7f{bottom:280.650240px;}
.y165{bottom:281.700000px;}
.y1fa{bottom:282.029760px;}
.y1b3{bottom:285.194160px;}
.y1e2{bottom:285.254640px;}
.y28a{bottom:285.485040px;}
.y268{bottom:285.488640px;}
.y2b8{bottom:285.490080px;}
.y2d3{bottom:287.285040px;}
.y236{bottom:290.477520px;}
.y12d{bottom:290.497680px;}
.y10e{bottom:290.973600px;}
.yaa{bottom:291.020400px;}
.y13f{bottom:291.026880px;}
.y19a{bottom:291.215520px;}
.y3a{bottom:293.603760px;}
.yef{bottom:299.465280px;}
.ycd{bottom:299.965680px;}
.y21e{bottom:300.736080px;}
.y7e{bottom:302.608800px;}
.y1f9{bottom:307.234080px;}
.y289{bottom:307.443600px;}
.y267{bottom:307.447200px;}
.y2b7{bottom:307.448640px;}
.y1a3{bottom:308.957760px;}
.y2d2{bottom:309.061440px;}
.y1e1{bottom:310.276800px;}
.y1b2{bottom:310.398480px;}
.y39{bottom:315.562320px;}
.y235{bottom:315.681840px;}
.y12c{bottom:315.702000px;}
.y10d{bottom:316.177920px;}
.y13e{bottom:316.231200px;}
.y199{bottom:316.419840px;}
.y7d{bottom:324.385200px;}
.yee{bottom:324.669600px;}
.y119{bottom:325.170000px;}
.ya9{bottom:325.216800px;}
.y21d{bottom:325.940400px;}
.y288{bottom:329.220000px;}
.y266{bottom:329.223600px;}
.y2b6{bottom:329.225040px;}
.y2d1{bottom:331.020000px;}
.y1f8{bottom:332.438400px;}
.ycc{bottom:334.162080px;}
.y1e0{bottom:335.481120px;}
.y1b1{bottom:335.602800px;}
.y38{bottom:337.338720px;}
.y234{bottom:340.704000px;}
.y10c{bottom:341.382240px;}
.y13d{bottom:341.435520px;}
.y198{bottom:341.624160px;}
.y7c{bottom:346.343760px;}
.y12b{bottom:349.716240px;}
.y118{bottom:350.374320px;}
.ya8{bottom:350.421120px;}
.y265{bottom:351.000000px;}
.y2b5{bottom:351.001440px;}
.y287{bottom:351.005040px;}
.y21c{bottom:351.144720px;}
.y164{bottom:351.173520px;}
.y1f7{bottom:357.460560px;}
.yed{bottom:358.683840px;}
.y37{bottom:359.297280px;}
.ycb{bottom:359.366400px;}
.y1df{bottom:360.685440px;}
.y10b{bottom:366.404400px;}
.y13c{bottom:366.457680px;}
.y197{bottom:366.646320px;}
.y7b{bottom:368.120160px;}
.y1b0{bottom:369.617040px;}
.y2b4{bottom:372.960000px;}
.y286{bottom:372.963600px;}
.y29b{bottom:372.965040px;}
.y264{bottom:372.968640px;}
.y233{bottom:374.900400px;}
.y12a{bottom:374.920560px;}
.y117{bottom:375.396480px;}
.ya7{bottom:375.443280px;}
.y21b{bottom:376.166880px;}
.y163{bottom:376.195680px;}
.y36{bottom:381.073680px;}
.y1f6{bottom:382.664880px;}
.yec{bottom:383.888160px;}
.yca{bottom:384.388560px;}
.y1de{bottom:385.707600px;}
.y7a{bottom:390.078720px;}
.y10a{bottom:391.608720px;}
.y13b{bottom:391.662000px;}
.y196{bottom:391.850640px;}
.y285{bottom:394.740000px;}
.y29a{bottom:394.741440px;}
.y263{bottom:394.745040px;}
.y1af{bottom:394.821360px;}
.y25{bottom:398.700000px;}
.y232{bottom:400.104720px;}
.y129{bottom:400.124880px;}
.y116{bottom:400.600800px;}
.ya6{bottom:400.647600px;}
.y21a{bottom:401.371200px;}
.y162{bottom:401.379840px;}
.y35{bottom:403.032240px;}
.yeb{bottom:409.092480px;}
.yc9{bottom:409.592880px;}
.y79{bottom:411.855120px;}
.y23{bottom:414.180000px;}
.y299{bottom:416.700000px;}
.y262{bottom:416.703600px;}
.y2d0{bottom:416.705040px;}
.y109{bottom:416.813040px;}
.y1f5{bottom:416.861280px;}
.y13a{bottom:416.866320px;}
.y195{bottom:417.054960px;}
.y2e{bottom:419.053680px;}
.y1dd{bottom:419.904000px;}
.y1ae{bottom:420.025680px;}
.y69{bottom:424.260000px;}
.y34{bottom:424.808640px;}
.y231{bottom:425.126880px;}
.y128{bottom:425.147040px;}
.y115{bottom:425.805120px;}
.ya5{bottom:425.851920px;}
.y219{bottom:426.575520px;}
.y161{bottom:426.584160px;}
.y70{bottom:431.834400px;}
.y78{bottom:433.631520px;}
.yea{bottom:434.114640px;}
.yc8{bottom:434.797200px;}
.y261{bottom:438.480000px;}
.y2cf{bottom:438.481440px;}
.y298{bottom:438.486480px;}
.y2d{bottom:440.830080px;}
.y1f4{bottom:441.883440px;}
.y194{bottom:442.077120px;}
.y1dc{bottom:445.108320px;}
.y1ad{bottom:445.230000px;}
.y33{bottom:446.767200px;}
.y4e{bottom:448.200000px;}
.y230{bottom:450.331200px;}
.y127{bottom:450.351360px;}
.y108{bottom:450.827280px;}
.ya4{bottom:450.874080px;}
.y139{bottom:450.880560px;}
.y218{bottom:451.597680px;}
.y160{bottom:451.606320px;}
.y77{bottom:455.590080px;}
.ye9{bottom:459.318960px;}
.yc7{bottom:459.819360px;}
.y2b3{bottom:460.440000px;}
.y260{bottom:460.445040px;}
.y2c{bottom:462.788640px;}
.y1f3{bottom:467.087760px;}
.y193{bottom:467.281440px;}
.y32{bottom:468.543600px;}
.y1db{bottom:470.130480px;}
.y1ac{bottom:470.252160px;}
.y28{bottom:471.060000px;}
.y6f{bottom:471.611520px;}
.y22f{bottom:475.535520px;}
.y126{bottom:475.555680px;}
.y107{bottom:476.031600px;}
.ya3{bottom:476.078400px;}
.y138{bottom:476.084880px;}
.y217{bottom:476.802000px;}
.y15f{bottom:476.810640px;}
.y76{bottom:477.366480px;}
.y25f{bottom:482.221440px;}
.y2b2{bottom:482.225040px;}
.y2ce{bottom:482.235120px;}
.ye8{bottom:484.523280px;}
.y2b{bottom:484.565040px;}
.yc6{bottom:485.023680px;}
.y31{bottom:490.320000px;}
.y1f2{bottom:492.292080px;}
.y192{bottom:492.485760px;}
.y6e{bottom:493.570080px;}
.y1da{bottom:495.334800px;}
.y1ab{bottom:495.456480px;}
.y75{bottom:499.325040px;}
.y22e{bottom:500.739840px;}
.y125{bottom:500.760000px;}
.y106{bottom:501.235920px;}
.ya2{bottom:501.282720px;}
.y137{bottom:501.289200px;}
.y216{bottom:502.006320px;}
.y15e{bottom:502.014960px;}
.y25e{bottom:504.180000px;}
.y2b1{bottom:504.183600px;}
.y2cd{bottom:504.193680px;}
.y2a{bottom:506.523600px;}
.ye7{bottom:509.727600px;}
.yc5{bottom:510.228000px;}
.y6d{bottom:515.346480px;}
.y1f1{bottom:517.314240px;}
.y30{bottom:520.025040px;}
.y1d9{bottom:520.539120px;}
.y1aa{bottom:520.660800px;}
.y74{bottom:521.101440px;}
.y22d{bottom:525.762000px;}
.y2b0{bottom:525.960000px;}
.y25d{bottom:525.961440px;}
.y2cc{bottom:525.970080px;}
.y105{bottom:526.258080px;}
.ya1{bottom:526.304880px;}
.y136{bottom:526.311360px;}
.y191{bottom:526.500000px;}
.y15d{bottom:527.037120px;}
.y29{bottom:528.300000px;}
.y124{bottom:532.080000px;}
.ye6{bottom:534.749760px;}
.yc4{bottom:535.250160px;}
.y215{bottom:536.020560px;}
.y6c{bottom:537.305040px;}
.y2f{bottom:538.920000px;}
.y1f0{bottom:542.518560px;}
.y73{bottom:543.060000px;}
.y18a{bottom:544.680000px;}
.y1d8{bottom:545.561280px;}
.y1a9{bottom:545.682960px;}
.y25c{bottom:547.920000px;}
.y2cb{bottom:547.928640px;}
.y2af{bottom:547.942320px;}
.y22c{bottom:550.966320px;}
.y104{bottom:551.462400px;}
.ya0{bottom:551.509200px;}
.y135{bottom:551.515680px;}
.y15c{bottom:552.241440px;}
.y18d{bottom:555.300000px;}
.y6b{bottom:559.081440px;}
.ye5{bottom:559.954080px;}
.yc3{bottom:560.454480px;}
.y214{bottom:561.224880px;}
.y190{bottom:563.035500px;}
.y25b{bottom:569.700000px;}
.y2ca{bottom:569.705040px;}
.y297{bottom:569.708640px;}
.y284{bottom:569.715120px;}
.y2ae{bottom:569.718720px;}
.y1d7{bottom:570.765600px;}
.y1a8{bottom:570.887280px;}
.y72{bottom:572.582880px;}
.y1{bottom:573.480000px;}
.y22b{bottom:576.170640px;}
.y103{bottom:576.666720px;}
.y9f{bottom:576.713520px;}
.y1ef{bottom:576.714960px;}
.y15b{bottom:577.445760px;}
.y18f{bottom:578.520000px;}
.y3{bottom:579.600000px;}
.y6a{bottom:581.040000px;}
.y2{bottom:585.000000px;}
.ye4{bottom:585.158400px;}
.yc2{bottom:585.658800px;}
.y213{bottom:586.429200px;}
.y25a{bottom:591.481440px;}
.y296{bottom:591.485040px;}
.y283{bottom:591.491520px;}
.y2ad{bottom:591.495120px;}
.y71{bottom:591.660000px;}
.y1d6{bottom:595.969920px;}
.y1a7{bottom:596.091600px;}
.y22a{bottom:601.192800px;}
.y123{bottom:601.688880px;}
.y9e{bottom:601.735680px;}
.y1ee{bottom:601.737120px;}
.y188{bottom:607.500000px;}
.ye3{bottom:610.180560px;}
.yc1{bottom:610.680960px;}
.y15a{bottom:611.427600px;}
.y212{bottom:611.451360px;}
.y259{bottom:613.440000px;}
.y295{bottom:613.443600px;}
.y282{bottom:613.450080px;}
.y2ac{bottom:613.453680px;}
.y187{bottom:618.115500px;}
.y1d5{bottom:620.992080px;}
.y1a6{bottom:621.113760px;}
.y17{bottom:625.677120px;}
.y189{bottom:625.860000px;}
.y4d{bottom:626.040000px;}
.y229{bottom:626.397120px;}
.y122{bottom:626.893200px;}
.y9d{bottom:626.911200px;}
.y1ed{bottom:626.941440px;}
.y186{bottom:633.600000px;}
.y294{bottom:635.220000px;}
.y258{bottom:635.225040px;}
.y281{bottom:635.226480px;}
.y2ab{bottom:635.230080px;}
.y2c9{bottom:635.235120px;}
.ye2{bottom:635.384880px;}
.y102{bottom:635.885280px;}
.y159{bottom:636.631920px;}
.y211{bottom:636.655680px;}
.y67{bottom:639.766080px;}
.yc0{bottom:644.877360px;}
.y1a5{bottom:646.318080px;}
.y121{bottom:652.097520px;}
.y9c{bottom:652.115520px;}
.y1ec{bottom:652.145760px;}
.y184{bottom:654.840000px;}
.y1d4{bottom:655.188480px;}
.y257{bottom:657.183600px;}
.y280{bottom:657.185040px;}
.y2aa{bottom:657.188640px;}
.y2c8{bottom:657.193680px;}
.ye1{bottom:660.589200px;}
.y228{bottom:660.593520px;}
.y101{bottom:661.089600px;}
.y158{bottom:661.836240px;}
.y210{bottom:661.860000px;}
.y16{bottom:669.780000px;}
.ybf{bottom:670.081680px;}
.y185{bottom:673.200000px;}
.y66{bottom:676.479600px;}
.y120{bottom:677.119680px;}
.y9b{bottom:677.137680px;}
.y1a4{bottom:677.285280px;}
.y256{bottom:678.960000px;}
.y27f{bottom:678.961440px;}
.y2a9{bottom:678.965040px;}
.y2c7{bottom:678.970080px;}
.y1d3{bottom:680.392800px;}
.ye0{bottom:685.611360px;}
.y227{bottom:685.615680px;}
.y100{bottom:686.111760px;}
.y157{bottom:686.858400px;}
.y15{bottom:688.680000px;}
.y20f{bottom:693.180000px;}
.ybe{bottom:695.103840px;}
.y27e{bottom:700.920000px;}
.y2a8{bottom:700.923600px;}
.y255{bottom:700.925040px;}
.y2c6{bottom:700.928640px;}
.y181{bottom:702.000000px;}
.y11f{bottom:702.324000px;}
.y1d2{bottom:705.414960px;}
.ydf{bottom:710.815680px;}
.y14{bottom:710.820000px;}
.yff{bottom:711.316080px;}
.y9a{bottom:711.334080px;}
.y156{bottom:712.062720px;}
.y65{bottom:713.375280px;}
.y20e{bottom:717.300000px;}
.ybd{bottom:720.308160px;}
.y183{bottom:720.540000px;}
.y27d{bottom:722.700000px;}
.y254{bottom:722.701440px;}
.y2c5{bottom:722.705040px;}
.y11e{bottom:727.528320px;}
.y1d1{bottom:730.619280px;}
.y13{bottom:732.780000px;}
.y64{bottom:735.333840px;}
.yde{bottom:735.999840px;}
.yfe{bottom:736.520400px;}
.y99{bottom:736.538400px;}
.y155{bottom:737.267040px;}
.y226{bottom:742.140000px;}
.y253{bottom:744.660000px;}
.y2c4{bottom:744.663600px;}
.y27c{bottom:744.665040px;}
.ybc{bottom:745.512480px;}
.y17f{bottom:749.340000px;}
.y1d0{bottom:755.823600px;}
.y63{bottom:757.292400px;}
.y12{bottom:758.160000px;}
.y17e{bottom:760.140000px;}
.ydd{bottom:761.022000px;}
.yfd{bottom:761.542560px;}
.y20d{bottom:761.553360px;}
.y98{bottom:761.560560px;}
.y2c3{bottom:766.440000px;}
.y27b{bottom:766.441440px;}
.y293{bottom:766.450080px;}
.y252{bottom:766.468800px;}
.ybb{bottom:770.534640px;}
.y154{bottom:771.281280px;}
.y62{bottom:779.068800px;}
.y17c{bottom:781.200000px;}
.y11{bottom:781.920000px;}
.yfc{bottom:786.746880px;}
.y20c{bottom:786.757680px;}
.y97{bottom:786.764880px;}
.y27a{bottom:788.400000px;}
.y292{bottom:788.408640px;}
.y2c2{bottom:788.417280px;}
.y251{bottom:788.427360px;}
.y1cf{bottom:790.020000px;}
.y17b{bottom:791.820000px;}
.ydc{bottom:795.218400px;}
.yba{bottom:795.738960px;}
.y153{bottom:796.485600px;}
.y10{bottom:796.500000px;}
.y61{bottom:801.027360px;}
.y1cc{bottom:808.020000px;}
.y279{bottom:810.185040px;}
.y2c1{bottom:810.193680px;}
.y250{bottom:810.203760px;}
.yfb{bottom:811.951200px;}
.y20b{bottom:811.962000px;}
.y96{bottom:811.969200px;}
.y178{bottom:813.060000px;}
.yf{bottom:815.401080px;}
.ydb{bottom:820.422720px;}
.yb9{bottom:820.943280px;}
.y152{bottom:821.689920px;}
.y60{bottom:822.803760px;}
.y1ce{bottom:826.375500px;}
.y278{bottom:832.143600px;}
.y2c0{bottom:832.152240px;}
.y24f{bottom:832.162320px;}
.ye{bottom:835.734420px;}
.yfa{bottom:836.973360px;}
.y20a{bottom:836.984160px;}
.y95{bottom:836.991360px;}
.y1cb{bottom:841.860000px;}
.y5f{bottom:844.762320px;}
.yda{bottom:845.444880px;}
.yb8{bottom:845.965440px;}
.y151{bottom:846.712080px;}
.yd{bottom:853.020000px;}
.y277{bottom:853.920000px;}
.y2bf{bottom:853.928640px;}
.y24e{bottom:853.938720px;}
.y1cd{bottom:857.520000px;}
.y177{bottom:861.652800px;}
.yf9{bottom:862.177680px;}
.y209{bottom:862.188480px;}
.y94{bottom:862.195680px;}
.y5e{bottom:866.538720px;}
.yd9{bottom:870.649200px;}
.yc{bottom:870.840000px;}
.yb7{bottom:871.169760px;}
.y2be{bottom:875.705040px;}
.y276{bottom:875.706480px;}
.y2a7{bottom:875.710080px;}
.y24d{bottom:875.715120px;}
.y150{bottom:880.908480px;}
.y1c5{bottom:886.320000px;}
.y93{bottom:887.382000px;}
.y208{bottom:887.392800px;}
.y5d{bottom:888.497280px;}
.yb{bottom:894.270060px;}
.y176{bottom:895.849200px;}
.yd8{bottom:895.853520px;}
.yb6{bottom:896.374080px;}
.y2bd{bottom:897.663600px;}
.y275{bottom:897.665040px;}
.y2a6{bottom:897.668640px;}
.y24c{bottom:897.673680px;}
.y1ca{bottom:904.846500px;}
.y5c{bottom:910.273680px;}
.y92{bottom:912.404160px;}
.y207{bottom:912.414960px;}
.y55{bottom:913.335120px;}
.y14f{bottom:915.104880px;}
.y2bc{bottom:919.440000px;}
.y274{bottom:919.441440px;}
.y2a5{bottom:919.445040px;}
.y24b{bottom:919.450080px;}
.y1c9{bottom:920.331000px;}
.y175{bottom:920.871360px;}
.yd7{bottom:920.875680px;}
.yb5{bottom:921.396240px;}
.ya{bottom:923.620500px;}
.y1c4{bottom:928.080000px;}
.y5b{bottom:932.232240px;}
.y54{bottom:935.293680px;}
.y1c8{bottom:935.815500px;}
.y1eb{bottom:937.608480px;}
.y206{bottom:937.619280px;}
.y14e{bottom:940.309200px;}
.y273{bottom:941.400000px;}
.y2a4{bottom:941.403600px;}
.y2bb{bottom:941.405040px;}
.y24a{bottom:941.408640px;}
.y174{bottom:946.075680px;}
.yd6{bottom:946.080000px;}
.y91{bottom:946.600560px;}
.y1c7{bottom:951.300000px;}
.y9{bottom:951.510600px;}
.y5a{bottom:954.008640px;}
.y26{bottom:956.700000px;}
.y53{bottom:957.070080px;}
.y1ea{bottom:962.812800px;}
.y205{bottom:962.823600px;}
.y2a3{bottom:963.180000px;}
.y272{bottom:963.181440px;}
.y249{bottom:963.185040px;}
.y14d{bottom:965.331360px;}
.y173{bottom:971.280000px;}
.y90{bottom:971.804880px;}
.y24{bottom:972.180000px;}
.y59{bottom:975.785040px;}
.yd5{bottom:977.580000px;}
.y52{bottom:979.028640px;}
.y8{bottom:979.041600px;}
.y1be{bottom:980.280000px;}
.y271{bottom:985.140000px;}
.y248{bottom:985.143600px;}
.y22{bottom:987.660000px;}
.y23d{bottom:988.017120px;}
.y14c{bottom:990.535680px;}
.y8f{bottom:997.009200px;}
.y58{bottom:997.743600px;}
.y1c3{bottom:998.635500px;}
.y51{bottom:1000.805040px;}
.y172{bottom:1002.600000px;}
.y21{bottom:1003.126500px;}
.y7{bottom:1006.572600px;}
.y247{bottom:1006.920000px;}
.y2ba{bottom:1006.926480px;}
.y1c2{bottom:1014.120000px;}
.y14b{bottom:1015.740000px;}
.y20{bottom:1018.611000px;}
.y57{bottom:1019.520000px;}
.y8e{bottom:1022.031360px;}
.y50{bottom:1022.763600px;}
.y246{bottom:1028.885040px;}
.y1f{bottom:1034.271000px;}
.y6{bottom:1034.295120px;}
.y4f{bottom:1044.540000px;}
.y1c1{bottom:1045.255500px;}
.y14a{bottom:1047.060000px;}
.y8d{bottom:1047.235680px;}
.y1e{bottom:1049.755500px;}
.y245{bottom:1050.661440px;}
.y56{bottom:1054.980000px;}
.y1c0{bottom:1060.740000px;}
.y5{bottom:1061.826120px;}
.y1d{bottom:1065.240000px;}
.y149{bottom:1071.180000px;}
.y8c{bottom:1072.440000px;}
.y244{bottom:1072.620000px;}
.y1c{bottom:1087.560000px;}
.y47{bottom:1094.580000px;}
.y4{bottom:1107.360000px;}
.y46{bottom:1116.540000px;}
.y1b{bottom:1117.440000px;}
.y1a{bottom:1138.135500px;}
.y45{bottom:1138.500000px;}
.y19{bottom:1158.480000px;}
.y44{bottom:1159.012800px;}
.y43{bottom:1186.020000px;}
.h10{height:17.280000px;}
.h1f{height:30.960000px;}
.h20{height:31.138500px;}
.h14{height:33.518320px;}
.ha{height:35.991211px;}
.h15{height:43.094400px;}
.h8{height:43.246406px;}
.h22{height:46.440000px;}
.h21{height:46.620000px;}
.h3{height:47.988281px;}
.hb{height:48.410156px;}
.h9{height:48.752930px;}
.h24{height:50.647104px;}
.h1b{height:50.832576px;}
.h2c{height:52.727040px;}
.h7{height:53.573906px;}
.h1a{height:55.051200px;}
.h18{height:55.689696px;}
.hf{height:56.801250px;}
.he{height:59.174400px;}
.h2b{height:59.217600px;}
.h16{height:59.246400px;}
.h19{height:59.255040px;}
.h17{height:59.289600px;}
.h2a{height:59.295360px;}
.h1e{height:59.304000px;}
.h29{height:59.367360px;}
.h1d{height:59.383125px;}
.h1c{height:59.387520px;}
.hd{height:59.803594px;}
.h23{height:62.100000px;}
.h5{height:63.824414px;}
.h6{height:64.546875px;}
.h13{height:73.260000px;}
.h25{height:77.578500px;}
.h28{height:77.580000px;}
.h4{height:86.455195px;}
.h27{height:93.240000px;}
.h26{height:108.540000px;}
.h12{height:439.740000px;}
.h11{height:463.680000px;}
.hc{height:486.540000px;}
.h2{height:602.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:25.020000px;}
.wa{width:158.401500px;}
.w4{width:224.640000px;}
.w2{width:265.860000px;}
.w3{width:349.380000px;}
.w9{width:486.180000px;}
.wc{width:540.900000px;}
.w5{width:574.020000px;}
.wb{width:636.301500px;}
.w8{width:645.300000px;}
.w7{width:730.800000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x28{left:10.800000px;}
.x15{left:20.700000px;}
.x1{left:72.720000px;}
.x27{left:80.460000px;}
.x26{left:84.422880px;}
.x22{left:86.757840px;}
.x12{left:89.100720px;}
.x24{left:90.715680px;}
.x10{left:100.080000px;}
.xf{left:105.660000px;}
.x11{left:107.995680px;}
.x2c{left:114.840000px;}
.x18{left:116.640000px;}
.x19{left:120.960000px;}
.x23{left:128.869920px;}
.x16{left:133.380000px;}
.x13{left:134.640720px;}
.x25{left:135.891360px;}
.x21{left:136.984320px;}
.x1a{left:143.812800px;}
.x1d{left:145.419120px;}
.x1b{left:147.770640px;}
.x30{left:148.872960px;}
.x29{left:159.467040px;}
.x1f{left:160.560000px;}
.x1e{left:163.784160px;}
.x14{left:168.125040px;}
.x1c{left:169.547040px;}
.x2f{left:186.469920px;}
.x20{left:198.720000px;}
.x2d{left:202.500000px;}
.x2e{left:210.060000px;}
.x2b{left:212.580000px;}
.xd{left:220.140000px;}
.x2{left:265.860000px;}
.x5{left:273.960000px;}
.x4{left:286.380000px;}
.x2a{left:322.380000px;}
.x17{left:433.980000px;}
.xc{left:615.240000px;}
.x9{left:663.664500px;}
.xb{left:700.200000px;}
.xe{left:703.440000px;}
.xa{left:713.155500px;}
.x8{left:731.880000px;}
.x7{left:749.160000px;}
.x31{left:767.700000px;}
.x6{left:831.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls36{letter-spacing:-3.415040pt;}
.ls11{letter-spacing:-0.942080pt;}
.ls22{letter-spacing:-0.857600pt;}
.ls55{letter-spacing:-0.824320pt;}
.ls26{letter-spacing:-0.814720pt;}
.ls3d{letter-spacing:-0.647680pt;}
.ls3f{letter-spacing:-0.557440pt;}
.ls1b{letter-spacing:-0.529920pt;}
.ls1c{letter-spacing:-0.471680pt;}
.ls31{letter-spacing:-0.471040pt;}
.lsa{letter-spacing:-0.432000pt;}
.ls1a{letter-spacing:-0.412160pt;}
.ls1d{letter-spacing:-0.385920pt;}
.ls48{letter-spacing:-0.353280pt;}
.ls4d{letter-spacing:-0.336000pt;}
.ls1f{letter-spacing:-0.300160pt;}
.lsc{letter-spacing:-0.294400pt;}
.ls2b{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.235520pt;}
.ls2c{letter-spacing:-0.214400pt;}
.lsd{letter-spacing:-0.176640pt;}
.ls21{letter-spacing:-0.171520pt;}
.ls7{letter-spacing:-0.170240pt;}
.ls32{letter-spacing:-0.128000pt;}
.ls3e{letter-spacing:-0.117760pt;}
.ls9{letter-spacing:-0.106240pt;}
.ls10{letter-spacing:-0.058880pt;}
.ls6{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.016000pt;}
.ls35{letter-spacing:0.029440pt;}
.ls16{letter-spacing:0.056320pt;}
.lse{letter-spacing:0.058880pt;}
.ls1{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.064320pt;}
.ls2a{letter-spacing:0.085760pt;}
.ls5a{letter-spacing:0.088320pt;}
.ls59{letter-spacing:0.111872pt;}
.ls18{letter-spacing:0.117760pt;}
.ls44{letter-spacing:0.138240pt;}
.ls23{letter-spacing:0.139520pt;}
.ls4b{letter-spacing:0.144000pt;}
.ls29{letter-spacing:0.147200pt;}
.ls1e{letter-spacing:0.171520pt;}
.lsf{letter-spacing:0.176640pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.212480pt;}
.ls17{letter-spacing:0.225280pt;}
.ls28{letter-spacing:0.229632pt;}
.ls13{letter-spacing:0.235520pt;}
.ls4c{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.257280pt;}
.ls30{letter-spacing:0.259072pt;}
.ls2f{letter-spacing:0.264960pt;}
.ls4{letter-spacing:0.265600pt;}
.ls53{letter-spacing:0.270848pt;}
.ls45{letter-spacing:0.294400pt;}
.ls3b{letter-spacing:0.304448pt;}
.ls46{letter-spacing:0.306176pt;}
.ls43{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.324032pt;}
.ls4e{letter-spacing:0.336000pt;}
.ls57{letter-spacing:0.341504pt;}
.ls20{letter-spacing:0.343040pt;}
.ls3c{letter-spacing:0.347328pt;}
.lsb{letter-spacing:0.353280pt;}
.ls47{letter-spacing:0.359168pt;}
.ls0{letter-spacing:0.373120pt;}
.ls4f{letter-spacing:0.412160pt;}
.ls49{letter-spacing:0.418048pt;}
.ls58{letter-spacing:0.482816pt;}
.ls33{letter-spacing:1.059840pt;}
.ls54{letter-spacing:1.543680pt;}
.ls37{letter-spacing:1.772288pt;}
.ls40{letter-spacing:2.355200pt;}
.ls2e{letter-spacing:2.944000pt;}
.ls52{letter-spacing:4.116480pt;}
.ls4a{letter-spacing:6.496000pt;}
.ls15{letter-spacing:7.847040pt;}
.ls27{letter-spacing:9.361920pt;}
.ls24{letter-spacing:11.952640pt;}
.ls39{letter-spacing:13.212672pt;}
.ls38{letter-spacing:13.836800pt;}
.ls34{letter-spacing:14.484480pt;}
.ls51{letter-spacing:20.902400pt;}
.ls42{letter-spacing:21.856000pt;}
.ls56{letter-spacing:27.909120pt;}
.ls50{letter-spacing:52.756480pt;}
.ls3a{letter-spacing:59.174400pt;}
.ls14{letter-spacing:753.536000pt;}
.ls12{letter-spacing:897.008640pt;}
.ws13a{word-spacing:-58.880000pt;}
.ws152{word-spacing:-17.472000pt;}
.wsf7{word-spacing:-17.152000pt;}
.ws6{word-spacing:-16.074240pt;}
.wsf8{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.661120pt;}
.ws107{word-spacing:-14.602240pt;}
.ws25{word-spacing:-14.543360pt;}
.wsc8{word-spacing:-14.484480pt;}
.ws24{word-spacing:-14.425600pt;}
.ws7c{word-spacing:-14.366720pt;}
.ws7{word-spacing:-14.307840pt;}
.ws26{word-spacing:-14.248960pt;}
.wsfa{word-spacing:-14.190080pt;}
.ws5{word-spacing:-14.131200pt;}
.ws5a{word-spacing:-14.072320pt;}
.ws4{word-spacing:-14.013440pt;}
.ws159{word-spacing:-13.954560pt;}
.wsb1{word-spacing:-13.836800pt;}
.ws7b{word-spacing:-13.777920pt;}
.ws130{word-spacing:-13.680000pt;}
.ws15b{word-spacing:-13.660160pt;}
.ws125{word-spacing:-13.584000pt;}
.ws2{word-spacing:-13.536000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws3{word-spacing:-12.912000pt;}
.ws97{word-spacing:-12.177920pt;}
.ws5c{word-spacing:-11.920640pt;}
.ws98{word-spacing:-11.749120pt;}
.ws5b{word-spacing:-11.105920pt;}
.ws27{word-spacing:-10.720000pt;}
.ws28{word-spacing:-10.548480pt;}
.ws29{word-spacing:-9.862400pt;}
.ws106{word-spacing:-8.536320pt;}
.wsf9{word-spacing:-8.398080pt;}
.ws155{word-spacing:-4.239360pt;}
.ws10d{word-spacing:-3.936000pt;}
.ws101{word-spacing:-3.591680pt;}
.wsc7{word-spacing:-3.473920pt;}
.ws149{word-spacing:-3.356160pt;}
.ws10c{word-spacing:-3.264000pt;}
.ws14a{word-spacing:-3.238400pt;}
.ws82{word-spacing:-3.120640pt;}
.ws13d{word-spacing:-3.002880pt;}
.wsbe{word-spacing:-2.944000pt;}
.wsca{word-spacing:-2.826240pt;}
.ws88{word-spacing:-2.590720pt;}
.wsbf{word-spacing:-2.472960pt;}
.ws32{word-spacing:-2.296320pt;}
.wsc2{word-spacing:-2.237440pt;}
.wsab{word-spacing:-2.178560pt;}
.ws104{word-spacing:-2.144000pt;}
.ws6a{word-spacing:-1.943040pt;}
.wsd5{word-spacing:-1.825280pt;}
.ws83{word-spacing:-1.707520pt;}
.wsba{word-spacing:-1.648640pt;}
.wsbb{word-spacing:-1.589760pt;}
.ws33{word-spacing:-1.472000pt;}
.ws34{word-spacing:-1.354240pt;}
.ws10a{word-spacing:-1.344000pt;}
.wsbc{word-spacing:-1.236480pt;}
.wsde{word-spacing:-1.059840pt;}
.wsa1{word-spacing:-1.000960pt;}
.wsa8{word-spacing:-0.942080pt;}
.ws158{word-spacing:-0.883200pt;}
.wsad{word-spacing:-0.857600pt;}
.wsd6{word-spacing:-0.824320pt;}
.wsf{word-spacing:-0.720000pt;}
.ws12{word-spacing:-0.706560pt;}
.ws1c{word-spacing:-0.588800pt;}
.ws15a{word-spacing:-0.529920pt;}
.ws2b{word-spacing:-0.506880pt;}
.ws4f{word-spacing:-0.471040pt;}
.ws23{word-spacing:-0.412160pt;}
.ws2d{word-spacing:-0.353280pt;}
.wsb0{word-spacing:-0.343040pt;}
.ws2a{word-spacing:-0.337920pt;}
.ws108{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.294400pt;}
.ws143{word-spacing:-0.257280pt;}
.wsb7{word-spacing:-0.235520pt;}
.ws103{word-spacing:-0.214400pt;}
.wse{word-spacing:-0.192000pt;}
.ws2c{word-spacing:-0.176640pt;}
.wsa{word-spacing:-0.128000pt;}
.ws3d{word-spacing:-0.117760pt;}
.wsd{word-spacing:-0.096000pt;}
.wsae{word-spacing:-0.085760pt;}
.ws10{word-spacing:-0.058880pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:0.053120pt;}
.ws11{word-spacing:0.058880pt;}
.wsc{word-spacing:0.106240pt;}
.wsc4{word-spacing:0.128000pt;}
.ws9{word-spacing:0.170240pt;}
.ws79{word-spacing:0.171520pt;}
.ws4e{word-spacing:0.176640pt;}
.wsaf{word-spacing:0.214400pt;}
.ws1f{word-spacing:0.235520pt;}
.ws99{word-spacing:0.256000pt;}
.ws3c{word-spacing:0.294400pt;}
.ws53{word-spacing:0.300160pt;}
.ws132{word-spacing:0.336000pt;}
.ws73{word-spacing:0.353280pt;}
.wsa7{word-spacing:0.412160pt;}
.ws77{word-spacing:0.428800pt;}
.ws10b{word-spacing:0.432000pt;}
.ws9c{word-spacing:0.471040pt;}
.ws55{word-spacing:0.471680pt;}
.ws3b{word-spacing:0.529920pt;}
.ws105{word-spacing:0.557440pt;}
.ws131{word-spacing:0.576000pt;}
.ws14{word-spacing:0.588800pt;}
.wsfe{word-spacing:0.647680pt;}
.ws96{word-spacing:0.706560pt;}
.ws144{word-spacing:0.824320pt;}
.ws14e{word-spacing:0.883200pt;}
.ws60{word-spacing:0.942080pt;}
.wsa4{word-spacing:1.000960pt;}
.wsa3{word-spacing:1.118720pt;}
.ws10e{word-spacing:1.200000pt;}
.wsb2{word-spacing:1.236480pt;}
.ws1a{word-spacing:1.354240pt;}
.wsc9{word-spacing:1.530880pt;}
.ws11d{word-spacing:1.707520pt;}
.ws102{word-spacing:1.715200pt;}
.ws123{word-spacing:1.766400pt;}
.ws118{word-spacing:1.824000pt;}
.ws63{word-spacing:1.884160pt;}
.wsf0{word-spacing:1.943040pt;}
.wsb4{word-spacing:2.001920pt;}
.ws4a{word-spacing:2.178560pt;}
.wsdf{word-spacing:2.296320pt;}
.ws57{word-spacing:2.401280pt;}
.wsa5{word-spacing:2.414080pt;}
.ws116{word-spacing:2.496000pt;}
.ws58{word-spacing:2.529920pt;}
.ws4b{word-spacing:2.531840pt;}
.ws59{word-spacing:2.572800pt;}
.ws21{word-spacing:2.649600pt;}
.ws12a{word-spacing:2.826240pt;}
.ws36{word-spacing:2.885120pt;}
.wsd9{word-spacing:2.944000pt;}
.wse9{word-spacing:2.958720pt;}
.ws56{word-spacing:3.001600pt;}
.ws1e{word-spacing:3.061760pt;}
.ws12f{word-spacing:3.120000pt;}
.ws91{word-spacing:3.179520pt;}
.ws139{word-spacing:3.238400pt;}
.wscb{word-spacing:3.297280pt;}
.ws37{word-spacing:3.415040pt;}
.wse7{word-spacing:3.591680pt;}
.ws78{word-spacing:3.601920pt;}
.wsee{word-spacing:3.650560pt;}
.ws51{word-spacing:3.730560pt;}
.ws113{word-spacing:3.744000pt;}
.ws35{word-spacing:3.768320pt;}
.ws50{word-spacing:3.816320pt;}
.wsef{word-spacing:3.886080pt;}
.ws67{word-spacing:4.062720pt;}
.ws7f{word-spacing:4.121600pt;}
.ws7d{word-spacing:4.180480pt;}
.wseb{word-spacing:4.239360pt;}
.ws142{word-spacing:4.245120pt;}
.ws93{word-spacing:4.298240pt;}
.wsd4{word-spacing:4.416000pt;}
.ws157{word-spacing:4.474880pt;}
.ws95{word-spacing:4.533760pt;}
.wsf4{word-spacing:4.710400pt;}
.ws3f{word-spacing:4.828160pt;}
.ws76{word-spacing:4.888320pt;}
.ws6e{word-spacing:4.945920pt;}
.wsa2{word-spacing:5.063680pt;}
.wsa0{word-spacing:5.181440pt;}
.ws126{word-spacing:5.358080pt;}
.ws11c{word-spacing:5.475840pt;}
.ws135{word-spacing:5.593600pt;}
.ws134{word-spacing:5.664000pt;}
.wsb5{word-spacing:5.711360pt;}
.wsb6{word-spacing:5.829120pt;}
.ws68{word-spacing:5.946880pt;}
.ws13b{word-spacing:6.005760pt;}
.wse1{word-spacing:6.182400pt;}
.ws12d{word-spacing:6.336000pt;}
.ws1b{word-spacing:6.359040pt;}
.ws12c{word-spacing:6.384000pt;}
.wsc6{word-spacing:6.476800pt;}
.ws127{word-spacing:6.653440pt;}
.wsfb{word-spacing:6.656000pt;}
.ws92{word-spacing:6.771200pt;}
.wsdb{word-spacing:6.888960pt;}
.ws47{word-spacing:7.006720pt;}
.ws48{word-spacing:7.065600pt;}
.wsd2{word-spacing:7.124480pt;}
.ws85{word-spacing:7.301120pt;}
.wse3{word-spacing:7.360000pt;}
.wsd7{word-spacing:7.418880pt;}
.ws84{word-spacing:7.477760pt;}
.wse2{word-spacing:7.536640pt;}
.ws6f{word-spacing:7.654400pt;}
.wsa9{word-spacing:7.772160pt;}
.ws40{word-spacing:7.831040pt;}
.wsbd{word-spacing:7.889920pt;}
.wsd8{word-spacing:8.007680pt;}
.ws7a{word-spacing:8.104320pt;}
.ws41{word-spacing:8.125440pt;}
.ws54{word-spacing:8.147200pt;}
.ws9a{word-spacing:8.243200pt;}
.ws119{word-spacing:8.256000pt;}
.ws128{word-spacing:8.360960pt;}
.wse0{word-spacing:8.537600pt;}
.wsfd{word-spacing:8.596480pt;}
.wsf2{word-spacing:8.655360pt;}
.ws122{word-spacing:8.714240pt;}
.ws11a{word-spacing:8.880000pt;}
.ws90{word-spacing:8.890880pt;}
.ws150{word-spacing:8.949760pt;}
.ws2f{word-spacing:9.185280pt;}
.ws81{word-spacing:9.303040pt;}
.wsac{word-spacing:9.420800pt;}
.ws6d{word-spacing:9.538560pt;}
.ws15{word-spacing:9.832960pt;}
.ws39{word-spacing:9.950720pt;}
.ws11b{word-spacing:10.009600pt;}
.ws42{word-spacing:10.068480pt;}
.ws112{word-spacing:10.176000pt;}
.ws6c{word-spacing:10.186240pt;}
.ws6b{word-spacing:10.304000pt;}
.ws146{word-spacing:10.421760pt;}
.ws66{word-spacing:10.598400pt;}
.wsea{word-spacing:10.716160pt;}
.ws115{word-spacing:10.800000pt;}
.ws38{word-spacing:10.833920pt;}
.ws80{word-spacing:11.128320pt;}
.wsb3{word-spacing:11.246080pt;}
.ws12b{word-spacing:11.304960pt;}
.ws4d{word-spacing:11.481600pt;}
.ws86{word-spacing:11.599360pt;}
.ws5e{word-spacing:11.717120pt;}
.ws87{word-spacing:11.776000pt;}
.ws5d{word-spacing:11.893760pt;}
.wsaa{word-spacing:12.129280pt;}
.ws11e{word-spacing:12.188160pt;}
.wsc0{word-spacing:12.247040pt;}
.wsc3{word-spacing:12.423680pt;}
.ws138{word-spacing:12.659200pt;}
.ws3a{word-spacing:12.776960pt;}
.ws8b{word-spacing:12.894720pt;}
.ws124{word-spacing:13.130240pt;}
.wsda{word-spacing:13.248000pt;}
.ws9e{word-spacing:13.365760pt;}
.ws9f{word-spacing:13.483520pt;}
.ws94{word-spacing:13.660160pt;}
.wse6{word-spacing:13.719040pt;}
.ws153{word-spacing:13.777920pt;}
.ws69{word-spacing:13.895680pt;}
.wsb9{word-spacing:14.013440pt;}
.ws117{word-spacing:14.016000pt;}
.wse5{word-spacing:14.131200pt;}
.wsc1{word-spacing:14.425600pt;}
.ws89{word-spacing:14.543360pt;}
.ws20{word-spacing:14.661120pt;}
.ws8a{word-spacing:14.778880pt;}
.ws121{word-spacing:14.955520pt;}
.ws137{word-spacing:15.191040pt;}
.ws114{word-spacing:15.264000pt;}
.ws61{word-spacing:15.603200pt;}
.ws109{word-spacing:15.720960pt;}
.ws9d{word-spacing:15.956480pt;}
.ws62{word-spacing:16.074240pt;}
.ws8d{word-spacing:16.250880pt;}
.ws120{word-spacing:16.427520pt;}
.wsd3{word-spacing:16.604160pt;}
.ws11f{word-spacing:16.721920pt;}
.ws13c{word-spacing:17.016320pt;}
.wsf1{word-spacing:17.134080pt;}
.ws31{word-spacing:17.251840pt;}
.ws136{word-spacing:17.546240pt;}
.ws7e{word-spacing:17.899520pt;}
.wsf3{word-spacing:18.193920pt;}
.ws64{word-spacing:18.252800pt;}
.wse8{word-spacing:18.311680pt;}
.ws16{word-spacing:18.370560pt;}
.ws65{word-spacing:18.488320pt;}
.ws1d{word-spacing:18.606080pt;}
.wsce{word-spacing:18.841600pt;}
.ws70{word-spacing:18.900480pt;}
.ws151{word-spacing:19.136000pt;}
.wsa6{word-spacing:19.253760pt;}
.ws75{word-spacing:19.489280pt;}
.wsb8{word-spacing:19.548160pt;}
.wsec{word-spacing:19.783680pt;}
.wsed{word-spacing:19.901440pt;}
.wscc{word-spacing:20.195840pt;}
.wscd{word-spacing:20.313600pt;}
.ws13f{word-spacing:20.431360pt;}
.ws13e{word-spacing:20.490240pt;}
.ws100{word-spacing:20.549120pt;}
.ws74{word-spacing:20.725760pt;}
.ws140{word-spacing:20.961280pt;}
.wsd0{word-spacing:21.079040pt;}
.ws45{word-spacing:21.491200pt;}
.ws111{word-spacing:21.696000pt;}
.ws154{word-spacing:21.726720pt;}
.ws52{word-spacing:21.740160pt;}
.ws14d{word-spacing:21.844480pt;}
.ws147{word-spacing:22.168960pt;}
.ws10f{word-spacing:22.320000pt;}
.wsfc{word-spacing:22.374400pt;}
.wsc5{word-spacing:22.845440pt;}
.ws133{word-spacing:22.944000pt;}
.ws71{word-spacing:22.963200pt;}
.ws72{word-spacing:23.080960pt;}
.ws5f{word-spacing:23.610880pt;}
.ws8e{word-spacing:23.728640pt;}
.ws8f{word-spacing:24.376320pt;}
.ws14f{word-spacing:24.670720pt;}
.ws145{word-spacing:24.768000pt;}
.ws30{word-spacing:25.553920pt;}
.ws2e{word-spacing:26.201600pt;}
.ws9b{word-spacing:26.319360pt;}
.wsd1{word-spacing:26.554880pt;}
.ws129{word-spacing:26.967040pt;}
.wse4{word-spacing:27.496960pt;}
.ws14b{word-spacing:27.732480pt;}
.ws14c{word-spacing:28.203520pt;}
.wscf{word-spacing:28.497920pt;}
.wsdd{word-spacing:29.027840pt;}
.wsdc{word-spacing:29.204480pt;}
.ws148{word-spacing:30.028800pt;}
.ws17{word-spacing:30.440960pt;}
.ws3e{word-spacing:31.206400pt;}
.ws44{word-spacing:31.324160pt;}
.ws18{word-spacing:31.441920pt;}
.ws4c{word-spacing:33.620480pt;}
.ws46{word-spacing:34.385920pt;}
.ws156{word-spacing:34.798080pt;}
.wsf5{word-spacing:35.033600pt;}
.wsf6{word-spacing:35.151360pt;}
.ws19{word-spacing:37.800960pt;}
.wsff{word-spacing:40.038400pt;}
.ws43{word-spacing:40.273920pt;}
.ws8c{word-spacing:40.921600pt;}
.ws22{word-spacing:44.748800pt;}
.ws12e{word-spacing:47.904000pt;}
.ws49{word-spacing:57.643520pt;}
.ws141{word-spacing:58.821120pt;}
.ws110{word-spacing:64.560000pt;}
._8{margin-left:-3.174400pt;}
._2{margin-left:-2.071552pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.123584pt;}
._3{width:2.174464pt;}
._6{width:3.258880pt;}
._5{width:4.545280pt;}
._b{width:6.280704pt;}
._e{width:7.649536pt;}
._9{width:8.768000pt;}
._a{width:9.787648pt;}
._4{width:10.880512pt;}
._7{width:13.086464pt;}
._c{width:17.283328pt;}
._d{width:22.224128pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y8b{bottom:-7.200000pt;}
.y0{bottom:0.000000pt;}
.y17a{bottom:2.560000pt;}
.y180{bottom:2.720000pt;}
.y4c{bottom:2.880000pt;}
.y18{bottom:4.320000pt;}
.y179{bottom:16.320000pt;}
.y17d{bottom:16.480000pt;}
.y18c{bottom:23.200000pt;}
.y4a{bottom:30.080000pt;}
.y182{bottom:30.240000pt;}
.y18b{bottom:36.960000pt;}
.y18e{bottom:44.000000pt;}
.y49{bottom:49.600000pt;}
.y86{bottom:55.200000pt;}
.y1b8{bottom:57.760000pt;}
.y4b{bottom:68.960000pt;}
.y48{bottom:69.120000pt;}
.y1c6{bottom:71.680000pt;}
.y27{bottom:77.280000pt;}
.y1bf{bottom:85.280000pt;}
.y1a2{bottom:86.560000pt;}
.y147{bottom:86.562720pt;}
.yf8{bottom:86.565440pt;}
.yb4{bottom:86.574400pt;}
.y204{bottom:86.577920pt;}
.y171{bottom:86.586880pt;}
.y85{bottom:88.320000pt;}
.y1e9{bottom:89.063680pt;}
.y42{bottom:89.625600pt;}
.y1bd{bottom:90.080000pt;}
.y134{bottom:93.724160pt;}
.y225{bottom:94.309120pt;}
.y8a{bottom:94.402720pt;}
.y270{bottom:98.240000pt;}
.y2b9{bottom:98.248960pt;}
.y2a2{bottom:98.253440pt;}
.y146{bottom:98.880000pt;}
.yf7{bottom:98.882720pt;}
.yb3{bottom:98.891680pt;}
.y203{bottom:98.895200pt;}
.y170{bottom:98.904160pt;}
.y1bc{bottom:99.680000pt;}
.y1a1{bottom:100.960000pt;}
.y114{bottom:101.752320pt;}
.y11d{bottom:102.302080pt;}
.y89{bottom:106.726240pt;}
.yd4{bottom:110.295040pt;}
.yf6{bottom:111.200000pt;}
.yb2{bottom:111.208960pt;}
.y202{bottom:111.212480pt;}
.y16f{bottom:111.221440pt;}
.y1e8{bottom:111.467520pt;}
.y145{bottom:113.280000pt;}
.y133{bottom:116.128000pt;}
.y224{bottom:116.551040pt;}
.y41{bottom:116.990080pt;}
.y26f{bottom:117.767680pt;}
.y2a1{bottom:117.772160pt;}
.y291{bottom:117.773440pt;}
.y1b7{bottom:118.400000pt;}
.y88{bottom:118.882720pt;}
.y84{bottom:120.000000pt;}
.y1a0{bottom:120.480000pt;}
.yb1{bottom:123.365440pt;}
.y201{bottom:123.368960pt;}
.y16e{bottom:123.377920pt;}
.y23c{bottom:124.103040pt;}
.y113{bottom:124.156160pt;}
.y11c{bottom:124.544000pt;}
.yf5{bottom:125.440000pt;}
.y87{bottom:131.200000pt;}
.yd3{bottom:132.536960pt;}
.y144{bottom:132.800000pt;}
.y1e7{bottom:133.709440pt;}
.y2d9{bottom:133.920000pt;}
.y1bb{bottom:134.872000pt;}
.yb0{bottom:135.682720pt;}
.y200{bottom:135.686240pt;}
.y16d{bottom:135.695200pt;}
.y243{bottom:136.008960pt;}
.y26e{bottom:137.124480pt;}
.y2a0{bottom:137.128960pt;}
.y290{bottom:137.130240pt;}
.y132{bottom:138.531840pt;}
.y223{bottom:138.954880pt;}
.y19f{bottom:140.000000pt;}
.y40{bottom:144.516480pt;}
.yf4{bottom:144.960000pt;}
.y23b{bottom:146.506880pt;}
.y112{bottom:146.560000pt;}
.y11b{bottom:146.947840pt;}
.yaf{bottom:148.000000pt;}
.y1ff{bottom:148.003520pt;}
.y16c{bottom:148.012480pt;}
.y1ba{bottom:148.636000pt;}
.y1b6{bottom:148.640000pt;}
.y83{bottom:150.268800pt;}
.y143{bottom:152.320000pt;}
.yd2{bottom:154.940800pt;}
.y242{bottom:155.365760pt;}
.y1e6{bottom:156.113280pt;}
.y26d{bottom:156.643200pt;}
.y29f{bottom:156.647680pt;}
.y28f{bottom:156.648960pt;}
.y2d8{bottom:158.256640pt;}
.y1fe{bottom:160.160000pt;}
.y16b{bottom:160.168960pt;}
.y131{bottom:160.773760pt;}
.y222{bottom:161.358720pt;}
.yae{bottom:162.240000pt;}
.y1b9{bottom:162.400000pt;}
.y3f{bottom:163.873280pt;}
.yf3{bottom:164.480000pt;}
.y68{bottom:165.600000pt;}
.y23a{bottom:168.748800pt;}
.y11a{bottom:169.351680pt;}
.y19e{bottom:169.566720pt;}
.y16a{bottom:172.486240pt;}
.y111{bottom:174.400000pt;}
.y1fd{bottom:174.560000pt;}
.y241{bottom:174.884480pt;}
.y26c{bottom:176.000000pt;}
.y29e{bottom:176.004480pt;}
.y28e{bottom:176.005760pt;}
.yd1{bottom:177.344640pt;}
.y2d7{bottom:177.613440pt;}
.y82{bottom:177.942400pt;}
.y1e5{bottom:178.517120pt;}
.yad{bottom:181.760000pt;}
.y130{bottom:183.177600pt;}
.y3e{bottom:183.392000pt;}
.y221{bottom:183.600640pt;}
.y169{bottom:184.642720pt;}
.y1b5{bottom:188.000000pt;}
.y239{bottom:191.152640pt;}
.y148{bottom:191.593600pt;}
.y142{bottom:191.640960pt;}
.y19d{bottom:191.808640pt;}
.y1fc{bottom:194.080000pt;}
.y240{bottom:194.241280pt;}
.y26b{bottom:195.520000pt;}
.y29d{bottom:195.523200pt;}
.y28d{bottom:195.524480pt;}
.y168{bottom:196.960000pt;}
.y2d6{bottom:197.132160pt;}
.yf2{bottom:199.141760pt;}
.yd0{bottom:199.586560pt;}
.yac{bottom:201.280000pt;}
.y3d{bottom:202.748800pt;}
.y1e4{bottom:208.752000pt;}
.y81{bottom:210.429440pt;}
.y167{bottom:211.360000pt;}
.y238{bottom:213.556480pt;}
.y12f{bottom:213.574400pt;}
.y1fb{bottom:213.600000pt;}
.y23f{bottom:213.760000pt;}
.y110{bottom:213.997440pt;}
.y141{bottom:214.044800pt;}
.y19c{bottom:214.212480pt;}
.y29c{bottom:214.880000pt;}
.y28c{bottom:214.881280pt;}
.y26a{bottom:214.892160pt;}
.y2d5{bottom:216.488960pt;}
.yf1{bottom:221.545600pt;}
.ycf{bottom:221.990400pt;}
.y3c{bottom:222.105600pt;}
.y220{bottom:222.675200pt;}
.y80{bottom:230.110080pt;}
.y166{bottom:230.880000pt;}
.y1e3{bottom:231.155840pt;}
.y1b4{bottom:231.264000pt;}
.y28b{bottom:234.400000pt;}
.y269{bottom:234.410880pt;}
.y237{bottom:235.798400pt;}
.y12e{bottom:235.816320pt;}
.y2d4{bottom:236.007680pt;}
.y10f{bottom:236.401280pt;}
.yab{bottom:236.442880pt;}
.y140{bottom:236.448640pt;}
.y19b{bottom:236.616320pt;}
.y23e{bottom:241.440000pt;}
.y3b{bottom:241.624320pt;}
.yf0{bottom:243.787520pt;}
.yce{bottom:244.394240pt;}
.y21f{bottom:245.079040pt;}
.y7f{bottom:249.466880pt;}
.y165{bottom:250.400000pt;}
.y1fa{bottom:250.693120pt;}
.y1b3{bottom:253.505920pt;}
.y1e2{bottom:253.559680pt;}
.y28a{bottom:253.764480pt;}
.y268{bottom:253.767680pt;}
.y2b8{bottom:253.768960pt;}
.y2d3{bottom:255.364480pt;}
.y236{bottom:258.202240pt;}
.y12d{bottom:258.220160pt;}
.y10e{bottom:258.643200pt;}
.yaa{bottom:258.684800pt;}
.y13f{bottom:258.690560pt;}
.y19a{bottom:258.858240pt;}
.y3a{bottom:260.981120pt;}
.yef{bottom:266.191360pt;}
.ycd{bottom:266.636160pt;}
.y21e{bottom:267.320960pt;}
.y7e{bottom:268.985600pt;}
.y1f9{bottom:273.096960pt;}
.y289{bottom:273.283200pt;}
.y267{bottom:273.286400pt;}
.y2b7{bottom:273.287680pt;}
.y1a3{bottom:274.629120pt;}
.y2d2{bottom:274.721280pt;}
.y1e1{bottom:275.801600pt;}
.y1b2{bottom:275.909760pt;}
.y39{bottom:280.499840pt;}
.y235{bottom:280.606080pt;}
.y12c{bottom:280.624000pt;}
.y10d{bottom:281.047040pt;}
.y13e{bottom:281.094400pt;}
.y199{bottom:281.262080pt;}
.y7d{bottom:288.342400pt;}
.yee{bottom:288.595200pt;}
.y119{bottom:289.040000pt;}
.ya9{bottom:289.081600pt;}
.y21d{bottom:289.724800pt;}
.y288{bottom:292.640000pt;}
.y266{bottom:292.643200pt;}
.y2b6{bottom:292.644480pt;}
.y2d1{bottom:294.240000pt;}
.y1f8{bottom:295.500800pt;}
.ycc{bottom:297.032960pt;}
.y1e0{bottom:298.205440pt;}
.y1b1{bottom:298.313600pt;}
.y38{bottom:299.856640pt;}
.y234{bottom:302.848000pt;}
.y10c{bottom:303.450880pt;}
.y13d{bottom:303.498240pt;}
.y198{bottom:303.665920pt;}
.y7c{bottom:307.861120pt;}
.y12b{bottom:310.858880pt;}
.y118{bottom:311.443840pt;}
.ya8{bottom:311.485440pt;}
.y265{bottom:312.000000pt;}
.y2b5{bottom:312.001280pt;}
.y287{bottom:312.004480pt;}
.y21c{bottom:312.128640pt;}
.y164{bottom:312.154240pt;}
.y1f7{bottom:317.742720pt;}
.yed{bottom:318.830080pt;}
.y37{bottom:319.375360pt;}
.ycb{bottom:319.436800pt;}
.y1df{bottom:320.609280pt;}
.y10b{bottom:325.692800pt;}
.y13c{bottom:325.740160pt;}
.y197{bottom:325.907840pt;}
.y7b{bottom:327.217920pt;}
.y1b0{bottom:328.548480pt;}
.y2b4{bottom:331.520000pt;}
.y286{bottom:331.523200pt;}
.y29b{bottom:331.524480pt;}
.y264{bottom:331.527680pt;}
.y233{bottom:333.244800pt;}
.y12a{bottom:333.262720pt;}
.y117{bottom:333.685760pt;}
.ya7{bottom:333.727360pt;}
.y21b{bottom:334.370560pt;}
.y163{bottom:334.396160pt;}
.y36{bottom:338.732160pt;}
.y1f6{bottom:340.146560pt;}
.yec{bottom:341.233920pt;}
.yca{bottom:341.678720pt;}
.y1de{bottom:342.851200pt;}
.y7a{bottom:346.736640pt;}
.y10a{bottom:348.096640pt;}
.y13b{bottom:348.144000pt;}
.y196{bottom:348.311680pt;}
.y285{bottom:350.880000pt;}
.y29a{bottom:350.881280pt;}
.y263{bottom:350.884480pt;}
.y1af{bottom:350.952320pt;}
.y25{bottom:354.400000pt;}
.y232{bottom:355.648640pt;}
.y129{bottom:355.666560pt;}
.y116{bottom:356.089600pt;}
.ya6{bottom:356.131200pt;}
.y21a{bottom:356.774400pt;}
.y162{bottom:356.782080pt;}
.y35{bottom:358.250880pt;}
.yeb{bottom:363.637760pt;}
.yc9{bottom:364.082560pt;}
.y79{bottom:366.093440pt;}
.y23{bottom:368.160000pt;}
.y299{bottom:370.400000pt;}
.y262{bottom:370.403200pt;}
.y2d0{bottom:370.404480pt;}
.y109{bottom:370.500480pt;}
.y1f5{bottom:370.543360pt;}
.y13a{bottom:370.547840pt;}
.y195{bottom:370.715520pt;}
.y2e{bottom:372.492160pt;}
.y1dd{bottom:373.248000pt;}
.y1ae{bottom:373.356160pt;}
.y69{bottom:377.120000pt;}
.y34{bottom:377.607680pt;}
.y231{bottom:377.890560pt;}
.y128{bottom:377.908480pt;}
.y115{bottom:378.493440pt;}
.ya5{bottom:378.535040pt;}
.y219{bottom:379.178240pt;}
.y161{bottom:379.185920pt;}
.y70{bottom:383.852800pt;}
.y78{bottom:385.450240pt;}
.yea{bottom:385.879680pt;}
.yc8{bottom:386.486400pt;}
.y261{bottom:389.760000pt;}
.y2cf{bottom:389.761280pt;}
.y298{bottom:389.765760pt;}
.y2d{bottom:391.848960pt;}
.y1f4{bottom:392.785280pt;}
.y194{bottom:392.957440pt;}
.y1dc{bottom:395.651840pt;}
.y1ad{bottom:395.760000pt;}
.y33{bottom:397.126400pt;}
.y4e{bottom:398.400000pt;}
.y230{bottom:400.294400pt;}
.y127{bottom:400.312320pt;}
.y108{bottom:400.735360pt;}
.ya4{bottom:400.776960pt;}
.y139{bottom:400.782720pt;}
.y218{bottom:401.420160pt;}
.y160{bottom:401.427840pt;}
.y77{bottom:404.968960pt;}
.ye9{bottom:408.283520pt;}
.yc7{bottom:408.728320pt;}
.y2b3{bottom:409.280000pt;}
.y260{bottom:409.284480pt;}
.y2c{bottom:411.367680pt;}
.y1f3{bottom:415.189120pt;}
.y193{bottom:415.361280pt;}
.y32{bottom:416.483200pt;}
.y1db{bottom:417.893760pt;}
.y1ac{bottom:418.001920pt;}
.y28{bottom:418.720000pt;}
.y6f{bottom:419.210240pt;}
.y22f{bottom:422.698240pt;}
.y126{bottom:422.716160pt;}
.y107{bottom:423.139200pt;}
.ya3{bottom:423.180800pt;}
.y138{bottom:423.186560pt;}
.y217{bottom:423.824000pt;}
.y15f{bottom:423.831680pt;}
.y76{bottom:424.325760pt;}
.y25f{bottom:428.641280pt;}
.y2b2{bottom:428.644480pt;}
.y2ce{bottom:428.653440pt;}
.ye8{bottom:430.687360pt;}
.y2b{bottom:430.724480pt;}
.yc6{bottom:431.132160pt;}
.y31{bottom:435.840000pt;}
.y1f2{bottom:437.592960pt;}
.y192{bottom:437.765120pt;}
.y6e{bottom:438.728960pt;}
.y1da{bottom:440.297600pt;}
.y1ab{bottom:440.405760pt;}
.y75{bottom:443.844480pt;}
.y22e{bottom:445.102080pt;}
.y125{bottom:445.120000pt;}
.y106{bottom:445.543040pt;}
.ya2{bottom:445.584640pt;}
.y137{bottom:445.590400pt;}
.y216{bottom:446.227840pt;}
.y15e{bottom:446.235520pt;}
.y25e{bottom:448.160000pt;}
.y2b1{bottom:448.163200pt;}
.y2cd{bottom:448.172160pt;}
.y2a{bottom:450.243200pt;}
.ye7{bottom:453.091200pt;}
.yc5{bottom:453.536000pt;}
.y6d{bottom:458.085760pt;}
.y1f1{bottom:459.834880pt;}
.y30{bottom:462.244480pt;}
.y1d9{bottom:462.701440pt;}
.y1aa{bottom:462.809600pt;}
.y74{bottom:463.201280pt;}
.y22d{bottom:467.344000pt;}
.y2b0{bottom:467.520000pt;}
.y25d{bottom:467.521280pt;}
.y2cc{bottom:467.528960pt;}
.y105{bottom:467.784960pt;}
.ya1{bottom:467.826560pt;}
.y136{bottom:467.832320pt;}
.y191{bottom:468.000000pt;}
.y15d{bottom:468.477440pt;}
.y29{bottom:469.600000pt;}
.y124{bottom:472.960000pt;}
.ye6{bottom:475.333120pt;}
.yc4{bottom:475.777920pt;}
.y215{bottom:476.462720pt;}
.y6c{bottom:477.604480pt;}
.y2f{bottom:479.040000pt;}
.y1f0{bottom:482.238720pt;}
.y73{bottom:482.720000pt;}
.y18a{bottom:484.160000pt;}
.y1d8{bottom:484.943360pt;}
.y1a9{bottom:485.051520pt;}
.y25c{bottom:487.040000pt;}
.y2cb{bottom:487.047680pt;}
.y2af{bottom:487.059840pt;}
.y22c{bottom:489.747840pt;}
.y104{bottom:490.188800pt;}
.ya0{bottom:490.230400pt;}
.y135{bottom:490.236160pt;}
.y15c{bottom:490.881280pt;}
.y18d{bottom:493.600000pt;}
.y6b{bottom:496.961280pt;}
.ye5{bottom:497.736960pt;}
.yc3{bottom:498.181760pt;}
.y214{bottom:498.866560pt;}
.y190{bottom:500.476000pt;}
.y25b{bottom:506.400000pt;}
.y2ca{bottom:506.404480pt;}
.y297{bottom:506.407680pt;}
.y284{bottom:506.413440pt;}
.y2ae{bottom:506.416640pt;}
.y1d7{bottom:507.347200pt;}
.y1a8{bottom:507.455360pt;}
.y72{bottom:508.962560pt;}
.y1{bottom:509.760000pt;}
.y22b{bottom:512.151680pt;}
.y103{bottom:512.592640pt;}
.y9f{bottom:512.634240pt;}
.y1ef{bottom:512.635520pt;}
.y15b{bottom:513.285120pt;}
.y18f{bottom:514.240000pt;}
.y3{bottom:515.200000pt;}
.y6a{bottom:516.480000pt;}
.y2{bottom:520.000000pt;}
.ye4{bottom:520.140800pt;}
.yc2{bottom:520.585600pt;}
.y213{bottom:521.270400pt;}
.y25a{bottom:525.761280pt;}
.y296{bottom:525.764480pt;}
.y283{bottom:525.770240pt;}
.y2ad{bottom:525.773440pt;}
.y71{bottom:525.920000pt;}
.y1d6{bottom:529.751040pt;}
.y1a7{bottom:529.859200pt;}
.y22a{bottom:534.393600pt;}
.y123{bottom:534.834560pt;}
.y9e{bottom:534.876160pt;}
.y1ee{bottom:534.877440pt;}
.y188{bottom:540.000000pt;}
.ye3{bottom:542.382720pt;}
.yc1{bottom:542.827520pt;}
.y15a{bottom:543.491200pt;}
.y212{bottom:543.512320pt;}
.y259{bottom:545.280000pt;}
.y295{bottom:545.283200pt;}
.y282{bottom:545.288960pt;}
.y2ac{bottom:545.292160pt;}
.y187{bottom:549.436000pt;}
.y1d5{bottom:551.992960pt;}
.y1a6{bottom:552.101120pt;}
.y17{bottom:556.157440pt;}
.y189{bottom:556.320000pt;}
.y4d{bottom:556.480000pt;}
.y229{bottom:556.797440pt;}
.y122{bottom:557.238400pt;}
.y9d{bottom:557.254400pt;}
.y1ed{bottom:557.281280pt;}
.y186{bottom:563.200000pt;}
.y294{bottom:564.640000pt;}
.y258{bottom:564.644480pt;}
.y281{bottom:564.645760pt;}
.y2ab{bottom:564.648960pt;}
.y2c9{bottom:564.653440pt;}
.ye2{bottom:564.786560pt;}
.y102{bottom:565.231360pt;}
.y159{bottom:565.895040pt;}
.y211{bottom:565.916160pt;}
.y67{bottom:568.680960pt;}
.yc0{bottom:573.224320pt;}
.y1a5{bottom:574.504960pt;}
.y121{bottom:579.642240pt;}
.y9c{bottom:579.658240pt;}
.y1ec{bottom:579.685120pt;}
.y184{bottom:582.080000pt;}
.y1d4{bottom:582.389760pt;}
.y257{bottom:584.163200pt;}
.y280{bottom:584.164480pt;}
.y2aa{bottom:584.167680pt;}
.y2c8{bottom:584.172160pt;}
.ye1{bottom:587.190400pt;}
.y228{bottom:587.194240pt;}
.y101{bottom:587.635200pt;}
.y158{bottom:588.298880pt;}
.y210{bottom:588.320000pt;}
.y16{bottom:595.360000pt;}
.ybf{bottom:595.628160pt;}
.y185{bottom:598.400000pt;}
.y66{bottom:601.315200pt;}
.y120{bottom:601.884160pt;}
.y9b{bottom:601.900160pt;}
.y1a4{bottom:602.031360pt;}
.y256{bottom:603.520000pt;}
.y27f{bottom:603.521280pt;}
.y2a9{bottom:603.524480pt;}
.y2c7{bottom:603.528960pt;}
.y1d3{bottom:604.793600pt;}
.ye0{bottom:609.432320pt;}
.y227{bottom:609.436160pt;}
.y100{bottom:609.877120pt;}
.y157{bottom:610.540800pt;}
.y15{bottom:612.160000pt;}
.y20f{bottom:616.160000pt;}
.ybe{bottom:617.870080pt;}
.y27e{bottom:623.040000pt;}
.y2a8{bottom:623.043200pt;}
.y255{bottom:623.044480pt;}
.y2c6{bottom:623.047680pt;}
.y181{bottom:624.000000pt;}
.y11f{bottom:624.288000pt;}
.y1d2{bottom:627.035520pt;}
.ydf{bottom:631.836160pt;}
.y14{bottom:631.840000pt;}
.yff{bottom:632.280960pt;}
.y9a{bottom:632.296960pt;}
.y156{bottom:632.944640pt;}
.y65{bottom:634.111360pt;}
.y20e{bottom:637.600000pt;}
.ybd{bottom:640.273920pt;}
.y183{bottom:640.480000pt;}
.y27d{bottom:642.400000pt;}
.y254{bottom:642.401280pt;}
.y2c5{bottom:642.404480pt;}
.y11e{bottom:646.691840pt;}
.y1d1{bottom:649.439360pt;}
.y13{bottom:651.360000pt;}
.y64{bottom:653.630080pt;}
.yde{bottom:654.222080pt;}
.yfe{bottom:654.684800pt;}
.y99{bottom:654.700800pt;}
.y155{bottom:655.348480pt;}
.y226{bottom:659.680000pt;}
.y253{bottom:661.920000pt;}
.y2c4{bottom:661.923200pt;}
.y27c{bottom:661.924480pt;}
.ybc{bottom:662.677760pt;}
.y17f{bottom:666.080000pt;}
.y1d0{bottom:671.843200pt;}
.y63{bottom:673.148800pt;}
.y12{bottom:673.920000pt;}
.y17e{bottom:675.680000pt;}
.ydd{bottom:676.464000pt;}
.yfd{bottom:676.926720pt;}
.y20d{bottom:676.936320pt;}
.y98{bottom:676.942720pt;}
.y2c3{bottom:681.280000pt;}
.y27b{bottom:681.281280pt;}
.y293{bottom:681.288960pt;}
.y252{bottom:681.305600pt;}
.ybb{bottom:684.919680pt;}
.y154{bottom:685.583360pt;}
.y62{bottom:692.505600pt;}
.y17c{bottom:694.400000pt;}
.y11{bottom:695.040000pt;}
.yfc{bottom:699.330560pt;}
.y20c{bottom:699.340160pt;}
.y97{bottom:699.346560pt;}
.y27a{bottom:700.800000pt;}
.y292{bottom:700.807680pt;}
.y2c2{bottom:700.815360pt;}
.y251{bottom:700.824320pt;}
.y1cf{bottom:702.240000pt;}
.y17b{bottom:703.840000pt;}
.ydc{bottom:706.860800pt;}
.yba{bottom:707.323520pt;}
.y153{bottom:707.987200pt;}
.y10{bottom:708.000000pt;}
.y61{bottom:712.024320pt;}
.y1cc{bottom:718.240000pt;}
.y279{bottom:720.164480pt;}
.y2c1{bottom:720.172160pt;}
.y250{bottom:720.181120pt;}
.yfb{bottom:721.734400pt;}
.y20b{bottom:721.744000pt;}
.y96{bottom:721.750400pt;}
.y178{bottom:722.720000pt;}
.yf{bottom:724.800960pt;}
.ydb{bottom:729.264640pt;}
.yb9{bottom:729.727360pt;}
.y152{bottom:730.391040pt;}
.y60{bottom:731.381120pt;}
.y1ce{bottom:734.556000pt;}
.y278{bottom:739.683200pt;}
.y2c0{bottom:739.690880pt;}
.y24f{bottom:739.699840pt;}
.ye{bottom:742.875040pt;}
.yfa{bottom:743.976320pt;}
.y20a{bottom:743.985920pt;}
.y95{bottom:743.992320pt;}
.y1cb{bottom:748.320000pt;}
.y5f{bottom:750.899840pt;}
.yda{bottom:751.506560pt;}
.yb8{bottom:751.969280pt;}
.y151{bottom:752.632960pt;}
.yd{bottom:758.240000pt;}
.y277{bottom:759.040000pt;}
.y2bf{bottom:759.047680pt;}
.y24e{bottom:759.056640pt;}
.y1cd{bottom:762.240000pt;}
.y177{bottom:765.913600pt;}
.yf9{bottom:766.380160pt;}
.y209{bottom:766.389760pt;}
.y94{bottom:766.396160pt;}
.y5e{bottom:770.256640pt;}
.yd9{bottom:773.910400pt;}
.yc{bottom:774.080000pt;}
.yb7{bottom:774.373120pt;}
.y2be{bottom:778.404480pt;}
.y276{bottom:778.405760pt;}
.y2a7{bottom:778.408960pt;}
.y24d{bottom:778.413440pt;}
.y150{bottom:783.029760pt;}
.y1c5{bottom:787.840000pt;}
.y93{bottom:788.784000pt;}
.y208{bottom:788.793600pt;}
.y5d{bottom:789.775360pt;}
.yb{bottom:794.906720pt;}
.y176{bottom:796.310400pt;}
.yd8{bottom:796.314240pt;}
.yb6{bottom:796.776960pt;}
.y2bd{bottom:797.923200pt;}
.y275{bottom:797.924480pt;}
.y2a6{bottom:797.927680pt;}
.y24c{bottom:797.932160pt;}
.y1ca{bottom:804.308000pt;}
.y5c{bottom:809.132160pt;}
.y92{bottom:811.025920pt;}
.y207{bottom:811.035520pt;}
.y55{bottom:811.853440pt;}
.y14f{bottom:813.426560pt;}
.y2bc{bottom:817.280000pt;}
.y274{bottom:817.281280pt;}
.y2a5{bottom:817.284480pt;}
.y24b{bottom:817.288960pt;}
.y1c9{bottom:818.072000pt;}
.y175{bottom:818.552320pt;}
.yd7{bottom:818.556160pt;}
.yb5{bottom:819.018880pt;}
.ya{bottom:820.996000pt;}
.y1c4{bottom:824.960000pt;}
.y5b{bottom:828.650880pt;}
.y54{bottom:831.372160pt;}
.y1c8{bottom:831.836000pt;}
.y1eb{bottom:833.429760pt;}
.y206{bottom:833.439360pt;}
.y14e{bottom:835.830400pt;}
.y273{bottom:836.800000pt;}
.y2a4{bottom:836.803200pt;}
.y2bb{bottom:836.804480pt;}
.y24a{bottom:836.807680pt;}
.y174{bottom:840.956160pt;}
.yd6{bottom:840.960000pt;}
.y91{bottom:841.422720pt;}
.y1c7{bottom:845.600000pt;}
.y9{bottom:845.787200pt;}
.y5a{bottom:848.007680pt;}
.y26{bottom:850.400000pt;}
.y53{bottom:850.728960pt;}
.y1ea{bottom:855.833600pt;}
.y205{bottom:855.843200pt;}
.y2a3{bottom:856.160000pt;}
.y272{bottom:856.161280pt;}
.y249{bottom:856.164480pt;}
.y14d{bottom:858.072320pt;}
.y173{bottom:863.360000pt;}
.y90{bottom:863.826560pt;}
.y24{bottom:864.160000pt;}
.y59{bottom:867.364480pt;}
.yd5{bottom:868.960000pt;}
.y52{bottom:870.247680pt;}
.y8{bottom:870.259200pt;}
.y1be{bottom:871.360000pt;}
.y271{bottom:875.680000pt;}
.y248{bottom:875.683200pt;}
.y22{bottom:877.920000pt;}
.y23d{bottom:878.237440pt;}
.y14c{bottom:880.476160pt;}
.y8f{bottom:886.230400pt;}
.y58{bottom:886.883200pt;}
.y1c3{bottom:887.676000pt;}
.y51{bottom:889.604480pt;}
.y172{bottom:891.200000pt;}
.y21{bottom:891.668000pt;}
.y7{bottom:894.731200pt;}
.y247{bottom:895.040000pt;}
.y2ba{bottom:895.045760pt;}
.y1c2{bottom:901.440000pt;}
.y14b{bottom:902.880000pt;}
.y20{bottom:905.432000pt;}
.y57{bottom:906.240000pt;}
.y8e{bottom:908.472320pt;}
.y50{bottom:909.123200pt;}
.y246{bottom:914.564480pt;}
.y1f{bottom:919.352000pt;}
.y6{bottom:919.373440pt;}
.y4f{bottom:928.480000pt;}
.y1c1{bottom:929.116000pt;}
.y14a{bottom:930.720000pt;}
.y8d{bottom:930.876160pt;}
.y1e{bottom:933.116000pt;}
.y245{bottom:933.921280pt;}
.y56{bottom:937.760000pt;}
.y1c0{bottom:942.880000pt;}
.y5{bottom:943.845440pt;}
.y1d{bottom:946.880000pt;}
.y149{bottom:952.160000pt;}
.y8c{bottom:953.280000pt;}
.y244{bottom:953.440000pt;}
.y1c{bottom:966.720000pt;}
.y47{bottom:972.960000pt;}
.y4{bottom:984.320000pt;}
.y46{bottom:992.480000pt;}
.y1b{bottom:993.280000pt;}
.y1a{bottom:1011.676000pt;}
.y45{bottom:1012.000000pt;}
.y19{bottom:1029.760000pt;}
.y44{bottom:1030.233600pt;}
.y43{bottom:1054.240000pt;}
.h10{height:15.360000pt;}
.h1f{height:27.520000pt;}
.h20{height:27.678667pt;}
.h14{height:29.794062pt;}
.ha{height:31.992188pt;}
.h15{height:38.306133pt;}
.h8{height:38.441250pt;}
.h22{height:41.280000pt;}
.h21{height:41.440000pt;}
.h3{height:42.656250pt;}
.hb{height:43.031250pt;}
.h9{height:43.335938pt;}
.h24{height:45.019648pt;}
.h1b{height:45.184512pt;}
.h2c{height:46.868480pt;}
.h7{height:47.621250pt;}
.h1a{height:48.934400pt;}
.h18{height:49.501952pt;}
.hf{height:50.490000pt;}
.he{height:52.599467pt;}
.h2b{height:52.637867pt;}
.h16{height:52.663467pt;}
.h19{height:52.671147pt;}
.h17{height:52.701867pt;}
.h2a{height:52.706987pt;}
.h1e{height:52.714667pt;}
.h29{height:52.770987pt;}
.h1d{height:52.785000pt;}
.h1c{height:52.788907pt;}
.hd{height:53.158750pt;}
.h23{height:55.200000pt;}
.h5{height:56.732813pt;}
.h6{height:57.375000pt;}
.h13{height:65.120000pt;}
.h25{height:68.958667pt;}
.h28{height:68.960000pt;}
.h4{height:76.849063pt;}
.h27{height:82.880000pt;}
.h26{height:96.480000pt;}
.h12{height:390.880000pt;}
.h11{height:412.160000pt;}
.hc{height:432.480000pt;}
.h2{height:535.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:22.240000pt;}
.wa{width:140.801333pt;}
.w4{width:199.680000pt;}
.w2{width:236.320000pt;}
.w3{width:310.560000pt;}
.w9{width:432.160000pt;}
.wc{width:480.800000pt;}
.w5{width:510.240000pt;}
.wb{width:565.601333pt;}
.w8{width:573.600000pt;}
.w7{width:649.600000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x28{left:9.600000pt;}
.x15{left:18.400000pt;}
.x1{left:64.640000pt;}
.x27{left:71.520000pt;}
.x26{left:75.042560pt;}
.x22{left:77.118080pt;}
.x12{left:79.200640pt;}
.x24{left:80.636160pt;}
.x10{left:88.960000pt;}
.xf{left:93.920000pt;}
.x11{left:95.996160pt;}
.x2c{left:102.080000pt;}
.x18{left:103.680000pt;}
.x19{left:107.520000pt;}
.x23{left:114.551040pt;}
.x16{left:118.560000pt;}
.x13{left:119.680640pt;}
.x25{left:120.792320pt;}
.x21{left:121.763840pt;}
.x1a{left:127.833600pt;}
.x1d{left:129.261440pt;}
.x1b{left:131.351680pt;}
.x30{left:132.331520pt;}
.x29{left:141.748480pt;}
.x1f{left:142.720000pt;}
.x1e{left:145.585920pt;}
.x14{left:149.444480pt;}
.x1c{left:150.708480pt;}
.x2f{left:165.751040pt;}
.x20{left:176.640000pt;}
.x2d{left:180.000000pt;}
.x2e{left:186.720000pt;}
.x2b{left:188.960000pt;}
.xd{left:195.680000pt;}
.x2{left:236.320000pt;}
.x5{left:243.520000pt;}
.x4{left:254.560000pt;}
.x2a{left:286.560000pt;}
.x17{left:385.760000pt;}
.xc{left:546.880000pt;}
.x9{left:589.924000pt;}
.xb{left:622.400000pt;}
.xe{left:625.280000pt;}
.xa{left:633.916000pt;}
.x8{left:650.560000pt;}
.x7{left:665.920000pt;}
.x31{left:682.400000pt;}
.x6{left:739.360000pt;}
}




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