
    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_ce866586cad8c72c1481bcd1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3ba1f4b827d54f3c65022933.woff')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_c1612930bce61eff20ae2fa3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_ef49010bc378fdaa0870196d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5d91991b1e635e5a7532773d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_7c761a4eadadcca7ba197d9f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f2d4fa48e56b13c7fd4e265a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bc99ec64865f898ee0797378.woff')format("woff");}.ff8{font-family:ff8;line-height:0.779785;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_7a6a39e497d511cb4191a57b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.687012;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_3ff9755566e8c5a604b46841.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9b8b89c7dfa920d118f888ab.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c808aacb8e52ce4816bd584a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.871094;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_84de89dc457a44614000e42f.woff')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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.lsc{letter-spacing:-2.768460px;}
.ls39{letter-spacing:-0.197640px;}
.ls9{letter-spacing:-0.192240px;}
.ls7{letter-spacing:-0.162000px;}
.ls50{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.131760px;}
.ls13{letter-spacing:-0.126000px;}
.ls3f{letter-spacing:-0.120240px;}
.ls49{letter-spacing:-0.119880px;}
.ls8{letter-spacing:-0.096120px;}
.ls51{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.065880px;}
.ls14{letter-spacing:-0.063000px;}
.ls3a{letter-spacing:-0.060120px;}
.ls5{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000720px;}
.ls0{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.055800px;}
.ls5e{letter-spacing:0.060120px;}
.ls3{letter-spacing:0.065880px;}
.ls4b{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.078120px;}
.ls10{letter-spacing:0.084240px;}
.ls36{letter-spacing:0.087840px;}
.ls1{letter-spacing:0.096120px;}
.ls37{letter-spacing:0.120240px;}
.ls12{letter-spacing:0.131760px;}
.lse{letter-spacing:0.163800px;}
.ls5c{letter-spacing:0.192240px;}
.ls16{letter-spacing:0.197640px;}
.lsd{letter-spacing:0.201240px;}
.ls30{letter-spacing:0.223992px;}
.ls1c{letter-spacing:0.263520px;}
.ls5d{letter-spacing:0.270108px;}
.ls61{letter-spacing:0.276696px;}
.ls69{letter-spacing:0.296460px;}
.ls66{letter-spacing:0.303048px;}
.ls11{letter-spacing:0.329400px;}
.ls67{letter-spacing:0.349164px;}
.ls6c{letter-spacing:0.375516px;}
.ls3d{letter-spacing:0.421632px;}
.ls26{letter-spacing:0.461160px;}
.ls20{letter-spacing:0.471960px;}
.ls27{letter-spacing:0.527040px;}
.ls2d{letter-spacing:0.546804px;}
.ls24{letter-spacing:0.573156px;}
.ls2c{letter-spacing:0.592920px;}
.ls53{letter-spacing:0.652212px;}
.ls6a{letter-spacing:0.704880px;}
.ls5a{letter-spacing:0.724680px;}
.ls42{letter-spacing:0.922320px;}
.ls64{letter-spacing:1.059120px;}
.ls47{letter-spacing:1.311012px;}
.ls32{letter-spacing:1.317600px;}
.ls44{letter-spacing:1.350540px;}
.ls31{letter-spacing:1.647000px;}
.ls46{letter-spacing:1.679940px;}
.ls35{letter-spacing:1.699704px;}
.ls43{letter-spacing:1.877580px;}
.ls52{letter-spacing:2.042280px;}
.ls34{letter-spacing:2.338740px;}
.ls2a{letter-spacing:2.371680px;}
.ls1d{letter-spacing:2.766960px;}
.ls33{letter-spacing:2.938248px;}
.ls2e{letter-spacing:2.990952px;}
.ls4f{letter-spacing:3.096360px;}
.ls4c{letter-spacing:3.491640px;}
.ls28{letter-spacing:3.821040px;}
.ls1a{letter-spacing:4.157028px;}
.ls54{letter-spacing:4.545720px;}
.ls56{letter-spacing:4.921236px;}
.ls55{letter-spacing:4.941000px;}
.ls63{letter-spacing:5.384880px;}
.ls29{letter-spacing:5.599800px;}
.ls25{letter-spacing:5.995080px;}
.ls6b{letter-spacing:6.383772px;}
.ls65{letter-spacing:6.719760px;}
.ls62{letter-spacing:7.049160px;}
.ls68{letter-spacing:8.063712px;}
.ls4e{letter-spacing:8.169120px;}
.ls41{letter-spacing:8.498520px;}
.ls23{letter-spacing:8.505108px;}
.ls45{letter-spacing:8.893800px;}
.ls4d{letter-spacing:9.210024px;}
.ls1f{letter-spacing:9.618480px;}
.ls48{letter-spacing:11.001960px;}
.ls1e{letter-spacing:12.879540px;}
.ls5b{letter-spacing:13.571280px;}
.ls58{letter-spacing:13.894092px;}
.ls59{letter-spacing:13.900680px;}
.ls21{letter-spacing:15.350040px;}
.ls22{letter-spacing:15.804612px;}
.ls40{letter-spacing:17.524080px;}
.ls57{letter-spacing:19.302840px;}
.ls3e{letter-spacing:24.705000px;}
.ls2f{letter-spacing:36.036360px;}
.ls3b{letter-spacing:39.659760px;}
.ls4a{letter-spacing:51.264000px;}
.ls2b{letter-spacing:52.418520px;}
.ls19{letter-spacing:54.307800px;}
.ls5f{letter-spacing:63.571320px;}
.ls1b{letter-spacing:69.503400px;}
.ls3c{letter-spacing:71.677440px;}
.ls17{letter-spacing:99.610560px;}
.ls18{letter-spacing:115.421760px;}
.ls4{letter-spacing:143.157240px;}
.ls2{letter-spacing:163.645920px;}
.ls60{letter-spacing:849.118320px;}
.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;}
}
.wsb4{word-spacing:-27.092880px;}
.wsb5{word-spacing:-26.973000px;}
.wsd4{word-spacing:-21.915360px;}
.ws1f{word-spacing:-21.723120px;}
.ws2{word-spacing:-21.627000px;}
.wsa7{word-spacing:-17.733240px;}
.ws54{word-spacing:-17.655120px;}
.wsca{word-spacing:-16.344000px;}
.wsc9{word-spacing:-16.272000px;}
.wsba{word-spacing:-16.128000px;}
.ws21{word-spacing:-15.415920px;}
.ws20{word-spacing:-15.218280px;}
.ws88{word-spacing:-15.086520px;}
.wsf{word-spacing:-15.020640px;}
.ws1{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.954760px;}
.wsd{word-spacing:-14.888880px;}
.ws0{word-spacing:-14.850000px;}
.ws4{word-spacing:-14.823000px;}
.wse{word-spacing:-14.757120px;}
.ws71{word-spacing:-14.691240px;}
.ws10{word-spacing:-14.238000px;}
.ws12{word-spacing:-14.175000px;}
.ws11{word-spacing:-14.112000px;}
.wsc{word-spacing:-9.603360px;}
.ws70{word-spacing:-9.519120px;}
.ws92{word-spacing:-4.084560px;}
.ws91{word-spacing:-4.018680px;}
.wsa0{word-spacing:-3.886920px;}
.ws90{word-spacing:-3.755160px;}
.ws50{word-spacing:-3.689280px;}
.ws80{word-spacing:-3.359880px;}
.wsaa{word-spacing:-3.294000px;}
.ws78{word-spacing:-3.162240px;}
.ws77{word-spacing:-3.030480px;}
.ws8c{word-spacing:-2.964600px;}
.wsa9{word-spacing:-2.898720px;}
.ws28{word-spacing:-2.635200px;}
.ws27{word-spacing:-2.569320px;}
.wsc6{word-spacing:-2.503440px;}
.ws30{word-spacing:-2.305800px;}
.wscb{word-spacing:-2.239920px;}
.wsc5{word-spacing:-2.174040px;}
.wsd5{word-spacing:-1.910520px;}
.wsb2{word-spacing:-1.844640px;}
.ws82{word-spacing:-1.778760px;}
.wsa5{word-spacing:-1.712880px;}
.wsa8{word-spacing:-1.581120px;}
.wsa4{word-spacing:-1.515240px;}
.wsce{word-spacing:-1.317600px;}
.wsd0{word-spacing:-1.185840px;}
.ws6d{word-spacing:-1.119960px;}
.wscf{word-spacing:-1.054080px;}
.wsaf{word-spacing:-0.988200px;}
.wsd6{word-spacing:-0.922320px;}
.wsb0{word-spacing:-0.856440px;}
.wsd7{word-spacing:-0.790560px;}
.wsd3{word-spacing:-0.724680px;}
.wse5{word-spacing:-0.592920px;}
.ws14{word-spacing:-0.461160px;}
.ws7d{word-spacing:-0.395280px;}
.ws55{word-spacing:-0.390600px;}
.ws99{word-spacing:-0.360720px;}
.ws1d{word-spacing:-0.329400px;}
.ws19{word-spacing:-0.263520px;}
.ws9a{word-spacing:-0.240480px;}
.wsa{word-spacing:-0.197640px;}
.ws87{word-spacing:-0.180360px;}
.wsbb{word-spacing:-0.144000px;}
.ws9{word-spacing:-0.131760px;}
.ws72{word-spacing:-0.078120px;}
.ws8{word-spacing:-0.065880px;}
.ws5{word-spacing:0.000000px;}
.ws1c{word-spacing:0.065880px;}
.wsbc{word-spacing:0.072000px;}
.wsd8{word-spacing:0.096120px;}
.ws6{word-spacing:0.108000px;}
.ws26{word-spacing:0.131760px;}
.ws1e{word-spacing:0.162000px;}
.ws7{word-spacing:0.192240px;}
.ws7c{word-spacing:0.197640px;}
.ws98{word-spacing:0.240480px;}
.ws1a{word-spacing:0.263520px;}
.wsb{word-spacing:0.329400px;}
.ws5f{word-spacing:0.461160px;}
.wsee{word-spacing:0.527040px;}
.ws5d{word-spacing:0.592920px;}
.ws5e{word-spacing:0.658800px;}
.ws5c{word-spacing:0.724680px;}
.ws43{word-spacing:0.922320px;}
.ws32{word-spacing:0.988200px;}
.wsac{word-spacing:1.054080px;}
.ws7a{word-spacing:1.185840px;}
.ws79{word-spacing:1.251720px;}
.ws22{word-spacing:1.317600px;}
.ws23{word-spacing:1.383480px;}
.ws35{word-spacing:1.449360px;}
.wsa6{word-spacing:1.515240px;}
.ws6f{word-spacing:1.581120px;}
.ws36{word-spacing:1.647000px;}
.ws6e{word-spacing:1.712880px;}
.ws73{word-spacing:1.778760px;}
.wsb7{word-spacing:1.844640px;}
.ws2c{word-spacing:2.042280px;}
.ws2d{word-spacing:2.108160px;}
.ws81{word-spacing:2.174040px;}
.ws67{word-spacing:2.371680px;}
.ws66{word-spacing:2.437560px;}
.ws53{word-spacing:2.503440px;}
.ws3a{word-spacing:2.701080px;}
.ws39{word-spacing:2.766960px;}
.ws38{word-spacing:2.832840px;}
.ws61{word-spacing:2.898720px;}
.wsc7{word-spacing:2.964600px;}
.ws60{word-spacing:3.096360px;}
.ws8d{word-spacing:3.162240px;}
.ws62{word-spacing:3.228120px;}
.wsbf{word-spacing:3.491640px;}
.ws4a{word-spacing:3.557520px;}
.wsbe{word-spacing:3.623400px;}
.ws48{word-spacing:3.821040px;}
.ws8b{word-spacing:3.886920px;}
.ws33{word-spacing:4.216320px;}
.ws34{word-spacing:4.282200px;}
.ws47{word-spacing:4.348080px;}
.ws46{word-spacing:4.413960px;}
.ws5b{word-spacing:4.545720px;}
.ws5a{word-spacing:4.611600px;}
.wse3{word-spacing:4.677480px;}
.wsc2{word-spacing:4.941000px;}
.ws3f{word-spacing:5.006880px;}
.ws2b{word-spacing:5.138640px;}
.wsdf{word-spacing:5.270400px;}
.ws51{word-spacing:5.599800px;}
.wsb6{word-spacing:5.665680px;}
.ws52{word-spacing:5.731560px;}
.ws45{word-spacing:5.995080px;}
.ws37{word-spacing:6.060960px;}
.wse0{word-spacing:6.324480px;}
.wsa1{word-spacing:6.390360px;}
.ws44{word-spacing:6.456240px;}
.ws68{word-spacing:6.588000px;}
.wse9{word-spacing:6.653880px;}
.ws69{word-spacing:6.719760px;}
.ws49{word-spacing:6.785640px;}
.wseb{word-spacing:7.049160px;}
.wsad{word-spacing:7.115040px;}
.ws65{word-spacing:7.444440px;}
.ws7b{word-spacing:7.510320px;}
.ws64{word-spacing:7.576200px;}
.wsc0{word-spacing:8.169120px;}
.wsc1{word-spacing:8.235000px;}
.ws8e{word-spacing:8.366760px;}
.ws42{word-spacing:8.498520px;}
.ws40{word-spacing:8.564400px;}
.ws41{word-spacing:8.630280px;}
.wsab{word-spacing:8.893800px;}
.wsa3{word-spacing:8.959680px;}
.ws75{word-spacing:9.091440px;}
.ws2e{word-spacing:9.223200px;}
.ws2f{word-spacing:9.289080px;}
.ws15{word-spacing:9.618480px;}
.ws3c{word-spacing:9.684360px;}
.wsdb{word-spacing:9.882000px;}
.ws63{word-spacing:9.947880px;}
.wsc8{word-spacing:10.013760px;}
.wsdc{word-spacing:10.343160px;}
.ws4d{word-spacing:10.672560px;}
.ws4f{word-spacing:10.738440px;}
.ws4e{word-spacing:10.804320px;}
.wsb9{word-spacing:10.870200px;}
.wse7{word-spacing:10.936080px;}
.ws2a{word-spacing:11.001960px;}
.ws29{word-spacing:11.067840px;}
.wsb8{word-spacing:11.133720px;}
.wsec{word-spacing:11.397240px;}
.wsed{word-spacing:11.463120px;}
.ws58{word-spacing:11.594880px;}
.ws59{word-spacing:11.726640px;}
.ws56{word-spacing:11.792520px;}
.wse4{word-spacing:12.121920px;}
.ws57{word-spacing:12.253680px;}
.ws6c{word-spacing:12.451320px;}
.ws3b{word-spacing:12.912480px;}
.ws8a{word-spacing:13.176000px;}
.ws89{word-spacing:13.241880px;}
.wsd2{word-spacing:13.637160px;}
.wsb3{word-spacing:13.900680px;}
.wsae{word-spacing:13.966560px;}
.wsbd{word-spacing:14.295960px;}
.ws31{word-spacing:14.361840px;}
.wsd1{word-spacing:14.625360px;}
.ws3e{word-spacing:15.350040px;}
.ws3d{word-spacing:15.415920px;}
.wsea{word-spacing:15.745320px;}
.ws8f{word-spacing:16.140600px;}
.wsd9{word-spacing:16.404120px;}
.ws94{word-spacing:16.667640px;}
.ws93{word-spacing:16.865280px;}
.ws9f{word-spacing:17.524080px;}
.ws9e{word-spacing:17.589960px;}
.ws86{word-spacing:17.721720px;}
.ws85{word-spacing:17.853480px;}
.ws6b{word-spacing:17.919360px;}
.wse8{word-spacing:18.117000px;}
.wsf3{word-spacing:18.248760px;}
.ws6a{word-spacing:18.314640px;}
.wsf0{word-spacing:18.446400px;}
.wsf2{word-spacing:18.578160px;}
.wsef{word-spacing:18.644040px;}
.wsf1{word-spacing:18.709920px;}
.wscd{word-spacing:18.973440px;}
.wscc{word-spacing:19.039320px;}
.ws83{word-spacing:19.566360px;}
.wsb1{word-spacing:19.698120px;}
.ws84{word-spacing:19.764000px;}
.ws17{word-spacing:20.027520px;}
.ws4b{word-spacing:20.422800px;}
.ws4c{word-spacing:20.488680px;}
.wsa2{word-spacing:21.081600px;}
.ws1b{word-spacing:21.542760px;}
.ws76{word-spacing:21.806280px;}
.ws24{word-spacing:22.926240px;}
.ws25{word-spacing:23.058000px;}
.wse2{word-spacing:24.046200px;}
.ws95{word-spacing:24.573240px;}
.ws97{word-spacing:24.770880px;}
.wsc3{word-spacing:25.100280px;}
.ws96{word-spacing:25.166160px;}
.ws13{word-spacing:25.429680px;}
.wsc4{word-spacing:25.495560px;}
.ws18{word-spacing:26.747280px;}
.wse1{word-spacing:27.603720px;}
.wse6{word-spacing:28.328400px;}
.ws74{word-spacing:28.394280px;}
.wsda{word-spacing:30.107160px;}
.wsdd{word-spacing:30.173040px;}
.wsde{word-spacing:30.238920px;}
.ws9d{word-spacing:31.161240px;}
.ws9b{word-spacing:31.227120px;}
.ws9c{word-spacing:31.424760px;}
.ws7f{word-spacing:37.551600px;}
.ws7e{word-spacing:37.683360px;}
.ws16{word-spacing:72.270360px;}
._d{margin-left:-13.439520px;}
._a{margin-left:-11.896200px;}
._8{margin-left:-8.941320px;}
._9{margin-left:-6.917400px;}
._7{margin-left:-5.204520px;}
._6{margin-left:-3.171960px;}
._f{margin-left:-2.145960px;}
._4{margin-left:-1.001376px;}
._0{width:1.026000px;}
._c{width:2.597400px;}
._16{width:3.929760px;}
._11{width:5.044680px;}
._1e{width:6.079320px;}
._12{width:7.283520px;}
._10{width:8.422920px;}
._e{width:9.655200px;}
._13{width:11.858400px;}
._1d{width:13.194360px;}
._17{width:17.068104px;}
._15{width:18.182880px;}
._1b{width:20.478960px;}
._1c{width:25.815240px;}
._1a{width:48.948840px;}
._18{width:51.386400px;}
._19{width:53.626320px;}
._1{width:64.694160px;}
._5{width:83.799360px;}
._b{width:99.939960px;}
._2{width:197.508240px;}
._14{width:849.127320px;}
._3{width:851.796000px;}
.fca{color:rgb(0,0,255);}
.fc7{color:rgb(53,54,63);}
.fc5{color:transparent;}
.fcc{color:rgb(46,116,181);}
.fc9{color:rgb(31,55,99);}
.fc2{color:rgb(192,79,76);}
.fcb{color:rgb(64,64,64);}
.fc8{color:rgb(13,13,13);}
.fc4{color:rgb(0,30,94);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(47,84,150);}
.fc0{color:rgb(0,32,96);}
.fs7{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fsb{font-size:47.880000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs1{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fs6{font-size:78.120000px;}
.fs2{font-size:96.120000px;}
.fsa{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y15c{bottom:5.400000px;}
.y23{bottom:22.410000px;}
.y3e{bottom:23.130000px;}
.y2a{bottom:45.540000px;}
.y15a{bottom:45.630000px;}
.y160{bottom:46.080000px;}
.y15d{bottom:46.170000px;}
.y45{bottom:56.070000px;}
.y3{bottom:56.160000px;}
.y31{bottom:68.670000px;}
.y44{bottom:72.270000px;}
.y2{bottom:72.360000px;}
.y43{bottom:88.740000px;}
.y1{bottom:88.830000px;}
.y30{bottom:91.890000px;}
.y2f{bottom:115.020000px;}
.y22a{bottom:147.398310px;}
.y80{bottom:149.040000px;}
.y1d8{bottom:155.760390px;}
.ydf{bottom:158.490000px;}
.y40{bottom:159.840000px;}
.y229{bottom:167.557590px;}
.y25a{bottom:168.658110px;}
.yde{bottom:171.990000px;}
.y7f{bottom:172.170000px;}
.y11b{bottom:181.728270px;}
.y194{bottom:186.410520px;}
.y228{bottom:187.634520px;}
.y259{bottom:188.817390px;}
.y7e{bottom:195.390000px;}
.y1d7{bottom:196.885980px;}
.y3f{bottom:198.720000px;}
.y11a{bottom:204.852150px;}
.y106{bottom:206.061570px;}
.y227{bottom:207.793800px;}
.y258{bottom:208.976670px;}
.y7d{bottom:218.520000px;}
.y156{bottom:220.146840px;}
.y1fb{bottom:223.116390px;}
.y193{bottom:224.571510px;}
.y105{bottom:226.220850px;}
.y226{bottom:227.953080px;}
.y119{bottom:228.074850px;}
.y257{bottom:229.135950px;}
.y3d{bottom:237.690000px;}
.y1d6{bottom:238.011570px;}
.y7c{bottom:241.650000px;}
.ydd{bottom:242.143290px;}
.y155{bottom:243.270720px;}
.y104{bottom:246.380130px;}
.y192{bottom:247.794210px;}
.y225{bottom:248.112360px;}
.y256{bottom:249.295230px;}
.y1b2{bottom:251.197920px;}
.y1d5{bottom:258.170850px;}
.y7b{bottom:264.870000px;}
.ydc{bottom:265.267170px;}
.y1fa{bottom:265.329000px;}
.y118{bottom:266.235840px;}
.y103{bottom:266.457060px;}
.y154{bottom:266.493420px;}
.y224{bottom:268.189290px;}
.y255{bottom:269.372160px;}
.y191{bottom:270.918090px;}
.yb5{bottom:273.868830px;}
.y3c{bottom:276.570000px;}
.y1b1{bottom:284.944950px;}
.y1f9{bottom:285.488280px;}
.y102{bottom:286.616340px;}
.y7a{bottom:288.000000px;}
.y223{bottom:288.348570px;}
.ydb{bottom:288.489870px;}
.y117{bottom:289.359720px;}
.y254{bottom:289.531440px;}
.y153{bottom:289.617300px;}
.y137{bottom:290.108070px;}
.yb4{bottom:294.028110px;}
.y190{bottom:294.041970px;}
.y1d4{bottom:299.296440px;}
.y1f8{bottom:305.647560px;}
.y222{bottom:308.507850px;}
.y253{bottom:309.690720px;}
.y101{bottom:309.740220px;}
.y79{bottom:311.130000px;}
.yda{bottom:311.613750px;}
.y152{bottom:312.840000px;}
.yb3{bottom:314.187390px;}
.y3b{bottom:315.450000px;}
.y1b0{bottom:318.691980px;}
.y1d3{bottom:319.455720px;}
.y116{bottom:323.106750px;}
.y136{bottom:328.269060px;}
.y221{bottom:328.667130px;}
.y252{bottom:329.850000px;}
.y100{bottom:329.899500px;}
.y18f{bottom:332.202960px;}
.yb2{bottom:334.264320px;}
.y78{bottom:334.350000px;}
.yd9{bottom:334.737630px;}
.y151{bottom:336.002040px;}
.y1d2{bottom:339.615000px;}
.y1f7{bottom:340.745130px;}
.y220{bottom:348.826410px;}
.yff{bottom:350.058780px;}
.y251{bottom:350.820000px;}
.y135{bottom:351.392940px;}
.y1af{bottom:352.439010px;}
.y3a{bottom:354.420000px;}
.yb1{bottom:354.423600px;}
.y18e{bottom:355.425660px;}
.y77{bottom:357.480000px;}
.yd8{bottom:357.960330px;}
.y150{bottom:359.125920px;}
.y1d1{bottom:359.691930px;}
.y1f6{bottom:360.904410px;}
.y21f{bottom:368.903340px;}
.yfe{bottom:370.218060px;}
.y250{bottom:373.770720px;}
.yb0{bottom:374.582880px;}
.y18d{bottom:378.549540px;}
.y1d0{bottom:379.950030px;}
.y76{bottom:380.700000px;}
.yd7{bottom:381.084210px;}
.y14f{bottom:382.348620px;}
.y21e{bottom:389.062620px;}
.y134{bottom:389.553930px;}
.yfd{bottom:390.377340px;}
.y1ae{bottom:390.600000px;}
.y39{bottom:393.300000px;}
.y24f{bottom:393.930000px;}
.yaf{bottom:394.742160px;}
.y75{bottom:400.860000px;}
.y18c{bottom:401.673420px;}
.y1f5{bottom:402.030000px;}
.y14e{bottom:405.472500px;}
.y17d{bottom:406.636380px;}
.y21d{bottom:409.221900px;}
.yfc{bottom:410.536620px;}
.y133{bottom:412.677810px;}
.y24e{bottom:414.083790px;}
.yae{bottom:414.901440px;}
.y74{bottom:420.954570px;}
.y1cf{bottom:420.993270px;}
.y1f4{bottom:422.190000px;}
.yd6{bottom:422.308620px;}
.y18b{bottom:424.896120px;}
.y14d{bottom:428.596380px;}
.y1ad{bottom:428.760000px;}
.y21c{bottom:429.381180px;}
.y17c{bottom:429.760260px;}
.yfb{bottom:430.613550px;}
.y38{bottom:432.180000px;}
.y24d{bottom:434.160720px;}
.yad{bottom:434.978370px;}
.y73{bottom:441.113850px;}
.y1f3{bottom:442.350000px;}
.yd5{bottom:445.432500px;}
.y18a{bottom:448.020000px;}
.y21b{bottom:449.540460px;}
.y132{bottom:450.838800px;}
.y14c{bottom:451.819080px;}
.y1ac{bottom:451.888020px;}
.y17b{bottom:452.982960px;}
.y24c{bottom:454.315230px;}
.yac{bottom:455.137650px;}
.y1ce{bottom:459.154260px;}
.y72{bottom:461.273130px;}
.y1f2{bottom:462.510000px;}
.y20{bottom:465.741000px;}
.yd4{bottom:468.556380px;}
.yfa{bottom:468.774540px;}
.y21a{bottom:469.617390px;}
.y36{bottom:471.150000px;}
.y189{bottom:471.960000px;}
.y131{bottom:474.061500px;}
.y24b{bottom:474.474510px;}
.y14b{bottom:474.942960px;}
.yab{bottom:475.296930px;}
.y17a{bottom:476.106840px;}
.y71{bottom:481.432410px;}
.y1f{bottom:482.211000px;}
.y1cd{bottom:482.376960px;}
.y1f1{bottom:482.580000px;}
.y219{bottom:489.776670px;}
.y1ab{bottom:490.049010px;}
.yd3{bottom:491.779080px;}
.yf9{bottom:491.997240px;}
.y37{bottom:493.560000px;}
.y24a{bottom:494.633790px;}
.yaa{bottom:495.456210px;}
.y14a{bottom:498.066840px;}
.y1e{bottom:498.775500px;}
.y179{bottom:499.329540px;}
.y70{bottom:501.591690px;}
.y1f0{bottom:502.740000px;}
.y1cc{bottom:505.500840px;}
.y218{bottom:509.935950px;}
.y188{bottom:511.488090px;}
.y130{bottom:512.222490px;}
.y249{bottom:514.793070px;}
.yd2{bottom:514.902960px;}
.yf8{bottom:515.121120px;}
.y1d{bottom:515.245500px;}
.ya9{bottom:515.615490px;}
.y149{bottom:521.289540px;}
.y178{bottom:522.453420px;}
.y1ef{bottom:522.900000px;}
.y6f{bottom:523.282680px;}
.y1aa{bottom:528.210000px;}
.y1cb{bottom:528.624720px;}
.y217{bottom:530.095230px;}
.y1c{bottom:531.715500px;}
.y35{bottom:533.160000px;}
.y187{bottom:534.611970px;}
.y248{bottom:534.849750px;}
.y12f{bottom:535.346370px;}
.ya8{bottom:535.692420px;}
.yd1{bottom:538.026840px;}
.yf7{bottom:538.245000px;}
.y1ee{bottom:543.060000px;}
.y148{bottom:544.413420px;}
.y6e{bottom:544.973670px;}
.y177{bottom:545.577300px;}
.y1b{bottom:548.185500px;}
.y216{bottom:550.254510px;}
.y1ca{bottom:551.847420px;}
.y247{bottom:555.009030px;}
.ya7{bottom:555.851700px;}
.y12e{bottom:558.569070px;}
.yd0{bottom:561.249540px;}
.yf6{bottom:561.467700px;}
.y1a{bottom:564.655500px;}
.y1a9{bottom:566.370000px;}
.y6d{bottom:566.747010px;}
.y147{bottom:567.636120px;}
.y176{bottom:568.800000px;}
.y215{bottom:570.331440px;}
.y34{bottom:572.130000px;}
.y186{bottom:572.772960px;}
.y246{bottom:575.168310px;}
.ya6{bottom:576.010980px;}
.y19{bottom:581.125500px;}
.y12d{bottom:581.692950px;}
.y1ed{bottom:584.221320px;}
.ycf{bottom:584.373420px;}
.yf5{bottom:584.591580px;}
.y6c{bottom:588.438000px;}
.y1c9{bottom:590.008410px;}
.y214{bottom:590.490720px;}
.y146{bottom:590.760000px;}
.y245{bottom:595.327590px;}
.y185{bottom:595.995660px;}
.ya5{bottom:596.170260px;}
.y18{bottom:597.595500px;}
.y1a8{bottom:604.591650px;}
.y12c{bottom:604.816830px;}
.y175{bottom:606.960000px;}
.yce{bottom:607.596120px;}
.yf4{bottom:607.715460px;}
.y6b{bottom:610.211340px;}
.y213{bottom:610.650000px;}
.y17{bottom:614.065500px;}
.y145{bottom:615.330000px;}
.y244{bottom:615.486870px;}
.ya4{bottom:616.329540px;}
.y184{bottom:619.119540px;}
.y1ec{bottom:625.346910px;}
.y1c8{bottom:628.169400px;}
.y16{bottom:630.535500px;}
.ycd{bottom:630.720000px;}
.y212{bottom:630.810720px;}
.yf3{bottom:630.938160px;}
.y6a{bottom:631.902330px;}
.y33{bottom:633.420000px;}
.y243{bottom:635.563800px;}
.ya3{bottom:636.406470px;}
.y183{bottom:642.243420px;}
.y1a7{bottom:642.752640px;}
.y12b{bottom:642.977820px;}
.y174{bottom:645.146640px;}
.y15{bottom:647.100000px;}
.y2e{bottom:649.980000px;}
.y211{bottom:650.970000px;}
.y1c7{bottom:651.293280px;}
.y144{bottom:651.865050px;}
.y69{bottom:653.675670px;}
.ycc{bottom:653.907690px;}
.yf2{bottom:654.062040px;}
.y242{bottom:655.723080px;}
.ya2{bottom:656.565750px;}
.y159{bottom:659.520000px;}
.y14{bottom:664.362540px;}
.y182{bottom:665.466120px;}
.y12a{bottom:666.200520px;}
.y1eb{bottom:666.472500px;}
.y210{bottom:671.030730px;}
.y32{bottom:672.390000px;}
.y1c6{bottom:674.417160px;}
.y68{bottom:675.366660px;}
.ycb{bottom:675.681030px;}
.y241{bottom:675.882360px;}
.ya1{bottom:676.725030px;}
.yf1{bottom:677.185920px;}
.y91{bottom:677.877930px;}
.y1a6{bottom:680.995980px;}
.y173{bottom:683.307630px;}
.y13{bottom:684.439470px;}
.y15b{bottom:685.080000px;}
.y143{bottom:685.612080px;}
.y1ea{bottom:686.631780px;}
.y181{bottom:688.590000px;}
.y129{bottom:689.324400px;}
.y20f{bottom:691.190010px;}
.y115{bottom:695.345220px;}
.y240{bottom:696.041640px;}
.ya0{bottom:696.884310px;}
.y67{bottom:697.140000px;}
.yca{bottom:697.372020px;}
.y1c5{bottom:697.639860px;}
.y90{bottom:699.568920px;}
.yf0{bottom:700.408620px;}
.y1a5{bottom:704.119860px;}
.y12{bottom:704.598750px;}
.y172{bottom:706.431510px;}
.y1e9{bottom:706.791060px;}
.y20e{bottom:711.349290px;}
.y128{bottom:712.448280px;}
.y23f{bottom:716.118570px;}
.y9f{bottom:717.043590px;}
.y66{bottom:718.830000px;}
.yc9{bottom:719.145360px;}
.y142{bottom:719.359110px;}
.y1c4{bottom:720.763740px;}
.yef{bottom:723.532500px;}
.y11{bottom:724.758030px;}
.y114{bottom:725.584140px;}
.y180{bottom:726.750000px;}
.y1a4{bottom:727.243740px;}
.y171{bottom:729.555390px;}
.y20d{bottom:731.508570px;}
.y23e{bottom:736.277850px;}
.y9e{bottom:737.120520px;}
.y8f{bottom:737.729910px;}
.y65{bottom:738.984780px;}
.yc8{bottom:740.836350px;}
.y1e8{bottom:741.888630px;}
.y1c3{bottom:743.986440px;}
.y10{bottom:744.917310px;}
.yee{bottom:746.755200px;}
.y127{bottom:750.609270px;}
.y20c{bottom:751.667850px;}
.y170{bottom:752.778090px;}
.y113{bottom:755.740710px;}
.y23d{bottom:756.437130px;}
.y141{bottom:757.520100px;}
.y64{bottom:759.144060px;}
.y1e7{bottom:762.047910px;}
.yc7{bottom:762.609690px;}
.y17f{bottom:764.912970px;}
.yf{bottom:765.076590px;}
.y1a3{bottom:765.404730px;}
.y1c2{bottom:767.110320px;}
.yed{bottom:769.879080px;}
.y20b{bottom:771.744780px;}
.y126{bottom:773.831970px;}
.y9d{bottom:775.281510px;}
.y16f{bottom:775.901970px;}
.y8e{bottom:775.973250px;}
.y23c{bottom:776.596410px;}
.y63{bottom:779.303340px;}
.y2d{bottom:781.470000px;}
.y1e6{bottom:782.207190px;}
.y52{bottom:783.270000px;}
.yc6{bottom:784.300680px;}
.ye{bottom:785.153520px;}
.y112{bottom:785.979630px;}
.y1a2{bottom:788.627430px;}
.y1c1{bottom:790.234200px;}
.y20a{bottom:791.904060px;}
.yec{bottom:793.002960px;}
.y140{bottom:795.681090px;}
.y23b{bottom:796.755690px;}
.y125{bottom:796.955850px;}
.y9c{bottom:798.504210px;}
.y17e{bottom:798.660000px;}
.y16e{bottom:799.124670px;}
.y62{bottom:799.462620px;}
.yd{bottom:805.312800px;}
.yc5{bottom:806.074020px;}
.y1a1{bottom:811.751310px;}
.y51{bottom:811.840950px;}
.y209{bottom:812.063340px;}
.y1c0{bottom:813.456900px;}
.y8d{bottom:814.134240px;}
.y111{bottom:816.218550px;}
.yeb{bottom:816.225660px;}
.y23a{bottom:816.832620px;}
.y1e5{bottom:817.304760px;}
.y61{bottom:819.621900px;}
.y124{bottom:820.178550px;}
.y2c{bottom:820.440000px;}
.y15f{bottom:821.070000px;}
.y16d{bottom:822.248550px;}
.yc{bottom:825.472080px;}
.yc4{bottom:827.765010px;}
.y208{bottom:832.222620px;}
.y13f{bottom:833.842080px;}
.y1a0{bottom:834.875190px;}
.y1bf{bottom:836.580780px;}
.y9b{bottom:836.665200px;}
.y239{bottom:836.991900px;}
.y1e4{bottom:837.464040px;}
.yea{bottom:839.349540px;}
.y60{bottom:839.698830px;}
.y50{bottom:842.524560px;}
.y123{bottom:843.302430px;}
.y15e{bottom:843.390000px;}
.y161{bottom:844.020000px;}
.yc3{bottom:849.538350px;}
.y8c{bottom:852.295230px;}
.y207{bottom:852.381900px;}
.y110{bottom:854.379540px;}
.y238{bottom:857.151180px;}
.y1e3{bottom:857.623320px;}
.y29{bottom:859.320000px;}
.y1be{bottom:859.704660px;}
.y9a{bottom:859.789080px;}
.y5f{bottom:859.858110px;}
.y16c{bottom:860.409540px;}
.yb{bottom:860.569650px;}
.ye9{bottom:862.473420px;}
.y157{bottom:866.520000px;}
.y19f{bottom:868.622220px;}
.yc2{bottom:871.229340px;}
.y13e{bottom:872.003070px;}
.y8b{bottom:872.454510px;}
.y206{bottom:872.458830px;}
.y4f{bottom:873.125820px;}
.y237{bottom:877.310460px;}
.y10f{bottom:877.503420px;}
.y5e{bottom:880.017390px;}
.y122{bottom:881.463420px;}
.y2b{bottom:881.730000px;}
.y99{bottom:882.912960px;}
.y1bd{bottom:882.927360px;}
.y16b{bottom:883.533420px;}
.ye8{bottom:885.696120px;}
.y19e{bottom:890.395560px;}
.y8a{bottom:892.531440px;}
.y205{bottom:892.618110px;}
.y1e2{bottom:892.720890px;}
.yc1{bottom:893.002680px;}
.ya{bottom:895.766040px;}
.y236{bottom:897.469740px;}
.y5d{bottom:900.176670px;}
.y10e{bottom:900.627300px;}
.y4e{bottom:903.809430px;}
.y121{bottom:904.587300px;}
.y1bc{bottom:906.051240px;}
.y98{bottom:906.135660px;}
.y16a{bottom:906.756120px;}
.ye7{bottom:908.820000px;}
.y13d{bottom:910.164060px;}
.y19d{bottom:912.086550px;}
.y89{bottom:912.690720px;}
.y204{bottom:912.777390px;}
.y1e1{bottom:912.880170px;}
.yc0{bottom:914.693670px;}
.y235{bottom:917.546670px;}
.y5c{bottom:920.335950px;}
.y28{bottom:921.420000px;}
.y10d{bottom:923.850000px;}
.y120{bottom:927.810000px;}
.y1bb{bottom:929.175120px;}
.y97{bottom:929.259540px;}
.y169{bottom:929.880000px;}
.y9{bottom:930.863610px;}
.y88{bottom:932.850000px;}
.y203{bottom:932.936670px;}
.y1e0{bottom:933.039450px;}
.y4d{bottom:934.493040px;}
.ybf{bottom:936.467010px;}
.y234{bottom:937.705950px;}
.y5b{bottom:940.412880px;}
.y19c{bottom:945.833580px;}
.ye6{bottom:946.980000px;}
.y13c{bottom:948.325050px;}
.y11f{bottom:952.380000px;}
.y96{bottom:952.383420px;}
.y1ba{bottom:952.397820px;}
.y202{bottom:953.095950px;}
.y233{bottom:957.865230px;}
.ybe{bottom:958.158000px;}
.y27{bottom:960.300000px;}
.y5a{bottom:960.572160px;}
.y10c{bottom:962.010000px;}
.y4c{bottom:965.094300px;}
.y8{bottom:966.060000px;}
.y19b{bottom:967.606920px;}
.y168{bottom:968.040000px;}
.y1df{bottom:968.137020px;}
.y201{bottom:973.172880px;}
.y1b9{bottom:975.521700px;}
.y95{bottom:975.606120px;}
.y87{bottom:976.950000px;}
.y232{bottom:978.024510px;}
.ybd{bottom:979.931340px;}
.y59{bottom:980.731440px;}
.y7{bottom:984.600000px;}
.ye5{bottom:985.145850px;}
.y13b{bottom:986.486040px;}
.y1de{bottom:988.296300px;}
.y19a{bottom:989.297910px;}
.y200{bottom:993.332160px;}
.y11e{bottom:993.337560px;}
.y4b{bottom:995.777910px;}
.y231{bottom:998.183790px;}
.y94{bottom:998.730000px;}
.y1b8{bottom:998.744400px;}
.y86{bottom:1000.170000px;}
.y10b{bottom:1000.189080px;}
.y58{bottom:1000.890720px;}
.ybc{bottom:1001.622330px;}
.y6{bottom:1004.670000px;}
.y167{bottom:1006.208550px;}
.ye4{bottom:1008.368550px;}
.y1dd{bottom:1008.455580px;}
.y199{bottom:1011.071250px;}
.y1ff{bottom:1013.491440px;}
.y230{bottom:1018.260720px;}
.y57{bottom:1021.050000px;}
.y26{bottom:1021.680000px;}
.y1b7{bottom:1021.868280px;}
.y85{bottom:1023.300000px;}
.y10a{bottom:1023.312960px;}
.ybb{bottom:1023.395670px;}
.y13a{bottom:1024.647030px;}
.y4a{bottom:1026.461520px;}
.y42{bottom:1029.514500px;}
.y5{bottom:1030.315500px;}
.y11d{bottom:1031.498550px;}
.y1fe{bottom:1033.650720px;}
.y25{bottom:1038.150000px;}
.y22f{bottom:1038.420720px;}
.y56{bottom:1041.120000px;}
.y1dc{bottom:1043.553150px;}
.y4{bottom:1043.910000px;}
.y166{bottom:1044.369540px;}
.y158{bottom:1044.450000px;}
.y1b6{bottom:1044.992160px;}
.yba{bottom:1045.086660px;}
.y84{bottom:1046.520000px;}
.ye3{bottom:1046.529540px;}
.y109{bottom:1046.535660px;}
.y198{bottom:1049.232240px;}
.y1fd{bottom:1053.810000px;}
.y11c{bottom:1054.622430px;}
.y49{bottom:1057.145130px;}
.y22e{bottom:1058.575230px;}
.y55{bottom:1061.279010px;}
.y139{bottom:1062.808020px;}
.y41{bottom:1063.440000px;}
.y1db{bottom:1063.712430px;}
.y93{bottom:1064.250000px;}
.y1b5{bottom:1065.151440px;}
.yb9{bottom:1066.860000px;}
.y165{bottom:1067.592240px;}
.y83{bottom:1069.650000px;}
.ye2{bottom:1069.653420px;}
.y108{bottom:1069.659540px;}
.y197{bottom:1072.356120px;}
.y24{bottom:1077.030000px;}
.y22d{bottom:1078.734510px;}
.y1fc{bottom:1080.355500px;}
.y1b4{bottom:1085.310720px;}
.y48{bottom:1087.746390px;}
.yb8{bottom:1088.547300px;}
.y164{bottom:1090.716120px;}
.y92{bottom:1090.890000px;}
.ye1{bottom:1092.777300px;}
.y82{bottom:1092.780000px;}
.y107{bottom:1092.783420px;}
.y196{bottom:1095.480000px;}
.y1da{bottom:1098.810000px;}
.y22c{bottom:1098.893790px;}
.y54{bottom:1099.440000px;}
.y138{bottom:1100.969010px;}
.y1b3{bottom:1105.470000px;}
.yb7{bottom:1111.770000px;}
.y163{bottom:1113.840000px;}
.y22{bottom:1116.000000px;}
.ye0{bottom:1116.006120px;}
.y47{bottom:1118.430000px;}
.y1d9{bottom:1118.970000px;}
.y22b{bottom:1118.970720px;}
.y53{bottom:1125.990000px;}
.y195{bottom:1132.020000px;}
.yb6{bottom:1136.340000px;}
.y162{bottom:1137.780000px;}
.y46{bottom:1138.230000px;}
.y81{bottom:1139.130000px;}
.y21{bottom:1202.880000px;}
.h15{height:27.907031px;}
.h2{height:36.914062px;}
.ha{height:38.158500px;}
.hb{height:38.160000px;}
.h8{height:38.759766px;}
.h3{height:38.812500px;}
.h5{height:40.500000px;}
.h10{height:41.291016px;}
.h7{height:45.035156px;}
.hf{height:45.219727px;}
.h1d{height:45.646348px;}
.h4{height:47.286914px;}
.h1b{height:47.294834px;}
.h1f{height:47.323994px;}
.h12{height:47.351250px;}
.h9{height:50.062500px;}
.h17{height:51.551527px;}
.h1a{height:51.750000px;}
.h16{height:54.328137px;}
.hc{height:54.352617px;}
.h14{height:54.363417px;}
.h23{height:56.072461px;}
.h20{height:56.091541px;}
.h22{height:56.097301px;}
.h13{height:56.148750px;}
.h21{height:56.153461px;}
.hd{height:61.290000px;}
.h19{height:62.370000px;}
.h1c{height:65.707031px;}
.h1e{height:68.966823px;}
.h6{height:68.992383px;}
.h11{height:69.086250px;}
.h18{height:86.046680px;}
.he{height:130.768500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:186.570000px;}
.w9{width:190.980000px;}
.w7{width:211.230000px;}
.w5{width:211.500000px;}
.wa{width:271.801500px;}
.w2{width:328.501500px;}
.w3{width:346.140000px;}
.w6{width:463.140000px;}
.w8{width:463.501500px;}
.w4{width:675.451500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x18{left:19.800000px;}
.x1b{left:24.390000px;}
.x19{left:68.040000px;}
.x5{left:108.000000px;}
.x13{left:111.409290px;}
.x1a{left:113.940000px;}
.xb{left:116.460000px;}
.xd{left:124.437060px;}
.xf{left:134.994330px;}
.x11{left:138.436560px;}
.x21{left:139.935330px;}
.xe{left:141.022350px;}
.x1c{left:156.060000px;}
.x10{left:162.005130px;}
.x12{left:165.414420px;}
.x1{left:200.610000px;}
.x20{left:214.195590px;}
.x2{left:312.579000px;}
.x9{left:321.030000px;}
.xa{left:328.680000px;}
.x15{left:342.450000px;}
.x17{left:356.850000px;}
.x16{left:366.840000px;}
.x4{left:379.080000px;}
.x8{left:438.030000px;}
.x3{left:442.719000px;}
.xc{left:512.370000px;}
.x1d{left:591.750000px;}
.x1e{left:659.790000px;}
.x6{left:667.500000px;}
.x14{left:691.054470px;}
.x1f{left:700.110000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.lsc{letter-spacing:-2.460853pt;}
.ls39{letter-spacing:-0.175680pt;}
.ls9{letter-spacing:-0.170880pt;}
.ls7{letter-spacing:-0.144000pt;}
.ls50{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.117120pt;}
.ls13{letter-spacing:-0.112000pt;}
.ls3f{letter-spacing:-0.106880pt;}
.ls49{letter-spacing:-0.106560pt;}
.ls8{letter-spacing:-0.085440pt;}
.ls51{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.058560pt;}
.ls14{letter-spacing:-0.056000pt;}
.ls3a{letter-spacing:-0.053440pt;}
.ls5{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000640pt;}
.ls0{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.049600pt;}
.ls5e{letter-spacing:0.053440pt;}
.ls3{letter-spacing:0.058560pt;}
.ls4b{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.069440pt;}
.ls10{letter-spacing:0.074880pt;}
.ls36{letter-spacing:0.078080pt;}
.ls1{letter-spacing:0.085440pt;}
.ls37{letter-spacing:0.106880pt;}
.ls12{letter-spacing:0.117120pt;}
.lse{letter-spacing:0.145600pt;}
.ls5c{letter-spacing:0.170880pt;}
.ls16{letter-spacing:0.175680pt;}
.lsd{letter-spacing:0.178880pt;}
.ls30{letter-spacing:0.199104pt;}
.ls1c{letter-spacing:0.234240pt;}
.ls5d{letter-spacing:0.240096pt;}
.ls61{letter-spacing:0.245952pt;}
.ls69{letter-spacing:0.263520pt;}
.ls66{letter-spacing:0.269376pt;}
.ls11{letter-spacing:0.292800pt;}
.ls67{letter-spacing:0.310368pt;}
.ls6c{letter-spacing:0.333792pt;}
.ls3d{letter-spacing:0.374784pt;}
.ls26{letter-spacing:0.409920pt;}
.ls20{letter-spacing:0.419520pt;}
.ls27{letter-spacing:0.468480pt;}
.ls2d{letter-spacing:0.486048pt;}
.ls24{letter-spacing:0.509472pt;}
.ls2c{letter-spacing:0.527040pt;}
.ls53{letter-spacing:0.579744pt;}
.ls6a{letter-spacing:0.626560pt;}
.ls5a{letter-spacing:0.644160pt;}
.ls42{letter-spacing:0.819840pt;}
.ls64{letter-spacing:0.941440pt;}
.ls47{letter-spacing:1.165344pt;}
.ls32{letter-spacing:1.171200pt;}
.ls44{letter-spacing:1.200480pt;}
.ls31{letter-spacing:1.464000pt;}
.ls46{letter-spacing:1.493280pt;}
.ls35{letter-spacing:1.510848pt;}
.ls43{letter-spacing:1.668960pt;}
.ls52{letter-spacing:1.815360pt;}
.ls34{letter-spacing:2.078880pt;}
.ls2a{letter-spacing:2.108160pt;}
.ls1d{letter-spacing:2.459520pt;}
.ls33{letter-spacing:2.611776pt;}
.ls2e{letter-spacing:2.658624pt;}
.ls4f{letter-spacing:2.752320pt;}
.ls4c{letter-spacing:3.103680pt;}
.ls28{letter-spacing:3.396480pt;}
.ls1a{letter-spacing:3.695136pt;}
.ls54{letter-spacing:4.040640pt;}
.ls56{letter-spacing:4.374432pt;}
.ls55{letter-spacing:4.392000pt;}
.ls63{letter-spacing:4.786560pt;}
.ls29{letter-spacing:4.977600pt;}
.ls25{letter-spacing:5.328960pt;}
.ls6b{letter-spacing:5.674464pt;}
.ls65{letter-spacing:5.973120pt;}
.ls62{letter-spacing:6.265920pt;}
.ls68{letter-spacing:7.167744pt;}
.ls4e{letter-spacing:7.261440pt;}
.ls41{letter-spacing:7.554240pt;}
.ls23{letter-spacing:7.560096pt;}
.ls45{letter-spacing:7.905600pt;}
.ls4d{letter-spacing:8.186688pt;}
.ls1f{letter-spacing:8.549760pt;}
.ls48{letter-spacing:9.779520pt;}
.ls1e{letter-spacing:11.448480pt;}
.ls5b{letter-spacing:12.063360pt;}
.ls58{letter-spacing:12.350304pt;}
.ls59{letter-spacing:12.356160pt;}
.ls21{letter-spacing:13.644480pt;}
.ls22{letter-spacing:14.048544pt;}
.ls40{letter-spacing:15.576960pt;}
.ls57{letter-spacing:17.158080pt;}
.ls3e{letter-spacing:21.960000pt;}
.ls2f{letter-spacing:32.032320pt;}
.ls3b{letter-spacing:35.253120pt;}
.ls4a{letter-spacing:45.568000pt;}
.ls2b{letter-spacing:46.594240pt;}
.ls19{letter-spacing:48.273600pt;}
.ls5f{letter-spacing:56.507840pt;}
.ls1b{letter-spacing:61.780800pt;}
.ls3c{letter-spacing:63.713280pt;}
.ls17{letter-spacing:88.542720pt;}
.ls18{letter-spacing:102.597120pt;}
.ls4{letter-spacing:127.250880pt;}
.ls2{letter-spacing:145.463040pt;}
.ls60{letter-spacing:754.771840pt;}
.wsb4{word-spacing:-24.082560pt;}
.wsb5{word-spacing:-23.976000pt;}
.wsd4{word-spacing:-19.480320pt;}
.ws1f{word-spacing:-19.309440pt;}
.ws2{word-spacing:-19.224000pt;}
.wsa7{word-spacing:-15.762880pt;}
.ws54{word-spacing:-15.693440pt;}
.wsca{word-spacing:-14.528000pt;}
.wsc9{word-spacing:-14.464000pt;}
.wsba{word-spacing:-14.336000pt;}
.ws21{word-spacing:-13.703040pt;}
.ws20{word-spacing:-13.527360pt;}
.ws88{word-spacing:-13.410240pt;}
.wsf{word-spacing:-13.351680pt;}
.ws1{word-spacing:-13.344000pt;}
.ws3{word-spacing:-13.293120pt;}
.wsd{word-spacing:-13.234560pt;}
.ws0{word-spacing:-13.200000pt;}
.ws4{word-spacing:-13.176000pt;}
.wse{word-spacing:-13.117440pt;}
.ws71{word-spacing:-13.058880pt;}
.ws10{word-spacing:-12.656000pt;}
.ws12{word-spacing:-12.600000pt;}
.ws11{word-spacing:-12.544000pt;}
.wsc{word-spacing:-8.536320pt;}
.ws70{word-spacing:-8.461440pt;}
.ws92{word-spacing:-3.630720pt;}
.ws91{word-spacing:-3.572160pt;}
.wsa0{word-spacing:-3.455040pt;}
.ws90{word-spacing:-3.337920pt;}
.ws50{word-spacing:-3.279360pt;}
.ws80{word-spacing:-2.986560pt;}
.wsaa{word-spacing:-2.928000pt;}
.ws78{word-spacing:-2.810880pt;}
.ws77{word-spacing:-2.693760pt;}
.ws8c{word-spacing:-2.635200pt;}
.wsa9{word-spacing:-2.576640pt;}
.ws28{word-spacing:-2.342400pt;}
.ws27{word-spacing:-2.283840pt;}
.wsc6{word-spacing:-2.225280pt;}
.ws30{word-spacing:-2.049600pt;}
.wscb{word-spacing:-1.991040pt;}
.wsc5{word-spacing:-1.932480pt;}
.wsd5{word-spacing:-1.698240pt;}
.wsb2{word-spacing:-1.639680pt;}
.ws82{word-spacing:-1.581120pt;}
.wsa5{word-spacing:-1.522560pt;}
.wsa8{word-spacing:-1.405440pt;}
.wsa4{word-spacing:-1.346880pt;}
.wsce{word-spacing:-1.171200pt;}
.wsd0{word-spacing:-1.054080pt;}
.ws6d{word-spacing:-0.995520pt;}
.wscf{word-spacing:-0.936960pt;}
.wsaf{word-spacing:-0.878400pt;}
.wsd6{word-spacing:-0.819840pt;}
.wsb0{word-spacing:-0.761280pt;}
.wsd7{word-spacing:-0.702720pt;}
.wsd3{word-spacing:-0.644160pt;}
.wse5{word-spacing:-0.527040pt;}
.ws14{word-spacing:-0.409920pt;}
.ws7d{word-spacing:-0.351360pt;}
.ws55{word-spacing:-0.347200pt;}
.ws99{word-spacing:-0.320640pt;}
.ws1d{word-spacing:-0.292800pt;}
.ws19{word-spacing:-0.234240pt;}
.ws9a{word-spacing:-0.213760pt;}
.wsa{word-spacing:-0.175680pt;}
.ws87{word-spacing:-0.160320pt;}
.wsbb{word-spacing:-0.128000pt;}
.ws9{word-spacing:-0.117120pt;}
.ws72{word-spacing:-0.069440pt;}
.ws8{word-spacing:-0.058560pt;}
.ws5{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.058560pt;}
.wsbc{word-spacing:0.064000pt;}
.wsd8{word-spacing:0.085440pt;}
.ws6{word-spacing:0.096000pt;}
.ws26{word-spacing:0.117120pt;}
.ws1e{word-spacing:0.144000pt;}
.ws7{word-spacing:0.170880pt;}
.ws7c{word-spacing:0.175680pt;}
.ws98{word-spacing:0.213760pt;}
.ws1a{word-spacing:0.234240pt;}
.wsb{word-spacing:0.292800pt;}
.ws5f{word-spacing:0.409920pt;}
.wsee{word-spacing:0.468480pt;}
.ws5d{word-spacing:0.527040pt;}
.ws5e{word-spacing:0.585600pt;}
.ws5c{word-spacing:0.644160pt;}
.ws43{word-spacing:0.819840pt;}
.ws32{word-spacing:0.878400pt;}
.wsac{word-spacing:0.936960pt;}
.ws7a{word-spacing:1.054080pt;}
.ws79{word-spacing:1.112640pt;}
.ws22{word-spacing:1.171200pt;}
.ws23{word-spacing:1.229760pt;}
.ws35{word-spacing:1.288320pt;}
.wsa6{word-spacing:1.346880pt;}
.ws6f{word-spacing:1.405440pt;}
.ws36{word-spacing:1.464000pt;}
.ws6e{word-spacing:1.522560pt;}
.ws73{word-spacing:1.581120pt;}
.wsb7{word-spacing:1.639680pt;}
.ws2c{word-spacing:1.815360pt;}
.ws2d{word-spacing:1.873920pt;}
.ws81{word-spacing:1.932480pt;}
.ws67{word-spacing:2.108160pt;}
.ws66{word-spacing:2.166720pt;}
.ws53{word-spacing:2.225280pt;}
.ws3a{word-spacing:2.400960pt;}
.ws39{word-spacing:2.459520pt;}
.ws38{word-spacing:2.518080pt;}
.ws61{word-spacing:2.576640pt;}
.wsc7{word-spacing:2.635200pt;}
.ws60{word-spacing:2.752320pt;}
.ws8d{word-spacing:2.810880pt;}
.ws62{word-spacing:2.869440pt;}
.wsbf{word-spacing:3.103680pt;}
.ws4a{word-spacing:3.162240pt;}
.wsbe{word-spacing:3.220800pt;}
.ws48{word-spacing:3.396480pt;}
.ws8b{word-spacing:3.455040pt;}
.ws33{word-spacing:3.747840pt;}
.ws34{word-spacing:3.806400pt;}
.ws47{word-spacing:3.864960pt;}
.ws46{word-spacing:3.923520pt;}
.ws5b{word-spacing:4.040640pt;}
.ws5a{word-spacing:4.099200pt;}
.wse3{word-spacing:4.157760pt;}
.wsc2{word-spacing:4.392000pt;}
.ws3f{word-spacing:4.450560pt;}
.ws2b{word-spacing:4.567680pt;}
.wsdf{word-spacing:4.684800pt;}
.ws51{word-spacing:4.977600pt;}
.wsb6{word-spacing:5.036160pt;}
.ws52{word-spacing:5.094720pt;}
.ws45{word-spacing:5.328960pt;}
.ws37{word-spacing:5.387520pt;}
.wse0{word-spacing:5.621760pt;}
.wsa1{word-spacing:5.680320pt;}
.ws44{word-spacing:5.738880pt;}
.ws68{word-spacing:5.856000pt;}
.wse9{word-spacing:5.914560pt;}
.ws69{word-spacing:5.973120pt;}
.ws49{word-spacing:6.031680pt;}
.wseb{word-spacing:6.265920pt;}
.wsad{word-spacing:6.324480pt;}
.ws65{word-spacing:6.617280pt;}
.ws7b{word-spacing:6.675840pt;}
.ws64{word-spacing:6.734400pt;}
.wsc0{word-spacing:7.261440pt;}
.wsc1{word-spacing:7.320000pt;}
.ws8e{word-spacing:7.437120pt;}
.ws42{word-spacing:7.554240pt;}
.ws40{word-spacing:7.612800pt;}
.ws41{word-spacing:7.671360pt;}
.wsab{word-spacing:7.905600pt;}
.wsa3{word-spacing:7.964160pt;}
.ws75{word-spacing:8.081280pt;}
.ws2e{word-spacing:8.198400pt;}
.ws2f{word-spacing:8.256960pt;}
.ws15{word-spacing:8.549760pt;}
.ws3c{word-spacing:8.608320pt;}
.wsdb{word-spacing:8.784000pt;}
.ws63{word-spacing:8.842560pt;}
.wsc8{word-spacing:8.901120pt;}
.wsdc{word-spacing:9.193920pt;}
.ws4d{word-spacing:9.486720pt;}
.ws4f{word-spacing:9.545280pt;}
.ws4e{word-spacing:9.603840pt;}
.wsb9{word-spacing:9.662400pt;}
.wse7{word-spacing:9.720960pt;}
.ws2a{word-spacing:9.779520pt;}
.ws29{word-spacing:9.838080pt;}
.wsb8{word-spacing:9.896640pt;}
.wsec{word-spacing:10.130880pt;}
.wsed{word-spacing:10.189440pt;}
.ws58{word-spacing:10.306560pt;}
.ws59{word-spacing:10.423680pt;}
.ws56{word-spacing:10.482240pt;}
.wse4{word-spacing:10.775040pt;}
.ws57{word-spacing:10.892160pt;}
.ws6c{word-spacing:11.067840pt;}
.ws3b{word-spacing:11.477760pt;}
.ws8a{word-spacing:11.712000pt;}
.ws89{word-spacing:11.770560pt;}
.wsd2{word-spacing:12.121920pt;}
.wsb3{word-spacing:12.356160pt;}
.wsae{word-spacing:12.414720pt;}
.wsbd{word-spacing:12.707520pt;}
.ws31{word-spacing:12.766080pt;}
.wsd1{word-spacing:13.000320pt;}
.ws3e{word-spacing:13.644480pt;}
.ws3d{word-spacing:13.703040pt;}
.wsea{word-spacing:13.995840pt;}
.ws8f{word-spacing:14.347200pt;}
.wsd9{word-spacing:14.581440pt;}
.ws94{word-spacing:14.815680pt;}
.ws93{word-spacing:14.991360pt;}
.ws9f{word-spacing:15.576960pt;}
.ws9e{word-spacing:15.635520pt;}
.ws86{word-spacing:15.752640pt;}
.ws85{word-spacing:15.869760pt;}
.ws6b{word-spacing:15.928320pt;}
.wse8{word-spacing:16.104000pt;}
.wsf3{word-spacing:16.221120pt;}
.ws6a{word-spacing:16.279680pt;}
.wsf0{word-spacing:16.396800pt;}
.wsf2{word-spacing:16.513920pt;}
.wsef{word-spacing:16.572480pt;}
.wsf1{word-spacing:16.631040pt;}
.wscd{word-spacing:16.865280pt;}
.wscc{word-spacing:16.923840pt;}
.ws83{word-spacing:17.392320pt;}
.wsb1{word-spacing:17.509440pt;}
.ws84{word-spacing:17.568000pt;}
.ws17{word-spacing:17.802240pt;}
.ws4b{word-spacing:18.153600pt;}
.ws4c{word-spacing:18.212160pt;}
.wsa2{word-spacing:18.739200pt;}
.ws1b{word-spacing:19.149120pt;}
.ws76{word-spacing:19.383360pt;}
.ws24{word-spacing:20.378880pt;}
.ws25{word-spacing:20.496000pt;}
.wse2{word-spacing:21.374400pt;}
.ws95{word-spacing:21.842880pt;}
.ws97{word-spacing:22.018560pt;}
.wsc3{word-spacing:22.311360pt;}
.ws96{word-spacing:22.369920pt;}
.ws13{word-spacing:22.604160pt;}
.wsc4{word-spacing:22.662720pt;}
.ws18{word-spacing:23.775360pt;}
.wse1{word-spacing:24.536640pt;}
.wse6{word-spacing:25.180800pt;}
.ws74{word-spacing:25.239360pt;}
.wsda{word-spacing:26.761920pt;}
.wsdd{word-spacing:26.820480pt;}
.wsde{word-spacing:26.879040pt;}
.ws9d{word-spacing:27.698880pt;}
.ws9b{word-spacing:27.757440pt;}
.ws9c{word-spacing:27.933120pt;}
.ws7f{word-spacing:33.379200pt;}
.ws7e{word-spacing:33.496320pt;}
.ws16{word-spacing:64.240320pt;}
._d{margin-left:-11.946240pt;}
._a{margin-left:-10.574400pt;}
._8{margin-left:-7.947840pt;}
._9{margin-left:-6.148800pt;}
._7{margin-left:-4.626240pt;}
._6{margin-left:-2.819520pt;}
._f{margin-left:-1.907520pt;}
._4{margin-left:-0.890112pt;}
._0{width:0.912000pt;}
._c{width:2.308800pt;}
._16{width:3.493120pt;}
._11{width:4.484160pt;}
._1e{width:5.403840pt;}
._12{width:6.474240pt;}
._10{width:7.487040pt;}
._e{width:8.582400pt;}
._13{width:10.540800pt;}
._1d{width:11.728320pt;}
._17{width:15.171648pt;}
._15{width:16.162560pt;}
._1b{width:18.203520pt;}
._1c{width:22.946880pt;}
._1a{width:43.510080pt;}
._18{width:45.676800pt;}
._19{width:47.667840pt;}
._1{width:57.505920pt;}
._5{width:74.488320pt;}
._b{width:88.835520pt;}
._2{width:175.562880pt;}
._14{width:754.779840pt;}
._3{width:757.152000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fsb{font-size:42.560000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs1{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fs6{font-size:69.440000pt;}
.fs2{font-size:85.440000pt;}
.fsa{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y15c{bottom:4.800000pt;}
.y23{bottom:19.920000pt;}
.y3e{bottom:20.560000pt;}
.y2a{bottom:40.480000pt;}
.y15a{bottom:40.560000pt;}
.y160{bottom:40.960000pt;}
.y15d{bottom:41.040000pt;}
.y45{bottom:49.840000pt;}
.y3{bottom:49.920000pt;}
.y31{bottom:61.040000pt;}
.y44{bottom:64.240000pt;}
.y2{bottom:64.320000pt;}
.y43{bottom:78.880000pt;}
.y1{bottom:78.960000pt;}
.y30{bottom:81.680000pt;}
.y2f{bottom:102.240000pt;}
.y22a{bottom:131.020720pt;}
.y80{bottom:132.480000pt;}
.y1d8{bottom:138.453680pt;}
.ydf{bottom:140.880000pt;}
.y40{bottom:142.080000pt;}
.y229{bottom:148.940080pt;}
.y25a{bottom:149.918320pt;}
.yde{bottom:152.880000pt;}
.y7f{bottom:153.040000pt;}
.y11b{bottom:161.536240pt;}
.y194{bottom:165.698240pt;}
.y228{bottom:166.786240pt;}
.y259{bottom:167.837680pt;}
.y7e{bottom:173.680000pt;}
.y1d7{bottom:175.009760pt;}
.y3f{bottom:176.640000pt;}
.y11a{bottom:182.090800pt;}
.y106{bottom:183.165840pt;}
.y227{bottom:184.705600pt;}
.y258{bottom:185.757040pt;}
.y7d{bottom:194.240000pt;}
.y156{bottom:195.686080pt;}
.y1fb{bottom:198.325680pt;}
.y193{bottom:199.619120pt;}
.y105{bottom:201.085200pt;}
.y226{bottom:202.624960pt;}
.y119{bottom:202.733200pt;}
.y257{bottom:203.676400pt;}
.y3d{bottom:211.280000pt;}
.y1d6{bottom:211.565840pt;}
.y7c{bottom:214.800000pt;}
.ydd{bottom:215.238480pt;}
.y155{bottom:216.240640pt;}
.y104{bottom:219.004560pt;}
.y192{bottom:220.261520pt;}
.y225{bottom:220.544320pt;}
.y256{bottom:221.595760pt;}
.y1b2{bottom:223.287040pt;}
.y1d5{bottom:229.485200pt;}
.y7b{bottom:235.440000pt;}
.ydc{bottom:235.793040pt;}
.y1fa{bottom:235.848000pt;}
.y118{bottom:236.654080pt;}
.y103{bottom:236.850720pt;}
.y154{bottom:236.883040pt;}
.y224{bottom:238.390480pt;}
.y255{bottom:239.441920pt;}
.y191{bottom:240.816080pt;}
.yb5{bottom:243.438960pt;}
.y3c{bottom:245.840000pt;}
.y1b1{bottom:253.284400pt;}
.y1f9{bottom:253.767360pt;}
.y102{bottom:254.770080pt;}
.y7a{bottom:256.000000pt;}
.y223{bottom:256.309840pt;}
.ydb{bottom:256.435440pt;}
.y117{bottom:257.208640pt;}
.y254{bottom:257.361280pt;}
.y153{bottom:257.437600pt;}
.y137{bottom:257.873840pt;}
.yb4{bottom:261.358320pt;}
.y190{bottom:261.370640pt;}
.y1d4{bottom:266.041280pt;}
.y1f8{bottom:271.686720pt;}
.y222{bottom:274.229200pt;}
.y253{bottom:275.280640pt;}
.y101{bottom:275.324640pt;}
.y79{bottom:276.560000pt;}
.yda{bottom:276.990000pt;}
.y152{bottom:278.080000pt;}
.yb3{bottom:279.277680pt;}
.y3b{bottom:280.400000pt;}
.y1b0{bottom:283.281760pt;}
.y1d3{bottom:283.960640pt;}
.y116{bottom:287.206000pt;}
.y136{bottom:291.794720pt;}
.y221{bottom:292.148560pt;}
.y252{bottom:293.200000pt;}
.y100{bottom:293.244000pt;}
.y18f{bottom:295.291520pt;}
.yb2{bottom:297.123840pt;}
.y78{bottom:297.200000pt;}
.yd9{bottom:297.544560pt;}
.y151{bottom:298.668480pt;}
.y1d2{bottom:301.880000pt;}
.y1f7{bottom:302.884560pt;}
.y220{bottom:310.067920pt;}
.yff{bottom:311.163360pt;}
.y251{bottom:311.840000pt;}
.y135{bottom:312.349280pt;}
.y1af{bottom:313.279120pt;}
.y3a{bottom:315.040000pt;}
.yb1{bottom:315.043200pt;}
.y18e{bottom:315.933920pt;}
.y77{bottom:317.760000pt;}
.yd8{bottom:318.186960pt;}
.y150{bottom:319.223040pt;}
.y1d1{bottom:319.726160pt;}
.y1f6{bottom:320.803920pt;}
.y21f{bottom:327.914080pt;}
.yfe{bottom:329.082720pt;}
.y250{bottom:332.240640pt;}
.yb0{bottom:332.962560pt;}
.y18d{bottom:336.488480pt;}
.y1d0{bottom:337.733360pt;}
.y76{bottom:338.400000pt;}
.yd7{bottom:338.741520pt;}
.y14f{bottom:339.865440pt;}
.y21e{bottom:345.833440pt;}
.y134{bottom:346.270160pt;}
.yfd{bottom:347.002080pt;}
.y1ae{bottom:347.200000pt;}
.y39{bottom:349.600000pt;}
.y24f{bottom:350.160000pt;}
.yaf{bottom:350.881920pt;}
.y75{bottom:356.320000pt;}
.y18c{bottom:357.043040pt;}
.y1f5{bottom:357.360000pt;}
.y14e{bottom:360.420000pt;}
.y17d{bottom:361.454560pt;}
.y21d{bottom:363.752800pt;}
.yfc{bottom:364.921440pt;}
.y133{bottom:366.824720pt;}
.y24e{bottom:368.074480pt;}
.yae{bottom:368.801280pt;}
.y74{bottom:374.181840pt;}
.y1cf{bottom:374.216240pt;}
.y1f4{bottom:375.280000pt;}
.yd6{bottom:375.385440pt;}
.y18b{bottom:377.685440pt;}
.y14d{bottom:380.974560pt;}
.y1ad{bottom:381.120000pt;}
.y21c{bottom:381.672160pt;}
.y17c{bottom:382.009120pt;}
.yfb{bottom:382.767600pt;}
.y38{bottom:384.160000pt;}
.y24d{bottom:385.920640pt;}
.yad{bottom:386.647440pt;}
.y73{bottom:392.101200pt;}
.y1f3{bottom:393.200000pt;}
.yd5{bottom:395.940000pt;}
.y18a{bottom:398.240000pt;}
.y21b{bottom:399.591520pt;}
.y132{bottom:400.745600pt;}
.y14c{bottom:401.616960pt;}
.y1ac{bottom:401.678240pt;}
.y17b{bottom:402.651520pt;}
.y24c{bottom:403.835760pt;}
.yac{bottom:404.566800pt;}
.y1ce{bottom:408.137120pt;}
.y72{bottom:410.020560pt;}
.y1f2{bottom:411.120000pt;}
.y20{bottom:413.992000pt;}
.yd4{bottom:416.494560pt;}
.yfa{bottom:416.688480pt;}
.y21a{bottom:417.437680pt;}
.y36{bottom:418.800000pt;}
.y189{bottom:419.520000pt;}
.y131{bottom:421.388000pt;}
.y24b{bottom:421.755120pt;}
.y14b{bottom:422.171520pt;}
.yab{bottom:422.486160pt;}
.y17a{bottom:423.206080pt;}
.y71{bottom:427.939920pt;}
.y1f{bottom:428.632000pt;}
.y1cd{bottom:428.779520pt;}
.y1f1{bottom:428.960000pt;}
.y219{bottom:435.357040pt;}
.y1ab{bottom:435.599120pt;}
.yd3{bottom:437.136960pt;}
.yf9{bottom:437.330880pt;}
.y37{bottom:438.720000pt;}
.y24a{bottom:439.674480pt;}
.yaa{bottom:440.405520pt;}
.y14a{bottom:442.726080pt;}
.y1e{bottom:443.356000pt;}
.y179{bottom:443.848480pt;}
.y70{bottom:445.859280pt;}
.y1f0{bottom:446.880000pt;}
.y1cc{bottom:449.334080pt;}
.y218{bottom:453.276400pt;}
.y188{bottom:454.656080pt;}
.y130{bottom:455.308880pt;}
.y249{bottom:457.593840pt;}
.yd2{bottom:457.691520pt;}
.yf8{bottom:457.885440pt;}
.y1d{bottom:457.996000pt;}
.ya9{bottom:458.324880pt;}
.y149{bottom:463.368480pt;}
.y178{bottom:464.403040pt;}
.y1ef{bottom:464.800000pt;}
.y6f{bottom:465.140160pt;}
.y1aa{bottom:469.520000pt;}
.y1cb{bottom:469.888640pt;}
.y217{bottom:471.195760pt;}
.y1c{bottom:472.636000pt;}
.y35{bottom:473.920000pt;}
.y187{bottom:475.210640pt;}
.y248{bottom:475.422000pt;}
.y12f{bottom:475.863440pt;}
.ya8{bottom:476.171040pt;}
.yd1{bottom:478.246080pt;}
.yf7{bottom:478.440000pt;}
.y1ee{bottom:482.720000pt;}
.y148{bottom:483.923040pt;}
.y6e{bottom:484.421040pt;}
.y177{bottom:484.957600pt;}
.y1b{bottom:487.276000pt;}
.y216{bottom:489.115120pt;}
.y1ca{bottom:490.531040pt;}
.y247{bottom:493.341360pt;}
.ya7{bottom:494.090400pt;}
.y12e{bottom:496.505840pt;}
.yd0{bottom:498.888480pt;}
.yf6{bottom:499.082400pt;}
.y1a{bottom:501.916000pt;}
.y1a9{bottom:503.440000pt;}
.y6d{bottom:503.775120pt;}
.y147{bottom:504.565440pt;}
.y176{bottom:505.600000pt;}
.y215{bottom:506.961280pt;}
.y34{bottom:508.560000pt;}
.y186{bottom:509.131520pt;}
.y246{bottom:511.260720pt;}
.ya6{bottom:512.009760pt;}
.y19{bottom:516.556000pt;}
.y12d{bottom:517.060400pt;}
.y1ed{bottom:519.307840pt;}
.ycf{bottom:519.443040pt;}
.yf5{bottom:519.636960pt;}
.y6c{bottom:523.056000pt;}
.y1c9{bottom:524.451920pt;}
.y214{bottom:524.880640pt;}
.y146{bottom:525.120000pt;}
.y245{bottom:529.180080pt;}
.y185{bottom:529.773920pt;}
.ya5{bottom:529.929120pt;}
.y18{bottom:531.196000pt;}
.y1a8{bottom:537.414800pt;}
.y12c{bottom:537.614960pt;}
.y175{bottom:539.520000pt;}
.yce{bottom:540.085440pt;}
.yf4{bottom:540.191520pt;}
.y6b{bottom:542.410080pt;}
.y213{bottom:542.800000pt;}
.y17{bottom:545.836000pt;}
.y145{bottom:546.960000pt;}
.y244{bottom:547.099440pt;}
.ya4{bottom:547.848480pt;}
.y184{bottom:550.328480pt;}
.y1ec{bottom:555.863920pt;}
.y1c8{bottom:558.372800pt;}
.y16{bottom:560.476000pt;}
.ycd{bottom:560.640000pt;}
.y212{bottom:560.720640pt;}
.yf3{bottom:560.833920pt;}
.y6a{bottom:561.690960pt;}
.y33{bottom:563.040000pt;}
.y243{bottom:564.945600pt;}
.ya3{bottom:565.694640pt;}
.y183{bottom:570.883040pt;}
.y1a7{bottom:571.335680pt;}
.y12b{bottom:571.535840pt;}
.y174{bottom:573.463680pt;}
.y15{bottom:575.200000pt;}
.y2e{bottom:577.760000pt;}
.y211{bottom:578.640000pt;}
.y1c7{bottom:578.927360pt;}
.y144{bottom:579.435600pt;}
.y69{bottom:581.045040pt;}
.ycc{bottom:581.251280pt;}
.yf2{bottom:581.388480pt;}
.y242{bottom:582.864960pt;}
.ya2{bottom:583.614000pt;}
.y159{bottom:586.240000pt;}
.y14{bottom:590.544480pt;}
.y182{bottom:591.525440pt;}
.y12a{bottom:592.178240pt;}
.y1eb{bottom:592.420000pt;}
.y210{bottom:596.471760pt;}
.y32{bottom:597.680000pt;}
.y1c6{bottom:599.481920pt;}
.y68{bottom:600.325920pt;}
.ycb{bottom:600.605360pt;}
.y241{bottom:600.784320pt;}
.ya1{bottom:601.533360pt;}
.yf1{bottom:601.943040pt;}
.y91{bottom:602.558160pt;}
.y1a6{bottom:605.329760pt;}
.y173{bottom:607.384560pt;}
.y13{bottom:608.390640pt;}
.y15b{bottom:608.960000pt;}
.y143{bottom:609.432960pt;}
.y1ea{bottom:610.339360pt;}
.y181{bottom:612.080000pt;}
.y129{bottom:612.732800pt;}
.y20f{bottom:614.391120pt;}
.y115{bottom:618.084640pt;}
.y240{bottom:618.703680pt;}
.ya0{bottom:619.452720pt;}
.y67{bottom:619.680000pt;}
.yca{bottom:619.886240pt;}
.y1c5{bottom:620.124320pt;}
.y90{bottom:621.839040pt;}
.yf0{bottom:622.585440pt;}
.y1a5{bottom:625.884320pt;}
.y12{bottom:626.310000pt;}
.y172{bottom:627.939120pt;}
.y1e9{bottom:628.258720pt;}
.y20e{bottom:632.310480pt;}
.y128{bottom:633.287360pt;}
.y23f{bottom:636.549840pt;}
.y9f{bottom:637.372080pt;}
.y66{bottom:638.960000pt;}
.yc9{bottom:639.240320pt;}
.y142{bottom:639.430320pt;}
.y1c4{bottom:640.678880pt;}
.yef{bottom:643.140000pt;}
.y11{bottom:644.229360pt;}
.y114{bottom:644.963680pt;}
.y180{bottom:646.000000pt;}
.y1a4{bottom:646.438880pt;}
.y171{bottom:648.493680pt;}
.y20d{bottom:650.229840pt;}
.y23e{bottom:654.469200pt;}
.y9e{bottom:655.218240pt;}
.y8f{bottom:655.759920pt;}
.y65{bottom:656.875360pt;}
.yc8{bottom:658.521200pt;}
.y1e8{bottom:659.456560pt;}
.y1c3{bottom:661.321280pt;}
.y10{bottom:662.148720pt;}
.yee{bottom:663.782400pt;}
.y127{bottom:667.208240pt;}
.y20c{bottom:668.149200pt;}
.y170{bottom:669.136080pt;}
.y113{bottom:671.769520pt;}
.y23d{bottom:672.388560pt;}
.y141{bottom:673.351200pt;}
.y64{bottom:674.794720pt;}
.y1e7{bottom:677.375920pt;}
.yc7{bottom:677.875280pt;}
.y17f{bottom:679.922640pt;}
.yf{bottom:680.068080pt;}
.y1a3{bottom:680.359760pt;}
.y1c2{bottom:681.875840pt;}
.yed{bottom:684.336960pt;}
.y20b{bottom:685.995360pt;}
.y126{bottom:687.850640pt;}
.y9d{bottom:689.139120pt;}
.y16f{bottom:689.690640pt;}
.y8e{bottom:689.754000pt;}
.y23c{bottom:690.307920pt;}
.y63{bottom:692.714080pt;}
.y2d{bottom:694.640000pt;}
.y1e6{bottom:695.295280pt;}
.y52{bottom:696.240000pt;}
.yc6{bottom:697.156160pt;}
.ye{bottom:697.914240pt;}
.y112{bottom:698.648560pt;}
.y1a2{bottom:701.002160pt;}
.y1c1{bottom:702.430400pt;}
.y20a{bottom:703.914720pt;}
.yec{bottom:704.891520pt;}
.y140{bottom:707.272080pt;}
.y23b{bottom:708.227280pt;}
.y125{bottom:708.405200pt;}
.y9c{bottom:709.781520pt;}
.y17e{bottom:709.920000pt;}
.y16e{bottom:710.333040pt;}
.y62{bottom:710.633440pt;}
.yd{bottom:715.833600pt;}
.yc5{bottom:716.510240pt;}
.y1a1{bottom:721.556720pt;}
.y51{bottom:721.636400pt;}
.y209{bottom:721.834080pt;}
.y1c0{bottom:723.072800pt;}
.y8d{bottom:723.674880pt;}
.y111{bottom:725.527600pt;}
.yeb{bottom:725.533920pt;}
.y23a{bottom:726.073440pt;}
.y1e5{bottom:726.493120pt;}
.y61{bottom:728.552800pt;}
.y124{bottom:729.047600pt;}
.y2c{bottom:729.280000pt;}
.y15f{bottom:729.840000pt;}
.y16d{bottom:730.887600pt;}
.yc{bottom:733.752960pt;}
.yc4{bottom:735.791120pt;}
.y208{bottom:739.753440pt;}
.y13f{bottom:741.192960pt;}
.y1a0{bottom:742.111280pt;}
.y1bf{bottom:743.627360pt;}
.y9b{bottom:743.702400pt;}
.y239{bottom:743.992800pt;}
.y1e4{bottom:744.412480pt;}
.yea{bottom:746.088480pt;}
.y60{bottom:746.398960pt;}
.y50{bottom:748.910720pt;}
.y123{bottom:749.602160pt;}
.y15e{bottom:749.680000pt;}
.y161{bottom:750.240000pt;}
.yc3{bottom:755.145200pt;}
.y8c{bottom:757.595760pt;}
.y207{bottom:757.672800pt;}
.y110{bottom:759.448480pt;}
.y238{bottom:761.912160pt;}
.y1e3{bottom:762.331840pt;}
.y29{bottom:763.840000pt;}
.y1be{bottom:764.181920pt;}
.y9a{bottom:764.256960pt;}
.y5f{bottom:764.318320pt;}
.y16c{bottom:764.808480pt;}
.yb{bottom:764.950800pt;}
.ye9{bottom:766.643040pt;}
.y157{bottom:770.240000pt;}
.y19f{bottom:772.108640pt;}
.yc2{bottom:774.426080pt;}
.y13e{bottom:775.113840pt;}
.y8b{bottom:775.515120pt;}
.y206{bottom:775.518960pt;}
.y4f{bottom:776.111840pt;}
.y237{bottom:779.831520pt;}
.y10f{bottom:780.003040pt;}
.y5e{bottom:782.237680pt;}
.y122{bottom:783.523040pt;}
.y2b{bottom:783.760000pt;}
.y99{bottom:784.811520pt;}
.y1bd{bottom:784.824320pt;}
.y16b{bottom:785.363040pt;}
.ye8{bottom:787.285440pt;}
.y19e{bottom:791.462720pt;}
.y8a{bottom:793.361280pt;}
.y205{bottom:793.438320pt;}
.y1e2{bottom:793.529680pt;}
.yc1{bottom:793.780160pt;}
.ya{bottom:796.236480pt;}
.y236{bottom:797.750880pt;}
.y5d{bottom:800.157040pt;}
.y10e{bottom:800.557600pt;}
.y4e{bottom:803.386160pt;}
.y121{bottom:804.077600pt;}
.y1bc{bottom:805.378880pt;}
.y98{bottom:805.453920pt;}
.y16a{bottom:806.005440pt;}
.ye7{bottom:807.840000pt;}
.y13d{bottom:809.034720pt;}
.y19d{bottom:810.743600pt;}
.y89{bottom:811.280640pt;}
.y204{bottom:811.357680pt;}
.y1e1{bottom:811.449040pt;}
.yc0{bottom:813.061040pt;}
.y235{bottom:815.597040pt;}
.y5c{bottom:818.076400pt;}
.y28{bottom:819.040000pt;}
.y10d{bottom:821.200000pt;}
.y120{bottom:824.720000pt;}
.y1bb{bottom:825.933440pt;}
.y97{bottom:826.008480pt;}
.y169{bottom:826.560000pt;}
.y9{bottom:827.434320pt;}
.y88{bottom:829.200000pt;}
.y203{bottom:829.277040pt;}
.y1e0{bottom:829.368400pt;}
.y4d{bottom:830.660480pt;}
.ybf{bottom:832.415120pt;}
.y234{bottom:833.516400pt;}
.y5b{bottom:835.922560pt;}
.y19c{bottom:840.740960pt;}
.ye6{bottom:841.760000pt;}
.y13c{bottom:842.955600pt;}
.y11f{bottom:846.560000pt;}
.y96{bottom:846.563040pt;}
.y1ba{bottom:846.575840pt;}
.y202{bottom:847.196400pt;}
.y233{bottom:851.435760pt;}
.ybe{bottom:851.696000pt;}
.y27{bottom:853.600000pt;}
.y5a{bottom:853.841920pt;}
.y10c{bottom:855.120000pt;}
.y4c{bottom:857.861600pt;}
.y8{bottom:858.720000pt;}
.y19b{bottom:860.095040pt;}
.y168{bottom:860.480000pt;}
.y1df{bottom:860.566240pt;}
.y201{bottom:865.042560pt;}
.y1b9{bottom:867.130400pt;}
.y95{bottom:867.205440pt;}
.y87{bottom:868.400000pt;}
.y232{bottom:869.355120pt;}
.ybd{bottom:871.050080pt;}
.y59{bottom:871.761280pt;}
.y7{bottom:875.200000pt;}
.ye5{bottom:875.685200pt;}
.y13b{bottom:876.876480pt;}
.y1de{bottom:878.485600pt;}
.y19a{bottom:879.375920pt;}
.y200{bottom:882.961920pt;}
.y11e{bottom:882.966720pt;}
.y4b{bottom:885.135920pt;}
.y231{bottom:887.274480pt;}
.y94{bottom:887.760000pt;}
.y1b8{bottom:887.772800pt;}
.y86{bottom:889.040000pt;}
.y10b{bottom:889.056960pt;}
.y58{bottom:889.680640pt;}
.ybc{bottom:890.330960pt;}
.y6{bottom:893.040000pt;}
.y167{bottom:894.407600pt;}
.ye4{bottom:896.327600pt;}
.y1dd{bottom:896.404960pt;}
.y199{bottom:898.730000pt;}
.y1ff{bottom:900.881280pt;}
.y230{bottom:905.120640pt;}
.y57{bottom:907.600000pt;}
.y26{bottom:908.160000pt;}
.y1b7{bottom:908.327360pt;}
.y85{bottom:909.600000pt;}
.y10a{bottom:909.611520pt;}
.ybb{bottom:909.685040pt;}
.y13a{bottom:910.797360pt;}
.y4a{bottom:912.410240pt;}
.y42{bottom:915.124000pt;}
.y5{bottom:915.836000pt;}
.y11d{bottom:916.887600pt;}
.y1fe{bottom:918.800640pt;}
.y25{bottom:922.800000pt;}
.y22f{bottom:923.040640pt;}
.y56{bottom:925.440000pt;}
.y1dc{bottom:927.602800pt;}
.y4{bottom:927.920000pt;}
.y166{bottom:928.328480pt;}
.y158{bottom:928.400000pt;}
.y1b6{bottom:928.881920pt;}
.yba{bottom:928.965920pt;}
.y84{bottom:930.240000pt;}
.ye3{bottom:930.248480pt;}
.y109{bottom:930.253920pt;}
.y198{bottom:932.650880pt;}
.y1fd{bottom:936.720000pt;}
.y11c{bottom:937.442160pt;}
.y49{bottom:939.684560pt;}
.y22e{bottom:940.955760pt;}
.y55{bottom:943.359120pt;}
.y139{bottom:944.718240pt;}
.y41{bottom:945.280000pt;}
.y1db{bottom:945.522160pt;}
.y93{bottom:946.000000pt;}
.y1b5{bottom:946.801280pt;}
.yb9{bottom:948.320000pt;}
.y165{bottom:948.970880pt;}
.y83{bottom:950.800000pt;}
.ye2{bottom:950.803040pt;}
.y108{bottom:950.808480pt;}
.y197{bottom:953.205440pt;}
.y24{bottom:957.360000pt;}
.y22d{bottom:958.875120pt;}
.y1fc{bottom:960.316000pt;}
.y1b4{bottom:964.720640pt;}
.y48{bottom:966.885680pt;}
.yb8{bottom:967.597600pt;}
.y164{bottom:969.525440pt;}
.y92{bottom:969.680000pt;}
.ye1{bottom:971.357600pt;}
.y82{bottom:971.360000pt;}
.y107{bottom:971.363040pt;}
.y196{bottom:973.760000pt;}
.y1da{bottom:976.720000pt;}
.y22c{bottom:976.794480pt;}
.y54{bottom:977.280000pt;}
.y138{bottom:978.639120pt;}
.y1b3{bottom:982.640000pt;}
.yb7{bottom:988.240000pt;}
.y163{bottom:990.080000pt;}
.y22{bottom:992.000000pt;}
.ye0{bottom:992.005440pt;}
.y47{bottom:994.160000pt;}
.y1d9{bottom:994.640000pt;}
.y22b{bottom:994.640640pt;}
.y53{bottom:1000.880000pt;}
.y195{bottom:1006.240000pt;}
.yb6{bottom:1010.080000pt;}
.y162{bottom:1011.360000pt;}
.y46{bottom:1011.760000pt;}
.y81{bottom:1012.560000pt;}
.y21{bottom:1069.226667pt;}
.h15{height:24.806250pt;}
.h2{height:32.812500pt;}
.ha{height:33.918667pt;}
.hb{height:33.920000pt;}
.h8{height:34.453125pt;}
.h3{height:34.500000pt;}
.h5{height:36.000000pt;}
.h10{height:36.703125pt;}
.h7{height:40.031250pt;}
.hf{height:40.195312pt;}
.h1d{height:40.574531pt;}
.h4{height:42.032812pt;}
.h1b{height:42.039852pt;}
.h1f{height:42.065773pt;}
.h12{height:42.090000pt;}
.h9{height:44.500000pt;}
.h17{height:45.823580pt;}
.h1a{height:46.000000pt;}
.h16{height:48.291678pt;}
.hc{height:48.313438pt;}
.h14{height:48.323037pt;}
.h23{height:49.842188pt;}
.h20{height:49.859148pt;}
.h22{height:49.864268pt;}
.h13{height:49.910000pt;}
.h21{height:49.914188pt;}
.hd{height:54.480000pt;}
.h19{height:55.440000pt;}
.h1c{height:58.406250pt;}
.h1e{height:61.303842pt;}
.h6{height:61.326562pt;}
.h11{height:61.410000pt;}
.h18{height:76.485937pt;}
.he{height:116.238667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:165.840000pt;}
.w9{width:169.760000pt;}
.w7{width:187.760000pt;}
.w5{width:188.000000pt;}
.wa{width:241.601333pt;}
.w2{width:292.001333pt;}
.w3{width:307.680000pt;}
.w6{width:411.680000pt;}
.w8{width:412.001333pt;}
.w4{width:600.401333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x18{left:17.600000pt;}
.x1b{left:21.680000pt;}
.x19{left:60.480000pt;}
.x5{left:96.000000pt;}
.x13{left:99.030480pt;}
.x1a{left:101.280000pt;}
.xb{left:103.520000pt;}
.xd{left:110.610720pt;}
.xf{left:119.994960pt;}
.x11{left:123.054720pt;}
.x21{left:124.386960pt;}
.xe{left:125.353200pt;}
.x1c{left:138.720000pt;}
.x10{left:144.004560pt;}
.x12{left:147.035040pt;}
.x1{left:178.320000pt;}
.x20{left:190.396080pt;}
.x2{left:277.848000pt;}
.x9{left:285.360000pt;}
.xa{left:292.160000pt;}
.x15{left:304.400000pt;}
.x17{left:317.200000pt;}
.x16{left:326.080000pt;}
.x4{left:336.960000pt;}
.x8{left:389.360000pt;}
.x3{left:393.528000pt;}
.xc{left:455.440000pt;}
.x1d{left:526.000000pt;}
.x1e{left:586.480000pt;}
.x6{left:593.333333pt;}
.x14{left:614.270640pt;}
.x1f{left:622.320000pt;}
}




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