
    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_d83f5058b480dfa96d5a7147.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_6a60e8c26e37f5fa7cf47037.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_683f817f18f4ad776ad44d45.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_e574fc758c5bc8eeeae9bd45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_edd9a77dd1d0854e84993308.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202000;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_7e116a38f19af41ed7aeef9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.223000;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_0bf7d6c35333b85f8ae5607e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_f7b4383a50c4184faff249bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202000;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_63153c5df15236717bf054e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690000;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_4d80c006b6930b9db0d11ae7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_b8ba8fde481c44832c6fecfc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1b00a073e2dc4223247a23e3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.620000;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);}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v2{vertical-align:9.550415px;}
.v7{vertical-align:18.000000px;}
.v6{vertical-align:19.199988px;}
.v5{vertical-align:23.433497px;}
.v3{vertical-align:26.399780px;}
.ls2{letter-spacing:-1.050000px;}
.ls4{letter-spacing:-0.882000px;}
.ls3{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.529200px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000002px;}
.ls11{letter-spacing:0.000070px;}
.ls7{letter-spacing:0.246911px;}
.ls5{letter-spacing:0.294000px;}
.lsa{letter-spacing:0.299874px;}
.ls9{letter-spacing:0.317520px;}
.ls8{letter-spacing:0.470351px;}
.lsf{letter-spacing:0.770271px;}
.lsd{letter-spacing:0.799668px;}
.lsb{letter-spacing:0.823200px;}
.lsc{letter-spacing:0.829080px;}
.lse{letter-spacing:0.834941px;}
.ls0{letter-spacing:5.460000px;}
.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;}
}
.wsb5{word-spacing:-14.641200px;}
.ws52{word-spacing:-14.112000px;}
.wsb{word-spacing:-13.818000px;}
.ws6{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.wsa{word-spacing:-11.880000px;}
.ws11b{word-spacing:-11.426400px;}
.ws0{word-spacing:-10.176000px;}
.ws3{word-spacing:-10.117800px;}
.ws8{word-spacing:-9.855000px;}
.ws97{word-spacing:-9.696000px;}
.ws51{word-spacing:-9.672600px;}
.wsfe{word-spacing:-9.315000px;}
.ws2{word-spacing:-8.148000px;}
.ws11d{word-spacing:-7.965000px;}
.wsfd{word-spacing:-7.358400px;}
.ws7{word-spacing:-6.898500px;}
.ws5f{word-spacing:-6.468000px;}
.wsc{word-spacing:-5.640000px;}
.wsd1{word-spacing:-4.512000px;}
.wsb0{word-spacing:-1.822800px;}
.ws27{word-spacing:-1.646400px;}
.ws98{word-spacing:-1.293600px;}
.wsc7{word-spacing:-0.823200px;}
.wsd9{word-spacing:-0.705600px;}
.wsf8{word-spacing:-0.646800px;}
.ws54{word-spacing:-0.593880px;}
.wsdb{word-spacing:-0.588000px;}
.ws29{word-spacing:-0.529200px;}
.wsaa{word-spacing:-0.470400px;}
.ws5b{word-spacing:-0.352800px;}
.wsa5{word-spacing:-0.294000px;}
.wsc8{word-spacing:-0.235200px;}
.wsa0{word-spacing:-0.176400px;}
.wsdc{word-spacing:-0.117600px;}
.ws11c{word-spacing:-0.090000px;}
.ws111{word-spacing:-0.058800px;}
.ws53{word-spacing:-0.041160px;}
.ws9{word-spacing:0.000000px;}
.ws4a{word-spacing:0.117600px;}
.wsde{word-spacing:0.176400px;}
.wsb4{word-spacing:0.182280px;}
.wse6{word-spacing:0.235200px;}
.ws69{word-spacing:0.294000px;}
.wsf9{word-spacing:0.352800px;}
.ws79{word-spacing:0.411600px;}
.ws80{word-spacing:0.529200px;}
.ws117{word-spacing:0.588000px;}
.wse3{word-spacing:0.646800px;}
.wsb8{word-spacing:0.705600px;}
.ws2d{word-spacing:0.764400px;}
.ws30{word-spacing:0.882000px;}
.wsd2{word-spacing:0.940793px;}
.ws26{word-spacing:0.940800px;}
.ws82{word-spacing:0.999600px;}
.wse7{word-spacing:1.117200px;}
.ws2c{word-spacing:1.293600px;}
.ws90{word-spacing:1.352400px;}
.ws56{word-spacing:1.528800px;}
.wse5{word-spacing:1.587600px;}
.ws3e{word-spacing:1.646400px;}
.wscc{word-spacing:1.822800px;}
.ws1c{word-spacing:1.881600px;}
.ws106{word-spacing:1.940400px;}
.ws114{word-spacing:2.116800px;}
.ws6e{word-spacing:2.175600px;}
.wsf3{word-spacing:2.352000px;}
.wsda{word-spacing:2.410800px;}
.ws2e{word-spacing:2.528400px;}
.ws23{word-spacing:2.587200px;}
.ws8f{word-spacing:2.646000px;}
.ws6a{word-spacing:2.704800px;}
.ws87{word-spacing:2.763600px;}
.ws12{word-spacing:2.822400px;}
.wsc9{word-spacing:2.881200px;}
.wsd6{word-spacing:2.998800px;}
.ws58{word-spacing:3.057600px;}
.wsd3{word-spacing:3.116400px;}
.ws8b{word-spacing:3.234000px;}
.ws28{word-spacing:3.292800px;}
.ws91{word-spacing:3.351600px;}
.ws70{word-spacing:3.410400px;}
.ws20{word-spacing:3.469200px;}
.ws96{word-spacing:3.645600px;}
.wsa9{word-spacing:3.704400px;}
.wsb1{word-spacing:3.763200px;}
.wsc6{word-spacing:3.822000px;}
.ws104{word-spacing:3.880800px;}
.ws93{word-spacing:3.939600px;}
.ws9d{word-spacing:3.998400px;}
.ws2f{word-spacing:4.116000px;}
.ws7d{word-spacing:4.233600px;}
.ws5d{word-spacing:4.292400px;}
.wsb7{word-spacing:4.351200px;}
.wsea{word-spacing:4.468800px;}
.wsf2{word-spacing:4.527600px;}
.ws1b{word-spacing:4.645200px;}
.wsec{word-spacing:4.704000px;}
.ws8e{word-spacing:4.762800px;}
.ws3b{word-spacing:4.821600px;}
.wsc5{word-spacing:4.880400px;}
.ws4c{word-spacing:4.939200px;}
.wsa4{word-spacing:4.998000px;}
.wsff{word-spacing:5.056800px;}
.wsdf{word-spacing:5.115600px;}
.wsf4{word-spacing:5.350800px;}
.ws45{word-spacing:5.409600px;}
.ws1d{word-spacing:5.468400px;}
.ws102{word-spacing:5.527200px;}
.ws85{word-spacing:5.586000px;}
.ws10b{word-spacing:5.644800px;}
.ws41{word-spacing:5.703600px;}
.ws32{word-spacing:5.762400px;}
.ws7b{word-spacing:5.821200px;}
.ws88{word-spacing:5.880000px;}
.wsab{word-spacing:5.938800px;}
.wsaf{word-spacing:5.997600px;}
.ws4b{word-spacing:6.056400px;}
.ws33{word-spacing:6.115200px;}
.ws6d{word-spacing:6.174000px;}
.ws9c{word-spacing:6.291600px;}
.ws40{word-spacing:6.350400px;}
.ws103{word-spacing:6.409200px;}
.ws55{word-spacing:6.468000px;}
.ws92{word-spacing:6.585600px;}
.ws4f{word-spacing:6.644400px;}
.ws81{word-spacing:6.703200px;}
.ws7a{word-spacing:6.762000px;}
.ws11a{word-spacing:6.820800px;}
.ws5e{word-spacing:6.879600px;}
.wsd0{word-spacing:7.056000px;}
.ws25{word-spacing:7.114800px;}
.ws72{word-spacing:7.173600px;}
.wsc4{word-spacing:7.232400px;}
.ws3d{word-spacing:7.291200px;}
.ws7f{word-spacing:7.408800px;}
.ws22{word-spacing:7.467600px;}
.ws57{word-spacing:7.526400px;}
.ws63{word-spacing:7.585200px;}
.wse4{word-spacing:7.702800px;}
.ws67{word-spacing:7.820400px;}
.wsb6{word-spacing:7.879200px;}
.ws73{word-spacing:7.938000px;}
.ws9e{word-spacing:7.996800px;}
.wsd8{word-spacing:8.055600px;}
.ws9b{word-spacing:8.114400px;}
.ws105{word-spacing:8.290800px;}
.ws7e{word-spacing:8.349600px;}
.ws94{word-spacing:8.408400px;}
.ws8a{word-spacing:8.467200px;}
.ws37{word-spacing:8.526000px;}
.wse1{word-spacing:8.584800px;}
.ws11{word-spacing:8.643600px;}
.ws86{word-spacing:8.702400px;}
.ws46{word-spacing:8.820000px;}
.ws17{word-spacing:8.878800px;}
.wse2{word-spacing:9.055200px;}
.wsd4{word-spacing:9.114000px;}
.ws2b{word-spacing:9.172800px;}
.wsc1{word-spacing:9.231600px;}
.ws100{word-spacing:9.290400px;}
.ws4d{word-spacing:9.408000px;}
.wsba{word-spacing:9.584400px;}
.ws110{word-spacing:9.702000px;}
.ws9a{word-spacing:9.819600px;}
.ws1f{word-spacing:9.878400px;}
.ws49{word-spacing:9.937200px;}
.ws62{word-spacing:10.054800px;}
.ws21{word-spacing:10.113600px;}
.ws47{word-spacing:10.231200px;}
.ws6b{word-spacing:10.407600px;}
.ws3c{word-spacing:10.466400px;}
.wsf1{word-spacing:10.525200px;}
.ws78{word-spacing:10.642800px;}
.ws118{word-spacing:10.760400px;}
.ws10a{word-spacing:10.878000px;}
.ws99{word-spacing:10.936800px;}
.ws77{word-spacing:11.113200px;}
.wsf0{word-spacing:11.172000px;}
.ws66{word-spacing:11.289600px;}
.wsef{word-spacing:11.466000px;}
.wsbb{word-spacing:11.642400px;}
.wsed{word-spacing:11.701200px;}
.ws19{word-spacing:11.877600px;}
.ws39{word-spacing:11.995200px;}
.ws38{word-spacing:12.112800px;}
.ws8c{word-spacing:12.171600px;}
.ws10c{word-spacing:12.230400px;}
.ws59{word-spacing:12.289200px;}
.ws2a{word-spacing:12.348000px;}
.ws34{word-spacing:12.406800px;}
.ws36{word-spacing:12.524400px;}
.ws107{word-spacing:12.642000px;}
.ws3a{word-spacing:12.759600px;}
.ws74{word-spacing:12.818400px;}
.wse0{word-spacing:12.877200px;}
.wsa1{word-spacing:12.936000px;}
.ws13{word-spacing:12.994800px;}
.ws10e{word-spacing:13.112400px;}
.ws8d{word-spacing:13.230000px;}
.ws115{word-spacing:13.406400px;}
.ws101{word-spacing:13.465200px;}
.wsd5{word-spacing:13.582800px;}
.ws113{word-spacing:13.700400px;}
.wsac{word-spacing:13.818000px;}
.ws42{word-spacing:14.053200px;}
.ws84{word-spacing:14.406000px;}
.ws43{word-spacing:14.464800px;}
.wsb9{word-spacing:14.641200px;}
.wse8{word-spacing:14.758800px;}
.ws76{word-spacing:14.817600px;}
.ws24{word-spacing:14.876400px;}
.wseb{word-spacing:14.994000px;}
.ws64{word-spacing:15.111600px;}
.ws1e{word-spacing:15.170400px;}
.ws18{word-spacing:15.229200px;}
.ws89{word-spacing:15.464400px;}
.wscb{word-spacing:15.523200px;}
.ws65{word-spacing:15.876000px;}
.wsc3{word-spacing:15.993600px;}
.ws109{word-spacing:16.052400px;}
.wsf5{word-spacing:16.111200px;}
.wsad{word-spacing:16.170000px;}
.wsce{word-spacing:16.287600px;}
.ws108{word-spacing:16.405200px;}
.ws10{word-spacing:16.464000px;}
.wsa3{word-spacing:16.522800px;}
.ws15{word-spacing:16.758000px;}
.wsd7{word-spacing:16.934400px;}
.wsae{word-spacing:17.169600px;}
.ws75{word-spacing:17.228400px;}
.wsa6{word-spacing:17.287200px;}
.ws112{word-spacing:17.404800px;}
.ws1a{word-spacing:17.522400px;}
.ws95{word-spacing:17.757600px;}
.ws68{word-spacing:17.816400px;}
.ws5c{word-spacing:18.051600px;}
.wse{word-spacing:18.463200px;}
.ws71{word-spacing:18.522000px;}
.wsd{word-spacing:18.639600px;}
.wsbf{word-spacing:18.698400px;}
.ws31{word-spacing:18.757200px;}
.wse9{word-spacing:18.816000px;}
.wsca{word-spacing:18.874800px;}
.wsf6{word-spacing:19.051200px;}
.ws4e{word-spacing:19.110000px;}
.ws6c{word-spacing:19.286400px;}
.wsf{word-spacing:19.639200px;}
.wsb2{word-spacing:20.109600px;}
.wsdd{word-spacing:20.462400px;}
.ws7c{word-spacing:20.521200px;}
.ws35{word-spacing:20.697600px;}
.wscd{word-spacing:20.815200px;}
.wsa7{word-spacing:20.991600px;}
.ws48{word-spacing:21.285600px;}
.wsfa{word-spacing:21.403200px;}
.ws5a{word-spacing:21.462000px;}
.wsc0{word-spacing:21.697200px;}
.wsf7{word-spacing:21.873600px;}
.ws60{word-spacing:21.991200px;}
.wsee{word-spacing:22.108800px;}
.wsfc{word-spacing:22.285200px;}
.ws119{word-spacing:22.638000px;}
.ws9f{word-spacing:22.814400px;}
.ws83{word-spacing:22.990800px;}
.ws50{word-spacing:23.049600px;}
.ws6f{word-spacing:23.461200px;}
.ws16{word-spacing:23.755200px;}
.wscf{word-spacing:24.578400px;}
.wsbe{word-spacing:25.284000px;}
.ws10d{word-spacing:25.401600px;}
.wsbd{word-spacing:25.519200px;}
.ws10f{word-spacing:26.107200px;}
.ws14{word-spacing:26.989200px;}
.wsb3{word-spacing:27.048000px;}
.wsa8{word-spacing:27.518400px;}
.wsa2{word-spacing:28.400400px;}
.ws61{word-spacing:28.459200px;}
.ws3f{word-spacing:28.694400px;}
.wsc2{word-spacing:29.517600px;}
.ws44{word-spacing:30.340800px;}
.wsfb{word-spacing:30.987600px;}
.ws116{word-spacing:34.927200px;}
.wsbc{word-spacing:40.513200px;}
.ws1{word-spacing:1974.953950px;}
._21{margin-left:-40.681214px;}
._22{margin-left:-28.486823px;}
._1b{margin-left:-27.001248px;}
._16{margin-left:-22.704014px;}
._1d{margin-left:-21.328800px;}
._15{margin-left:-20.210089px;}
._18{margin-left:-18.245111px;}
._13{margin-left:-16.473625px;}
._1c{margin-left:-15.430821px;}
._e{margin-left:-14.391600px;}
._6{margin-left:-12.715200px;}
._1f{margin-left:-11.583610px;}
._f{margin-left:-10.575600px;}
._1a{margin-left:-9.090029px;}
._20{margin-left:-7.554022px;}
._a{margin-left:-6.460786px;}
._14{margin-left:-5.041200px;}
._5{margin-left:-4.015800px;}
._2{margin-left:-2.809800px;}
._0{margin-left:-1.252800px;}
._1{width:1.160400px;}
._4{width:2.558400px;}
._3{width:4.083000px;}
._8{width:5.640000px;}
._c{width:7.133981px;}
._d{width:8.526000px;}
._12{width:10.018186px;}
._1e{width:11.556000px;}
._b{width:12.645553px;}
._19{width:13.700400px;}
._9{width:15.900000px;}
._7{width:17.092786px;}
._17{width:18.654188px;}
._10{width:21.979439px;}
._11{width:27.850899px;}
._23{width:44.515800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fsd{font-size:41.160000px;}
.fs2{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:74.580000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:0.415833px;}
.yb{bottom:79.008299px;}
.ya{bottom:91.009799px;}
.y130{bottom:100.734003px;}
.y26c{bottom:100.839000px;}
.y2a3{bottom:100.842773px;}
.y145{bottom:102.663457px;}
.y9{bottom:103.011299px;}
.y14b{bottom:107.151455px;}
.y177{bottom:107.737953px;}
.y1a6{bottom:107.745153px;}
.y14e{bottom:107.877445px;}
.y11c{bottom:109.865547px;}
.y1ed{bottom:112.237953px;}
.y26b{bottom:114.339000px;}
.y2a2{bottom:114.342773px;}
.y8{bottom:115.012799px;}
.y1a9{bottom:115.360348px;}
.y8a{bottom:115.961552px;}
.y62{bottom:117.340053px;}
.y12f{bottom:118.726803px;}
.y144{bottom:120.656257px;}
.y11b{bottom:124.865547px;}
.y14a{bottom:125.152205px;}
.y1a5{bottom:125.737953px;}
.y176{bottom:125.766753px;}
.y14d{bottom:125.879255px;}
.y7{bottom:127.014299px;}
.y26a{bottom:127.839000px;}
.y2a1{bottom:127.842773px;}
.y1a8{bottom:130.360348px;}
.y225{bottom:130.842750px;}
.y89{bottom:133.983152px;}
.y61{bottom:135.332853px;}
.y12e{bottom:136.719603px;}
.y143{bottom:138.649057px;}
.y6{bottom:139.015799px;}
.y1ec{bottom:139.237953px;}
.y11a{bottom:139.865547px;}
.y269{bottom:141.339000px;}
.y2a0{bottom:141.342773px;}
.ybc{bottom:142.620895px;}
.ye8{bottom:142.707295px;}
.y149{bottom:143.151455px;}
.y1a4{bottom:143.745153px;}
.y175{bottom:143.759553px;}
.y14c{bottom:143.872055px;}
.y224{bottom:144.342750px;}
.y1a7{bottom:145.360348px;}
.y5{bottom:151.017299px;}
.y88{bottom:151.975952px;}
.y1eb{bottom:152.737953px;}
.y60{bottom:153.325653px;}
.y12d{bottom:154.712403px;}
.y268{bottom:154.839000px;}
.y29f{bottom:154.842773px;}
.y142{bottom:156.641857px;}
.y223{bottom:157.842750px;}
.ybb{bottom:160.656895px;}
.ye7{bottom:160.700095px;}
.y1a3{bottom:161.737953px;}
.y174{bottom:161.752353px;}
.y4{bottom:163.018799px;}
.y1ea{bottom:166.237953px;}
.y267{bottom:168.339000px;}
.y29e{bottom:168.342773px;}
.y87{bottom:169.968752px;}
.y5f{bottom:171.318453px;}
.y222{bottom:171.342750px;}
.y12c{bottom:172.705203px;}
.y141{bottom:174.634657px;}
.yba{bottom:178.649695px;}
.ye6{bottom:178.692895px;}
.y1e9{bottom:179.737953px;}
.y173{bottom:179.745153px;}
.y1a2{bottom:179.752353px;}
.y1ad{bottom:180.686850px;}
.y266{bottom:181.839000px;}
.y29d{bottom:181.842773px;}
.y221{bottom:184.842750px;}
.y86{bottom:187.961552px;}
.y5e{bottom:189.311253px;}
.y12b{bottom:190.698003px;}
.y140{bottom:192.627457px;}
.y1e8{bottom:193.237953px;}
.y265{bottom:195.339000px;}
.y29c{bottom:195.342773px;}
.y1ac{bottom:195.686850px;}
.yb9{bottom:196.642495px;}
.ye5{bottom:196.685695px;}
.y172{bottom:197.737953px;}
.y1a1{bottom:197.745153px;}
.y220{bottom:198.342750px;}
.y151{bottom:199.882347px;}
.y2f{bottom:202.111794px;}
.y85{bottom:205.961540px;}
.y1e7{bottom:206.737953px;}
.y5d{bottom:207.304053px;}
.y12a{bottom:208.690803px;}
.y264{bottom:208.839000px;}
.y29b{bottom:208.842773px;}
.y13f{bottom:210.670496px;}
.y1ab{bottom:210.686850px;}
.y21f{bottom:211.842750px;}
.yb8{bottom:214.635295px;}
.ye4{bottom:214.678495px;}
.y150{bottom:214.882347px;}
.y2e{bottom:215.611794px;}
.y1a0{bottom:215.737953px;}
.y171{bottom:215.759553px;}
.y1e6{bottom:220.237953px;}
.y263{bottom:222.339000px;}
.y29a{bottom:222.342773px;}
.y84{bottom:223.961540px;}
.y5c{bottom:225.296853px;}
.y21e{bottom:225.342750px;}
.y1aa{bottom:225.686850px;}
.y129{bottom:226.683603px;}
.y13e{bottom:228.663296px;}
.y2d{bottom:229.111794px;}
.y14f{bottom:229.882347px;}
.yb7{bottom:232.628095px;}
.ye3{bottom:232.671295px;}
.y19f{bottom:233.737953px;}
.y170{bottom:233.752353px;}
.y1cf{bottom:233.773953px;}
.y262{bottom:235.839000px;}
.y299{bottom:235.842773px;}
.y21d{bottom:238.842750px;}
.y2c{bottom:242.611794px;}
.y5b{bottom:243.289653px;}
.y128{bottom:244.676403px;}
.y13d{bottom:246.656096px;}
.y261{bottom:249.339000px;}
.y298{bottom:249.342773px;}
.yb6{bottom:250.620895px;}
.ye2{bottom:250.664095px;}
.y16f{bottom:251.745153px;}
.y1ce{bottom:251.766753px;}
.y19e{bottom:251.809930px;}
.y21c{bottom:252.342750px;}
.y2b{bottom:256.111794px;}
.y1e5{bottom:259.241703px;}
.y5a{bottom:261.282453px;}
.y83{bottom:262.123195px;}
.y127{bottom:262.669203px;}
.y260{bottom:262.839000px;}
.y297{bottom:262.842773px;}
.y13c{bottom:264.648896px;}
.y21b{bottom:265.842750px;}
.yb5{bottom:268.620895px;}
.ye1{bottom:268.656895px;}
.y2a{bottom:269.611794px;}
.y16e{bottom:269.737953px;}
.y1cd{bottom:269.759553px;}
.y19d{bottom:269.802730px;}
.y25f{bottom:276.339000px;}
.y296{bottom:276.342773px;}
.y1e4{bottom:278.737953px;}
.y59{bottom:279.275253px;}
.y21a{bottom:279.342750px;}
.y82{bottom:280.115995px;}
.y126{bottom:280.662003px;}
.y13b{bottom:282.641696px;}
.ye0{bottom:286.649695px;}
.y1cc{bottom:287.752353px;}
.y16d{bottom:287.759553px;}
.y19c{bottom:287.795530px;}
.y25e{bottom:289.839000px;}
.y295{bottom:289.842773px;}
.y29{bottom:290.986794px;}
.y58{bottom:297.296693px;}
.y81{bottom:298.108795px;}
.y125{bottom:298.669203px;}
.y13a{bottom:300.634496px;}
.y25d{bottom:303.339000px;}
.y294{bottom:303.342773px;}
.ydf{bottom:304.642495px;}
.yb4{bottom:304.649695px;}
.y1cb{bottom:305.745153px;}
.y16c{bottom:305.752353px;}
.y19b{bottom:305.788330px;}
.y28{bottom:308.986794px;}
.y1e3{bottom:310.237953px;}
.y57{bottom:315.289493px;}
.y80{bottom:316.101595px;}
.y124{bottom:316.662003px;}
.y25c{bottom:316.839000px;}
.y293{bottom:316.842773px;}
.y139{bottom:318.627296px;}
.yde{bottom:322.635295px;}
.yb3{bottom:322.642495px;}
.y1ca{bottom:323.737953px;}
.y16b{bottom:323.745153px;}
.y19a{bottom:323.781130px;}
.y27{bottom:325.861794px;}
.y25b{bottom:330.339000px;}
.y292{bottom:330.342773px;}
.y56{bottom:333.282293px;}
.y7f{bottom:334.094395px;}
.y123{bottom:334.662753px;}
.y138{bottom:336.656119px;}
.ydd{bottom:340.628095px;}
.yb2{bottom:340.635295px;}
.y16a{bottom:341.737953px;}
.y1c9{bottom:341.759530px;}
.y199{bottom:341.773930px;}
.y25a{bottom:343.839000px;}
.y291{bottom:343.842773px;}
.y26{bottom:343.861794px;}
.y219{bottom:348.342728px;}
.y55{bottom:351.275093px;}
.y7e{bottom:352.087195px;}
.y122{bottom:352.662003px;}
.y137{bottom:354.648919px;}
.y259{bottom:357.339000px;}
.y290{bottom:357.342773px;}
.yb1{bottom:358.628095px;}
.ydc{bottom:358.642495px;}
.y169{bottom:359.745153px;}
.y1c8{bottom:359.752330px;}
.y198{bottom:359.766730px;}
.y54{bottom:369.325516px;}
.y7d{bottom:370.079995px;}
.y258{bottom:370.839000px;}
.y28f{bottom:370.842773px;}
.y136{bottom:372.641719px;}
.y218{bottom:375.342728px;}
.yb0{bottom:376.620895px;}
.ydb{bottom:376.635295px;}
.y168{bottom:377.737953px;}
.y1c7{bottom:377.745130px;}
.y197{bottom:377.759530px;}
.y1e2{bottom:377.781130px;}
.y257{bottom:384.339000px;}
.y28e{bottom:384.342773px;}
.y53{bottom:387.318316px;}
.y7c{bottom:388.072795px;}
.y217{bottom:388.842728px;}
.y135{bottom:390.634519px;}
.y121{bottom:390.656119px;}
.yda{bottom:394.628095px;}
.yaf{bottom:394.642495px;}
.y1c6{bottom:395.737930px;}
.y167{bottom:395.739430px;}
.y196{bottom:395.752330px;}
.y1e1{bottom:395.773930px;}
.y256{bottom:397.839000px;}
.y28d{bottom:397.842773px;}
.y216{bottom:402.342728px;}
.y52{bottom:405.311116px;}
.y7b{bottom:406.065595px;}
.y134{bottom:408.627319px;}
.y120{bottom:408.648919px;}
.y25{bottom:409.389313px;}
.y255{bottom:411.339000px;}
.y28c{bottom:411.342773px;}
.yd9{bottom:412.620895px;}
.yae{bottom:412.635295px;}
.y166{bottom:413.738680px;}
.y195{bottom:413.745130px;}
.y1e0{bottom:413.766730px;}
.y1c5{bottom:413.773930px;}
.y215{bottom:415.842728px;}
.y51{bottom:423.303916px;}
.y7a{bottom:424.058395px;}
.y254{bottom:424.839000px;}
.y28b{bottom:424.842773px;}
.y11f{bottom:426.641719px;}
.y133{bottom:426.706491px;}
.y24{bottom:427.389313px;}
.y214{bottom:429.342728px;}
.yd8{bottom:430.625696px;}
.yad{bottom:430.628095px;}
.y165{bottom:431.737930px;}
.y1df{bottom:431.759530px;}
.y1c4{bottom:431.766730px;}
.y253{bottom:438.339000px;}
.y28a{bottom:438.342773px;}
.y50{bottom:441.296716px;}
.y79{bottom:442.058395px;}
.y213{bottom:442.842728px;}
.y11e{bottom:444.634519px;}
.y132{bottom:444.699291px;}
.y23{bottom:445.389313px;}
.yac{bottom:448.620895px;}
.y194{bottom:449.745130px;}
.y1de{bottom:449.752330px;}
.y1c3{bottom:449.759530px;}
.y252{bottom:451.839000px;}
.y289{bottom:451.842773px;}
.y212{bottom:456.342728px;}
.y4f{bottom:459.289516px;}
.y78{bottom:460.065595px;}
.y11d{bottom:462.627319px;}
.y131{bottom:462.692091px;}
.y251{bottom:465.339000px;}
.y288{bottom:465.342773px;}
.yab{bottom:466.620895px;}
.y193{bottom:467.737930px;}
.y164{bottom:467.745130px;}
.y1c2{bottom:467.752330px;}
.y22{bottom:467.889313px;}
.y211{bottom:469.842728px;}
.y4e{bottom:477.282316px;}
.y77{bottom:478.058395px;}
.y250{bottom:478.839000px;}
.y287{bottom:478.842773px;}
.y210{bottom:483.342728px;}
.y163{bottom:485.737930px;}
.y1c1{bottom:485.745130px;}
.y21{bottom:485.889313px;}
.y24f{bottom:492.339000px;}
.y286{bottom:492.342773px;}
.y4d{bottom:495.275116px;}
.y76{bottom:496.072795px;}
.y20f{bottom:496.842728px;}
.yaa{bottom:502.620895px;}
.yd7{bottom:502.671295px;}
.y1c0{bottom:503.737930px;}
.y192{bottom:503.752330px;}
.y162{bottom:503.781130px;}
.y20{bottom:503.889313px;}
.y24e{bottom:505.839000px;}
.y285{bottom:505.842773px;}
.y20e{bottom:510.342728px;}
.y148{bottom:511.769531px;}
.y4c{bottom:513.289516px;}
.y75{bottom:514.065595px;}
.y24d{bottom:519.339000px;}
.y284{bottom:519.342773px;}
.ya9{bottom:520.628095px;}
.yd6{bottom:520.664095px;}
.y191{bottom:521.745130px;}
.y1bf{bottom:521.752330px;}
.y161{bottom:521.773930px;}
.y1f{bottom:521.889313px;}
.y20d{bottom:523.842728px;}
.y147{bottom:526.769531px;}
.y4b{bottom:531.282316px;}
.y74{bottom:532.058395px;}
.y24c{bottom:532.839000px;}
.y283{bottom:532.842773px;}
.y20c{bottom:537.342728px;}
.ya8{bottom:538.620895px;}
.yd5{bottom:538.656895px;}
.y190{bottom:539.737930px;}
.y1be{bottom:539.745130px;}
.y160{bottom:539.766730px;}
.y146{bottom:541.769531px;}
.y1e{bottom:544.389313px;}
.y24b{bottom:546.339000px;}
.y282{bottom:546.342773px;}
.y4a{bottom:549.275116px;}
.y73{bottom:550.065595px;}
.y20b{bottom:550.842728px;}
.ya7{bottom:556.635295px;}
.yd4{bottom:556.649695px;}
.y18f{bottom:557.737930px;}
.y15f{bottom:557.759530px;}
.y1dd{bottom:557.802730px;}
.y24a{bottom:559.839000px;}
.y281{bottom:559.842773px;}
.y1d{bottom:562.389313px;}
.y49{bottom:567.275116px;}
.y72{bottom:568.058395px;}
.y20a{bottom:568.842728px;}
.y249{bottom:573.339000px;}
.y280{bottom:573.342773px;}
.ya6{bottom:574.628095px;}
.yd3{bottom:574.642495px;}
.y15e{bottom:575.752330px;}
.y1dc{bottom:575.795530px;}
.y209{bottom:577.842728px;}
.y1c{bottom:580.389313px;}
.y48{bottom:585.303916px;}
.y71{bottom:586.094395px;}
.y248{bottom:586.839000px;}
.y27f{bottom:586.842773px;}
.y2a4{bottom:591.342728px;}
.ya5{bottom:592.620895px;}
.yd2{bottom:592.635295px;}
.y15d{bottom:593.745130px;}
.y1db{bottom:593.788330px;}
.y1b{bottom:598.389313px;}
.y247{bottom:600.339000px;}
.y27e{bottom:600.342773px;}
.y47{bottom:603.296716px;}
.y70{bottom:604.087195px;}
.y208{bottom:604.842728px;}
.ya4{bottom:610.621645px;}
.yd1{bottom:610.628095px;}
.y119{bottom:611.011780px;}
.y15c{bottom:611.737930px;}
.y1da{bottom:611.781130px;}
.y100{bottom:611.809976px;}
.y246{bottom:613.839000px;}
.y27d{bottom:613.842773px;}
.y1a{bottom:616.389313px;}
.y207{bottom:618.342728px;}
.y46{bottom:621.289516px;}
.y6f{bottom:622.079995px;}
.y245{bottom:627.339000px;}
.y27c{bottom:627.342773px;}
.ya3{bottom:628.620895px;}
.y118{bottom:629.040580px;}
.y18e{bottom:629.745130px;}
.y1bd{bottom:629.773930px;}
.yff{bottom:629.802776px;}
.y19{bottom:634.389313px;}
.y45{bottom:639.282316px;}
.y6e{bottom:640.072795px;}
.y244{bottom:640.839000px;}
.y27b{bottom:640.842773px;}
.y206{bottom:645.342728px;}
.yd0{bottom:646.642495px;}
.y117{bottom:647.033380px;}
.y18d{bottom:647.737930px;}
.y1bc{bottom:647.766730px;}
.yfe{bottom:647.795576px;}
.y18{bottom:652.389313px;}
.y243{bottom:654.339000px;}
.y27a{bottom:654.342773px;}
.y44{bottom:657.275116px;}
.y6d{bottom:658.065595px;}
.y205{bottom:658.842728px;}
.ya2{bottom:664.620895px;}
.ycf{bottom:664.635295px;}
.y116{bottom:665.026180px;}
.y18c{bottom:665.752330px;}
.y1bb{bottom:665.759530px;}
.yfd{bottom:665.788376px;}
.y242{bottom:667.839000px;}
.y279{bottom:667.842773px;}
.y17{bottom:670.389313px;}
.y43{bottom:675.296716px;}
.y6c{bottom:676.058395px;}
.y241{bottom:681.339000px;}
.y278{bottom:681.342773px;}
.yce{bottom:682.628095px;}
.ya1{bottom:682.635295px;}
.y115{bottom:683.018980px;}
.y18b{bottom:683.745130px;}
.y1ba{bottom:683.752330px;}
.yfc{bottom:683.781176px;}
.y204{bottom:685.842728px;}
.y16{bottom:692.889313px;}
.y42{bottom:693.289516px;}
.y6b{bottom:694.065595px;}
.y240{bottom:694.839000px;}
.y277{bottom:694.842773px;}
.y203{bottom:699.342728px;}
.ycd{bottom:700.620895px;}
.ya0{bottom:700.628095px;}
.y114{bottom:701.011780px;}
.y18a{bottom:701.737930px;}
.y1b9{bottom:701.745130px;}
.yfb{bottom:701.773976px;}
.y23f{bottom:708.339000px;}
.y276{bottom:708.342773px;}
.y41{bottom:711.282316px;}
.y6a{bottom:712.058395px;}
.y202{bottom:712.842728px;}
.ycc{bottom:718.620895px;}
.y9f{bottom:718.642541px;}
.y113{bottom:719.062180px;}
.y189{bottom:719.737930px;}
.yfa{bottom:719.766776px;}
.y23e{bottom:721.839000px;}
.y275{bottom:721.842773px;}
.y201{bottom:726.342728px;}
.y40{bottom:729.275116px;}
.y69{bottom:730.065595px;}
.y23d{bottom:735.339000px;}
.y274{bottom:735.342773px;}
.y9e{bottom:736.635341px;}
.y112{bottom:737.054980px;}
.y188{bottom:737.737930px;}
.y1d9{bottom:737.752376px;}
.yf9{bottom:737.759576px;}
.y200{bottom:739.842728px;}
.y3f{bottom:747.275116px;}
.y68{bottom:748.058395px;}
.y23c{bottom:748.839000px;}
.y273{bottom:748.842773px;}
.y1ff{bottom:753.342728px;}
.y9d{bottom:754.628141px;}
.ycb{bottom:754.678358px;}
.y111{bottom:755.047780px;}
.y1d8{bottom:755.745176px;}
.yf8{bottom:755.752376px;}
.y1b8{bottom:755.773976px;}
.y23b{bottom:762.339000px;}
.y272{bottom:762.342773px;}
.y15{bottom:762.548112px;}
.y3e{bottom:765.296808px;}
.y67{bottom:766.065641px;}
.y9c{bottom:772.628141px;}
.yca{bottom:772.671158px;}
.y110{bottom:773.040580px;}
.y1d7{bottom:773.737976px;}
.yf7{bottom:773.745176px;}
.y1b7{bottom:773.766776px;}
.y187{bottom:773.788376px;}
.y23a{bottom:775.839000px;}
.y271{bottom:775.842773px;}
.y1fe{bottom:780.342773px;}
.y3d{bottom:783.289608px;}
.y14{bottom:783.548112px;}
.y66{bottom:784.058441px;}
.y239{bottom:789.339000px;}
.y270{bottom:789.342773px;}
.y9b{bottom:790.628141px;}
.yc9{bottom:790.663958px;}
.y10f{bottom:791.033380px;}
.yf6{bottom:791.737976px;}
.y1b6{bottom:791.759576px;}
.y186{bottom:791.781176px;}
.y3c{bottom:801.282408px;}
.y65{bottom:802.139553px;}
.y238{bottom:802.839000px;}
.y26f{bottom:802.842773px;}
.y13{bottom:804.548112px;}
.y9a{bottom:808.642358px;}
.yc8{bottom:808.656758px;}
.y10e{bottom:809.026180px;}
.yf5{bottom:809.745176px;}
.y1b5{bottom:809.752376px;}
.y185{bottom:809.773976px;}
.y15b{bottom:809.788376px;}
.y237{bottom:816.339000px;}
.y1fd{bottom:816.342773px;}
.y3b{bottom:819.275208px;}
.y64{bottom:820.132353px;}
.y12{bottom:825.552612px;}
.y99{bottom:826.635158px;}
.yc7{bottom:826.649558px;}
.y10d{bottom:827.018980px;}
.yf4{bottom:827.737976px;}
.y1b4{bottom:827.745176px;}
.y184{bottom:827.766776px;}
.y15a{bottom:827.781176px;}
.y236{bottom:829.839000px;}
.y1fc{bottom:829.842773px;}
.y3a{bottom:837.275208px;}
.y63{bottom:838.125153px;}
.y235{bottom:843.339000px;}
.y26e{bottom:843.342773px;}
.y98{bottom:844.627958px;}
.yc6{bottom:844.642358px;}
.y10c{bottom:845.011780px;}
.yf3{bottom:845.737976px;}
.y183{bottom:845.759576px;}
.y159{bottom:845.773976px;}
.y234{bottom:856.839000px;}
.y1fb{bottom:856.842773px;}
.y11{bottom:861.589528px;}
.yc5{bottom:862.635158px;}
.y97{bottom:862.642358px;}
.y10b{bottom:863.033380px;}
.yf2{bottom:863.738726px;}
.y182{bottom:863.752376px;}
.y158{bottom:863.766776px;}
.y1b3{bottom:863.773976px;}
.y233{bottom:870.339000px;}
.y1fa{bottom:870.342773px;}
.yc4{bottom:880.627958px;}
.y96{bottom:880.635158px;}
.y10a{bottom:881.026180px;}
.yf1{bottom:881.737976px;}
.y181{bottom:881.745176px;}
.y157{bottom:881.759576px;}
.y1b2{bottom:881.766776px;}
.y232{bottom:883.839000px;}
.y1f9{bottom:883.842773px;}
.y39{bottom:894.065277px;}
.y231{bottom:897.339000px;}
.y1f8{bottom:897.342773px;}
.yc3{bottom:898.620758px;}
.y95{bottom:898.627958px;}
.y109{bottom:899.018980px;}
.y180{bottom:899.737976px;}
.y156{bottom:899.752376px;}
.y1b1{bottom:899.759576px;}
.y10{bottom:900.577528px;}
.y230{bottom:910.839000px;}
.y1f7{bottom:910.842773px;}
.y38{bottom:912.065277px;}
.y94{bottom:916.620758px;}
.y108{bottom:917.011780px;}
.yf0{bottom:917.737976px;}
.y155{bottom:917.745176px;}
.y1b0{bottom:917.752376px;}
.y17f{bottom:917.781453px;}
.y22f{bottom:924.339000px;}
.y1f6{bottom:924.342773px;}
.y37{bottom:934.565277px;}
.y93{bottom:934.620758px;}
.y107{bottom:935.040580px;}
.yef{bottom:935.737976px;}
.y1af{bottom:935.745176px;}
.y17e{bottom:935.774253px;}
.y1d6{bottom:935.781472px;}
.y22e{bottom:937.839000px;}
.y1f5{bottom:937.842773px;}
.yf{bottom:939.565528px;}
.y22d{bottom:951.339000px;}
.y26d{bottom:951.342773px;}
.yc2{bottom:952.649681px;}
.y106{bottom:953.033380px;}
.y154{bottom:953.737976px;}
.yee{bottom:953.752376px;}
.y17d{bottom:953.767053px;}
.y1d5{bottom:953.774272px;}
.y36{bottom:957.065277px;}
.y22c{bottom:964.839000px;}
.y1f4{bottom:964.842773px;}
.y92{bottom:970.627958px;}
.yc1{bottom:970.642481px;}
.y105{bottom:971.026180px;}
.y1ae{bottom:971.737976px;}
.yed{bottom:971.745176px;}
.y17c{bottom:971.759853px;}
.y153{bottom:971.766776px;}
.y1d4{bottom:971.767072px;}
.y35{bottom:975.065277px;}
.y22b{bottom:978.339000px;}
.y1f3{bottom:978.342773px;}
.ye{bottom:978.553528px;}
.y91{bottom:988.620758px;}
.yc0{bottom:988.635281px;}
.y104{bottom:989.018980px;}
.yec{bottom:989.737976px;}
.y17b{bottom:989.752653px;}
.y152{bottom:989.759576px;}
.y1d3{bottom:989.759872px;}
.y22a{bottom:991.839000px;}
.y1f2{bottom:991.842773px;}
.y34{bottom:993.065277px;}
.y229{bottom:1005.339000px;}
.y1f1{bottom:1005.342773px;}
.ybf{bottom:1006.628081px;}
.y90{bottom:1006.635158px;}
.y103{bottom:1007.011780px;}
.y17a{bottom:1007.745453px;}
.yeb{bottom:1007.752376px;}
.y1d2{bottom:1007.752672px;}
.y33{bottom:1015.565277px;}
.y228{bottom:1018.839000px;}
.y1f0{bottom:1018.842773px;}
.ybe{bottom:1024.620881px;}
.y8f{bottom:1024.627958px;}
.y102{bottom:1025.012530px;}
.y179{bottom:1025.738253px;}
.yea{bottom:1025.745176px;}
.y1d1{bottom:1025.745472px;}
.y227{bottom:1032.339000px;}
.y1ef{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y32{bottom:1033.565277px;}
.ybd{bottom:1042.613681px;}
.y8e{bottom:1042.620758px;}
.y101{bottom:1043.011780px;}
.y178{bottom:1043.731053px;}
.ye9{bottom:1043.737976px;}
.y1d0{bottom:1043.738272px;}
.y226{bottom:1045.839000px;}
.y1ee{bottom:1045.842773px;}
.y2{bottom:1112.297079px;}
.yc{bottom:1122.067474px;}
.y8b{bottom:1126.524628px;}
.y30{bottom:1126.524719px;}
.y8d{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y8c{bottom:1127.300079px;}
.y31{bottom:1127.304719px;}
.h7{height:13.858500px;}
.hf{height:27.814500px;}
.h6{height:37.086000px;}
.h10{height:39.735000px;}
.h5{height:41.538000px;}
.h1a{height:42.384000px;}
.h1e{height:42.840000px;}
.h1c{height:43.785000px;}
.h3{height:45.696000px;}
.h11{height:45.744000px;}
.h1d{height:45.814500px;}
.h19{height:46.704000px;}
.h2{height:47.232000px;}
.h18{height:47.472000px;}
.h1b{height:48.868788px;}
.he{height:52.980000px;}
.h13{height:53.709599px;}
.h12{height:55.860000px;}
.hd{height:58.380000px;}
.hc{height:61.120200px;}
.h17{height:62.507064px;}
.h14{height:62.535497px;}
.h16{height:62.535589px;}
.h15{height:62.592365px;}
.ha{height:67.194379px;}
.hb{height:67.212379px;}
.h8{height:71.000160px;}
.h4{height:86.692415px;}
.h9{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:163.369503px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x5{left:94.683002px;}
.x7{left:95.880900px;}
.x8{left:97.034552px;}
.xd{left:107.539352px;}
.x3{left:270.817497px;}
.x9{left:457.081652px;}
.xc{left:466.086594px;}
.xa{left:469.081794px;}
.xe{left:479.588093px;}
.x4{left:644.505020px;}
.xb{left:741.068390px;}
.x6{left:747.224258px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v2{vertical-align:8.489258pt;}
.v7{vertical-align:16.000000pt;}
.v6{vertical-align:17.066656pt;}
.v5{vertical-align:20.829776pt;}
.v3{vertical-align:23.466471pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls4{letter-spacing:-0.784000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.470400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000001pt;}
.ls11{letter-spacing:0.000063pt;}
.ls7{letter-spacing:0.219476pt;}
.ls5{letter-spacing:0.261333pt;}
.lsa{letter-spacing:0.266555pt;}
.ls9{letter-spacing:0.282240pt;}
.ls8{letter-spacing:0.418089pt;}
.lsf{letter-spacing:0.684685pt;}
.lsd{letter-spacing:0.710816pt;}
.lsb{letter-spacing:0.731733pt;}
.lsc{letter-spacing:0.736960pt;}
.lse{letter-spacing:0.742169pt;}
.ls0{letter-spacing:4.853333pt;}
.wsb5{word-spacing:-13.014400pt;}
.ws52{word-spacing:-12.544000pt;}
.wsb{word-spacing:-12.282667pt;}
.ws6{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.560000pt;}
.ws11b{word-spacing:-10.156800pt;}
.ws0{word-spacing:-9.045333pt;}
.ws3{word-spacing:-8.993600pt;}
.ws8{word-spacing:-8.760000pt;}
.ws97{word-spacing:-8.618667pt;}
.ws51{word-spacing:-8.597867pt;}
.wsfe{word-spacing:-8.280000pt;}
.ws2{word-spacing:-7.242667pt;}
.ws11d{word-spacing:-7.080000pt;}
.wsfd{word-spacing:-6.540800pt;}
.ws7{word-spacing:-6.132000pt;}
.ws5f{word-spacing:-5.749333pt;}
.wsc{word-spacing:-5.013333pt;}
.wsd1{word-spacing:-4.010667pt;}
.wsb0{word-spacing:-1.620267pt;}
.ws27{word-spacing:-1.463467pt;}
.ws98{word-spacing:-1.149867pt;}
.wsc7{word-spacing:-0.731733pt;}
.wsd9{word-spacing:-0.627200pt;}
.wsf8{word-spacing:-0.574933pt;}
.ws54{word-spacing:-0.527894pt;}
.wsdb{word-spacing:-0.522667pt;}
.ws29{word-spacing:-0.470400pt;}
.wsaa{word-spacing:-0.418133pt;}
.ws5b{word-spacing:-0.313600pt;}
.wsa5{word-spacing:-0.261333pt;}
.wsc8{word-spacing:-0.209067pt;}
.wsa0{word-spacing:-0.156800pt;}
.wsdc{word-spacing:-0.104533pt;}
.ws11c{word-spacing:-0.080000pt;}
.ws111{word-spacing:-0.052267pt;}
.ws53{word-spacing:-0.036587pt;}
.ws9{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.104533pt;}
.wsde{word-spacing:0.156800pt;}
.wsb4{word-spacing:0.162027pt;}
.wse6{word-spacing:0.209067pt;}
.ws69{word-spacing:0.261333pt;}
.wsf9{word-spacing:0.313600pt;}
.ws79{word-spacing:0.365867pt;}
.ws80{word-spacing:0.470400pt;}
.ws117{word-spacing:0.522667pt;}
.wse3{word-spacing:0.574933pt;}
.wsb8{word-spacing:0.627200pt;}
.ws2d{word-spacing:0.679467pt;}
.ws30{word-spacing:0.784000pt;}
.wsd2{word-spacing:0.836260pt;}
.ws26{word-spacing:0.836267pt;}
.ws82{word-spacing:0.888533pt;}
.wse7{word-spacing:0.993067pt;}
.ws2c{word-spacing:1.149867pt;}
.ws90{word-spacing:1.202133pt;}
.ws56{word-spacing:1.358933pt;}
.wse5{word-spacing:1.411200pt;}
.ws3e{word-spacing:1.463467pt;}
.wscc{word-spacing:1.620267pt;}
.ws1c{word-spacing:1.672533pt;}
.ws106{word-spacing:1.724800pt;}
.ws114{word-spacing:1.881600pt;}
.ws6e{word-spacing:1.933867pt;}
.wsf3{word-spacing:2.090667pt;}
.wsda{word-spacing:2.142933pt;}
.ws2e{word-spacing:2.247467pt;}
.ws23{word-spacing:2.299733pt;}
.ws8f{word-spacing:2.352000pt;}
.ws6a{word-spacing:2.404267pt;}
.ws87{word-spacing:2.456533pt;}
.ws12{word-spacing:2.508800pt;}
.wsc9{word-spacing:2.561067pt;}
.wsd6{word-spacing:2.665600pt;}
.ws58{word-spacing:2.717867pt;}
.wsd3{word-spacing:2.770133pt;}
.ws8b{word-spacing:2.874667pt;}
.ws28{word-spacing:2.926933pt;}
.ws91{word-spacing:2.979200pt;}
.ws70{word-spacing:3.031467pt;}
.ws20{word-spacing:3.083733pt;}
.ws96{word-spacing:3.240533pt;}
.wsa9{word-spacing:3.292800pt;}
.wsb1{word-spacing:3.345067pt;}
.wsc6{word-spacing:3.397333pt;}
.ws104{word-spacing:3.449600pt;}
.ws93{word-spacing:3.501867pt;}
.ws9d{word-spacing:3.554133pt;}
.ws2f{word-spacing:3.658667pt;}
.ws7d{word-spacing:3.763200pt;}
.ws5d{word-spacing:3.815467pt;}
.wsb7{word-spacing:3.867733pt;}
.wsea{word-spacing:3.972267pt;}
.wsf2{word-spacing:4.024533pt;}
.ws1b{word-spacing:4.129067pt;}
.wsec{word-spacing:4.181333pt;}
.ws8e{word-spacing:4.233600pt;}
.ws3b{word-spacing:4.285867pt;}
.wsc5{word-spacing:4.338133pt;}
.ws4c{word-spacing:4.390400pt;}
.wsa4{word-spacing:4.442667pt;}
.wsff{word-spacing:4.494933pt;}
.wsdf{word-spacing:4.547200pt;}
.wsf4{word-spacing:4.756267pt;}
.ws45{word-spacing:4.808533pt;}
.ws1d{word-spacing:4.860800pt;}
.ws102{word-spacing:4.913067pt;}
.ws85{word-spacing:4.965333pt;}
.ws10b{word-spacing:5.017600pt;}
.ws41{word-spacing:5.069867pt;}
.ws32{word-spacing:5.122133pt;}
.ws7b{word-spacing:5.174400pt;}
.ws88{word-spacing:5.226667pt;}
.wsab{word-spacing:5.278933pt;}
.wsaf{word-spacing:5.331200pt;}
.ws4b{word-spacing:5.383467pt;}
.ws33{word-spacing:5.435733pt;}
.ws6d{word-spacing:5.488000pt;}
.ws9c{word-spacing:5.592533pt;}
.ws40{word-spacing:5.644800pt;}
.ws103{word-spacing:5.697067pt;}
.ws55{word-spacing:5.749333pt;}
.ws92{word-spacing:5.853867pt;}
.ws4f{word-spacing:5.906133pt;}
.ws81{word-spacing:5.958400pt;}
.ws7a{word-spacing:6.010667pt;}
.ws11a{word-spacing:6.062933pt;}
.ws5e{word-spacing:6.115200pt;}
.wsd0{word-spacing:6.272000pt;}
.ws25{word-spacing:6.324267pt;}
.ws72{word-spacing:6.376533pt;}
.wsc4{word-spacing:6.428800pt;}
.ws3d{word-spacing:6.481067pt;}
.ws7f{word-spacing:6.585600pt;}
.ws22{word-spacing:6.637867pt;}
.ws57{word-spacing:6.690133pt;}
.ws63{word-spacing:6.742400pt;}
.wse4{word-spacing:6.846933pt;}
.ws67{word-spacing:6.951467pt;}
.wsb6{word-spacing:7.003733pt;}
.ws73{word-spacing:7.056000pt;}
.ws9e{word-spacing:7.108267pt;}
.wsd8{word-spacing:7.160533pt;}
.ws9b{word-spacing:7.212800pt;}
.ws105{word-spacing:7.369600pt;}
.ws7e{word-spacing:7.421867pt;}
.ws94{word-spacing:7.474133pt;}
.ws8a{word-spacing:7.526400pt;}
.ws37{word-spacing:7.578667pt;}
.wse1{word-spacing:7.630933pt;}
.ws11{word-spacing:7.683200pt;}
.ws86{word-spacing:7.735467pt;}
.ws46{word-spacing:7.840000pt;}
.ws17{word-spacing:7.892267pt;}
.wse2{word-spacing:8.049067pt;}
.wsd4{word-spacing:8.101333pt;}
.ws2b{word-spacing:8.153600pt;}
.wsc1{word-spacing:8.205867pt;}
.ws100{word-spacing:8.258133pt;}
.ws4d{word-spacing:8.362667pt;}
.wsba{word-spacing:8.519467pt;}
.ws110{word-spacing:8.624000pt;}
.ws9a{word-spacing:8.728533pt;}
.ws1f{word-spacing:8.780800pt;}
.ws49{word-spacing:8.833067pt;}
.ws62{word-spacing:8.937600pt;}
.ws21{word-spacing:8.989867pt;}
.ws47{word-spacing:9.094400pt;}
.ws6b{word-spacing:9.251200pt;}
.ws3c{word-spacing:9.303467pt;}
.wsf1{word-spacing:9.355733pt;}
.ws78{word-spacing:9.460267pt;}
.ws118{word-spacing:9.564800pt;}
.ws10a{word-spacing:9.669333pt;}
.ws99{word-spacing:9.721600pt;}
.ws77{word-spacing:9.878400pt;}
.wsf0{word-spacing:9.930667pt;}
.ws66{word-spacing:10.035200pt;}
.wsef{word-spacing:10.192000pt;}
.wsbb{word-spacing:10.348800pt;}
.wsed{word-spacing:10.401067pt;}
.ws19{word-spacing:10.557867pt;}
.ws39{word-spacing:10.662400pt;}
.ws38{word-spacing:10.766933pt;}
.ws8c{word-spacing:10.819200pt;}
.ws10c{word-spacing:10.871467pt;}
.ws59{word-spacing:10.923733pt;}
.ws2a{word-spacing:10.976000pt;}
.ws34{word-spacing:11.028267pt;}
.ws36{word-spacing:11.132800pt;}
.ws107{word-spacing:11.237333pt;}
.ws3a{word-spacing:11.341867pt;}
.ws74{word-spacing:11.394133pt;}
.wse0{word-spacing:11.446400pt;}
.wsa1{word-spacing:11.498667pt;}
.ws13{word-spacing:11.550933pt;}
.ws10e{word-spacing:11.655467pt;}
.ws8d{word-spacing:11.760000pt;}
.ws115{word-spacing:11.916800pt;}
.ws101{word-spacing:11.969067pt;}
.wsd5{word-spacing:12.073600pt;}
.ws113{word-spacing:12.178133pt;}
.wsac{word-spacing:12.282667pt;}
.ws42{word-spacing:12.491733pt;}
.ws84{word-spacing:12.805333pt;}
.ws43{word-spacing:12.857600pt;}
.wsb9{word-spacing:13.014400pt;}
.wse8{word-spacing:13.118933pt;}
.ws76{word-spacing:13.171200pt;}
.ws24{word-spacing:13.223467pt;}
.wseb{word-spacing:13.328000pt;}
.ws64{word-spacing:13.432533pt;}
.ws1e{word-spacing:13.484800pt;}
.ws18{word-spacing:13.537067pt;}
.ws89{word-spacing:13.746133pt;}
.wscb{word-spacing:13.798400pt;}
.ws65{word-spacing:14.112000pt;}
.wsc3{word-spacing:14.216533pt;}
.ws109{word-spacing:14.268800pt;}
.wsf5{word-spacing:14.321067pt;}
.wsad{word-spacing:14.373333pt;}
.wsce{word-spacing:14.477867pt;}
.ws108{word-spacing:14.582400pt;}
.ws10{word-spacing:14.634667pt;}
.wsa3{word-spacing:14.686933pt;}
.ws15{word-spacing:14.896000pt;}
.wsd7{word-spacing:15.052800pt;}
.wsae{word-spacing:15.261867pt;}
.ws75{word-spacing:15.314133pt;}
.wsa6{word-spacing:15.366400pt;}
.ws112{word-spacing:15.470933pt;}
.ws1a{word-spacing:15.575467pt;}
.ws95{word-spacing:15.784533pt;}
.ws68{word-spacing:15.836800pt;}
.ws5c{word-spacing:16.045867pt;}
.wse{word-spacing:16.411733pt;}
.ws71{word-spacing:16.464000pt;}
.wsd{word-spacing:16.568533pt;}
.wsbf{word-spacing:16.620800pt;}
.ws31{word-spacing:16.673067pt;}
.wse9{word-spacing:16.725333pt;}
.wsca{word-spacing:16.777600pt;}
.wsf6{word-spacing:16.934400pt;}
.ws4e{word-spacing:16.986667pt;}
.ws6c{word-spacing:17.143467pt;}
.wsf{word-spacing:17.457067pt;}
.wsb2{word-spacing:17.875200pt;}
.wsdd{word-spacing:18.188800pt;}
.ws7c{word-spacing:18.241067pt;}
.ws35{word-spacing:18.397867pt;}
.wscd{word-spacing:18.502400pt;}
.wsa7{word-spacing:18.659200pt;}
.ws48{word-spacing:18.920533pt;}
.wsfa{word-spacing:19.025067pt;}
.ws5a{word-spacing:19.077333pt;}
.wsc0{word-spacing:19.286400pt;}
.wsf7{word-spacing:19.443200pt;}
.ws60{word-spacing:19.547733pt;}
.wsee{word-spacing:19.652267pt;}
.wsfc{word-spacing:19.809067pt;}
.ws119{word-spacing:20.122667pt;}
.ws9f{word-spacing:20.279467pt;}
.ws83{word-spacing:20.436267pt;}
.ws50{word-spacing:20.488533pt;}
.ws6f{word-spacing:20.854400pt;}
.ws16{word-spacing:21.115733pt;}
.wscf{word-spacing:21.847467pt;}
.wsbe{word-spacing:22.474667pt;}
.ws10d{word-spacing:22.579200pt;}
.wsbd{word-spacing:22.683733pt;}
.ws10f{word-spacing:23.206400pt;}
.ws14{word-spacing:23.990400pt;}
.wsb3{word-spacing:24.042667pt;}
.wsa8{word-spacing:24.460800pt;}
.wsa2{word-spacing:25.244800pt;}
.ws61{word-spacing:25.297067pt;}
.ws3f{word-spacing:25.506133pt;}
.wsc2{word-spacing:26.237867pt;}
.ws44{word-spacing:26.969600pt;}
.wsfb{word-spacing:27.544533pt;}
.ws116{word-spacing:31.046400pt;}
.wsbc{word-spacing:36.011733pt;}
.ws1{word-spacing:1755.514622pt;}
._21{margin-left:-36.161079pt;}
._22{margin-left:-25.321620pt;}
._1b{margin-left:-24.001110pt;}
._16{margin-left:-20.181346pt;}
._1d{margin-left:-18.958933pt;}
._15{margin-left:-17.964524pt;}
._18{margin-left:-16.217876pt;}
._13{margin-left:-14.643222pt;}
._1c{margin-left:-13.716285pt;}
._e{margin-left:-12.792533pt;}
._6{margin-left:-11.302400pt;}
._1f{margin-left:-10.296542pt;}
._f{margin-left:-9.400533pt;}
._1a{margin-left:-8.080025pt;}
._20{margin-left:-6.714686pt;}
._a{margin-left:-5.742921pt;}
._14{margin-left:-4.481067pt;}
._5{margin-left:-3.569600pt;}
._2{margin-left:-2.497600pt;}
._0{margin-left:-1.113600pt;}
._1{width:1.031467pt;}
._4{width:2.274133pt;}
._3{width:3.629333pt;}
._8{width:5.013333pt;}
._c{width:6.341317pt;}
._d{width:7.578667pt;}
._12{width:8.905054pt;}
._1e{width:10.272000pt;}
._b{width:11.240492pt;}
._19{width:12.178133pt;}
._9{width:14.133333pt;}
._7{width:15.193588pt;}
._17{width:16.581500pt;}
._10{width:19.537279pt;}
._11{width:24.756355pt;}
._23{width:39.569600pt;}
.fs9{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fsd{font-size:36.586667pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:66.293333pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.369629pt;}
.yb{bottom:70.229599pt;}
.ya{bottom:80.897599pt;}
.y130{bottom:89.541336pt;}
.y26c{bottom:89.634667pt;}
.y2a3{bottom:89.638021pt;}
.y145{bottom:91.256406pt;}
.y9{bottom:91.565599pt;}
.y14b{bottom:95.245738pt;}
.y177{bottom:95.767069pt;}
.y1a6{bottom:95.773469pt;}
.y14e{bottom:95.891062pt;}
.y11c{bottom:97.658264pt;}
.y1ed{bottom:99.767069pt;}
.y26b{bottom:101.634667pt;}
.y2a2{bottom:101.638021pt;}
.y8{bottom:102.233599pt;}
.y1a9{bottom:102.542531pt;}
.y8a{bottom:103.076935pt;}
.y62{bottom:104.302270pt;}
.y12f{bottom:105.534936pt;}
.y144{bottom:107.250006pt;}
.y11b{bottom:110.991597pt;}
.y14a{bottom:111.246404pt;}
.y1a5{bottom:111.767069pt;}
.y176{bottom:111.792669pt;}
.y14d{bottom:111.892671pt;}
.y7{bottom:112.901599pt;}
.y26a{bottom:113.634667pt;}
.y2a1{bottom:113.638021pt;}
.y1a8{bottom:115.875865pt;}
.y225{bottom:116.304667pt;}
.y89{bottom:119.096135pt;}
.y61{bottom:120.295870pt;}
.y12e{bottom:121.528536pt;}
.y143{bottom:123.243606pt;}
.y6{bottom:123.569599pt;}
.y1ec{bottom:123.767069pt;}
.y11a{bottom:124.324931pt;}
.y269{bottom:125.634667pt;}
.y2a0{bottom:125.638021pt;}
.ybc{bottom:126.774129pt;}
.ye8{bottom:126.850929pt;}
.y149{bottom:127.245738pt;}
.y1a4{bottom:127.773469pt;}
.y175{bottom:127.786269pt;}
.y14c{bottom:127.886271pt;}
.y224{bottom:128.304667pt;}
.y1a7{bottom:129.209198pt;}
.y5{bottom:134.237599pt;}
.y88{bottom:135.089735pt;}
.y1eb{bottom:135.767069pt;}
.y60{bottom:136.289470pt;}
.y12d{bottom:137.522136pt;}
.y268{bottom:137.634667pt;}
.y29f{bottom:137.638021pt;}
.y142{bottom:139.237206pt;}
.y223{bottom:140.304667pt;}
.ybb{bottom:142.806129pt;}
.ye7{bottom:142.844529pt;}
.y1a3{bottom:143.767069pt;}
.y174{bottom:143.779869pt;}
.y4{bottom:144.905599pt;}
.y1ea{bottom:147.767069pt;}
.y267{bottom:149.634667pt;}
.y29e{bottom:149.638021pt;}
.y87{bottom:151.083335pt;}
.y5f{bottom:152.283070pt;}
.y222{bottom:152.304667pt;}
.y12c{bottom:153.515736pt;}
.y141{bottom:155.230806pt;}
.yba{bottom:158.799729pt;}
.ye6{bottom:158.838129pt;}
.y1e9{bottom:159.767069pt;}
.y173{bottom:159.773469pt;}
.y1a2{bottom:159.779869pt;}
.y1ad{bottom:160.610533pt;}
.y266{bottom:161.634667pt;}
.y29d{bottom:161.638021pt;}
.y221{bottom:164.304667pt;}
.y86{bottom:167.076935pt;}
.y5e{bottom:168.276670pt;}
.y12b{bottom:169.509336pt;}
.y140{bottom:171.224406pt;}
.y1e8{bottom:171.767069pt;}
.y265{bottom:173.634667pt;}
.y29c{bottom:173.638021pt;}
.y1ac{bottom:173.943867pt;}
.yb9{bottom:174.793329pt;}
.ye5{bottom:174.831729pt;}
.y172{bottom:175.767069pt;}
.y1a1{bottom:175.773469pt;}
.y220{bottom:176.304667pt;}
.y151{bottom:177.673197pt;}
.y2f{bottom:179.654928pt;}
.y85{bottom:183.076925pt;}
.y1e7{bottom:183.767069pt;}
.y5d{bottom:184.270270pt;}
.y12a{bottom:185.502936pt;}
.y264{bottom:185.634667pt;}
.y29b{bottom:185.638021pt;}
.y13f{bottom:187.262664pt;}
.y1ab{bottom:187.277200pt;}
.y21f{bottom:188.304667pt;}
.yb8{bottom:190.786929pt;}
.ye4{bottom:190.825329pt;}
.y150{bottom:191.006531pt;}
.y2e{bottom:191.654928pt;}
.y1a0{bottom:191.767069pt;}
.y171{bottom:191.786269pt;}
.y1e6{bottom:195.767069pt;}
.y263{bottom:197.634667pt;}
.y29a{bottom:197.638021pt;}
.y84{bottom:199.076925pt;}
.y5c{bottom:200.263870pt;}
.y21e{bottom:200.304667pt;}
.y1aa{bottom:200.610533pt;}
.y129{bottom:201.496536pt;}
.y13e{bottom:203.256264pt;}
.y2d{bottom:203.654928pt;}
.y14f{bottom:204.339864pt;}
.yb7{bottom:206.780529pt;}
.ye3{bottom:206.818929pt;}
.y19f{bottom:207.767069pt;}
.y170{bottom:207.779869pt;}
.y1cf{bottom:207.799069pt;}
.y262{bottom:209.634667pt;}
.y299{bottom:209.638021pt;}
.y21d{bottom:212.304667pt;}
.y2c{bottom:215.654928pt;}
.y5b{bottom:216.257470pt;}
.y128{bottom:217.490136pt;}
.y13d{bottom:219.249864pt;}
.y261{bottom:221.634667pt;}
.y298{bottom:221.638021pt;}
.yb6{bottom:222.774129pt;}
.ye2{bottom:222.812529pt;}
.y16f{bottom:223.773469pt;}
.y1ce{bottom:223.792669pt;}
.y19e{bottom:223.831049pt;}
.y21c{bottom:224.304667pt;}
.y2b{bottom:227.654928pt;}
.y1e5{bottom:230.437069pt;}
.y5a{bottom:232.251070pt;}
.y83{bottom:232.998396pt;}
.y127{bottom:233.483736pt;}
.y260{bottom:233.634667pt;}
.y297{bottom:233.638021pt;}
.y13c{bottom:235.243464pt;}
.y21b{bottom:236.304667pt;}
.yb5{bottom:238.774129pt;}
.ye1{bottom:238.806129pt;}
.y2a{bottom:239.654928pt;}
.y16e{bottom:239.767069pt;}
.y1cd{bottom:239.786269pt;}
.y19d{bottom:239.824649pt;}
.y25f{bottom:245.634667pt;}
.y296{bottom:245.638021pt;}
.y1e4{bottom:247.767069pt;}
.y59{bottom:248.244670pt;}
.y21a{bottom:248.304667pt;}
.y82{bottom:248.991996pt;}
.y126{bottom:249.477336pt;}
.y13b{bottom:251.237064pt;}
.ye0{bottom:254.799729pt;}
.y1cc{bottom:255.779869pt;}
.y16d{bottom:255.786269pt;}
.y19c{bottom:255.818249pt;}
.y25e{bottom:257.634667pt;}
.y295{bottom:257.638021pt;}
.y29{bottom:258.654928pt;}
.y58{bottom:264.263727pt;}
.y81{bottom:264.985596pt;}
.y125{bottom:265.483736pt;}
.y13a{bottom:267.230664pt;}
.y25d{bottom:269.634667pt;}
.y294{bottom:269.638021pt;}
.ydf{bottom:270.793329pt;}
.yb4{bottom:270.799729pt;}
.y1cb{bottom:271.773469pt;}
.y16c{bottom:271.779869pt;}
.y19b{bottom:271.811849pt;}
.y28{bottom:274.654928pt;}
.y1e3{bottom:275.767069pt;}
.y57{bottom:280.257327pt;}
.y80{bottom:280.979196pt;}
.y124{bottom:281.477336pt;}
.y25c{bottom:281.634667pt;}
.y293{bottom:281.638021pt;}
.y139{bottom:283.224264pt;}
.yde{bottom:286.786929pt;}
.yb3{bottom:286.793329pt;}
.y1ca{bottom:287.767069pt;}
.y16b{bottom:287.773469pt;}
.y19a{bottom:287.805449pt;}
.y27{bottom:289.654928pt;}
.y25b{bottom:293.634667pt;}
.y292{bottom:293.638021pt;}
.y56{bottom:296.250927pt;}
.y7f{bottom:296.972796pt;}
.y123{bottom:297.478002pt;}
.y138{bottom:299.249884pt;}
.ydd{bottom:302.780529pt;}
.yb2{bottom:302.786929pt;}
.y16a{bottom:303.767069pt;}
.y1c9{bottom:303.786249pt;}
.y199{bottom:303.799049pt;}
.y25a{bottom:305.634667pt;}
.y291{bottom:305.638021pt;}
.y26{bottom:305.654928pt;}
.y219{bottom:309.637980pt;}
.y55{bottom:312.244527pt;}
.y7e{bottom:312.966396pt;}
.y122{bottom:313.477336pt;}
.y137{bottom:315.243484pt;}
.y259{bottom:317.634667pt;}
.y290{bottom:317.638021pt;}
.yb1{bottom:318.780529pt;}
.ydc{bottom:318.793329pt;}
.y169{bottom:319.773469pt;}
.y1c8{bottom:319.779849pt;}
.y198{bottom:319.792649pt;}
.y54{bottom:328.289348pt;}
.y7d{bottom:328.959996pt;}
.y258{bottom:329.634667pt;}
.y28f{bottom:329.638021pt;}
.y136{bottom:331.237084pt;}
.y218{bottom:333.637980pt;}
.yb0{bottom:334.774129pt;}
.ydb{bottom:334.786929pt;}
.y168{bottom:335.767069pt;}
.y1c7{bottom:335.773449pt;}
.y197{bottom:335.786249pt;}
.y1e2{bottom:335.805449pt;}
.y257{bottom:341.634667pt;}
.y28e{bottom:341.638021pt;}
.y53{bottom:344.282948pt;}
.y7c{bottom:344.953596pt;}
.y217{bottom:345.637980pt;}
.y135{bottom:347.230684pt;}
.y121{bottom:347.249884pt;}
.yda{bottom:350.780529pt;}
.yaf{bottom:350.793329pt;}
.y1c6{bottom:351.767049pt;}
.y167{bottom:351.768382pt;}
.y196{bottom:351.779849pt;}
.y1e1{bottom:351.799049pt;}
.y256{bottom:353.634667pt;}
.y28d{bottom:353.638021pt;}
.y216{bottom:357.637980pt;}
.y52{bottom:360.276548pt;}
.y7b{bottom:360.947196pt;}
.y134{bottom:363.224284pt;}
.y120{bottom:363.243484pt;}
.y25{bottom:363.901611pt;}
.y255{bottom:365.634667pt;}
.y28c{bottom:365.638021pt;}
.yd9{bottom:366.774129pt;}
.yae{bottom:366.786929pt;}
.y166{bottom:367.767716pt;}
.y195{bottom:367.773449pt;}
.y1e0{bottom:367.792649pt;}
.y1c5{bottom:367.799049pt;}
.y215{bottom:369.637980pt;}
.y51{bottom:376.270148pt;}
.y7a{bottom:376.940796pt;}
.y254{bottom:377.634667pt;}
.y28b{bottom:377.638021pt;}
.y11f{bottom:379.237084pt;}
.y133{bottom:379.294658pt;}
.y24{bottom:379.901611pt;}
.y214{bottom:381.637980pt;}
.yd8{bottom:382.778396pt;}
.yad{bottom:382.780529pt;}
.y165{bottom:383.767049pt;}
.y1df{bottom:383.786249pt;}
.y1c4{bottom:383.792649pt;}
.y253{bottom:389.634667pt;}
.y28a{bottom:389.638021pt;}
.y50{bottom:392.263748pt;}
.y79{bottom:392.940796pt;}
.y213{bottom:393.637980pt;}
.y11e{bottom:395.230684pt;}
.y132{bottom:395.288258pt;}
.y23{bottom:395.901611pt;}
.yac{bottom:398.774129pt;}
.y194{bottom:399.773449pt;}
.y1de{bottom:399.779849pt;}
.y1c3{bottom:399.786249pt;}
.y252{bottom:401.634667pt;}
.y289{bottom:401.638021pt;}
.y212{bottom:405.637980pt;}
.y4f{bottom:408.257348pt;}
.y78{bottom:408.947196pt;}
.y11d{bottom:411.224284pt;}
.y131{bottom:411.281858pt;}
.y251{bottom:413.634667pt;}
.y288{bottom:413.638021pt;}
.yab{bottom:414.774129pt;}
.y193{bottom:415.767049pt;}
.y164{bottom:415.773449pt;}
.y1c2{bottom:415.779849pt;}
.y22{bottom:415.901611pt;}
.y211{bottom:417.637980pt;}
.y4e{bottom:424.250948pt;}
.y77{bottom:424.940796pt;}
.y250{bottom:425.634667pt;}
.y287{bottom:425.638021pt;}
.y210{bottom:429.637980pt;}
.y163{bottom:431.767049pt;}
.y1c1{bottom:431.773449pt;}
.y21{bottom:431.901611pt;}
.y24f{bottom:437.634667pt;}
.y286{bottom:437.638021pt;}
.y4d{bottom:440.244548pt;}
.y76{bottom:440.953596pt;}
.y20f{bottom:441.637980pt;}
.yaa{bottom:446.774129pt;}
.yd7{bottom:446.818929pt;}
.y1c0{bottom:447.767049pt;}
.y192{bottom:447.779849pt;}
.y162{bottom:447.805449pt;}
.y20{bottom:447.901611pt;}
.y24e{bottom:449.634667pt;}
.y285{bottom:449.638021pt;}
.y20e{bottom:453.637980pt;}
.y148{bottom:454.906250pt;}
.y4c{bottom:456.257348pt;}
.y75{bottom:456.947196pt;}
.y24d{bottom:461.634667pt;}
.y284{bottom:461.638021pt;}
.ya9{bottom:462.780529pt;}
.yd6{bottom:462.812529pt;}
.y191{bottom:463.773449pt;}
.y1bf{bottom:463.779849pt;}
.y161{bottom:463.799049pt;}
.y1f{bottom:463.901611pt;}
.y20d{bottom:465.637980pt;}
.y147{bottom:468.239583pt;}
.y4b{bottom:472.250948pt;}
.y74{bottom:472.940796pt;}
.y24c{bottom:473.634667pt;}
.y283{bottom:473.638021pt;}
.y20c{bottom:477.637980pt;}
.ya8{bottom:478.774129pt;}
.yd5{bottom:478.806129pt;}
.y190{bottom:479.767049pt;}
.y1be{bottom:479.773449pt;}
.y160{bottom:479.792649pt;}
.y146{bottom:481.572917pt;}
.y1e{bottom:483.901611pt;}
.y24b{bottom:485.634667pt;}
.y282{bottom:485.638021pt;}
.y4a{bottom:488.244548pt;}
.y73{bottom:488.947196pt;}
.y20b{bottom:489.637980pt;}
.ya7{bottom:494.786929pt;}
.yd4{bottom:494.799729pt;}
.y18f{bottom:495.767049pt;}
.y15f{bottom:495.786249pt;}
.y1dd{bottom:495.824649pt;}
.y24a{bottom:497.634667pt;}
.y281{bottom:497.638021pt;}
.y1d{bottom:499.901611pt;}
.y49{bottom:504.244548pt;}
.y72{bottom:504.940796pt;}
.y20a{bottom:505.637980pt;}
.y249{bottom:509.634667pt;}
.y280{bottom:509.638021pt;}
.ya6{bottom:510.780529pt;}
.yd3{bottom:510.793329pt;}
.y15e{bottom:511.779849pt;}
.y1dc{bottom:511.818249pt;}
.y209{bottom:513.637980pt;}
.y1c{bottom:515.901611pt;}
.y48{bottom:520.270148pt;}
.y71{bottom:520.972796pt;}
.y248{bottom:521.634667pt;}
.y27f{bottom:521.638021pt;}
.y2a4{bottom:525.637980pt;}
.ya5{bottom:526.774129pt;}
.yd2{bottom:526.786929pt;}
.y15d{bottom:527.773449pt;}
.y1db{bottom:527.811849pt;}
.y1b{bottom:531.901611pt;}
.y247{bottom:533.634667pt;}
.y27e{bottom:533.638021pt;}
.y47{bottom:536.263748pt;}
.y70{bottom:536.966396pt;}
.y208{bottom:537.637980pt;}
.ya4{bottom:542.774796pt;}
.yd1{bottom:542.780529pt;}
.y119{bottom:543.121582pt;}
.y15c{bottom:543.767049pt;}
.y1da{bottom:543.805449pt;}
.y100{bottom:543.831090pt;}
.y246{bottom:545.634667pt;}
.y27d{bottom:545.638021pt;}
.y1a{bottom:547.901611pt;}
.y207{bottom:549.637980pt;}
.y46{bottom:552.257348pt;}
.y6f{bottom:552.959996pt;}
.y245{bottom:557.634667pt;}
.y27c{bottom:557.638021pt;}
.ya3{bottom:558.774129pt;}
.y118{bottom:559.147182pt;}
.y18e{bottom:559.773449pt;}
.y1bd{bottom:559.799049pt;}
.yff{bottom:559.824690pt;}
.y19{bottom:563.901611pt;}
.y45{bottom:568.250948pt;}
.y6e{bottom:568.953596pt;}
.y244{bottom:569.634667pt;}
.y27b{bottom:569.638021pt;}
.y206{bottom:573.637980pt;}
.yd0{bottom:574.793329pt;}
.y117{bottom:575.140782pt;}
.y18d{bottom:575.767049pt;}
.y1bc{bottom:575.792649pt;}
.yfe{bottom:575.818290pt;}
.y18{bottom:579.901611pt;}
.y243{bottom:581.634667pt;}
.y27a{bottom:581.638021pt;}
.y44{bottom:584.244548pt;}
.y6d{bottom:584.947196pt;}
.y205{bottom:585.637980pt;}
.ya2{bottom:590.774129pt;}
.ycf{bottom:590.786929pt;}
.y116{bottom:591.134382pt;}
.y18c{bottom:591.779849pt;}
.y1bb{bottom:591.786249pt;}
.yfd{bottom:591.811890pt;}
.y242{bottom:593.634667pt;}
.y279{bottom:593.638021pt;}
.y17{bottom:595.901611pt;}
.y43{bottom:600.263748pt;}
.y6c{bottom:600.940796pt;}
.y241{bottom:605.634667pt;}
.y278{bottom:605.638021pt;}
.yce{bottom:606.780529pt;}
.ya1{bottom:606.786929pt;}
.y115{bottom:607.127982pt;}
.y18b{bottom:607.773449pt;}
.y1ba{bottom:607.779849pt;}
.yfc{bottom:607.805490pt;}
.y204{bottom:609.637980pt;}
.y16{bottom:615.901611pt;}
.y42{bottom:616.257348pt;}
.y6b{bottom:616.947196pt;}
.y240{bottom:617.634667pt;}
.y277{bottom:617.638021pt;}
.y203{bottom:621.637980pt;}
.ycd{bottom:622.774129pt;}
.ya0{bottom:622.780529pt;}
.y114{bottom:623.121582pt;}
.y18a{bottom:623.767049pt;}
.y1b9{bottom:623.773449pt;}
.yfb{bottom:623.799090pt;}
.y23f{bottom:629.634667pt;}
.y276{bottom:629.638021pt;}
.y41{bottom:632.250948pt;}
.y6a{bottom:632.940796pt;}
.y202{bottom:633.637980pt;}
.ycc{bottom:638.774129pt;}
.y9f{bottom:638.793370pt;}
.y113{bottom:639.166382pt;}
.y189{bottom:639.767049pt;}
.yfa{bottom:639.792690pt;}
.y23e{bottom:641.634667pt;}
.y275{bottom:641.638021pt;}
.y201{bottom:645.637980pt;}
.y40{bottom:648.244548pt;}
.y69{bottom:648.947196pt;}
.y23d{bottom:653.634667pt;}
.y274{bottom:653.638021pt;}
.y9e{bottom:654.786970pt;}
.y112{bottom:655.159982pt;}
.y188{bottom:655.767049pt;}
.y1d9{bottom:655.779890pt;}
.yf9{bottom:655.786290pt;}
.y200{bottom:657.637980pt;}
.y3f{bottom:664.244548pt;}
.y68{bottom:664.940796pt;}
.y23c{bottom:665.634667pt;}
.y273{bottom:665.638021pt;}
.y1ff{bottom:669.637980pt;}
.y9d{bottom:670.780570pt;}
.ycb{bottom:670.825207pt;}
.y111{bottom:671.153582pt;}
.y1d8{bottom:671.773490pt;}
.yf8{bottom:671.779890pt;}
.y1b8{bottom:671.799090pt;}
.y23b{bottom:677.634667pt;}
.y272{bottom:677.638021pt;}
.y15{bottom:677.820544pt;}
.y3e{bottom:680.263829pt;}
.y67{bottom:680.947237pt;}
.y9c{bottom:686.780570pt;}
.yca{bottom:686.818807pt;}
.y110{bottom:687.147182pt;}
.y1d7{bottom:687.767090pt;}
.yf7{bottom:687.773490pt;}
.y1b7{bottom:687.792690pt;}
.y187{bottom:687.811890pt;}
.y23a{bottom:689.634667pt;}
.y271{bottom:689.638021pt;}
.y1fe{bottom:693.638021pt;}
.y3d{bottom:696.257429pt;}
.y14{bottom:696.487211pt;}
.y66{bottom:696.940837pt;}
.y239{bottom:701.634667pt;}
.y270{bottom:701.638021pt;}
.y9b{bottom:702.780570pt;}
.yc9{bottom:702.812407pt;}
.y10f{bottom:703.140782pt;}
.yf6{bottom:703.767090pt;}
.y1b6{bottom:703.786290pt;}
.y186{bottom:703.805490pt;}
.y3c{bottom:712.251029pt;}
.y65{bottom:713.012936pt;}
.y238{bottom:713.634667pt;}
.y26f{bottom:713.638021pt;}
.y13{bottom:715.153878pt;}
.y9a{bottom:718.793207pt;}
.yc8{bottom:718.806007pt;}
.y10e{bottom:719.134382pt;}
.yf5{bottom:719.773490pt;}
.y1b5{bottom:719.779890pt;}
.y185{bottom:719.799090pt;}
.y15b{bottom:719.811890pt;}
.y237{bottom:725.634667pt;}
.y1fd{bottom:725.638021pt;}
.y3b{bottom:728.244629pt;}
.y64{bottom:729.006536pt;}
.y12{bottom:733.824544pt;}
.y99{bottom:734.786807pt;}
.yc7{bottom:734.799607pt;}
.y10d{bottom:735.127982pt;}
.yf4{bottom:735.767090pt;}
.y1b4{bottom:735.773490pt;}
.y184{bottom:735.792690pt;}
.y15a{bottom:735.805490pt;}
.y236{bottom:737.634667pt;}
.y1fc{bottom:737.638021pt;}
.y3a{bottom:744.244629pt;}
.y63{bottom:745.000136pt;}
.y235{bottom:749.634667pt;}
.y26e{bottom:749.638021pt;}
.y98{bottom:750.780407pt;}
.yc6{bottom:750.793207pt;}
.y10c{bottom:751.121582pt;}
.yf3{bottom:751.767090pt;}
.y183{bottom:751.786290pt;}
.y159{bottom:751.799090pt;}
.y234{bottom:761.634667pt;}
.y1fb{bottom:761.638021pt;}
.y11{bottom:765.857358pt;}
.yc5{bottom:766.786807pt;}
.y97{bottom:766.793207pt;}
.y10b{bottom:767.140782pt;}
.yf2{bottom:767.767757pt;}
.y182{bottom:767.779890pt;}
.y158{bottom:767.792690pt;}
.y1b3{bottom:767.799090pt;}
.y233{bottom:773.634667pt;}
.y1fa{bottom:773.638021pt;}
.yc4{bottom:782.780407pt;}
.y96{bottom:782.786807pt;}
.y10a{bottom:783.134382pt;}
.yf1{bottom:783.767090pt;}
.y181{bottom:783.773490pt;}
.y157{bottom:783.786290pt;}
.y1b2{bottom:783.792690pt;}
.y232{bottom:785.634667pt;}
.y1f9{bottom:785.638021pt;}
.y39{bottom:794.724691pt;}
.y231{bottom:797.634667pt;}
.y1f8{bottom:797.638021pt;}
.yc3{bottom:798.774007pt;}
.y95{bottom:798.780407pt;}
.y109{bottom:799.127982pt;}
.y180{bottom:799.767090pt;}
.y156{bottom:799.779890pt;}
.y1b1{bottom:799.786290pt;}
.y10{bottom:800.513358pt;}
.y230{bottom:809.634667pt;}
.y1f7{bottom:809.638021pt;}
.y38{bottom:810.724691pt;}
.y94{bottom:814.774007pt;}
.y108{bottom:815.121582pt;}
.yf0{bottom:815.767090pt;}
.y155{bottom:815.773490pt;}
.y1b0{bottom:815.779890pt;}
.y17f{bottom:815.805736pt;}
.y22f{bottom:821.634667pt;}
.y1f6{bottom:821.638021pt;}
.y37{bottom:830.724691pt;}
.y93{bottom:830.774007pt;}
.y107{bottom:831.147182pt;}
.yef{bottom:831.767090pt;}
.y1af{bottom:831.773490pt;}
.y17e{bottom:831.799336pt;}
.y1d6{bottom:831.805753pt;}
.y22e{bottom:833.634667pt;}
.y1f5{bottom:833.638021pt;}
.yf{bottom:835.169358pt;}
.y22d{bottom:845.634667pt;}
.y26d{bottom:845.638021pt;}
.yc2{bottom:846.799716pt;}
.y106{bottom:847.140782pt;}
.y154{bottom:847.767090pt;}
.yee{bottom:847.779890pt;}
.y17d{bottom:847.792936pt;}
.y1d5{bottom:847.799353pt;}
.y36{bottom:850.724691pt;}
.y22c{bottom:857.634667pt;}
.y1f4{bottom:857.638021pt;}
.y92{bottom:862.780407pt;}
.yc1{bottom:862.793316pt;}
.y105{bottom:863.134382pt;}
.y1ae{bottom:863.767090pt;}
.yed{bottom:863.773490pt;}
.y17c{bottom:863.786536pt;}
.y153{bottom:863.792690pt;}
.y1d4{bottom:863.792953pt;}
.y35{bottom:866.724691pt;}
.y22b{bottom:869.634667pt;}
.y1f3{bottom:869.638021pt;}
.ye{bottom:869.825358pt;}
.y91{bottom:878.774007pt;}
.yc0{bottom:878.786916pt;}
.y104{bottom:879.127982pt;}
.yec{bottom:879.767090pt;}
.y17b{bottom:879.780136pt;}
.y152{bottom:879.786290pt;}
.y1d3{bottom:879.786553pt;}
.y22a{bottom:881.634667pt;}
.y1f2{bottom:881.638021pt;}
.y34{bottom:882.724691pt;}
.y229{bottom:893.634667pt;}
.y1f1{bottom:893.638021pt;}
.ybf{bottom:894.780516pt;}
.y90{bottom:894.786807pt;}
.y103{bottom:895.121582pt;}
.y17a{bottom:895.773736pt;}
.yeb{bottom:895.779890pt;}
.y1d2{bottom:895.780153pt;}
.y33{bottom:902.724691pt;}
.y228{bottom:905.634667pt;}
.y1f0{bottom:905.638021pt;}
.ybe{bottom:910.774116pt;}
.y8f{bottom:910.780407pt;}
.y102{bottom:911.122249pt;}
.y179{bottom:911.767336pt;}
.yea{bottom:911.773490pt;}
.y1d1{bottom:911.773753pt;}
.y227{bottom:917.634667pt;}
.y1ef{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y32{bottom:918.724691pt;}
.ybd{bottom:926.767716pt;}
.y8e{bottom:926.774007pt;}
.y101{bottom:927.121582pt;}
.y178{bottom:927.760936pt;}
.ye9{bottom:927.767090pt;}
.y1d0{bottom:927.767353pt;}
.y226{bottom:929.634667pt;}
.y1ee{bottom:929.638021pt;}
.y2{bottom:988.708515pt;}
.yc{bottom:997.393311pt;}
.y8b{bottom:1001.355225pt;}
.y30{bottom:1001.355306pt;}
.y8d{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y8c{bottom:1002.044515pt;}
.y31{bottom:1002.048639pt;}
.h7{height:12.318667pt;}
.hf{height:24.724000pt;}
.h6{height:32.965333pt;}
.h10{height:35.320000pt;}
.h5{height:36.922667pt;}
.h1a{height:37.674667pt;}
.h1e{height:38.080000pt;}
.h1c{height:38.920000pt;}
.h3{height:40.618667pt;}
.h11{height:40.661333pt;}
.h1d{height:40.724000pt;}
.h19{height:41.514667pt;}
.h2{height:41.984000pt;}
.h18{height:42.197333pt;}
.h1b{height:43.438922pt;}
.he{height:47.093333pt;}
.h13{height:47.741866pt;}
.h12{height:49.653333pt;}
.hd{height:51.893333pt;}
.hc{height:54.329067pt;}
.h17{height:55.561834pt;}
.h14{height:55.587109pt;}
.h16{height:55.587190pt;}
.h15{height:55.637658pt;}
.ha{height:59.728337pt;}
.hb{height:59.744337pt;}
.h8{height:63.111253pt;}
.h4{height:77.059924pt;}
.h9{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:145.217336pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x5{left:84.162669pt;}
.x7{left:85.227467pt;}
.x8{left:86.252935pt;}
.xd{left:95.590535pt;}
.x3{left:240.726664pt;}
.x9{left:406.294802pt;}
.xc{left:414.299194pt;}
.xa{left:416.961594pt;}
.xe{left:426.300527pt;}
.x4{left:572.893351pt;}
.xb{left:658.727458pt;}
.x6{left:664.199341pt;}
}




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