
    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_2833195b19f203d267b83a71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_d20430a56faeb26446df2aaf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_17778fb39e27cb987b6a2920.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.697000;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_a75f366cce27ea340aa070ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_6e43180e0473d87e93f94d70.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_99cbe7d25ed133fb92335bee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_87542dafd66f091faa4527af.woff2')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_23b8f6e368c3379a83ac5124.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9b7bc3d801ca646287ed175f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2dd3c2346e6454231db21228.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.996000;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_bfdea36094124bc8bcf22330.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6797736d3e5db238907f04a4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_eda3259fdedd0527f291064f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fc23e288eadf94ab65c2816c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6561a4edccdc57835da042e3.woff2')format("woff");}.fff{font-family:fff;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-71.640000px;}
.v3{vertical-align:-16.170000px;}
.v7{vertical-align:-11.316000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.815122px;}
.v8{vertical-align:22.584000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:26.214000px;}
.v5{vertical-align:37.536000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.001050px;}
.ls1f{letter-spacing:0.001605px;}
.ls3{letter-spacing:0.004335px;}
.ls7{letter-spacing:2.988430px;}
.ls17{letter-spacing:10.163741px;}
.ls1a{letter-spacing:16.508700px;}
.ls11{letter-spacing:16.918321px;}
.lsc{letter-spacing:17.531330px;}
.lsb{letter-spacing:17.537330px;}
.ls1d{letter-spacing:19.315621px;}
.ls1c{letter-spacing:19.318321px;}
.ls16{letter-spacing:19.687621px;}
.ls9{letter-spacing:21.644700px;}
.ls18{letter-spacing:21.794700px;}
.ls8{letter-spacing:21.796321px;}
.ls6{letter-spacing:21.799621px;}
.ls10{letter-spacing:22.222321px;}
.ls14{letter-spacing:22.595969px;}
.lsf{letter-spacing:22.784700px;}
.ls1b{letter-spacing:23.192700px;}
.ls12{letter-spacing:23.584321px;}
.ls19{letter-spacing:24.234430px;}
.lsa{letter-spacing:24.786430px;}
.ls13{letter-spacing:25.044430px;}
.lse{letter-spacing:25.079330px;}
.ls5{letter-spacing:25.644430px;}
.ls0{letter-spacing:26.958430px;}
.ls21{letter-spacing:27.589621px;}
.ls22{letter-spacing:27.841621px;}
.ls20{letter-spacing:29.059621px;}
.ls15{letter-spacing:30.821969px;}
.ls4{letter-spacing:34.360335px;}
.ls2{letter-spacing:34.366335px;}
.ls1e{letter-spacing:49.117621px;}
.ls23{letter-spacing:51.139621px;}
.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;}
}
.ws0{word-spacing:-34.713000px;}
.wsc{word-spacing:-34.363665px;}
.wse2{word-spacing:-24.101616px;}
.ws1{word-spacing:-20.084736px;}
.ws38{word-spacing:-20.016000px;}
.wsb0{word-spacing:-19.286985px;}
.wsa{word-spacing:-18.327288px;}
.ws9d{word-spacing:-17.452995px;}
.ws9c{word-spacing:-17.446995px;}
.ws95{word-spacing:-16.513320px;}
.ws28{word-spacing:-16.203669px;}
.wse5{word-spacing:-15.592995px;}
.ws7e{word-spacing:-15.589320px;}
.wsb9{word-spacing:-15.201990px;}
.wsbb{word-spacing:-15.200985px;}
.wsda{word-spacing:-15.052995px;}
.wsae{word-spacing:-14.611320px;}
.ws50{word-spacing:-14.221980px;}
.wsc2{word-spacing:-13.862985px;}
.ws83{word-spacing:-13.788660px;}
.ws90{word-spacing:-13.698315px;}
.wsde{word-spacing:-13.588995px;}
.ws27{word-spacing:-13.257548px;}
.ws4d{word-spacing:-13.032660px;}
.wsc4{word-spacing:-12.829152px;}
.ws63{word-spacing:-12.573645px;}
.ws87{word-spacing:-12.572640px;}
.ws52{word-spacing:-12.571320px;}
.ws91{word-spacing:-12.570315px;}
.ws6e{word-spacing:-12.568995px;}
.wsdc{word-spacing:-12.568965px;}
.ws6f{word-spacing:-12.567990px;}
.ws48{word-spacing:-12.566325px;}
.ws7c{word-spacing:-12.565320px;}
.ws37{word-spacing:-12.564660px;}
.wsa1{word-spacing:-12.307320px;}
.ws9a{word-spacing:-12.136995px;}
.wsb7{word-spacing:-12.127320px;}
.wsb5{word-spacing:-12.124650px;}
.ws44{word-spacing:-11.916660px;}
.ws46{word-spacing:-11.914995px;}
.wsa4{word-spacing:-11.767320px;}
.ws6a{word-spacing:-11.523990px;}
.ws6c{word-spacing:-11.521320px;}
.wse8{word-spacing:-11.206995px;}
.wsd9{word-spacing:-11.170995px;}
.ws9e{word-spacing:-10.780995px;}
.ws7f{word-spacing:-10.735320px;}
.ws81{word-spacing:-10.731990px;}
.ws79{word-spacing:-9.052995px;}
.ws68{word-spacing:-8.797980px;}
.ws71{word-spacing:-8.443320px;}
.wse3{word-spacing:-8.008995px;}
.wsbf{word-spacing:-7.461824px;}
.wsc3{word-spacing:-7.396370px;}
.wse4{word-spacing:-7.270995px;}
.ws74{word-spacing:-5.902995px;}
.ws54{word-spacing:-5.049990px;}
.ws16{word-spacing:-4.755990px;}
.ws61{word-spacing:-3.796367px;}
.wsa9{word-spacing:-3.541320px;}
.wsaf{word-spacing:-3.272730px;}
.wsf3{word-spacing:-3.207275px;}
.wsf2{word-spacing:-3.141821px;}
.wscf{word-spacing:-1.898183px;}
.wsd6{word-spacing:-1.832729px;}
.wscd{word-spacing:-1.767274px;}
.ws9b{word-spacing:-1.440001px;}
.ws58{word-spacing:-1.112728px;}
.wsf1{word-spacing:-1.107651px;}
.wsf5{word-spacing:-0.981819px;}
.ws60{word-spacing:-0.720001px;}
.ws96{word-spacing:-0.523637px;}
.ws92{word-spacing:-0.458182px;}
.ws72{word-spacing:-0.327273px;}
.ws34{word-spacing:-0.196364px;}
.ws5e{word-spacing:-0.130909px;}
.ws10{word-spacing:-0.065455px;}
.ws32{word-spacing:-0.005655px;}
.ws1d{word-spacing:-0.005310px;}
.ws2e{word-spacing:-0.004995px;}
.ws22{word-spacing:-0.004650px;}
.ws31{word-spacing:-0.003990px;}
.ws2b{word-spacing:-0.003645px;}
.ws23{word-spacing:-0.003330px;}
.ws18{word-spacing:-0.002985px;}
.ws1e{word-spacing:-0.002325px;}
.ws20{word-spacing:-0.001980px;}
.ws17{word-spacing:-0.001320px;}
.ws21{word-spacing:-0.000975px;}
.ws25{word-spacing:-0.000660px;}
.ws1f{word-spacing:-0.000315px;}
.wscb{word-spacing:-0.000285px;}
.wsd{word-spacing:0.000000px;}
.ws11{word-spacing:0.000030px;}
.ws2d{word-spacing:0.000345px;}
.wsce{word-spacing:0.000690px;}
.ws24{word-spacing:0.001005px;}
.ws26{word-spacing:0.001350px;}
.ws2c{word-spacing:0.002010px;}
.ws12{word-spacing:0.003015px;}
.wsf4{word-spacing:0.065455px;}
.ws5d{word-spacing:0.261818px;}
.wsf6{word-spacing:0.327273px;}
.wse6{word-spacing:0.392728px;}
.ws7d{word-spacing:0.458182px;}
.wsb8{word-spacing:0.785455px;}
.wsba{word-spacing:0.833897px;}
.ws57{word-spacing:0.850910px;}
.ws8d{word-spacing:0.916364px;}
.ws5{word-spacing:0.981819px;}
.ws97{word-spacing:1.029677px;}
.ws93{word-spacing:1.095132px;}
.wsf8{word-spacing:1.112728px;}
.ws3f{word-spacing:1.178183px;}
.wsab{word-spacing:1.374547px;}
.wsad{word-spacing:1.467670px;}
.ws5c{word-spacing:1.570910px;}
.ws8{word-spacing:1.636365px;}
.ws4f{word-spacing:1.701820px;}
.ws51{word-spacing:1.832729px;}
.ws3b{word-spacing:1.898183px;}
.ws65{word-spacing:2.160002px;}
.ws82{word-spacing:2.225456px;}
.ws84{word-spacing:2.249897px;}
.ws8f{word-spacing:2.290911px;}
.wsdf{word-spacing:2.421820px;}
.wsdd{word-spacing:2.448936px;}
.ws2{word-spacing:2.487275px;}
.wsb3{word-spacing:2.749093px;}
.ws41{word-spacing:2.814548px;}
.ws94{word-spacing:2.866304px;}
.wsac{word-spacing:2.880002px;}
.ws4c{word-spacing:2.945457px;}
.ws4e{word-spacing:2.999897px;}
.wsdb{word-spacing:3.010912px;}
.wsbe{word-spacing:3.076366px;}
.wsfe{word-spacing:3.141821px;}
.wsfd{word-spacing:3.205220px;}
.wsc0{word-spacing:3.207275px;}
.ws39{word-spacing:3.272730px;}
.ws2f{word-spacing:3.299635px;}
.ws3a{word-spacing:3.338185px;}
.wsd2{word-spacing:3.371849px;}
.ws9{word-spacing:3.403639px;}
.ws47{word-spacing:3.463466px;}
.wse9{word-spacing:3.463576px;}
.ws49{word-spacing:3.467897px;}
.wsb{word-spacing:3.469094px;}
.wsca{word-spacing:3.470066px;}
.ws62{word-spacing:3.472738px;}
.wsc6{word-spacing:3.529972px;}
.wsa2{word-spacing:3.665458px;}
.wsa0{word-spacing:3.725891px;}
.ws64{word-spacing:3.730912px;}
.wsea{word-spacing:3.796367px;}
.ws99{word-spacing:3.861821px;}
.wsb4{word-spacing:3.905891px;}
.wsb6{word-spacing:3.927276px;}
.ws3c{word-spacing:3.992731px;}
.ws43{word-spacing:4.123640px;}
.ws45{word-spacing:4.127897px;}
.wsa6{word-spacing:4.217661px;}
.wsa3{word-spacing:4.254549px;}
.wsa5{word-spacing:4.264304px;}
.ws1c{word-spacing:4.320004px;}
.ws8c{word-spacing:4.450913px;}
.ws6d{word-spacing:4.516367px;}
.ws6b{word-spacing:4.517897px;}
.wsd8{word-spacing:4.778186px;}
.wse7{word-spacing:4.822273px;}
.wsd7{word-spacing:4.843640px;}
.wsff{word-spacing:4.973196px;}
.ws56{word-spacing:4.974550px;}
.ws85{word-spacing:5.040004px;}
.wsf0{word-spacing:5.105459px;}
.ws4b{word-spacing:5.170913px;}
.ws4{word-spacing:5.236368px;}
.ws1a{word-spacing:5.301823px;}
.ws80{word-spacing:5.303897px;}
.wsf9{word-spacing:5.365875px;}
.ws66{word-spacing:5.367277px;}
.ws8e{word-spacing:5.498186px;}
.ws7{word-spacing:5.629096px;}
.ws77{word-spacing:5.956369px;}
.ws76{word-spacing:6.021823px;}
.wsa7{word-spacing:6.033020px;}
.ws55{word-spacing:6.152732px;}
.ws4a{word-spacing:6.168883px;}
.ws59{word-spacing:6.610915px;}
.ws29{word-spacing:6.676369px;}
.wsef{word-spacing:6.807278px;}
.wsed{word-spacing:6.867957px;}
.ws7a{word-spacing:6.938188px;}
.ws78{word-spacing:7.003642px;}
.wsbc{word-spacing:7.069097px;}
.ws69{word-spacing:7.200006px;}
.ws67{word-spacing:7.235891px;}
.ws6{word-spacing:7.330915px;}
.ws19{word-spacing:7.402639px;}
.wsd0{word-spacing:7.461824px;}
.ws40{word-spacing:7.527279px;}
.ws35{word-spacing:7.592734px;}
.ws70{word-spacing:7.595891px;}
.ws36{word-spacing:7.658188px;}
.wsb1{word-spacing:7.789097px;}
.wsc5{word-spacing:7.854552px;}
.ws5f{word-spacing:7.985461px;}
.wsd3{word-spacing:8.050916px;}
.ws2a{word-spacing:8.443643px;}
.ws9f{word-spacing:8.574553px;}
.wsee{word-spacing:8.640007px;}
.ws3e{word-spacing:8.705462px;}
.wse1{word-spacing:8.770916px;}
.ws86{word-spacing:8.836371px;}
.ws7b{word-spacing:9.360008px;}
.wsb2{word-spacing:9.490917px;}
.wsf7{word-spacing:9.556372px;}
.ws30{word-spacing:9.621826px;}
.wsbd{word-spacing:9.949099px;}
.ws73{word-spacing:10.080008px;}
.ws75{word-spacing:10.145463px;}
.ws3{word-spacing:10.210918px;}
.wscc{word-spacing:10.276372px;}
.wsd5{word-spacing:10.407281px;}
.wse0{word-spacing:10.538191px;}
.wsfa{word-spacing:10.603645px;}
.wsfb{word-spacing:10.800009px;}
.ws1b{word-spacing:10.930918px;}
.ws53{word-spacing:10.996373px;}
.wsc1{word-spacing:11.061827px;}
.ws33{word-spacing:11.192737px;}
.ws15{word-spacing:11.258191px;}
.ws42{word-spacing:11.716373px;}
.wsec{word-spacing:11.781828px;}
.wsc9{word-spacing:11.847283px;}
.wsc7{word-spacing:11.912737px;}
.wsc8{word-spacing:11.938176px;}
.wseb{word-spacing:12.240010px;}
.wsaa{word-spacing:12.436374px;}
.wsa8{word-spacing:12.501829px;}
.ws5a{word-spacing:12.567283px;}
.wsfc{word-spacing:12.776140px;}
.wsd1{word-spacing:12.894556px;}
.ws3d{word-spacing:13.483648px;}
.ws5b{word-spacing:13.876375px;}
.ws8b{word-spacing:29.061842px;}
.ws14{word-spacing:34.363665px;}
.wsf{word-spacing:68.727330px;}
.ws98{word-spacing:103.090995px;}
.ws89{word-spacing:133.439177px;}
.ws8a{word-spacing:136.348207px;}
.wse{word-spacing:137.454660px;}
.ws88{word-spacing:528.118805px;}
.wsd4{word-spacing:574.048630px;}
.ws13{word-spacing:584.184345px;}
._0{margin-left:-11.405700px;}
._28{margin-left:-8.640000px;}
._3b{margin-left:-7.265461px;}
._5{margin-left:-6.259444px;}
._8{margin-left:-5.113525px;}
._1{margin-left:-3.843225px;}
._12{margin-left:-2.772745px;}
._4{margin-left:-1.767274px;}
._24{width:1.017721px;}
._3{width:2.151936px;}
._2{width:3.719250px;}
._39{width:4.972963px;}
._3f{width:7.223557px;}
._2d{width:16.190938px;}
._2f{width:17.583090px;}
._30{width:19.201850px;}
._13{width:20.774643px;}
._25{width:21.799621px;}
._37{width:23.006509px;}
._36{width:24.511276px;}
._3c{width:25.692475px;}
._2b{width:26.727426px;}
._7{width:27.826271px;}
._b{width:29.125414px;}
._11{width:30.310321px;}
._f{width:31.614572px;}
._10{width:32.728321px;}
._6{width:34.109912px;}
._a{width:35.526860px;}
._2c{width:37.112758px;}
._14{width:39.550710px;}
._9{width:41.277655px;}
._43{width:42.985076px;}
._38{width:44.443673px;}
._3a{width:46.169145px;}
._3e{width:47.674601px;}
._41{width:49.879824px;}
._26{width:52.270389px;}
._2a{width:53.858605px;}
._3d{width:54.881651px;}
._2e{width:56.487320px;}
._42{width:58.181945px;}
._29{width:59.593238px;}
._34{width:68.727330px;}
._20{width:71.731200px;}
._1c{width:81.605334px;}
._22{width:95.115571px;}
._d{width:103.090995px;}
._19{width:111.470285px;}
._1f{width:116.061082px;}
._21{width:119.288986px;}
._27{width:124.716000px;}
._23{width:126.103450px;}
._1e{width:129.708839px;}
._e{width:137.331817px;}
._18{width:142.003004px;}
._17{width:144.681830px;}
._44{width:149.637547px;}
._1d{width:159.864073px;}
._c{width:172.006623px;}
._16{width:174.378547px;}
._15{width:179.112806px;}
._1b{width:200.345242px;}
._32{width:206.179695px;}
._1a{width:230.939785px;}
._35{width:240.354057px;}
._33{width:274.904355px;}
._31{width:309.267390px;}
._40{width:583.992402px;}
.fc33{color:rgb(40,111,176);}
.fc2e{color:rgb(232,138,109);}
.fc2b{color:rgb(246,182,151);}
.fc2a{color:rgb(46,120,181);}
.fc29{color:rgb(62,140,191);}
.fc27{color:rgb(236,148,117);}
.fc26{color:rgb(50,124,183);}
.fc25{color:rgb(51,127,184);}
.fc30{color:rgb(169,208,228);}
.fc24{color:rgb(210,89,73);}
.fc2d{color:rgb(239,155,122);}
.fc21{color:rgb(224,120,96);}
.fc20{color:rgb(95,165,204);}
.fc1e{color:rgb(209,229,240);}
.fc1d{color:rgb(203,226,238);}
.fc34{color:rgb(255,0,0);}
.fcc{color:rgb(5,48,97);}
.fc2f{color:rgb(214,96,77);}
.fc7{color:rgb(33,120,76);}
.fc28{color:rgb(201,71,65);}
.fc6{color:rgb(173,0,0);}
.fc18{color:rgb(217,103,82);}
.fc19{color:rgb(208,85,72);}
.fc2c{color:rgb(233,141,112);}
.fc1a{color:rgb(135,190,218);}
.fc22{color:rgb(212,230,241);}
.fc3{color:rgb(0,59,79);}
.fc8{color:rgb(102,115,33);}
.fc4{color:transparent;}
.fc1f{color:rgb(205,78,68);}
.fc2{color:rgb(71,89,171);}
.fca{color:rgb(77,77,77);}
.fc1b{color:rgb(107,172,208);}
.fc13{color:rgb(230,134,106);}
.fc5{color:rgb(94,94,94);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc17{color:rgb(6,50,100);}
.fc32{color:rgb(226,124,98);}
.fcd{color:rgb(21,80,142);}
.fc31{color:rgb(58,136,189);}
.fc9{color:rgb(26,26,26);}
.fce{color:rgb(23,83,145);}
.fc1c{color:rgb(235,145,114);}
.fcf{color:rgb(221,114,90);}
.fc10{color:rgb(218,107,85);}
.fc23{color:rgb(30,96,164);}
.fcb{color:rgb(143,89,3);}
.fc14{color:rgb(229,131,104);}
.fc11{color:rgb(119,180,212);}
.fc12{color:rgb(99,167,206);}
.fc16{color:rgb(184,216,233);}
.fc15{color:rgb(162,205,226);}
.fsb{font-size:32.727600px;}
.fs3{font-size:45.818400px;}
.fs5{font-size:47.689020px;}
.fs6{font-size:58.286580px;}
.fs8{font-size:60.000000px;}
.fs2{font-size:65.454600px;}
.fs7{font-size:66.000000px;}
.fsa{font-size:68.884140px;}
.fs1{font-size:71.731200px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:86.077200px;}
.fsc{font-size:95.378040px;}
.fsd{font-size:105.975600px;}
.fs0{font-size:123.975000px;}
.fse{font-size:127.170720px;}
.y0{bottom:0.000000px;}
.y69{bottom:7.113612px;}
.y8a{bottom:10.465090px;}
.y21c{bottom:17.432986px;}
.y183{bottom:20.731477px;}
.yf1{bottom:34.110896px;}
.y87{bottom:36.958991px;}
.y107{bottom:48.765000px;}
.y11d{bottom:50.160000px;}
.y181{bottom:62.393135px;}
.yf2{bottom:65.069018px;}
.y21b{bottom:66.976579px;}
.ye0{bottom:70.592997px;}
.y108{bottom:71.340000px;}
.yde{bottom:71.917692px;}
.y88{bottom:74.288896px;}
.y180{bottom:79.097538px;}
.ye2{bottom:81.349520px;}
.y106{bottom:85.425000px;}
.ydc{bottom:86.582065px;}
.y11c{bottom:86.820000px;}
.y21a{bottom:94.874656px;}
.yf3{bottom:96.040388px;}
.y89{bottom:111.618801px;}
.y109{bottom:111.675000px;}
.y105{bottom:122.100000px;}
.y11b{bottom:123.495000px;}
.y13{bottom:138.829500px;}
.yed{bottom:151.399392px;}
.y10a{bottom:152.010000px;}
.y104{bottom:158.775000px;}
.y11a{bottom:160.170000px;}
.y217{bottom:162.301631px;}
.y70{bottom:173.654268px;}
.yee{bottom:175.998978px;}
.y7a{bottom:188.835272px;}
.y10b{bottom:192.345000px;}
.y17d{bottom:192.955074px;}
.y1f3{bottom:194.173793px;}
.y103{bottom:195.435000px;}
.y119{bottom:196.830000px;}
.y83{bottom:199.671277px;}
.yef{bottom:200.598564px;}
.y8d{bottom:209.500514px;}
.yf9{bottom:209.962500px;}
.y71{bottom:212.163151px;}
.y1e9{bottom:214.276500px;}
.y13f{bottom:214.672500px;}
.y8b{bottom:214.825788px;}
.y7b{bottom:215.170209px;}
.y1f7{bottom:216.060000px;}
.yd9{bottom:217.177500px;}
.y213{bottom:218.077500px;}
.y1cc{bottom:219.606000px;}
.y61{bottom:221.179500px;}
.y94{bottom:221.298000px;}
.yb6{bottom:223.413000px;}
.yf0{bottom:225.198150px;}
.y84{bottom:229.344445px;}
.yf8{bottom:230.286000px;}
.y102{bottom:232.110000px;}
.y8c{bottom:232.391244px;}
.y10c{bottom:232.680000px;}
.y118{bottom:233.505000px;}
.y3f{bottom:234.384000px;}
.y1e8{bottom:234.600000px;}
.y13e{bottom:234.996000px;}
.y18b{bottom:235.896000px;}
.y122{bottom:236.295000px;}
.y1f6{bottom:236.383500px;}
.yd8{bottom:237.502500px;}
.y1cb{bottom:239.931000px;}
.y60{bottom:241.504500px;}
.y7c{bottom:241.518392px;}
.y93{bottom:241.621500px;}
.y229{bottom:242.038500px;}
.ye8{bottom:242.816594px;}
.y182{bottom:243.624657px;}
.yb5{bottom:243.736500px;}
.y1aa{bottom:245.023500px;}
.y15a{bottom:246.208500px;}
.y218{bottom:249.532797px;}
.yf7{bottom:250.609500px;}
.y72{bottom:250.672035px;}
.y3e{bottom:254.709000px;}
.y2d{bottom:254.818500px;}
.y1e7{bottom:254.923500px;}
.y18a{bottom:256.219500px;}
.y121{bottom:256.618500px;}
.y240{bottom:256.900500px;}
.yd7{bottom:257.826000px;}
.y212{bottom:258.726000px;}
.y85{bottom:259.004366px;}
.y1ca{bottom:260.254500px;}
.y179{bottom:260.772000px;}
.y5f{bottom:261.828000px;}
.y228{bottom:262.362000px;}
.yb4{bottom:264.060000px;}
.y1a9{bottom:265.347000px;}
.y1f2{bottom:265.554304px;}
.ye9{bottom:265.800052px;}
.y159{bottom:266.532000px;}
.y7d{bottom:267.853329px;}
.y101{bottom:268.785000px;}
.y117{bottom:270.180000px;}
.y10d{bottom:273.015000px;}
.y12{bottom:274.569000px;}
.y1e6{bottom:275.248500px;}
.y13d{bottom:276.060000px;}
.y189{bottom:276.544500px;}
.y120{bottom:276.942000px;}
.y23f{bottom:277.225500px;}
.yd6{bottom:278.149500px;}
.y211{bottom:279.049500px;}
.y1c9{bottom:280.578000px;}
.y178{bottom:281.095500px;}
.y5e{bottom:282.151500px;}
.y92{bottom:282.268500px;}
.y227{bottom:282.685500px;}
.yb3{bottom:284.385000px;}
.y1a8{bottom:285.670500px;}
.y158{bottom:286.855500px;}
.y86{bottom:288.664287px;}
.yea{bottom:288.783510px;}
.y73{bottom:289.180919px;}
.yf6{bottom:291.675000px;}
.y1e5{bottom:295.572000px;}
.y188{bottom:296.868000px;}
.yd5{bottom:298.473000px;}
.y23e{bottom:299.043000px;}
.y1c8{bottom:300.901500px;}
.y177{bottom:301.419000px;}
.y5d{bottom:302.475000px;}
.y91{bottom:302.592000px;}
.y3d{bottom:304.084500px;}
.yb2{bottom:304.708500px;}
.y100{bottom:305.445000px;}
.y1a7{bottom:305.994000px;}
.y116{bottom:306.840000px;}
.y2c{bottom:311.451000px;}
.y17e{bottom:311.502029px;}
.y1f4{bottom:311.528523px;}
.yeb{bottom:311.766968px;}
.y10e{bottom:313.350000px;}
.y1e4{bottom:315.895500px;}
.y187{bottom:317.191500px;}
.y210{bottom:317.992500px;}
.yd4{bottom:318.796500px;}
.y23d{bottom:319.366500px;}
.y1c7{bottom:321.225000px;}
.y176{bottom:321.742500px;}
.y74{bottom:322.496998px;}
.y5c{bottom:322.798500px;}
.y11{bottom:322.987500px;}
.y226{bottom:323.332500px;}
.yb1{bottom:325.032000px;}
.y1a6{bottom:326.317500px;}
.y157{bottom:326.323500px;}
.y7e{bottom:331.200244px;}
.y11f{bottom:331.458000px;}
.y90{bottom:333.078000px;}
.yec{bottom:334.750427px;}
.y1e3{bottom:336.219000px;}
.y219{bottom:336.763963px;}
.y13c{bottom:338.296500px;}
.yd3{bottom:339.121500px;}
.y23c{bottom:341.185500px;}
.y175{bottom:342.067500px;}
.yff{bottom:342.120000px;}
.y75{bottom:342.592621px;}
.y5b{bottom:343.123500px;}
.y115{bottom:343.515000px;}
.y225{bottom:343.656000px;}
.y6d{bottom:344.195502px;}
.yb0{bottom:345.355500px;}
.y1a5{bottom:346.641000px;}
.y156{bottom:346.647000px;}
.y3c{bottom:348.753000px;}
.yf5{bottom:351.201000px;}
.y11e{bottom:351.781500px;}
.y8f{bottom:353.401500px;}
.y10f{bottom:353.685000px;}
.y2b{bottom:356.581500px;}
.ye4{bottom:357.177513px;}
.y13b{bottom:358.620000px;}
.y7f{bottom:358.912863px;}
.yd2{bottom:359.445000px;}
.y23b{bottom:361.509000px;}
.y1c6{bottom:361.873500px;}
.y76{bottom:362.701491px;}
.yaf{bottom:365.679000px;}
.y1a4{bottom:366.966000px;}
.y20f{bottom:369.813000px;}
.y10{bottom:371.406000px;}
.yf4{bottom:371.524500px;}
.y186{bottom:371.707500px;}
.y174{bottom:372.552000px;}
.yfe{bottom:378.795000px;}
.y13a{bottom:378.943500px;}
.ye5{bottom:379.021733px;}
.yd1{bottom:379.768500px;}
.y114{bottom:380.190000px;}
.y6e{bottom:380.810072px;}
.yfc{bottom:380.952000px;}
.y1c5{bottom:382.197000px;}
.y77{bottom:382.797114px;}
.y23a{bottom:383.326500px;}
.y5a{bottom:383.770500px;}
.y224{bottom:384.721500px;}
.yae{bottom:386.002500px;}
.y80{bottom:386.625483px;}
.y155{bottom:387.712500px;}
.y20e{bottom:390.136500px;}
.y185{bottom:392.031000px;}
.y1e2{bottom:392.851500px;}
.y173{bottom:392.877000px;}
.y110{bottom:394.035000px;}
.yd0{bottom:400.092000px;}
.ye3{bottom:400.694875px;}
.ye6{bottom:400.865954px;}
.y1c4{bottom:402.520500px;}
.y78{bottom:402.892737px;}
.y239{bottom:403.651500px;}
.y59{bottom:404.094000px;}
.y3b{bottom:404.940000px;}
.yad{bottom:406.327500px;}
.y8e{bottom:407.917500px;}
.y1a3{bottom:408.030000px;}
.y20d{bottom:410.460000px;}
.y172{bottom:413.200500px;}
.y2a{bottom:413.214000px;}
.y81{bottom:414.338102px;}
.yfd{bottom:415.455000px;}
.y113{bottom:416.850000px;}
.y6f{bottom:417.424641px;}
.y139{bottom:419.590500px;}
.yf{bottom:419.824500px;}
.ycf{bottom:420.415500px;}
.y17c{bottom:421.201781px;}
.ye7{bottom:422.710175px;}
.y1c3{bottom:422.844000px;}
.y79{bottom:423.001607px;}
.ye1{bottom:425.254721px;}
.y238{bottom:425.469000px;}
.yac{bottom:426.651000px;}
.y1f5{bottom:428.883253px;}
.y17f{bottom:430.035738px;}
.y1e1{bottom:433.498500px;}
.y171{bottom:433.524000px;}
.y111{bottom:434.220000px;}
.y6c{bottom:437.088625px;}
.y223{bottom:438.127500px;}
.y138{bottom:439.914000px;}
.y154{bottom:441.717000px;}
.y82{bottom:442.050722px;}
.y1c2{bottom:443.169000px;}
.y58{bottom:444.742500px;}
.y237{bottom:445.792500px;}
.y112{bottom:446.295000px;}
.y21d{bottom:446.806377px;}
.yab{bottom:446.974500px;}
.y20c{bottom:449.403000px;}
.y3a{bottom:449.608500px;}
.y170{bottom:453.847500px;}
.y184{bottom:457.271467px;}
.y29{bottom:458.343000px;}
.y222{bottom:458.452500px;}
.yce{bottom:461.064000px;}
.y1a2{bottom:462.034500px;}
.y153{bottom:462.040500px;}
.y1c1{bottom:463.492500px;}
.y57{bottom:465.066000px;}
.y236{bottom:466.116000px;}
.yaa{bottom:467.298000px;}
.ye{bottom:468.243000px;}
.y20b{bottom:469.726500px;}
.y28{bottom:478.666500px;}
.y221{bottom:478.776000px;}
.ycd{bottom:481.387500px;}
.y1e0{bottom:481.917000px;}
.y1a1{bottom:482.359500px;}
.y152{bottom:482.365500px;}
.y1c0{bottom:483.816000px;}
.y16f{bottom:484.333500px;}
.y56{bottom:485.389500px;}
.ya9{bottom:487.621500px;}
.y137{bottom:492.079500px;}
.y39{bottom:497.565000px;}
.y27{bottom:498.991500px;}
.y220{bottom:499.099500px;}
.y20a{bottom:500.212500px;}
.ycc{bottom:501.711000px;}
.y1df{bottom:502.240500px;}
.y1a0{bottom:502.683000px;}
.y16e{bottom:504.657000px;}
.y235{bottom:507.181500px;}
.ya8{bottom:507.946500px;}
.y136{bottom:512.403000px;}
.y151{bottom:512.850000px;}
.y26{bottom:519.315000px;}
.y209{bottom:520.536000px;}
.ycb{bottom:522.034500px;}
.y1de{bottom:522.564000px;}
.y19f{bottom:523.006500px;}
.y1bf{bottom:524.463000px;}
.yd{bottom:524.875500px;}
.y16d{bottom:524.980500px;}
.y55{bottom:526.036500px;}
.ya7{bottom:528.270000px;}
.ydf{bottom:532.634497px;}
.y135{bottom:532.726500px;}
.y25{bottom:539.638500px;}
.y208{bottom:540.859500px;}
.yca{bottom:542.359500px;}
.y1dd{bottom:542.887500px;}
.y19e{bottom:543.330000px;}
.y54{bottom:546.360000px;}
.ya6{bottom:548.593500px;}
.y150{bottom:553.050000px;}
.y21f{bottom:553.615500px;}
.y38{bottom:553.735500px;}
.y16c{bottom:555.466500px;}
.y207{bottom:561.183000px;}
.y234{bottom:561.186000px;}
.yc9{bottom:562.683000px;}
.y1dc{bottom:563.212500px;}
.y1be{bottom:563.752500px;}
.yc{bottom:565.522500px;}
.y53{bottom:566.683500px;}
.ya5{bottom:568.917000px;}
.y134{bottom:573.375000px;}
.y19d{bottom:573.816000px;}
.y21e{bottom:573.939000px;}
.y16b{bottom:575.790000px;}
.y206{bottom:581.508000px;}
.y233{bottom:581.509500px;}
.y68{bottom:582.367926px;}
.yc8{bottom:583.006500px;}
.y1db{bottom:583.536000px;}
.y24{bottom:588.057000px;}
.ya4{bottom:589.240500px;}
.y133{bottom:593.698500px;}
.y19c{bottom:594.139500px;}
.y1bd{bottom:594.237000px;}
.y16a{bottom:596.115000px;}
.y37{bottom:598.404000px;}
.y52{bottom:601.653000px;}
.y205{bottom:601.831500px;}
.y232{bottom:601.833000px;}
.y216{bottom:603.109693px;}
.y14f{bottom:603.859500px;}
.yb{bottom:606.586500px;}
.ya3{bottom:609.565500px;}
.y132{bottom:614.022000px;}
.y19b{bottom:614.463000px;}
.y1bc{bottom:614.562000px;}
.y36{bottom:618.727500px;}
.y51{bottom:621.976500px;}
.y231{bottom:622.158000px;}
.yc7{bottom:623.653500px;}
.ya2{bottom:629.889000px;}
.y19a{bottom:634.788000px;}
.y23{bottom:636.475500px;}
.y35{bottom:639.052500px;}
.ydd{bottom:640.014274px;}
.y169{bottom:641.943000px;}
.y50{bottom:642.300000px;}
.y230{bottom:642.481500px;}
.yc6{bottom:643.978500px;}
.y1da{bottom:644.506500px;}
.y14e{bottom:644.923500px;}
.y1bb{bottom:645.046500px;}
.y204{bottom:649.834500px;}
.ya1{bottom:650.212500px;}
.y131{bottom:654.669000px;}
.y199{bottom:655.111500px;}
.y34{bottom:659.376000px;}
.ya{bottom:660.591000px;}
.y1ba{bottom:661.701000px;}
.y168{bottom:662.268000px;}
.y4f{bottom:662.623500px;}
.yc5{bottom:664.302000px;}
.y1d9{bottom:664.831500px;}
.y1b9{bottom:667.347000px;}
.y203{bottom:670.159500px;}
.ya0{bottom:670.536000px;}
.y130{bottom:674.992500px;}
.y9{bottom:680.916000px;}
.y4e{bottom:682.947000px;}
.yc4{bottom:684.625500px;}
.y1d8{bottom:685.155000px;}
.y22f{bottom:689.188500px;}
.y1b8{bottom:689.545500px;}
.y9f{bottom:690.859500px;}
.y22{bottom:693.108000px;}
.y12f{bottom:695.316000px;}
.y14d{bottom:698.929500px;}
.y8{bottom:701.239500px;}
.y4d{bottom:703.272000px;}
.y198{bottom:703.530000px;}
.y1d7{bottom:705.478500px;}
.y202{bottom:710.806500px;}
.y9e{bottom:711.184500px;}
.y33{bottom:715.563000px;}
.y12e{bottom:715.639500px;}
.y14c{bottom:719.253000px;}
.yc3{bottom:721.138500px;}
.y7{bottom:721.563000px;}
.y4c{bottom:723.595500px;}
.y197{bottom:723.853500px;}
.y1b7{bottom:724.513500px;}
.y1d6{bottom:725.802000px;}
.y167{bottom:728.421000px;}
.y201{bottom:731.130000px;}
.y9d{bottom:731.508000px;}
.y6a{bottom:733.144711px;}
.y21{bottom:738.237000px;}
.y14b{bottom:739.576500px;}
.yc2{bottom:741.462000px;}
.y6{bottom:741.886500px;}
.y4b{bottom:743.919000px;}
.y196{bottom:744.177000px;}
.y1b6{bottom:744.838500px;}
.ydb{bottom:747.407298px;}
.y166{bottom:748.744500px;}
.y22e{bottom:750.934500px;}
.y200{bottom:751.453500px;}
.y9c{bottom:751.831500px;}
.y12d{bottom:756.705000px;}
.y14a{bottom:759.900000px;}
.y32{bottom:760.231500px;}
.y5{bottom:762.210000px;}
.y4a{bottom:764.242500px;}
.y195{bottom:764.500500px;}
.y1d5{bottom:766.450500px;}
.y165{bottom:769.068000px;}
.y22d{bottom:771.258000px;}
.y1ff{bottom:771.777000px;}
.y9b{bottom:772.155000px;}
.y1b5{bottom:779.806500px;}
.y149{bottom:780.223500px;}
.y1f1{bottom:780.994500px;}
.y4{bottom:782.533500px;}
.y49{bottom:784.566000px;}
.y194{bottom:784.825500px;}
.y1d4{bottom:786.774000px;}
.y164{bottom:789.391500px;}
.yc1{bottom:789.837000px;}
.y22c{bottom:791.581500px;}
.y215{bottom:792.478500px;}
.y20{bottom:794.869500px;}
.y148{bottom:800.548500px;}
.y1f0{bottom:801.319500px;}
.y3{bottom:802.858500px;}
.y48{bottom:804.891000px;}
.y193{bottom:805.149000px;}
.y1d3{bottom:807.097500px;}
.y163{bottom:809.715000px;}
.yc0{bottom:810.160500px;}
.y1b4{bottom:810.292500px;}
.y12c{bottom:810.709500px;}
.y22b{bottom:811.905000px;}
.y9a{bottom:812.803500px;}
.y1f{bottom:815.194500px;}
.y31{bottom:816.418500px;}
.y147{bottom:820.872000px;}
.y1d2{bottom:827.421000px;}
.y162{bottom:830.040000px;}
.ybf{bottom:830.484000px;}
.y1b3{bottom:830.616000px;}
.y12b{bottom:831.033000px;}
.y99{bottom:833.127000px;}
.y1e{bottom:835.518000px;}
.y47{bottom:839.859000px;}
.y2{bottom:843.922500px;}
.yda{bottom:847.527746px;}
.y1d1{bottom:847.744500px;}
.y1fe{bottom:848.319000px;}
.y161{bottom:850.363500px;}
.ybe{bottom:850.809000px;}
.y1b2{bottom:850.939500px;}
.y12a{bottom:851.358000px;}
.y98{bottom:853.450500px;}
.y146{bottom:855.840000px;}
.y1ef{bottom:856.047000px;}
.y22a{bottom:860.323500px;}
.y30{bottom:861.087000px;}
.y192{bottom:861.682500px;}
.y1d0{bottom:868.069500px;}
.y1fd{bottom:868.642500px;}
.ybd{bottom:871.132500px;}
.y1b1{bottom:871.264500px;}
.y129{bottom:871.681500px;}
.y97{bottom:873.774000px;}
.y145{bottom:876.165000px;}
.y1ee{bottom:876.370500px;}
.y1d{bottom:880.647000px;}
.y191{bottom:882.006000px;}
.y6b{bottom:883.921496px;}
.y46{bottom:886.566000px;}
.y1cf{bottom:888.393000px;}
.y1fc{bottom:888.967500px;}
.ybc{bottom:891.456000px;}
.y1b0{bottom:891.588000px;}
.y128{bottom:892.005000px;}
.y96{bottom:894.097500px;}
.y144{bottom:896.488500px;}
.y1ed{bottom:896.694000px;}
.y246{bottom:897.982500px;}
.y1c{bottom:900.972000px;}
.y190{bottom:902.331000px;}
.y160{bottom:904.308000px;}
.y127{bottom:912.328500px;}
.y95{bottom:914.422500px;}
.y143{bottom:916.812000px;}
.y2f{bottom:917.274000px;}
.y245{bottom:918.306000px;}
.y1b{bottom:921.295500px;}
.y18f{bottom:922.654500px;}
.y15f{bottom:924.631500px;}
.y1af{bottom:926.556000px;}
.y1fb{bottom:927.909000px;}
.y214{bottom:934.746000px;}
.y1ec{bottom:935.752500px;}
.y142{bottom:937.135500px;}
.y244{bottom:938.629500px;}
.y17b{bottom:939.183000px;}
.y1a{bottom:941.619000px;}
.y18e{bottom:942.978000px;}
.y1ce{bottom:945.025500px;}
.y1ae{bottom:946.881000px;}
.y126{bottom:947.298000px;}
.y1fa{bottom:948.234000px;}
.ybb{bottom:951.843000px;}
.y67{bottom:955.069500px;}
.y1eb{bottom:956.077500px;}
.y45{bottom:956.427000px;}
.y141{bottom:957.459000px;}
.y17a{bottom:959.506500px;}
.y243{bottom:960.448500px;}
.y19{bottom:961.942500px;}
.yfb{bottom:961.944000px;}
.y18d{bottom:963.301500px;}
.y15e{bottom:965.280000px;}
.y125{bottom:967.621500px;}
.y1f9{bottom:968.557500px;}
.yba{bottom:973.362000px;}
.y66{bottom:975.393000px;}
.y1ea{bottom:976.401000px;}
.y44{bottom:976.752000px;}
.y242{bottom:980.772000px;}
.y1ad{bottom:981.849000px;}
.y18{bottom:982.266000px;}
.yfa{bottom:982.267500px;}
.y18c{bottom:983.625000px;}
.y15d{bottom:985.603500px;}
.y1cd{bottom:985.671000px;}
.y124{bottom:987.945000px;}
.y140{bottom:992.428500px;}
.y1{bottom:993.474000px;}
.yb9{bottom:994.881000px;}
.y65{bottom:995.716500px;}
.y43{bottom:997.075500px;}
.y241{bottom:1001.095500px;}
.y1ac{bottom:1002.172500px;}
.y17{bottom:1002.589500px;}
.y2e{bottom:1002.591000px;}
.y15c{bottom:1005.927000px;}
.y123{bottom:1008.268500px;}
.y1f8{bottom:1009.621500px;}
.y64{bottom:1016.041500px;}
.y42{bottom:1017.399000px;}
.y1ab{bottom:1022.497500px;}
.y16{bottom:1022.914500px;}
.yb8{bottom:1023.775500px;}
.y15b{bottom:1026.250500px;}
.y63{bottom:1036.365000px;}
.y41{bottom:1037.722500px;}
.y15{bottom:1043.238000px;}
.y62{bottom:1056.688500px;}
.y40{bottom:1058.046000px;}
.y14{bottom:1063.561500px;}
.yb7{bottom:1065.774000px;}
.h7{height:22.798001px;}
.h5{height:45.425492px;}
.h13{height:46.865494px;}
.h3{height:49.090950px;}
.h8{height:49.738158px;}
.h2{height:51.359539px;}
.hb{height:53.798400px;}
.h4{height:54.733238px;}
.h12{height:54.739238px;}
.ha{height:60.791081px;}
.h6{height:61.631275px;}
.hf{height:62.578125px;}
.he{height:68.835938px;}
.h15{height:71.674950px;}
.h14{height:71.808163px;}
.h11{height:71.844005px;}
.h10{height:75.093750px;}
.h1{height:88.766100px;}
.h16{height:99.476315px;}
.hc{height:100.120448px;}
.h17{height:110.529239px;}
.h18{height:132.635087px;}
.h9{height:476.890200px;}
.hd{height:540.000000px;}
.h0{height:1188.000000px;}
.w4{width:22.798001px;}
.w1{width:153.095001px;}
.w3{width:166.779101px;}
.w5{width:540.000000px;}
.w2{width:667.646280px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4f{left:2.010000px;}
.x2a{left:7.113612px;}
.x1b{left:17.724419px;}
.x2b{left:20.519526px;}
.x19{left:24.559845px;}
.x4e{left:28.680000px;}
.x17{left:34.495058px;}
.x4d{left:35.670000px;}
.x50{left:36.675000px;}
.x18{left:37.820042px;}
.x56{left:47.662526px;}
.xe{left:58.101123px;}
.x11{left:59.319842px;}
.x53{left:62.167936px;}
.x10{left:63.307174px;}
.x12{left:66.936838px;}
.xc{left:68.605954px;}
.x26{left:74.447859px;}
.x2f{left:76.320000px;}
.x43{left:99.150000px;}
.x31{left:110.460000px;}
.x30{left:112.995000px;}
.x5c{left:120.706208px;}
.x52{left:122.857500px;}
.x2{left:125.182500px;}
.x59{left:133.773000px;}
.x22{left:136.282500px;}
.x23{left:138.784500px;}
.x4{left:142.363500px;}
.x6{left:145.177500px;}
.x33{left:147.135000px;}
.x32{left:149.655000px;}
.x20{left:150.954000px;}
.x5{left:159.546000px;}
.x7{left:164.176500px;}
.x25{left:165.493350px;}
.x5f{left:171.246000px;}
.x5e{left:172.357500px;}
.x60{left:173.437500px;}
.x44{left:174.465000px;}
.xb{left:182.780620px;}
.x34{left:183.810000px;}
.x35{left:186.330000px;}
.x2e{left:189.000000px;}
.xa{left:193.909500px;}
.x2d{left:195.006000px;}
.x45{left:209.220000px;}
.x1e{left:211.090500px;}
.x15{left:217.952068px;}
.x16{left:221.263806px;}
.x36{left:223.005000px;}
.x1f{left:236.863500px;}
.x46{left:245.880000px;}
.x5b{left:250.234886px;}
.x55{left:252.818041px;}
.x24{left:254.046000px;}
.x38{left:257.145000px;}
.x37{left:259.665000px;}
.x2c{left:265.747064px;}
.x1{left:277.702500px;}
.x5a{left:279.616621px;}
.x47{left:284.475000px;}
.x1a{left:288.213891px;}
.x39{left:293.820000px;}
.x8{left:297.000000px;}
.x9{left:314.182500px;}
.x5d{left:316.019239px;}
.x48{left:321.150000px;}
.x57{left:322.773000px;}
.x54{left:327.438110px;}
.x3a{left:330.480000px;}
.x3b{left:333.015000px;}
.x1d{left:336.036000px;}
.x27{left:339.518532px;}
.x49{left:357.825000px;}
.x3c{left:367.155000px;}
.xd{left:369.562615px;}
.x4a{left:394.485000px;}
.x13{left:404.720816px;}
.x3d{left:406.350000px;}
.x14{left:411.688712px;}
.x4b{left:431.160000px;}
.x21{left:432.409500px;}
.x3f{left:440.490000px;}
.x3e{left:443.025000px;}
.x51{left:450.817500px;}
.x3{left:454.909500px;}
.x4c{left:467.835000px;}
.x58{left:483.546000px;}
.x40{left:504.645000px;}
.x42{left:509.025000px;}
.x28{left:513.556961px;}
.x41{left:515.280000px;}
.xf{left:550.039062px;}
.x1c{left:629.865979px;}
.x29{left:680.336062px;}
@media print{
.v2{vertical-align:-63.680000pt;}
.v3{vertical-align:-14.373333pt;}
.v7{vertical-align:-10.058667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.391219pt;}
.v8{vertical-align:20.074667pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:23.301333pt;}
.v5{vertical-align:33.365333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000933pt;}
.ls1f{letter-spacing:0.001427pt;}
.ls3{letter-spacing:0.003853pt;}
.ls7{letter-spacing:2.656382pt;}
.ls17{letter-spacing:9.034436pt;}
.ls1a{letter-spacing:14.674400pt;}
.ls11{letter-spacing:15.038508pt;}
.lsc{letter-spacing:15.583405pt;}
.lsb{letter-spacing:15.588738pt;}
.ls1d{letter-spacing:17.169441pt;}
.ls1c{letter-spacing:17.171841pt;}
.ls16{letter-spacing:17.500108pt;}
.ls9{letter-spacing:19.239733pt;}
.ls18{letter-spacing:19.373067pt;}
.ls8{letter-spacing:19.374508pt;}
.ls6{letter-spacing:19.377441pt;}
.ls10{letter-spacing:19.753174pt;}
.ls14{letter-spacing:20.085306pt;}
.lsf{letter-spacing:20.253067pt;}
.ls1b{letter-spacing:20.615733pt;}
.ls12{letter-spacing:20.963841pt;}
.ls19{letter-spacing:21.541715pt;}
.lsa{letter-spacing:22.032382pt;}
.ls13{letter-spacing:22.261715pt;}
.lse{letter-spacing:22.292738pt;}
.ls5{letter-spacing:22.795049pt;}
.ls0{letter-spacing:23.963049pt;}
.ls21{letter-spacing:24.524108pt;}
.ls22{letter-spacing:24.748108pt;}
.ls20{letter-spacing:25.830774pt;}
.ls15{letter-spacing:27.397306pt;}
.ls4{letter-spacing:30.542520pt;}
.ls2{letter-spacing:30.547853pt;}
.ls1e{letter-spacing:43.660108pt;}
.ls23{letter-spacing:45.457441pt;}
.ws0{word-spacing:-30.856000pt;}
.wsc{word-spacing:-30.545480pt;}
.wse2{word-spacing:-21.423659pt;}
.ws1{word-spacing:-17.853099pt;}
.ws38{word-spacing:-17.792000pt;}
.wsb0{word-spacing:-17.143987pt;}
.wsa{word-spacing:-16.290923pt;}
.ws9d{word-spacing:-15.513773pt;}
.ws9c{word-spacing:-15.508440pt;}
.ws95{word-spacing:-14.678507pt;}
.ws28{word-spacing:-14.403262pt;}
.wse5{word-spacing:-13.860440pt;}
.ws7e{word-spacing:-13.857173pt;}
.wsb9{word-spacing:-13.512880pt;}
.wsbb{word-spacing:-13.511987pt;}
.wsda{word-spacing:-13.380440pt;}
.wsae{word-spacing:-12.987840pt;}
.ws50{word-spacing:-12.641760pt;}
.wsc2{word-spacing:-12.322653pt;}
.ws83{word-spacing:-12.256587pt;}
.ws90{word-spacing:-12.176280pt;}
.wsde{word-spacing:-12.079107pt;}
.ws27{word-spacing:-11.784487pt;}
.ws4d{word-spacing:-11.584587pt;}
.wsc4{word-spacing:-11.403691pt;}
.ws63{word-spacing:-11.176573pt;}
.ws87{word-spacing:-11.175680pt;}
.ws52{word-spacing:-11.174507pt;}
.ws91{word-spacing:-11.173613pt;}
.ws6e{word-spacing:-11.172440pt;}
.wsdc{word-spacing:-11.172413pt;}
.ws6f{word-spacing:-11.171547pt;}
.ws48{word-spacing:-11.170067pt;}
.ws7c{word-spacing:-11.169173pt;}
.ws37{word-spacing:-11.168587pt;}
.wsa1{word-spacing:-10.939840pt;}
.ws9a{word-spacing:-10.788440pt;}
.wsb7{word-spacing:-10.779840pt;}
.wsb5{word-spacing:-10.777467pt;}
.ws44{word-spacing:-10.592587pt;}
.ws46{word-spacing:-10.591107pt;}
.wsa4{word-spacing:-10.459840pt;}
.ws6a{word-spacing:-10.243547pt;}
.ws6c{word-spacing:-10.241173pt;}
.wse8{word-spacing:-9.961773pt;}
.wsd9{word-spacing:-9.929773pt;}
.ws9e{word-spacing:-9.583107pt;}
.ws7f{word-spacing:-9.542507pt;}
.ws81{word-spacing:-9.539547pt;}
.ws79{word-spacing:-8.047107pt;}
.ws68{word-spacing:-7.820427pt;}
.ws71{word-spacing:-7.505173pt;}
.wse3{word-spacing:-7.119107pt;}
.wsbf{word-spacing:-6.632733pt;}
.wsc3{word-spacing:-6.574551pt;}
.wse4{word-spacing:-6.463107pt;}
.ws74{word-spacing:-5.247107pt;}
.ws54{word-spacing:-4.488880pt;}
.ws16{word-spacing:-4.227547pt;}
.ws61{word-spacing:-3.374548pt;}
.wsa9{word-spacing:-3.147840pt;}
.wsaf{word-spacing:-2.909093pt;}
.wsf3{word-spacing:-2.850911pt;}
.wsf2{word-spacing:-2.792730pt;}
.wscf{word-spacing:-1.687274pt;}
.wsd6{word-spacing:-1.629092pt;}
.wscd{word-spacing:-1.570910pt;}
.ws9b{word-spacing:-1.280001pt;}
.ws58{word-spacing:-0.989092pt;}
.wsf1{word-spacing:-0.984579pt;}
.wsf5{word-spacing:-0.872728pt;}
.ws60{word-spacing:-0.640001pt;}
.ws96{word-spacing:-0.465455pt;}
.ws92{word-spacing:-0.407273pt;}
.ws72{word-spacing:-0.290909pt;}
.ws34{word-spacing:-0.174546pt;}
.ws5e{word-spacing:-0.116364pt;}
.ws10{word-spacing:-0.058182pt;}
.ws32{word-spacing:-0.005027pt;}
.ws1d{word-spacing:-0.004720pt;}
.ws2e{word-spacing:-0.004440pt;}
.ws22{word-spacing:-0.004133pt;}
.ws31{word-spacing:-0.003547pt;}
.ws2b{word-spacing:-0.003240pt;}
.ws23{word-spacing:-0.002960pt;}
.ws18{word-spacing:-0.002653pt;}
.ws1e{word-spacing:-0.002067pt;}
.ws20{word-spacing:-0.001760pt;}
.ws17{word-spacing:-0.001173pt;}
.ws21{word-spacing:-0.000867pt;}
.ws25{word-spacing:-0.000587pt;}
.ws1f{word-spacing:-0.000280pt;}
.wscb{word-spacing:-0.000253pt;}
.wsd{word-spacing:0.000000pt;}
.ws11{word-spacing:0.000027pt;}
.ws2d{word-spacing:0.000307pt;}
.wsce{word-spacing:0.000613pt;}
.ws24{word-spacing:0.000893pt;}
.ws26{word-spacing:0.001200pt;}
.ws2c{word-spacing:0.001787pt;}
.ws12{word-spacing:0.002680pt;}
.wsf4{word-spacing:0.058182pt;}
.ws5d{word-spacing:0.232727pt;}
.wsf6{word-spacing:0.290909pt;}
.wse6{word-spacing:0.349091pt;}
.ws7d{word-spacing:0.407273pt;}
.wsb8{word-spacing:0.698182pt;}
.wsba{word-spacing:0.741242pt;}
.ws57{word-spacing:0.756364pt;}
.ws8d{word-spacing:0.814546pt;}
.ws5{word-spacing:0.872728pt;}
.ws97{word-spacing:0.915269pt;}
.ws93{word-spacing:0.973451pt;}
.wsf8{word-spacing:0.989092pt;}
.ws3f{word-spacing:1.047274pt;}
.wsab{word-spacing:1.221819pt;}
.wsad{word-spacing:1.304596pt;}
.ws5c{word-spacing:1.396365pt;}
.ws8{word-spacing:1.454547pt;}
.ws4f{word-spacing:1.512729pt;}
.ws51{word-spacing:1.629092pt;}
.ws3b{word-spacing:1.687274pt;}
.ws65{word-spacing:1.920002pt;}
.ws82{word-spacing:1.978183pt;}
.ws84{word-spacing:1.999908pt;}
.ws8f{word-spacing:2.036365pt;}
.wsdf{word-spacing:2.152729pt;}
.wsdd{word-spacing:2.176832pt;}
.ws2{word-spacing:2.210911pt;}
.wsb3{word-spacing:2.443638pt;}
.ws41{word-spacing:2.501820pt;}
.ws94{word-spacing:2.547826pt;}
.wsac{word-spacing:2.560002pt;}
.ws4c{word-spacing:2.618184pt;}
.ws4e{word-spacing:2.666575pt;}
.wsdb{word-spacing:2.676366pt;}
.wsbe{word-spacing:2.734548pt;}
.wsfe{word-spacing:2.792730pt;}
.wsfd{word-spacing:2.849085pt;}
.wsc0{word-spacing:2.850911pt;}
.ws39{word-spacing:2.909093pt;}
.ws2f{word-spacing:2.933009pt;}
.ws3a{word-spacing:2.967275pt;}
.wsd2{word-spacing:2.997199pt;}
.ws9{word-spacing:3.025457pt;}
.ws47{word-spacing:3.078637pt;}
.wse9{word-spacing:3.078734pt;}
.ws49{word-spacing:3.082575pt;}
.wsb{word-spacing:3.083639pt;}
.wsca{word-spacing:3.084503pt;}
.ws62{word-spacing:3.086878pt;}
.wsc6{word-spacing:3.137753pt;}
.wsa2{word-spacing:3.258185pt;}
.wsa0{word-spacing:3.311903pt;}
.ws64{word-spacing:3.316366pt;}
.wsea{word-spacing:3.374548pt;}
.ws99{word-spacing:3.432730pt;}
.wsb4{word-spacing:3.471903pt;}
.wsb6{word-spacing:3.490912pt;}
.ws3c{word-spacing:3.549094pt;}
.ws43{word-spacing:3.665458pt;}
.ws45{word-spacing:3.669242pt;}
.wsa6{word-spacing:3.749032pt;}
.wsa3{word-spacing:3.781821pt;}
.wsa5{word-spacing:3.790493pt;}
.ws1c{word-spacing:3.840003pt;}
.ws8c{word-spacing:3.956367pt;}
.ws6d{word-spacing:4.014549pt;}
.ws6b{word-spacing:4.015908pt;}
.wsd8{word-spacing:4.247276pt;}
.wse7{word-spacing:4.286465pt;}
.wsd7{word-spacing:4.305458pt;}
.wsff{word-spacing:4.420619pt;}
.ws56{word-spacing:4.421822pt;}
.ws85{word-spacing:4.480004pt;}
.wsf0{word-spacing:4.538186pt;}
.ws4b{word-spacing:4.596367pt;}
.ws4{word-spacing:4.654549pt;}
.ws1a{word-spacing:4.712731pt;}
.ws80{word-spacing:4.714575pt;}
.wsf9{word-spacing:4.769667pt;}
.ws66{word-spacing:4.770913pt;}
.ws8e{word-spacing:4.887277pt;}
.ws7{word-spacing:5.003641pt;}
.ws77{word-spacing:5.294550pt;}
.ws76{word-spacing:5.352732pt;}
.wsa7{word-spacing:5.362685pt;}
.ws55{word-spacing:5.469095pt;}
.ws4a{word-spacing:5.483452pt;}
.ws59{word-spacing:5.876369pt;}
.ws29{word-spacing:5.934550pt;}
.wsef{word-spacing:6.050914pt;}
.wsed{word-spacing:6.104851pt;}
.ws7a{word-spacing:6.167278pt;}
.ws78{word-spacing:6.225460pt;}
.wsbc{word-spacing:6.283642pt;}
.ws69{word-spacing:6.400005pt;}
.ws67{word-spacing:6.431903pt;}
.ws6{word-spacing:6.516369pt;}
.ws19{word-spacing:6.580124pt;}
.wsd0{word-spacing:6.632733pt;}
.ws40{word-spacing:6.690915pt;}
.ws35{word-spacing:6.749097pt;}
.ws70{word-spacing:6.751903pt;}
.ws36{word-spacing:6.807278pt;}
.wsb1{word-spacing:6.923642pt;}
.wsc5{word-spacing:6.981824pt;}
.ws5f{word-spacing:7.098188pt;}
.wsd3{word-spacing:7.156370pt;}
.ws2a{word-spacing:7.505461pt;}
.ws9f{word-spacing:7.621825pt;}
.wsee{word-spacing:7.680006pt;}
.ws3e{word-spacing:7.738188pt;}
.wse1{word-spacing:7.796370pt;}
.ws86{word-spacing:7.854552pt;}
.ws7b{word-spacing:8.320007pt;}
.wsb2{word-spacing:8.436371pt;}
.wsf7{word-spacing:8.494553pt;}
.ws30{word-spacing:8.552734pt;}
.wsbd{word-spacing:8.843644pt;}
.ws73{word-spacing:8.960007pt;}
.ws75{word-spacing:9.018189pt;}
.ws3{word-spacing:9.076371pt;}
.wscc{word-spacing:9.134553pt;}
.wsd5{word-spacing:9.250917pt;}
.wse0{word-spacing:9.367281pt;}
.wsfa{word-spacing:9.425462pt;}
.wsfb{word-spacing:9.600008pt;}
.ws1b{word-spacing:9.716372pt;}
.ws53{word-spacing:9.774554pt;}
.wsc1{word-spacing:9.832735pt;}
.ws33{word-spacing:9.949099pt;}
.ws15{word-spacing:10.007281pt;}
.ws42{word-spacing:10.414554pt;}
.wsec{word-spacing:10.472736pt;}
.wsc9{word-spacing:10.530918pt;}
.wsc7{word-spacing:10.589100pt;}
.wsc8{word-spacing:10.611712pt;}
.wseb{word-spacing:10.880009pt;}
.wsaa{word-spacing:11.054555pt;}
.wsa8{word-spacing:11.112737pt;}
.ws5a{word-spacing:11.170918pt;}
.wsfc{word-spacing:11.356569pt;}
.wsd1{word-spacing:11.461828pt;}
.ws3d{word-spacing:11.985465pt;}
.ws5b{word-spacing:12.334556pt;}
.ws8b{word-spacing:25.832749pt;}
.ws14{word-spacing:30.545480pt;}
.wsf{word-spacing:61.090960pt;}
.ws98{word-spacing:91.636440pt;}
.ws89{word-spacing:118.612602pt;}
.ws8a{word-spacing:121.198406pt;}
.wse{word-spacing:122.181920pt;}
.ws88{word-spacing:469.438938pt;}
.wsd4{word-spacing:510.265449pt;}
.ws13{word-spacing:519.274973pt;}
._0{margin-left:-10.138400pt;}
._28{margin-left:-7.680000pt;}
._3b{margin-left:-6.458187pt;}
._5{margin-left:-5.563950pt;}
._8{margin-left:-4.545355pt;}
._1{margin-left:-3.416200pt;}
._12{margin-left:-2.464662pt;}
._4{margin-left:-1.570910pt;}
._24{width:0.904641pt;}
._3{width:1.912832pt;}
._2{width:3.306000pt;}
._39{width:4.420411pt;}
._3f{width:6.420939pt;}
._2d{width:14.391945pt;}
._2f{width:15.629413pt;}
._30{width:17.068311pt;}
._13{width:18.466349pt;}
._25{width:19.377441pt;}
._37{width:20.450230pt;}
._36{width:21.787801pt;}
._3c{width:22.837755pt;}
._2b{width:23.757712pt;}
._7{width:24.734463pt;}
._b{width:25.889257pt;}
._11{width:26.942508pt;}
._f{width:28.101842pt;}
._10{width:29.091841pt;}
._6{width:30.319922pt;}
._a{width:31.579431pt;}
._2c{width:32.989118pt;}
._14{width:35.156187pt;}
._9{width:36.691249pt;}
._43{width:38.208956pt;}
._38{width:39.505487pt;}
._3a{width:41.039240pt;}
._3e{width:42.377423pt;}
._41{width:44.337621pt;}
._26{width:46.462568pt;}
._2a{width:47.874316pt;}
._3d{width:48.783690pt;}
._2e{width:50.210951pt;}
._42{width:51.717284pt;}
._29{width:52.971767pt;}
._34{width:61.090960pt;}
._20{width:63.761067pt;}
._1c{width:72.538075pt;}
._22{width:84.547174pt;}
._d{width:91.636440pt;}
._19{width:99.084698pt;}
._1f{width:103.165406pt;}
._21{width:106.034654pt;}
._27{width:110.858667pt;}
._23{width:112.091955pt;}
._1e{width:115.296746pt;}
._e{width:122.072726pt;}
._18{width:126.224893pt;}
._17{width:128.606071pt;}
._44{width:133.011153pt;}
._1d{width:142.101398pt;}
._c{width:152.894776pt;}
._16{width:155.003153pt;}
._15{width:159.211383pt;}
._1b{width:178.084659pt;}
._32{width:183.270840pt;}
._1a{width:205.279809pt;}
._35{width:213.648051pt;}
._33{width:244.359427pt;}
._31{width:274.904347pt;}
._40{width:519.104357pt;}
.fsb{font-size:29.091200pt;}
.fs3{font-size:40.727467pt;}
.fs5{font-size:42.390240pt;}
.fs6{font-size:51.810293pt;}
.fs8{font-size:53.333333pt;}
.fs2{font-size:58.181867pt;}
.fs7{font-size:58.666667pt;}
.fsa{font-size:61.230347pt;}
.fs1{font-size:63.761067pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:76.513067pt;}
.fsc{font-size:84.780480pt;}
.fsd{font-size:94.200533pt;}
.fs0{font-size:110.200000pt;}
.fse{font-size:113.040640pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:6.323211pt;}
.y8a{bottom:9.302303pt;}
.y21c{bottom:15.495988pt;}
.y183{bottom:18.427979pt;}
.yf1{bottom:30.320797pt;}
.y87{bottom:32.852436pt;}
.y107{bottom:43.346667pt;}
.y11d{bottom:44.586667pt;}
.y181{bottom:55.460564pt;}
.yf2{bottom:57.839127pt;}
.y21b{bottom:59.534737pt;}
.ye0{bottom:62.749330pt;}
.y108{bottom:63.413333pt;}
.yde{bottom:63.926837pt;}
.y88{bottom:66.034574pt;}
.y180{bottom:70.308923pt;}
.ye2{bottom:72.310684pt;}
.y106{bottom:75.933333pt;}
.ydc{bottom:76.961836pt;}
.y11c{bottom:77.173333pt;}
.y21a{bottom:84.333027pt;}
.yf3{bottom:85.369233pt;}
.y89{bottom:99.216712pt;}
.y109{bottom:99.266667pt;}
.y105{bottom:108.533333pt;}
.y11b{bottom:109.773333pt;}
.y13{bottom:123.404000pt;}
.yed{bottom:134.577237pt;}
.y10a{bottom:135.120000pt;}
.y104{bottom:141.133333pt;}
.y11a{bottom:142.373333pt;}
.y217{bottom:144.268117pt;}
.y70{bottom:154.359349pt;}
.yee{bottom:156.443536pt;}
.y7a{bottom:167.853575pt;}
.y10b{bottom:170.973333pt;}
.y17d{bottom:171.515621pt;}
.y1f3{bottom:172.598927pt;}
.y103{bottom:173.720000pt;}
.y119{bottom:174.960000pt;}
.y83{bottom:177.485580pt;}
.yef{bottom:178.309835pt;}
.y8d{bottom:186.222679pt;}
.yf9{bottom:186.633333pt;}
.y71{bottom:188.589468pt;}
.y1e9{bottom:190.468000pt;}
.y13f{bottom:190.820000pt;}
.y8b{bottom:190.956256pt;}
.y7b{bottom:191.262408pt;}
.y1f7{bottom:192.053333pt;}
.yd9{bottom:193.046667pt;}
.y213{bottom:193.846667pt;}
.y1cc{bottom:195.205333pt;}
.y61{bottom:196.604000pt;}
.y94{bottom:196.709333pt;}
.yb6{bottom:198.589333pt;}
.yf0{bottom:200.176133pt;}
.y84{bottom:203.861729pt;}
.yf8{bottom:204.698667pt;}
.y102{bottom:206.320000pt;}
.y8c{bottom:206.569995pt;}
.y10c{bottom:206.826667pt;}
.y118{bottom:207.560000pt;}
.y3f{bottom:208.341333pt;}
.y1e8{bottom:208.533333pt;}
.y13e{bottom:208.885333pt;}
.y18b{bottom:209.685333pt;}
.y122{bottom:210.040000pt;}
.y1f6{bottom:210.118667pt;}
.yd8{bottom:211.113333pt;}
.y1cb{bottom:213.272000pt;}
.y60{bottom:214.670667pt;}
.y7c{bottom:214.683015pt;}
.y93{bottom:214.774667pt;}
.y229{bottom:215.145333pt;}
.ye8{bottom:215.836972pt;}
.y182{bottom:216.555251pt;}
.yb5{bottom:216.654667pt;}
.y1aa{bottom:217.798667pt;}
.y15a{bottom:218.852000pt;}
.y218{bottom:221.806931pt;}
.yf7{bottom:222.764000pt;}
.y72{bottom:222.819587pt;}
.y3e{bottom:226.408000pt;}
.y2d{bottom:226.505333pt;}
.y1e7{bottom:226.598667pt;}
.y18a{bottom:227.750667pt;}
.y121{bottom:228.105333pt;}
.y240{bottom:228.356000pt;}
.yd7{bottom:229.178667pt;}
.y212{bottom:229.978667pt;}
.y85{bottom:230.226103pt;}
.y1ca{bottom:231.337333pt;}
.y179{bottom:231.797333pt;}
.y5f{bottom:232.736000pt;}
.y228{bottom:233.210667pt;}
.yb4{bottom:234.720000pt;}
.y1a9{bottom:235.864000pt;}
.y1f2{bottom:236.048270pt;}
.ye9{bottom:236.266713pt;}
.y159{bottom:236.917333pt;}
.y7d{bottom:238.091848pt;}
.y101{bottom:238.920000pt;}
.y117{bottom:240.160000pt;}
.y10d{bottom:242.680000pt;}
.y12{bottom:244.061333pt;}
.y1e6{bottom:244.665333pt;}
.y13d{bottom:245.386667pt;}
.y189{bottom:245.817333pt;}
.y120{bottom:246.170667pt;}
.y23f{bottom:246.422667pt;}
.yd6{bottom:247.244000pt;}
.y211{bottom:248.044000pt;}
.y1c9{bottom:249.402667pt;}
.y178{bottom:249.862667pt;}
.y5e{bottom:250.801333pt;}
.y92{bottom:250.905333pt;}
.y227{bottom:251.276000pt;}
.yb3{bottom:252.786667pt;}
.y1a8{bottom:253.929333pt;}
.y158{bottom:254.982667pt;}
.y86{bottom:256.590478pt;}
.yea{bottom:256.696453pt;}
.y73{bottom:257.049705pt;}
.yf6{bottom:259.266667pt;}
.y1e5{bottom:262.730667pt;}
.y188{bottom:263.882667pt;}
.yd5{bottom:265.309333pt;}
.y23e{bottom:265.816000pt;}
.y1c8{bottom:267.468000pt;}
.y177{bottom:267.928000pt;}
.y5d{bottom:268.866667pt;}
.y91{bottom:268.970667pt;}
.y3d{bottom:270.297333pt;}
.yb2{bottom:270.852000pt;}
.y100{bottom:271.506667pt;}
.y1a7{bottom:271.994667pt;}
.y116{bottom:272.746667pt;}
.y2c{bottom:276.845333pt;}
.y17e{bottom:276.890693pt;}
.y1f4{bottom:276.914243pt;}
.yeb{bottom:277.126194pt;}
.y10e{bottom:278.533333pt;}
.y1e4{bottom:280.796000pt;}
.y187{bottom:281.948000pt;}
.y210{bottom:282.660000pt;}
.yd4{bottom:283.374667pt;}
.y23d{bottom:283.881333pt;}
.y1c7{bottom:285.533333pt;}
.y176{bottom:285.993333pt;}
.y74{bottom:286.663998pt;}
.y5c{bottom:286.932000pt;}
.y11{bottom:287.100000pt;}
.y226{bottom:287.406667pt;}
.yb1{bottom:288.917333pt;}
.y1a6{bottom:290.060000pt;}
.y157{bottom:290.065333pt;}
.y7e{bottom:294.400217pt;}
.y11f{bottom:294.629333pt;}
.y90{bottom:296.069333pt;}
.yec{bottom:297.555935pt;}
.y1e3{bottom:298.861333pt;}
.y219{bottom:299.345745pt;}
.y13c{bottom:300.708000pt;}
.yd3{bottom:301.441333pt;}
.y23c{bottom:303.276000pt;}
.y175{bottom:304.060000pt;}
.yff{bottom:304.106667pt;}
.y75{bottom:304.526774pt;}
.y5b{bottom:304.998667pt;}
.y115{bottom:305.346667pt;}
.y225{bottom:305.472000pt;}
.y6d{bottom:305.951557pt;}
.yb0{bottom:306.982667pt;}
.y1a5{bottom:308.125333pt;}
.y156{bottom:308.130667pt;}
.y3c{bottom:310.002667pt;}
.yf5{bottom:312.178667pt;}
.y11e{bottom:312.694667pt;}
.y8f{bottom:314.134667pt;}
.y10f{bottom:314.386667pt;}
.y2b{bottom:316.961333pt;}
.ye4{bottom:317.491123pt;}
.y13b{bottom:318.773333pt;}
.y7f{bottom:319.033656pt;}
.yd2{bottom:319.506667pt;}
.y23b{bottom:321.341333pt;}
.y1c6{bottom:321.665333pt;}
.y76{bottom:322.401325pt;}
.yaf{bottom:325.048000pt;}
.y1a4{bottom:326.192000pt;}
.y20f{bottom:328.722667pt;}
.y10{bottom:330.138667pt;}
.yf4{bottom:330.244000pt;}
.y186{bottom:330.406667pt;}
.y174{bottom:331.157333pt;}
.yfe{bottom:336.706667pt;}
.y13a{bottom:336.838667pt;}
.ye5{bottom:336.908207pt;}
.yd1{bottom:337.572000pt;}
.y114{bottom:337.946667pt;}
.y6e{bottom:338.497841pt;}
.yfc{bottom:338.624000pt;}
.y1c5{bottom:339.730667pt;}
.y77{bottom:340.264101pt;}
.y23a{bottom:340.734667pt;}
.y5a{bottom:341.129333pt;}
.y224{bottom:341.974667pt;}
.yae{bottom:343.113333pt;}
.y80{bottom:343.667096pt;}
.y155{bottom:344.633333pt;}
.y20e{bottom:346.788000pt;}
.y185{bottom:348.472000pt;}
.y1e2{bottom:349.201333pt;}
.y173{bottom:349.224000pt;}
.y110{bottom:350.253333pt;}
.yd0{bottom:355.637333pt;}
.ye3{bottom:356.173223pt;}
.ye6{bottom:356.325292pt;}
.y1c4{bottom:357.796000pt;}
.y78{bottom:358.126878pt;}
.y239{bottom:358.801333pt;}
.y59{bottom:359.194667pt;}
.y3b{bottom:359.946667pt;}
.yad{bottom:361.180000pt;}
.y8e{bottom:362.593333pt;}
.y1a3{bottom:362.693333pt;}
.y20d{bottom:364.853333pt;}
.y172{bottom:367.289333pt;}
.y2a{bottom:367.301333pt;}
.y81{bottom:368.300535pt;}
.yfd{bottom:369.293333pt;}
.y113{bottom:370.533333pt;}
.y6f{bottom:371.044126pt;}
.y139{bottom:372.969333pt;}
.yf{bottom:373.177333pt;}
.ycf{bottom:373.702667pt;}
.y17c{bottom:374.401583pt;}
.ye7{bottom:375.742377pt;}
.y1c3{bottom:375.861333pt;}
.y79{bottom:376.001429pt;}
.ye1{bottom:378.004196pt;}
.y238{bottom:378.194667pt;}
.yac{bottom:379.245333pt;}
.y1f5{bottom:381.229558pt;}
.y17f{bottom:382.253989pt;}
.y1e1{bottom:385.332000pt;}
.y171{bottom:385.354667pt;}
.y111{bottom:385.973333pt;}
.y6c{bottom:388.523223pt;}
.y223{bottom:389.446667pt;}
.y138{bottom:391.034667pt;}
.y154{bottom:392.637333pt;}
.y82{bottom:392.933975pt;}
.y1c2{bottom:393.928000pt;}
.y58{bottom:395.326667pt;}
.y237{bottom:396.260000pt;}
.y112{bottom:396.706667pt;}
.y21d{bottom:397.161224pt;}
.yab{bottom:397.310667pt;}
.y20c{bottom:399.469333pt;}
.y3a{bottom:399.652000pt;}
.y170{bottom:403.420000pt;}
.y184{bottom:406.463526pt;}
.y29{bottom:407.416000pt;}
.y222{bottom:407.513333pt;}
.yce{bottom:409.834667pt;}
.y1a2{bottom:410.697333pt;}
.y153{bottom:410.702667pt;}
.y1c1{bottom:411.993333pt;}
.y57{bottom:413.392000pt;}
.y236{bottom:414.325333pt;}
.yaa{bottom:415.376000pt;}
.ye{bottom:416.216000pt;}
.y20b{bottom:417.534667pt;}
.y28{bottom:425.481333pt;}
.y221{bottom:425.578667pt;}
.ycd{bottom:427.900000pt;}
.y1e0{bottom:428.370667pt;}
.y1a1{bottom:428.764000pt;}
.y152{bottom:428.769333pt;}
.y1c0{bottom:430.058667pt;}
.y16f{bottom:430.518667pt;}
.y56{bottom:431.457333pt;}
.ya9{bottom:433.441333pt;}
.y137{bottom:437.404000pt;}
.y39{bottom:442.280000pt;}
.y27{bottom:443.548000pt;}
.y220{bottom:443.644000pt;}
.y20a{bottom:444.633333pt;}
.ycc{bottom:445.965333pt;}
.y1df{bottom:446.436000pt;}
.y1a0{bottom:446.829333pt;}
.y16e{bottom:448.584000pt;}
.y235{bottom:450.828000pt;}
.ya8{bottom:451.508000pt;}
.y136{bottom:455.469333pt;}
.y151{bottom:455.866667pt;}
.y26{bottom:461.613333pt;}
.y209{bottom:462.698667pt;}
.ycb{bottom:464.030667pt;}
.y1de{bottom:464.501333pt;}
.y19f{bottom:464.894667pt;}
.y1bf{bottom:466.189333pt;}
.yd{bottom:466.556000pt;}
.y16d{bottom:466.649333pt;}
.y55{bottom:467.588000pt;}
.ya7{bottom:469.573333pt;}
.ydf{bottom:473.452887pt;}
.y135{bottom:473.534667pt;}
.y25{bottom:479.678667pt;}
.y208{bottom:480.764000pt;}
.yca{bottom:482.097333pt;}
.y1dd{bottom:482.566667pt;}
.y19e{bottom:482.960000pt;}
.y54{bottom:485.653333pt;}
.ya6{bottom:487.638667pt;}
.y150{bottom:491.600000pt;}
.y21f{bottom:492.102667pt;}
.y38{bottom:492.209333pt;}
.y16c{bottom:493.748000pt;}
.y207{bottom:498.829333pt;}
.y234{bottom:498.832000pt;}
.yc9{bottom:500.162667pt;}
.y1dc{bottom:500.633333pt;}
.y1be{bottom:501.113333pt;}
.yc{bottom:502.686667pt;}
.y53{bottom:503.718667pt;}
.ya5{bottom:505.704000pt;}
.y134{bottom:509.666667pt;}
.y19d{bottom:510.058667pt;}
.y21e{bottom:510.168000pt;}
.y16b{bottom:511.813333pt;}
.y206{bottom:516.896000pt;}
.y233{bottom:516.897333pt;}
.y68{bottom:517.660379pt;}
.yc8{bottom:518.228000pt;}
.y1db{bottom:518.698667pt;}
.y24{bottom:522.717333pt;}
.ya4{bottom:523.769333pt;}
.y133{bottom:527.732000pt;}
.y19c{bottom:528.124000pt;}
.y1bd{bottom:528.210667pt;}
.y16a{bottom:529.880000pt;}
.y37{bottom:531.914667pt;}
.y52{bottom:534.802667pt;}
.y205{bottom:534.961333pt;}
.y232{bottom:534.962667pt;}
.y216{bottom:536.097505pt;}
.y14f{bottom:536.764000pt;}
.yb{bottom:539.188000pt;}
.ya3{bottom:541.836000pt;}
.y132{bottom:545.797333pt;}
.y19b{bottom:546.189333pt;}
.y1bc{bottom:546.277333pt;}
.y36{bottom:549.980000pt;}
.y51{bottom:552.868000pt;}
.y231{bottom:553.029333pt;}
.yc7{bottom:554.358667pt;}
.ya2{bottom:559.901333pt;}
.y19a{bottom:564.256000pt;}
.y23{bottom:565.756000pt;}
.y35{bottom:568.046667pt;}
.ydd{bottom:568.901577pt;}
.y169{bottom:570.616000pt;}
.y50{bottom:570.933333pt;}
.y230{bottom:571.094667pt;}
.yc6{bottom:572.425333pt;}
.y1da{bottom:572.894667pt;}
.y14e{bottom:573.265333pt;}
.y1bb{bottom:573.374667pt;}
.y204{bottom:577.630667pt;}
.ya1{bottom:577.966667pt;}
.y131{bottom:581.928000pt;}
.y199{bottom:582.321333pt;}
.y34{bottom:586.112000pt;}
.ya{bottom:587.192000pt;}
.y1ba{bottom:588.178667pt;}
.y168{bottom:588.682667pt;}
.y4f{bottom:588.998667pt;}
.yc5{bottom:590.490667pt;}
.y1d9{bottom:590.961333pt;}
.y1b9{bottom:593.197333pt;}
.y203{bottom:595.697333pt;}
.ya0{bottom:596.032000pt;}
.y130{bottom:599.993333pt;}
.y9{bottom:605.258667pt;}
.y4e{bottom:607.064000pt;}
.yc4{bottom:608.556000pt;}
.y1d8{bottom:609.026667pt;}
.y22f{bottom:612.612000pt;}
.y1b8{bottom:612.929333pt;}
.y9f{bottom:614.097333pt;}
.y22{bottom:616.096000pt;}
.y12f{bottom:618.058667pt;}
.y14d{bottom:621.270667pt;}
.y8{bottom:623.324000pt;}
.y4d{bottom:625.130667pt;}
.y198{bottom:625.360000pt;}
.y1d7{bottom:627.092000pt;}
.y202{bottom:631.828000pt;}
.y9e{bottom:632.164000pt;}
.y33{bottom:636.056000pt;}
.y12e{bottom:636.124000pt;}
.y14c{bottom:639.336000pt;}
.yc3{bottom:641.012000pt;}
.y7{bottom:641.389333pt;}
.y4c{bottom:643.196000pt;}
.y197{bottom:643.425333pt;}
.y1b7{bottom:644.012000pt;}
.y1d6{bottom:645.157333pt;}
.y167{bottom:647.485333pt;}
.y201{bottom:649.893333pt;}
.y9d{bottom:650.229333pt;}
.y6a{bottom:651.684188pt;}
.y21{bottom:656.210667pt;}
.y14b{bottom:657.401333pt;}
.yc2{bottom:659.077333pt;}
.y6{bottom:659.454667pt;}
.y4b{bottom:661.261333pt;}
.y196{bottom:661.490667pt;}
.y1b6{bottom:662.078667pt;}
.ydb{bottom:664.362042pt;}
.y166{bottom:665.550667pt;}
.y22e{bottom:667.497333pt;}
.y200{bottom:667.958667pt;}
.y9c{bottom:668.294667pt;}
.y12d{bottom:672.626667pt;}
.y14a{bottom:675.466667pt;}
.y32{bottom:675.761333pt;}
.y5{bottom:677.520000pt;}
.y4a{bottom:679.326667pt;}
.y195{bottom:679.556000pt;}
.y1d5{bottom:681.289333pt;}
.y165{bottom:683.616000pt;}
.y22d{bottom:685.562667pt;}
.y1ff{bottom:686.024000pt;}
.y9b{bottom:686.360000pt;}
.y1b5{bottom:693.161333pt;}
.y149{bottom:693.532000pt;}
.y1f1{bottom:694.217333pt;}
.y4{bottom:695.585333pt;}
.y49{bottom:697.392000pt;}
.y194{bottom:697.622667pt;}
.y1d4{bottom:699.354667pt;}
.y164{bottom:701.681333pt;}
.yc1{bottom:702.077333pt;}
.y22c{bottom:703.628000pt;}
.y215{bottom:704.425333pt;}
.y20{bottom:706.550667pt;}
.y148{bottom:711.598667pt;}
.y1f0{bottom:712.284000pt;}
.y3{bottom:713.652000pt;}
.y48{bottom:715.458667pt;}
.y193{bottom:715.688000pt;}
.y1d3{bottom:717.420000pt;}
.y163{bottom:719.746667pt;}
.yc0{bottom:720.142667pt;}
.y1b4{bottom:720.260000pt;}
.y12c{bottom:720.630667pt;}
.y22b{bottom:721.693333pt;}
.y9a{bottom:722.492000pt;}
.y1f{bottom:724.617333pt;}
.y31{bottom:725.705333pt;}
.y147{bottom:729.664000pt;}
.y1d2{bottom:735.485333pt;}
.y162{bottom:737.813333pt;}
.ybf{bottom:738.208000pt;}
.y1b3{bottom:738.325333pt;}
.y12b{bottom:738.696000pt;}
.y99{bottom:740.557333pt;}
.y1e{bottom:742.682667pt;}
.y47{bottom:746.541333pt;}
.y2{bottom:750.153333pt;}
.yda{bottom:753.357996pt;}
.y1d1{bottom:753.550667pt;}
.y1fe{bottom:754.061333pt;}
.y161{bottom:755.878667pt;}
.ybe{bottom:756.274667pt;}
.y1b2{bottom:756.390667pt;}
.y12a{bottom:756.762667pt;}
.y98{bottom:758.622667pt;}
.y146{bottom:760.746667pt;}
.y1ef{bottom:760.930667pt;}
.y22a{bottom:764.732000pt;}
.y30{bottom:765.410667pt;}
.y192{bottom:765.940000pt;}
.y1d0{bottom:771.617333pt;}
.y1fd{bottom:772.126667pt;}
.ybd{bottom:774.340000pt;}
.y1b1{bottom:774.457333pt;}
.y129{bottom:774.828000pt;}
.y97{bottom:776.688000pt;}
.y145{bottom:778.813333pt;}
.y1ee{bottom:778.996000pt;}
.y1d{bottom:782.797333pt;}
.y191{bottom:784.005333pt;}
.y6b{bottom:785.707996pt;}
.y46{bottom:788.058667pt;}
.y1cf{bottom:789.682667pt;}
.y1fc{bottom:790.193333pt;}
.ybc{bottom:792.405333pt;}
.y1b0{bottom:792.522667pt;}
.y128{bottom:792.893333pt;}
.y96{bottom:794.753333pt;}
.y144{bottom:796.878667pt;}
.y1ed{bottom:797.061333pt;}
.y246{bottom:798.206667pt;}
.y1c{bottom:800.864000pt;}
.y190{bottom:802.072000pt;}
.y160{bottom:803.829333pt;}
.y127{bottom:810.958667pt;}
.y95{bottom:812.820000pt;}
.y143{bottom:814.944000pt;}
.y2f{bottom:815.354667pt;}
.y245{bottom:816.272000pt;}
.y1b{bottom:818.929333pt;}
.y18f{bottom:820.137333pt;}
.y15f{bottom:821.894667pt;}
.y1af{bottom:823.605333pt;}
.y1fb{bottom:824.808000pt;}
.y214{bottom:830.885333pt;}
.y1ec{bottom:831.780000pt;}
.y142{bottom:833.009333pt;}
.y244{bottom:834.337333pt;}
.y17b{bottom:834.829333pt;}
.y1a{bottom:836.994667pt;}
.y18e{bottom:838.202667pt;}
.y1ce{bottom:840.022667pt;}
.y1ae{bottom:841.672000pt;}
.y126{bottom:842.042667pt;}
.y1fa{bottom:842.874667pt;}
.ybb{bottom:846.082667pt;}
.y67{bottom:848.950667pt;}
.y1eb{bottom:849.846667pt;}
.y45{bottom:850.157333pt;}
.y141{bottom:851.074667pt;}
.y17a{bottom:852.894667pt;}
.y243{bottom:853.732000pt;}
.y19{bottom:855.060000pt;}
.yfb{bottom:855.061333pt;}
.y18d{bottom:856.268000pt;}
.y15e{bottom:858.026667pt;}
.y125{bottom:860.108000pt;}
.y1f9{bottom:860.940000pt;}
.yba{bottom:865.210667pt;}
.y66{bottom:867.016000pt;}
.y1ea{bottom:867.912000pt;}
.y44{bottom:868.224000pt;}
.y242{bottom:871.797333pt;}
.y1ad{bottom:872.754667pt;}
.y18{bottom:873.125333pt;}
.yfa{bottom:873.126667pt;}
.y18c{bottom:874.333333pt;}
.y15d{bottom:876.092000pt;}
.y1cd{bottom:876.152000pt;}
.y124{bottom:878.173333pt;}
.y140{bottom:882.158667pt;}
.y1{bottom:883.088000pt;}
.yb9{bottom:884.338667pt;}
.y65{bottom:885.081333pt;}
.y43{bottom:886.289333pt;}
.y241{bottom:889.862667pt;}
.y1ac{bottom:890.820000pt;}
.y17{bottom:891.190667pt;}
.y2e{bottom:891.192000pt;}
.y15c{bottom:894.157333pt;}
.y123{bottom:896.238667pt;}
.y1f8{bottom:897.441333pt;}
.y64{bottom:903.148000pt;}
.y42{bottom:904.354667pt;}
.y1ab{bottom:908.886667pt;}
.y16{bottom:909.257333pt;}
.yb8{bottom:910.022667pt;}
.y15b{bottom:912.222667pt;}
.y63{bottom:921.213333pt;}
.y41{bottom:922.420000pt;}
.y15{bottom:927.322667pt;}
.y62{bottom:939.278667pt;}
.y40{bottom:940.485333pt;}
.y14{bottom:945.388000pt;}
.yb7{bottom:947.354667pt;}
.h7{height:20.264890pt;}
.h5{height:40.378215pt;}
.h13{height:41.658217pt;}
.h3{height:43.636400pt;}
.h8{height:44.211696pt;}
.h2{height:45.652924pt;}
.hb{height:47.820800pt;}
.h4{height:48.651767pt;}
.h12{height:48.657101pt;}
.ha{height:54.036517pt;}
.h6{height:54.783356pt;}
.hf{height:55.625000pt;}
.he{height:61.187500pt;}
.h15{height:63.711067pt;}
.h14{height:63.829478pt;}
.h11{height:63.861338pt;}
.h10{height:66.750000pt;}
.h1{height:78.903200pt;}
.h16{height:88.423391pt;}
.hc{height:88.995954pt;}
.h17{height:98.248213pt;}
.h18{height:117.897855pt;}
.h9{height:423.902400pt;}
.hd{height:480.000000pt;}
.h0{height:1056.000000pt;}
.w4{width:20.264890pt;}
.w1{width:136.084445pt;}
.w3{width:148.248089pt;}
.w5{width:480.000000pt;}
.w2{width:593.463360pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:1.786667pt;}
.x2a{left:6.323211pt;}
.x1b{left:15.755039pt;}
.x2b{left:18.239578pt;}
.x19{left:21.830974pt;}
.x4e{left:25.493333pt;}
.x17{left:30.662274pt;}
.x4d{left:31.706667pt;}
.x50{left:32.600000pt;}
.x18{left:33.617815pt;}
.x56{left:42.366690pt;}
.xe{left:51.645442pt;}
.x11{left:52.728749pt;}
.x53{left:55.260388pt;}
.x10{left:56.273044pt;}
.x12{left:59.499412pt;}
.xc{left:60.983070pt;}
.x26{left:66.175875pt;}
.x2f{left:67.840000pt;}
.x43{left:88.133333pt;}
.x31{left:98.186667pt;}
.x30{left:100.440000pt;}
.x5c{left:107.294407pt;}
.x52{left:109.206667pt;}
.x2{left:111.273333pt;}
.x59{left:118.909333pt;}
.x22{left:121.140000pt;}
.x23{left:123.364000pt;}
.x4{left:126.545333pt;}
.x6{left:129.046667pt;}
.x33{left:130.786667pt;}
.x32{left:133.026667pt;}
.x20{left:134.181333pt;}
.x5{left:141.818667pt;}
.x7{left:145.934667pt;}
.x25{left:147.105200pt;}
.x5f{left:152.218667pt;}
.x5e{left:153.206667pt;}
.x60{left:154.166667pt;}
.x44{left:155.080000pt;}
.xb{left:162.471662pt;}
.x34{left:163.386667pt;}
.x35{left:165.626667pt;}
.x2e{left:168.000000pt;}
.xa{left:172.364000pt;}
.x2d{left:173.338667pt;}
.x45{left:185.973333pt;}
.x1e{left:187.636000pt;}
.x15{left:193.735172pt;}
.x16{left:196.678939pt;}
.x36{left:198.226667pt;}
.x1f{left:210.545333pt;}
.x46{left:218.560000pt;}
.x5b{left:222.431009pt;}
.x55{left:224.727147pt;}
.x24{left:225.818667pt;}
.x38{left:228.573333pt;}
.x37{left:230.813333pt;}
.x2c{left:236.219612pt;}
.x1{left:246.846667pt;}
.x5a{left:248.548107pt;}
.x47{left:252.866667pt;}
.x1a{left:256.190125pt;}
.x39{left:261.173333pt;}
.x8{left:264.000000pt;}
.x9{left:279.273333pt;}
.x5d{left:280.905990pt;}
.x48{left:285.466667pt;}
.x57{left:286.909333pt;}
.x54{left:291.056098pt;}
.x3a{left:293.760000pt;}
.x3b{left:296.013333pt;}
.x1d{left:298.698667pt;}
.x27{left:301.794251pt;}
.x49{left:318.066667pt;}
.x3c{left:326.360000pt;}
.xd{left:328.500102pt;}
.x4a{left:350.653333pt;}
.x13{left:359.751837pt;}
.x3d{left:361.200000pt;}
.x14{left:365.945522pt;}
.x4b{left:383.253333pt;}
.x21{left:384.364000pt;}
.x3f{left:391.546667pt;}
.x3e{left:393.800000pt;}
.x51{left:400.726667pt;}
.x3{left:404.364000pt;}
.x4c{left:415.853333pt;}
.x58{left:429.818667pt;}
.x40{left:448.573333pt;}
.x42{left:452.466667pt;}
.x28{left:456.495077pt;}
.x41{left:458.026667pt;}
.xf{left:488.923610pt;}
.x1c{left:559.880870pt;}
.x29{left:604.743166pt;}
}




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