
    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_fe877738ce81feb8d7c5d296.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_0760462f151642cfc05627f6.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_b3bb261099ad5619fcc82f91.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_08ec169b243f28260f521a8e.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_f114788ff48298372bcdeda7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113000;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_50f2aec65779a89bfb1f552a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2576a5498cbd66261bb1305a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8846e969f1db22d1c6cbd049.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_dd7ff3f291208de54735ea22.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.751000;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_7e9ca382ede6d60419df6bf4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.386786;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_80b9c0bc9e100d907d72d9ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.732000;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_f30babfd9980a63a04afd934.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.732000;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_e0c2a7be0dcf20b4362f084c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.237000;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_1c53f0ff238682c262e89fa4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;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_b8b6fc57d604352110722c10.woff2')format("woff");}.fff{font-family:fff;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_312ec96179ef85d89010d44d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.732000;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:ff11;src:url('chunks/assets/font_cb4a13c7aa64acb6b97c81b5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.879000;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;}
.v5{vertical-align:-14.728828px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.487915px;}
.v7{vertical-align:18.000001px;}
.v6{vertical-align:19.199982px;}
.v3{vertical-align:24.000000px;}
.v2{vertical-align:26.400147px;}
.ls1f{letter-spacing:-2.520000px;}
.ls16{letter-spacing:-1.176000px;}
.ls1d{letter-spacing:-0.675000px;}
.ls4{letter-spacing:-0.470400px;}
.ls13{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.225000px;}
.ls17{letter-spacing:-0.176400px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000002px;}
.ls5{letter-spacing:0.000030px;}
.ls6{letter-spacing:0.000033px;}
.ls9{letter-spacing:0.294000px;}
.ls8{letter-spacing:0.764400px;}
.lsc{letter-spacing:1.587601px;}
.lsd{letter-spacing:1.587602px;}
.ls0{letter-spacing:5.460000px;}
.ls12{letter-spacing:7.074002px;}
.ls11{letter-spacing:7.128017px;}
.ls15{letter-spacing:7.173598px;}
.ls14{letter-spacing:7.179472px;}
.lsa{letter-spacing:8.002683px;}
.lsb{letter-spacing:10.654557px;}
.ls7{letter-spacing:13.487997px;}
.ls1{letter-spacing:16.860000px;}
.ls1a{letter-spacing:292.127987px;}
.ls19{letter-spacing:329.424013px;}
.ls18{letter-spacing:329.664013px;}
.ls10{letter-spacing:399.778821px;}
.lsf{letter-spacing:483.010821px;}
.lse{letter-spacing:483.251370px;}
.ls1b{letter-spacing:584.976010px;}
.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;}
}
.ws1{word-spacing:-26.208000px;}
.ws0{word-spacing:-21.216000px;}
.ws7a{word-spacing:-14.582400px;}
.ws7c{word-spacing:-14.112000px;}
.ws7{word-spacing:-13.818000px;}
.wsda{word-spacing:-13.641600px;}
.ws8{word-spacing:-13.347600px;}
.wsd9{word-spacing:-12.642000px;}
.ws3{word-spacing:-12.483600px;}
.ws6{word-spacing:-12.420000px;}
.ws4{word-spacing:-10.800000px;}
.ws100{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.117800px;}
.wsfd{word-spacing:-9.936000px;}
.ws9{word-spacing:-9.855000px;}
.ws2a{word-spacing:-9.672600px;}
.ws11b{word-spacing:-9.315000px;}
.ws5{word-spacing:-9.198000px;}
.ws9c{word-spacing:-8.640000px;}
.ws11c{word-spacing:-8.100000px;}
.wsfc{word-spacing:-7.358400px;}
.ws11f{word-spacing:-7.335000px;}
.ws11a{word-spacing:-6.898500px;}
.wsb{word-spacing:-2.772000px;}
.ws120{word-spacing:-2.250000px;}
.wsaf{word-spacing:-1.352400px;}
.ws116{word-spacing:-1.058400px;}
.ws35{word-spacing:-0.882000px;}
.ws8c{word-spacing:-0.764400px;}
.ws84{word-spacing:-0.705600px;}
.wsbd{word-spacing:-0.646800px;}
.ws92{word-spacing:-0.411600px;}
.wse0{word-spacing:-0.294000px;}
.wsdf{word-spacing:-0.235200px;}
.ws30{word-spacing:-0.176400px;}
.wsc{word-spacing:-0.120000px;}
.ws114{word-spacing:-0.058800px;}
.ws11d{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.ws74{word-spacing:0.235200px;}
.ws27{word-spacing:0.294000px;}
.ws6b{word-spacing:0.352800px;}
.ws115{word-spacing:0.411600px;}
.wsc2{word-spacing:0.470400px;}
.ws1e{word-spacing:0.529200px;}
.ws3f{word-spacing:0.588000px;}
.wsf2{word-spacing:0.646800px;}
.ws11e{word-spacing:0.675000px;}
.ws10d{word-spacing:0.705600px;}
.ws7b{word-spacing:0.740880px;}
.wsee{word-spacing:0.764400px;}
.wsef{word-spacing:0.823200px;}
.wsb9{word-spacing:0.882000px;}
.ws33{word-spacing:0.940800px;}
.ws50{word-spacing:0.999600px;}
.wsc5{word-spacing:1.234800px;}
.wsf3{word-spacing:1.293600px;}
.ws88{word-spacing:1.352400px;}
.ws48{word-spacing:1.411200px;}
.ws36{word-spacing:1.470000px;}
.wsb6{word-spacing:1.528800px;}
.ws87{word-spacing:1.587600px;}
.ws10e{word-spacing:1.646400px;}
.ws117{word-spacing:1.705200px;}
.ws43{word-spacing:1.822800px;}
.ws6c{word-spacing:1.881600px;}
.ws24{word-spacing:1.940400px;}
.wsa5{word-spacing:1.999200px;}
.ws19{word-spacing:2.058000px;}
.wsb1{word-spacing:2.116800px;}
.ws2c{word-spacing:2.175600px;}
.ws6f{word-spacing:2.234400px;}
.ws1c{word-spacing:2.293200px;}
.ws26{word-spacing:2.352000px;}
.wsa4{word-spacing:2.410800px;}
.wsd1{word-spacing:2.528400px;}
.ws9b{word-spacing:2.646000px;}
.ws2e{word-spacing:2.704800px;}
.wse{word-spacing:2.763600px;}
.ws4a{word-spacing:2.822400px;}
.wse8{word-spacing:2.881200px;}
.ws34{word-spacing:2.940000px;}
.wsa1{word-spacing:2.998800px;}
.ws31{word-spacing:3.057600px;}
.ws6e{word-spacing:3.116400px;}
.ws15{word-spacing:3.175200px;}
.ws10{word-spacing:3.292800px;}
.ws8e{word-spacing:3.351600px;}
.wsaa{word-spacing:3.410400px;}
.ws3d{word-spacing:3.469200px;}
.ws86{word-spacing:3.528000px;}
.wsbc{word-spacing:3.586800px;}
.ws4c{word-spacing:3.645600px;}
.ws23{word-spacing:3.704400px;}
.wsf8{word-spacing:3.763200px;}
.ws40{word-spacing:3.822000px;}
.ws22{word-spacing:3.880800px;}
.wsa0{word-spacing:3.998400px;}
.wsbe{word-spacing:4.174800px;}
.ws4b{word-spacing:4.292400px;}
.wsc4{word-spacing:4.351200px;}
.ws58{word-spacing:4.410000px;}
.ws32{word-spacing:4.468800px;}
.wsba{word-spacing:4.586400px;}
.wsdc{word-spacing:4.645200px;}
.ws57{word-spacing:4.762800px;}
.ws9d{word-spacing:4.821600px;}
.ws64{word-spacing:4.880400px;}
.ws17{word-spacing:4.939200px;}
.ws9e{word-spacing:5.056800px;}
.ws44{word-spacing:5.115600px;}
.ws2f{word-spacing:5.174400px;}
.wsd7{word-spacing:5.184000px;}
.ws3c{word-spacing:5.233200px;}
.ws10f{word-spacing:5.350800px;}
.ws73{word-spacing:5.409600px;}
.ws5d{word-spacing:5.468400px;}
.ws1b{word-spacing:5.527200px;}
.ws41{word-spacing:5.586000px;}
.ws13{word-spacing:5.644800px;}
.wsdb{word-spacing:5.703600px;}
.ws8f{word-spacing:5.762400px;}
.ws20{word-spacing:5.821200px;}
.ws7e{word-spacing:5.880000px;}
.ws5b{word-spacing:6.115200px;}
.ws6a{word-spacing:6.174000px;}
.ws25{word-spacing:6.232800px;}
.ws68{word-spacing:6.291600px;}
.ws53{word-spacing:6.350400px;}
.ws66{word-spacing:6.409200px;}
.ws59{word-spacing:6.526800px;}
.ws82{word-spacing:6.585600px;}
.ws21{word-spacing:6.644400px;}
.wsbf{word-spacing:6.703200px;}
.wsea{word-spacing:6.762000px;}
.ws3b{word-spacing:6.820800px;}
.ws90{word-spacing:6.879600px;}
.ws1d{word-spacing:6.997200px;}
.wsf1{word-spacing:7.056000px;}
.wsd8{word-spacing:7.074000px;}
.wsde{word-spacing:7.173600px;}
.ws69{word-spacing:7.232400px;}
.wsd4{word-spacing:7.291200px;}
.ws72{word-spacing:7.350000px;}
.wsd3{word-spacing:7.526400px;}
.ws1f{word-spacing:7.585200px;}
.ws76{word-spacing:7.702800px;}
.wse3{word-spacing:7.761600px;}
.ws28{word-spacing:7.820400px;}
.wsa6{word-spacing:7.879200px;}
.ws89{word-spacing:7.938000px;}
.wsb0{word-spacing:7.996800px;}
.wsb2{word-spacing:8.055600px;}
.wsac{word-spacing:8.114400px;}
.ws60{word-spacing:8.173200px;}
.wsad{word-spacing:8.232000px;}
.ws11{word-spacing:8.290800px;}
.ws5a{word-spacing:8.349600px;}
.ws2d{word-spacing:8.408400px;}
.ws45{word-spacing:8.467200px;}
.wsa9{word-spacing:8.526000px;}
.wsb4{word-spacing:8.584800px;}
.wsb5{word-spacing:8.643600px;}
.wsb7{word-spacing:8.702400px;}
.wsf6{word-spacing:8.761200px;}
.wsf{word-spacing:8.878800px;}
.ws5f{word-spacing:8.937600px;}
.wsf0{word-spacing:8.996400px;}
.ws83{word-spacing:9.055200px;}
.wse7{word-spacing:9.114000px;}
.ws62{word-spacing:9.172800px;}
.ws51{word-spacing:9.231600px;}
.ws118{word-spacing:9.396000px;}
.ws75{word-spacing:9.408000px;}
.ws3a{word-spacing:9.525600px;}
.wsb3{word-spacing:9.643200px;}
.ws93{word-spacing:9.702000px;}
.ws78{word-spacing:9.819600px;}
.ws119{word-spacing:9.828000px;}
.ws8d{word-spacing:9.937200px;}
.ws38{word-spacing:10.054800px;}
.wsd6{word-spacing:10.113600px;}
.wsf5{word-spacing:10.172400px;}
.ws8b{word-spacing:10.231200px;}
.ws10c{word-spacing:10.290000px;}
.ws61{word-spacing:10.348800px;}
.wsa3{word-spacing:10.466400px;}
.ws16{word-spacing:10.525200px;}
.ws42{word-spacing:10.584000px;}
.ws9f{word-spacing:10.642800px;}
.ws80{word-spacing:10.701600px;}
.wsa7{word-spacing:10.760400px;}
.wsf4{word-spacing:10.819200px;}
.ws1a{word-spacing:10.878000px;}
.ws65{word-spacing:10.936800px;}
.ws71{word-spacing:10.995600px;}
.ws67{word-spacing:11.054400px;}
.ws63{word-spacing:11.289600px;}
.ws37{word-spacing:11.348400px;}
.ws39{word-spacing:11.407200px;}
.wsfa{word-spacing:11.524800px;}
.wsdd{word-spacing:11.583600px;}
.ws47{word-spacing:11.642400px;}
.ws14{word-spacing:11.701200px;}
.wsd5{word-spacing:11.760000px;}
.wse6{word-spacing:11.936400px;}
.wse2{word-spacing:11.995200px;}
.wsab{word-spacing:12.054000px;}
.ws97{word-spacing:12.112800px;}
.ws77{word-spacing:12.230400px;}
.ws4e{word-spacing:12.289200px;}
.ws55{word-spacing:12.348000px;}
.wsa2{word-spacing:12.406800px;}
.wsae{word-spacing:12.465600px;}
.wsa8{word-spacing:12.524400px;}
.ws5e{word-spacing:12.642000px;}
.ws5c{word-spacing:12.700800px;}
.ws91{word-spacing:12.759600px;}
.ws52{word-spacing:12.877200px;}
.ws95{word-spacing:12.936000px;}
.ws46{word-spacing:13.053600px;}
.wse5{word-spacing:13.230000px;}
.ws12{word-spacing:13.288800px;}
.wse1{word-spacing:13.406400px;}
.ws113{word-spacing:13.582800px;}
.ws6d{word-spacing:13.641600px;}
.ws112{word-spacing:13.759200px;}
.ws81{word-spacing:13.935600px;}
.ws29{word-spacing:13.994400px;}
.ws110{word-spacing:14.112000px;}
.ws7d{word-spacing:14.229600px;}
.wsed{word-spacing:14.464800px;}
.ws85{word-spacing:14.582400px;}
.ws8a{word-spacing:14.641200px;}
.ws99{word-spacing:14.817600px;}
.ws56{word-spacing:14.994000px;}
.ws9a{word-spacing:15.052801px;}
.ws96{word-spacing:15.111600px;}
.wsd2{word-spacing:15.170399px;}
.ws49{word-spacing:15.346800px;}
.ws18{word-spacing:15.640800px;}
.wseb{word-spacing:15.699599px;}
.ws4d{word-spacing:15.876001px;}
.wsbb{word-spacing:15.934800px;}
.ws7f{word-spacing:15.993601px;}
.ws70{word-spacing:16.170000px;}
.ws94{word-spacing:16.287601px;}
.ws3e{word-spacing:16.640400px;}
.wsb8{word-spacing:17.110800px;}
.wsec{word-spacing:17.345999px;}
.ws98{word-spacing:17.816400px;}
.wsc3{word-spacing:17.992800px;}
.wsf9{word-spacing:18.228000px;}
.wsf7{word-spacing:18.345600px;}
.wse4{word-spacing:18.404400px;}
.ws111{word-spacing:19.462800px;}
.ws2b{word-spacing:19.874400px;}
.wsd{word-spacing:20.168400px;}
.wsfb{word-spacing:21.050401px;}
.ws54{word-spacing:22.755600px;}
.wsc0{word-spacing:23.402400px;}
.wsc1{word-spacing:23.461199px;}
.ws4f{word-spacing:27.283199px;}
.ws79{word-spacing:32.986799px;}
.wse9{word-spacing:35.750399px;}
.wsc9{word-spacing:169.152002px;}
.wsd0{word-spacing:183.935988px;}
.wsc8{word-spacing:197.759992px;}
.wscf{word-spacing:207.359998px;}
.wsc7{word-spacing:225.984002px;}
.wscb{word-spacing:245.999993px;}
.wscc{word-spacing:249.696000px;}
.ws10a{word-spacing:254.255987px;}
.ws10b{word-spacing:254.255990px;}
.ws109{word-spacing:254.256000px;}
.ws105{word-spacing:254.836793px;}
.ws107{word-spacing:264.096010px;}
.ws102{word-spacing:269.279987px;}
.wsfe{word-spacing:269.280013px;}
.ws101{word-spacing:288.048013px;}
.wsce{word-spacing:290.255990px;}
.ws108{word-spacing:291.696020px;}
.ws103{word-spacing:306.719987px;}
.ws106{word-spacing:315.120020px;}
.wscd{word-spacing:331.392006px;}
.ws104{word-spacing:337.869012px;}
.wsca{word-spacing:366.368390px;}
.wsff{word-spacing:376.032013px;}
.wsc6{word-spacing:568.906201px;}
._11{margin-left:-27.064486px;}
._2e{margin-left:-8.403592px;}
._8{margin-left:-6.232525px;}
._4{margin-left:-4.556413px;}
._3{margin-left:-2.589587px;}
._1{margin-left:-1.296001px;}
._0{width:1.008000px;}
._2{width:3.024005px;}
._9{width:4.651082px;}
._5{width:5.991720px;}
._7{width:7.988407px;}
._b{width:9.349201px;}
._6{width:11.201400px;}
._a{width:12.289200px;}
._c{width:13.830846px;}
._2c{width:14.985322px;}
._10{width:15.993604px;}
._2d{width:18.639595px;}
._f{width:19.795201px;}
._e{width:20.906760px;}
._12{width:23.580476px;}
._d{width:32.771641px;}
._21{width:175.823988px;}
._13{width:179.376005px;}
._1d{width:180.528017px;}
._17{width:198.000005px;}
._28{width:199.679993px;}
._1e{width:202.941576px;}
._23{width:204.864006px;}
._19{width:208.272011px;}
._2b{width:217.293608px;}
._15{width:221.423992px;}
._3a{width:235.759235px;}
._24{width:241.583978px;}
._2a{width:243.935990px;}
._26{width:249.120002px;}
._2f{width:278.836221px;}
._29{width:285.506430px;}
._25{width:290.255997px;}
._39{width:292.071613px;}
._3c{width:302.207988px;}
._33{width:317.231987px;}
._32{width:321.165598px;}
._22{width:344.061583px;}
._1a{width:347.613576px;}
._36{width:349.007987px;}
._35{width:354.768013px;}
._1b{width:401.901576px;}
._3b{width:414.864006px;}
._3e{width:423.887980px;}
._27{width:426.624000px;}
._1c{width:430.751993px;}
._3f{width:452.303981px;}
._3d{width:461.327981px;}
._34{width:477.216010px;}
._20{width:500.469452px;}
._1f{width:501.622233px;}
._14{width:546.573576px;}
._38{width:558.860433px;}
._37{width:562.509019px;}
._16{width:575.423993px;}
._18{width:629.135993px;}
._30{width:644.892478px;}
._31{width:669.132021px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.500000px;}
.fs10{font-size:33.599999px;}
.fsb{font-size:41.160001px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsf{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fs8{font-size:58.800001px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800001px;}
.fs3{font-size:66.000000px;}
.fsd{font-size:70.684198px;}
.fse{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:89.318699px;}
.y133{bottom:101.213997px;}
.y18{bottom:101.320198px;}
.y1aa{bottom:101.893198px;}
.y19a{bottom:101.907598px;}
.y237{bottom:102.113685px;}
.y1e6{bottom:105.746838px;}
.yf5{bottom:108.518545px;}
.y90{bottom:108.746853px;}
.y76{bottom:108.754053px;}
.y154{bottom:108.768454px;}
.y17c{bottom:108.782843px;}
.yb3{bottom:108.804443px;}
.ybf{bottom:110.669552px;}
.y110{bottom:110.704044px;}
.yf8{bottom:111.033600px;}
.y17{bottom:113.321697px;}
.y236{bottom:115.613685px;}
.y1e5{bottom:119.246839px;}
.y1a9{bottom:119.885998px;}
.y199{bottom:119.900398px;}
.y138{bottom:123.381007px;}
.y16{bottom:125.323196px;}
.ybe{bottom:125.669552px;}
.y10f{bottom:125.704044px;}
.yf7{bottom:126.033600px;}
.yf4{bottom:126.511345px;}
.y75{bottom:126.746853px;}
.y153{bottom:126.761253px;}
.y8f{bottom:126.768454px;}
.y17b{bottom:126.775642px;}
.yb2{bottom:126.797243px;}
.y235{bottom:129.113686px;}
.y1e4{bottom:132.746839px;}
.y1a8{bottom:137.878798px;}
.y198{bottom:137.893198px;}
.ybd{bottom:140.669552px;}
.y10e{bottom:140.704044px;}
.yf6{bottom:141.033600px;}
.y137{bottom:141.609008px;}
.y234{bottom:142.613686px;}
.yf3{bottom:144.511345px;}
.y152{bottom:144.754053px;}
.y74{bottom:144.761253px;}
.y17a{bottom:144.768442px;}
.yb1{bottom:144.790043px;}
.y1e3{bottom:146.246839px;}
.ybb{bottom:155.669998px;}
.y10a{bottom:155.703003px;}
.y1a7{bottom:155.871597px;}
.y197{bottom:155.885998px;}
.y233{bottom:156.113686px;}
.y3f{bottom:158.587498px;}
.y1e2{bottom:159.746840px;}
.y136{bottom:159.753007px;}
.y3a{bottom:161.276104px;}
.y151{bottom:162.746853px;}
.y73{bottom:162.754053px;}
.y179{bottom:162.761242px;}
.yb0{bottom:162.782843px;}
.y232{bottom:169.613687px;}
.y3e{bottom:172.087498px;}
.y1e1{bottom:173.246840px;}
.y1a6{bottom:173.871597px;}
.y196{bottom:173.878798px;}
.y39{bottom:179.268906px;}
.yf2{bottom:180.511345px;}
.y72{bottom:180.746853px;}
.y178{bottom:180.754042px;}
.yaf{bottom:180.775642px;}
.y231{bottom:183.113687px;}
.y135{bottom:186.645006px;}
.y1e0{bottom:186.746840px;}
.y3d{bottom:190.087498px;}
.y195{bottom:191.871597px;}
.y184{bottom:191.994301px;}
.y230{bottom:196.613687px;}
.y38{bottom:197.261696px;}
.yf1{bottom:198.518545px;}
.y8e{bottom:198.746841px;}
.yae{bottom:198.768442px;}
.y71{bottom:198.819004px;}
.y3c{bottom:199.087509px;}
.y1df{bottom:200.246841px;}
.y183{bottom:206.994301px;}
.y1a5{bottom:209.871597px;}
.y194{bottom:209.893198px;}
.y22f{bottom:210.113688px;}
.y134{bottom:210.489006px;}
.y1de{bottom:213.746841px;}
.y37{bottom:215.283302px;}
.yf0{bottom:216.511345px;}
.y8d{bottom:216.746841px;}
.yad{bottom:216.761242px;}
.y177{bottom:216.804603px;}
.y70{bottom:216.811804px;}
.y182{bottom:221.994301px;}
.y22e{bottom:223.613688px;}
.y1dd{bottom:227.246841px;}
.y193{bottom:227.885998px;}
.y36{bottom:233.276093px;}
.yef{bottom:234.561746px;}
.y8c{bottom:234.746841px;}
.yac{bottom:234.754042px;}
.y176{bottom:234.797403px;}
.y6f{bottom:234.804603px;}
.y132{bottom:235.430696px;}
.y17d{bottom:236.994003px;}
.y22d{bottom:237.113688px;}
.y1a4{bottom:245.871597px;}
.y192{bottom:245.878798px;}
.y27{bottom:250.550537px;}
.y22c{bottom:250.613689px;}
.y35{bottom:251.268906px;}
.y131{bottom:251.927696px;}
.yee{bottom:252.554546px;}
.yab{bottom:252.746841px;}
.y175{bottom:252.790203px;}
.y6e{bottom:252.797403px;}
.y191{bottom:263.871597px;}
.y1a3{bottom:263.936399px;}
.y22b{bottom:264.113689px;}
.y26{bottom:268.543327px;}
.y34{bottom:269.261696px;}
.yed{bottom:270.547346px;}
.yaa{bottom:270.754202px;}
.y150{bottom:270.761402px;}
.y174{bottom:270.783003px;}
.y6d{bottom:270.790203px;}
.y22a{bottom:277.613689px;}
.y190{bottom:281.878798px;}
.y1a2{bottom:281.929199px;}
.y25{bottom:286.536140px;}
.y33{bottom:287.283302px;}
.yec{bottom:288.540146px;}
.ya9{bottom:288.754202px;}
.y173{bottom:288.775803px;}
.y6c{bottom:288.783003px;}
.y229{bottom:291.113690px;}
.y1dc{bottom:297.746971px;}
.y18f{bottom:299.871597px;}
.y1a1{bottom:299.921999px;}
.y127{bottom:304.404739px;}
.y24{bottom:304.528931px;}
.y228{bottom:304.613690px;}
.y32{bottom:305.276093px;}
.yeb{bottom:306.532946px;}
.ya8{bottom:306.747002px;}
.y172{bottom:306.768602px;}
.y6b{bottom:306.775803px;}
.y18e{bottom:317.871597px;}
.y1a0{bottom:317.914799px;}
.y227{bottom:318.113690px;}
.y23{bottom:322.521744px;}
.y31{bottom:323.268906px;}
.yea{bottom:324.525745px;}
.y1db{bottom:324.746972px;}
.y171{bottom:324.761402px;}
.y6a{bottom:324.768602px;}
.ya7{bottom:324.782980px;}
.y130{bottom:325.995752px;}
.yba{bottom:329.755051px;}
.y226{bottom:331.613691px;}
.y18d{bottom:335.878798px;}
.y19f{bottom:335.907598px;}
.y1da{bottom:338.246972px;}
.y10d{bottom:339.374697px;}
.y22{bottom:340.514534px;}
.y30{bottom:341.261696px;}
.ye9{bottom:342.518545px;}
.y170{bottom:342.754202px;}
.y69{bottom:342.761402px;}
.ya6{bottom:342.775780px;}
.y12f{bottom:344.223753px;}
.y225{bottom:345.113691px;}
.y18c{bottom:353.871597px;}
.y19e{bottom:353.900398px;}
.y21{bottom:358.507324px;}
.y224{bottom:358.613691px;}
.y2f{bottom:359.261696px;}
.ye8{bottom:360.511345px;}
.yda{bottom:360.747002px;}
.y68{bottom:360.754202px;}
.ya5{bottom:360.768579px;}
.y12e{bottom:362.367752px;}
.y1d9{bottom:365.246973px;}
.y18b{bottom:371.893198px;}
.y223{bottom:372.113692px;}
.y20{bottom:376.500137px;}
.y2e{bottom:377.276115px;}
.ye7{bottom:378.532968px;}
.y67{bottom:378.747002px;}
.ya4{bottom:378.761379px;}
.yd9{bottom:378.768579px;}
.y12d{bottom:380.511751px;}
.y222{bottom:385.613692px;}
.y18a{bottom:389.885998px;}
.y1d8{bottom:392.246974px;}
.y1f{bottom:394.492950px;}
.y2d{bottom:395.268906px;}
.ye6{bottom:396.525768px;}
.y14f{bottom:396.746979px;}
.y66{bottom:396.754179px;}
.yd8{bottom:396.761379px;}
.y8b{bottom:396.775780px;}
.y12c{bottom:398.655751px;}
.y221{bottom:399.113692px;}
.y1d7{bottom:405.746975px;}
.y189{bottom:407.878798px;}
.y1e{bottom:412.485718px;}
.y220{bottom:412.613693px;}
.y2c{bottom:413.261719px;}
.ye5{bottom:414.518568px;}
.y65{bottom:414.746979px;}
.yd7{bottom:414.754179px;}
.y8a{bottom:414.768579px;}
.y12b{bottom:416.799750px;}
.y1d6{bottom:419.246975px;}
.y188{bottom:425.871597px;}
.y21f{bottom:426.113693px;}
.y1d{bottom:430.478531px;}
.y2b{bottom:431.261719px;}
.ye4{bottom:432.511368px;}
.y1d5{bottom:432.746975px;}
.yd6{bottom:432.746979px;}
.y89{bottom:432.761379px;}
.y16f{bottom:432.768579px;}
.y64{bottom:432.804581px;}
.y181{bottom:434.176769px;}
.y12a{bottom:434.943750px;}
.y21e{bottom:439.613693px;}
.y187{bottom:443.871597px;}
.y19d{bottom:443.917817px;}
.ybc{bottom:445.777634px;}
.y1d4{bottom:446.246976px;}
.y1c{bottom:448.478531px;}
.y2a{bottom:449.268906px;}
.ye3{bottom:450.511368px;}
.yd5{bottom:450.746979px;}
.y88{bottom:450.754179px;}
.y16e{bottom:450.761379px;}
.y63{bottom:450.797380px;}
.y14e{bottom:450.818981px;}
.y21d{bottom:453.113694px;}
.y264{bottom:453.113695px;}
.y1d3{bottom:459.746976px;}
.y129{bottom:461.835749px;}
.y186{bottom:461.878798px;}
.y19c{bottom:461.910617px;}
.y1b{bottom:466.478531px;}
.y21c{bottom:466.613694px;}
.y263{bottom:466.613695px;}
.y29{bottom:467.261719px;}
.ye2{bottom:468.518568px;}
.y87{bottom:468.746979px;}
.y16d{bottom:468.754179px;}
.y62{bottom:468.790180px;}
.y14d{bottom:468.811781px;}
.y1d2{bottom:473.246976px;}
.y185{bottom:479.871597px;}
.y19b{bottom:479.903416px;}
.y21b{bottom:480.113694px;}
.y262{bottom:480.113696px;}
.y1a{bottom:484.478531px;}
.y28{bottom:485.338943px;}
.y128{bottom:485.679749px;}
.ye1{bottom:486.511368px;}
.y1d1{bottom:486.746977px;}
.ya3{bottom:486.746979px;}
.y86{bottom:486.754179px;}
.y61{bottom:486.782980px;}
.y14c{bottom:486.804581px;}
.yd4{bottom:486.818981px;}
.y21a{bottom:493.613695px;}
.y261{bottom:493.613696px;}
.y1d0{bottom:500.246977px;}
.ye0{bottom:504.525768px;}
.y85{bottom:504.746979px;}
.ya2{bottom:504.761379px;}
.y60{bottom:504.775780px;}
.y16c{bottom:504.790180px;}
.y14b{bottom:504.797380px;}
.yd3{bottom:504.811781px;}
.y219{bottom:507.113695px;}
.y260{bottom:507.113696px;}
.y126{bottom:510.621439px;}
.y1cf{bottom:513.746977px;}
.y1bf{bottom:519.852173px;}
.y218{bottom:520.613695px;}
.y25f{bottom:520.613697px;}
.ydf{bottom:522.518568px;}
.y84{bottom:522.746979px;}
.ya1{bottom:522.754179px;}
.y5f{bottom:522.768579px;}
.y16b{bottom:522.782980px;}
.y14a{bottom:522.790180px;}
.yd2{bottom:522.804581px;}
.y125{bottom:527.118439px;}
.y217{bottom:534.113696px;}
.y25e{bottom:534.113697px;}
.y15{bottom:538.441040px;}
.yde{bottom:540.511368px;}
.ya0{bottom:540.746979px;}
.y5e{bottom:540.761379px;}
.y16a{bottom:540.775780px;}
.y83{bottom:540.782980px;}
.yd1{bottom:540.797380px;}
.y1c4{bottom:542.019000px;}
.y10c{bottom:543.584702px;}
.y216{bottom:547.613696px;}
.y25d{bottom:547.613697px;}
.y1ce{bottom:554.246978px;}
.ydd{bottom:558.520813px;}
.y5d{bottom:558.754179px;}
.y169{bottom:558.768579px;}
.y82{bottom:558.775780px;}
.yd0{bottom:558.790180px;}
.y1c3{bottom:560.247001px;}
.y14{bottom:560.941040px;}
.y215{bottom:561.113696px;}
.y25c{bottom:561.113698px;}
.y1cd{bottom:567.746978px;}
.y214{bottom:574.613697px;}
.y25b{bottom:574.613698px;}
.ydc{bottom:576.513613px;}
.y5c{bottom:576.746979px;}
.y168{bottom:576.761379px;}
.y81{bottom:576.768579px;}
.ycf{bottom:576.782980px;}
.y1c2{bottom:578.391000px;}
.y13{bottom:578.941040px;}
.y10b{bottom:583.531036px;}
.y1cc{bottom:585.746979px;}
.y213{bottom:588.113697px;}
.y25a{bottom:588.113698px;}
.ydb{bottom:594.506413px;}
.y1cb{bottom:594.746976px;}
.y167{bottom:594.754179px;}
.y5b{bottom:594.761379px;}
.y9f{bottom:594.775780px;}
.y12{bottom:596.941040px;}
.y119{bottom:600.518568px;}
.y122{bottom:600.525768px;}
.y212{bottom:601.613697px;}
.y259{bottom:601.613699px;}
.y1c1{bottom:605.282999px;}
.y166{bottom:612.746979px;}
.y5a{bottom:612.754179px;}
.y9e{bottom:612.768579px;}
.y11{bottom:614.941040px;}
.y211{bottom:615.113698px;}
.y258{bottom:615.113699px;}
.y118{bottom:618.511368px;}
.y121{bottom:618.518568px;}
.y1ca{bottom:621.746977px;}
.y210{bottom:628.613698px;}
.y257{bottom:628.613699px;}
.y1c0{bottom:629.126999px;}
.y59{bottom:630.746979px;}
.y9d{bottom:630.761379px;}
.y165{bottom:630.782980px;}
.y10{bottom:632.941040px;}
.y1c9{bottom:635.246977px;}
.y120{bottom:636.511368px;}
.y117{bottom:636.540169px;}
.y20f{bottom:642.113698px;}
.y256{bottom:642.113700px;}
.yfc{bottom:645.976181px;}
.y1c8{bottom:648.746977px;}
.y149{bottom:648.746979px;}
.y9c{bottom:648.754179px;}
.y58{bottom:648.761379px;}
.y164{bottom:648.775780px;}
.y180{bottom:650.626762px;}
.yf{bottom:650.941040px;}
.y1be{bottom:654.068689px;}
.y11f{bottom:654.525768px;}
.y116{bottom:654.532968px;}
.y20e{bottom:655.613699px;}
.y255{bottom:655.613700px;}
.yfb{bottom:660.976181px;}
.y1c7{bottom:662.246978px;}
.y9b{bottom:666.746979px;}
.y57{bottom:666.754179px;}
.y163{bottom:666.768579px;}
.y148{bottom:666.818889px;}
.ye{bottom:668.941040px;}
.y20d{bottom:669.113699px;}
.y254{bottom:669.113700px;}
.yb7{bottom:669.388945px;}
.y1bd{bottom:670.565689px;}
.y11e{bottom:672.518568px;}
.y115{bottom:672.525768px;}
.y1c6{bottom:675.746978px;}
.yfa{bottom:675.976181px;}
.y20c{bottom:682.613699px;}
.y253{bottom:682.613701px;}
.y56{bottom:684.746979px;}
.y162{bottom:684.761379px;}
.yce{bottom:684.768579px;}
.y147{bottom:684.811689px;}
.yd{bottom:686.941040px;}
.yb6{bottom:687.381744px;}
.y1c5{bottom:689.246978px;}
.y11d{bottom:690.511368px;}
.y114{bottom:690.518568px;}
.yf9{bottom:690.976181px;}
.y20b{bottom:696.113700px;}
.y252{bottom:696.113701px;}
.y80{bottom:702.746979px;}
.y161{bottom:702.754179px;}
.ycd{bottom:702.761379px;}
.y55{bottom:702.782888px;}
.y146{bottom:702.804489px;}
.yc{bottom:704.941040px;}
.yb5{bottom:705.374544px;}
.y113{bottom:708.511368px;}
.y11c{bottom:708.518568px;}
.y20a{bottom:709.613700px;}
.y251{bottom:709.613701px;}
.y1ae{bottom:714.213010px;}
.y160{bottom:720.746979px;}
.y9a{bottom:720.754179px;}
.y54{bottom:720.775688px;}
.y145{bottom:720.797289px;}
.yb{bottom:722.941040px;}
.y209{bottom:723.113700px;}
.y250{bottom:723.113702px;}
.yb4{bottom:723.367344px;}
.y11b{bottom:726.511368px;}
.y112{bottom:726.518568px;}
.y1ad{bottom:731.212509px;}
.y208{bottom:736.613701px;}
.y24f{bottom:736.613702px;}
.ycc{bottom:738.746979px;}
.y99{bottom:738.754179px;}
.y53{bottom:738.768488px;}
.y144{bottom:738.790089px;}
.ya{bottom:740.941040px;}
.y111{bottom:744.511368px;}
.y11a{bottom:744.519764px;}
.y207{bottom:750.113701px;}
.y24e{bottom:750.113702px;}
.y1bc{bottom:753.703525px;}
.y1f0{bottom:754.574426px;}
.y15f{bottom:756.746979px;}
.y98{bottom:756.754087px;}
.y52{bottom:756.761288px;}
.y143{bottom:756.782888px;}
.y9{bottom:763.441040px;}
.y206{bottom:763.613701px;}
.y24d{bottom:763.613703px;}
.y1ef{bottom:768.074426px;}
.y1bb{bottom:771.931525px;}
.yb9{bottom:773.896179px;}
.ycb{bottom:774.746887px;}
.y51{bottom:774.754087px;}
.y142{bottom:774.775688px;}
.y205{bottom:777.113702px;}
.y24c{bottom:777.113703px;}
.y1ee{bottom:781.574427px;}
.yb8{bottom:788.896179px;}
.y1ba{bottom:790.075525px;}
.y204{bottom:790.613702px;}
.y24b{bottom:790.613703px;}
.y50{bottom:792.746887px;}
.y97{bottom:792.754087px;}
.y141{bottom:792.768488px;}
.yca{bottom:792.782888px;}
.y17e{bottom:792.798019px;}
.y1ed{bottom:795.074427px;}
.y124{bottom:803.628754px;}
.y203{bottom:804.113702px;}
.y24a{bottom:804.113704px;}
.y1b9{bottom:808.219524px;}
.y1ec{bottom:808.574427px;}
.y109{bottom:810.746887px;}
.y140{bottom:810.761288px;}
.y4f{bottom:810.768488px;}
.yc9{bottom:810.775688px;}
.y103{bottom:810.782888px;}
.y202{bottom:817.613703px;}
.y249{bottom:817.613704px;}
.y123{bottom:818.628754px;}
.y1b8{bottom:826.363523px;}
.y8{bottom:827.678558px;}
.y1eb{bottom:828.070678px;}
.y108{bottom:828.746887px;}
.y13f{bottom:828.754087px;}
.y4e{bottom:828.761288px;}
.yc8{bottom:828.768488px;}
.y102{bottom:828.775688px;}
.y201{bottom:831.113703px;}
.y248{bottom:831.113704px;}
.y1ea{bottom:841.570678px;}
.y1b7{bottom:844.507523px;}
.y200{bottom:844.613703px;}
.y247{bottom:844.613705px;}
.y107{bottom:846.746887px;}
.y4d{bottom:846.754087px;}
.yc7{bottom:846.761288px;}
.y101{bottom:846.768488px;}
.y1e9{bottom:855.070678px;}
.y17f{bottom:856.492767px;}
.y1ff{bottom:858.113704px;}
.y246{bottom:858.113705px;}
.y1b6{bottom:862.651522px;}
.y7{bottom:863.715454px;}
.y4c{bottom:864.746887px;}
.yc6{bottom:864.754087px;}
.y100{bottom:864.761288px;}
.y13e{bottom:864.782888px;}
.y1e8{bottom:868.570679px;}
.y1fe{bottom:871.613704px;}
.y245{bottom:871.613705px;}
.y1b5{bottom:880.795522px;}
.y4b{bottom:882.746887px;}
.y96{bottom:882.754087px;}
.y7f{bottom:882.761288px;}
.y13d{bottom:882.775688px;}
.y15e{bottom:882.826379px;}
.y1fd{bottom:885.113704px;}
.y244{bottom:885.113706px;}
.y1fc{bottom:898.613705px;}
.y243{bottom:898.613706px;}
.y1b4{bottom:898.939521px;}
.y95{bottom:900.746887px;}
.y7e{bottom:900.754087px;}
.y4a{bottom:900.761288px;}
.y13c{bottom:900.768488px;}
.y15d{bottom:900.819179px;}
.y6{bottom:902.703461px;}
.y1e7{bottom:907.159332px;}
.y1fb{bottom:912.113705px;}
.y242{bottom:912.113706px;}
.y1b3{bottom:917.083520px;}
.y7d{bottom:918.746887px;}
.y49{bottom:918.754087px;}
.y13b{bottom:918.761288px;}
.yff{bottom:918.768488px;}
.y94{bottom:918.775688px;}
.y15c{bottom:918.811979px;}
.y1fa{bottom:925.613705px;}
.y241{bottom:925.613707px;}
.y1b2{bottom:935.227520px;}
.y48{bottom:936.746887px;}
.y13a{bottom:936.754087px;}
.yfe{bottom:936.761288px;}
.y93{bottom:936.768488px;}
.yc5{bottom:936.782888px;}
.y15b{bottom:936.804779px;}
.y1f9{bottom:939.113706px;}
.y240{bottom:939.113707px;}
.y5{bottom:941.691467px;}
.y1f8{bottom:952.613706px;}
.y23f{bottom:952.613707px;}
.y1b1{bottom:953.371519px;}
.y139{bottom:954.746887px;}
.y7c{bottom:954.754087px;}
.y92{bottom:954.761288px;}
.yc4{bottom:954.775688px;}
.y47{bottom:954.782888px;}
.y15a{bottom:954.797579px;}
.y1f7{bottom:966.113706px;}
.y23e{bottom:966.113708px;}
.yfd{bottom:972.746887px;}
.y7b{bottom:972.754087px;}
.yc3{bottom:972.768488px;}
.y46{bottom:972.775688px;}
.y159{bottom:972.790378px;}
.y1f6{bottom:979.613707px;}
.y23d{bottom:979.613708px;}
.y1b0{bottom:980.143519px;}
.y4{bottom:980.679474px;}
.y7a{bottom:990.746887px;}
.yc2{bottom:990.761288px;}
.y45{bottom:990.768488px;}
.y158{bottom:990.783178px;}
.y1f5{bottom:993.113707px;}
.y23c{bottom:993.113708px;}
.y1af{bottom:1003.987518px;}
.y1f4{bottom:1006.613707px;}
.y23b{bottom:1006.613709px;}
.y106{bottom:1008.746887px;}
.y79{bottom:1008.754087px;}
.y44{bottom:1008.761288px;}
.y157{bottom:1008.775978px;}
.y1f3{bottom:1020.113708px;}
.y23a{bottom:1020.113709px;}
.y78{bottom:1026.746887px;}
.y43{bottom:1026.754087px;}
.y156{bottom:1026.768778px;}
.y105{bottom:1026.784696px;}
.y1ac{bottom:1028.929208px;}
.y1f2{bottom:1033.613708px;}
.y239{bottom:1033.613709px;}
.y3{bottom:1035.488708px;}
.y3b{bottom:1037.876221px;}
.y77{bottom:1044.739977px;}
.y42{bottom:1044.746887px;}
.y155{bottom:1044.761577px;}
.y104{bottom:1044.777496px;}
.y1ab{bottom:1045.426208px;}
.y1f1{bottom:1047.113708px;}
.y238{bottom:1047.113710px;}
.y2{bottom:1114.423004px;}
.y40{bottom:1128.650574px;}
.yc0{bottom:1128.650665px;}
.y41{bottom:1129.046574px;}
.yc1{bottom:1129.046665px;}
.y1{bottom:1129.051025px;}
.y91{bottom:1129.051208px;}
.hf{height:27.814500px;}
.hc{height:37.086000px;}
.he{height:39.735000px;}
.h25{height:39.984000px;}
.h21{height:40.026000px;}
.h1b{height:42.384000px;}
.h28{height:42.840000px;}
.h26{height:43.785000px;}
.h29{height:44.505000px;}
.h3{height:45.696000px;}
.h27{height:45.814501px;}
.h22{height:46.704000px;}
.h2{height:47.231915px;}
.h10{height:47.232000px;}
.h1a{height:47.472000px;}
.h24{height:48.868781px;}
.h1c{height:50.751254px;}
.h1f{height:51.696000px;}
.h9{height:52.980000px;}
.h20{height:53.406000px;}
.h17{height:53.709599px;}
.hd{height:55.860001px;}
.h12{height:55.887643px;}
.hb{height:58.380000px;}
.ha{height:61.086000px;}
.h8{height:61.120201px;}
.h18{height:62.478077px;}
.h14{height:62.535496px;}
.h13{height:62.593097px;}
.h11{height:62.593189px;}
.h16{height:62.593280px;}
.h15{height:62.593647px;}
.h19{height:62.621990px;}
.h7{height:67.194745px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h6{height:137.232000px;}
.h1d{height:460.955978px;}
.h1e{height:598.992004px;}
.h23{height:809.182526px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:350.788490px;}
.w3{width:722.835022px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:14.791351px;}
.x1{left:84.933002px;}
.x18{left:89.522529px;}
.x2{left:92.734348px;}
.x3{left:94.683151px;}
.x9{left:97.049272px;}
.x1b{left:107.539352px;}
.x13{left:162.771160px;}
.x19{left:196.396957px;}
.x12{left:214.435913px;}
.x17{left:245.738526px;}
.x10{left:254.317483px;}
.x11{left:265.068146px;}
.x4{left:270.817497px;}
.x15{left:281.861998px;}
.x14{left:284.003998px;}
.x16{left:294.983997px;}
.xe{left:306.890980px;}
.xf{left:392.305481px;}
.xd{left:435.826630px;}
.x5{left:457.092911px;}
.xa{left:466.461594px;}
.x6{left:469.081787px;}
.xb{left:471.279739px;}
.x1c{left:479.586594px;}
.x7{left:694.929886px;}
.x1a{left:741.068390px;}
.x8{left:747.224258px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v5{vertical-align:-13.092292pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322591pt;}
.v7{vertical-align:16.000001pt;}
.v6{vertical-align:17.066650pt;}
.v3{vertical-align:21.333333pt;}
.v2{vertical-align:23.466797pt;}
.ls1f{letter-spacing:-2.240000pt;}
.ls16{letter-spacing:-1.045333pt;}
.ls1d{letter-spacing:-0.600000pt;}
.ls4{letter-spacing:-0.418133pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.200000pt;}
.ls17{letter-spacing:-0.156800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.ls5{letter-spacing:0.000027pt;}
.ls6{letter-spacing:0.000030pt;}
.ls9{letter-spacing:0.261333pt;}
.ls8{letter-spacing:0.679467pt;}
.lsc{letter-spacing:1.411201pt;}
.lsd{letter-spacing:1.411202pt;}
.ls0{letter-spacing:4.853333pt;}
.ls12{letter-spacing:6.288001pt;}
.ls11{letter-spacing:6.336015pt;}
.ls15{letter-spacing:6.376531pt;}
.ls14{letter-spacing:6.381753pt;}
.lsa{letter-spacing:7.113496pt;}
.lsb{letter-spacing:9.470718pt;}
.ls7{letter-spacing:11.989330pt;}
.ls1{letter-spacing:14.986667pt;}
.ls1a{letter-spacing:259.669322pt;}
.ls19{letter-spacing:292.821345pt;}
.ls18{letter-spacing:293.034678pt;}
.ls10{letter-spacing:355.358952pt;}
.lsf{letter-spacing:429.342952pt;}
.lse{letter-spacing:429.556773pt;}
.ls1b{letter-spacing:519.978675pt;}
.ws1{word-spacing:-23.296000pt;}
.ws0{word-spacing:-18.858667pt;}
.ws7a{word-spacing:-12.962134pt;}
.ws7c{word-spacing:-12.544000pt;}
.ws7{word-spacing:-12.282667pt;}
.wsda{word-spacing:-12.125867pt;}
.ws8{word-spacing:-11.864534pt;}
.wsd9{word-spacing:-11.237334pt;}
.ws3{word-spacing:-11.096534pt;}
.ws6{word-spacing:-11.040000pt;}
.ws4{word-spacing:-9.600000pt;}
.ws100{word-spacing:-9.344000pt;}
.ws2{word-spacing:-8.993600pt;}
.wsfd{word-spacing:-8.832000pt;}
.ws9{word-spacing:-8.760000pt;}
.ws2a{word-spacing:-8.597867pt;}
.ws11b{word-spacing:-8.280000pt;}
.ws5{word-spacing:-8.176000pt;}
.ws9c{word-spacing:-7.680000pt;}
.ws11c{word-spacing:-7.200000pt;}
.wsfc{word-spacing:-6.540800pt;}
.ws11f{word-spacing:-6.520000pt;}
.ws11a{word-spacing:-6.132000pt;}
.wsb{word-spacing:-2.464000pt;}
.ws120{word-spacing:-2.000000pt;}
.wsaf{word-spacing:-1.202133pt;}
.ws116{word-spacing:-0.940800pt;}
.ws35{word-spacing:-0.784000pt;}
.ws8c{word-spacing:-0.679467pt;}
.ws84{word-spacing:-0.627200pt;}
.wsbd{word-spacing:-0.574933pt;}
.ws92{word-spacing:-0.365867pt;}
.wse0{word-spacing:-0.261333pt;}
.wsdf{word-spacing:-0.209067pt;}
.ws30{word-spacing:-0.156800pt;}
.wsc{word-spacing:-0.106667pt;}
.ws114{word-spacing:-0.052267pt;}
.ws11d{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.ws74{word-spacing:0.209067pt;}
.ws27{word-spacing:0.261333pt;}
.ws6b{word-spacing:0.313600pt;}
.ws115{word-spacing:0.365867pt;}
.wsc2{word-spacing:0.418133pt;}
.ws1e{word-spacing:0.470400pt;}
.ws3f{word-spacing:0.522667pt;}
.wsf2{word-spacing:0.574933pt;}
.ws11e{word-spacing:0.600000pt;}
.ws10d{word-spacing:0.627200pt;}
.ws7b{word-spacing:0.658560pt;}
.wsee{word-spacing:0.679467pt;}
.wsef{word-spacing:0.731733pt;}
.wsb9{word-spacing:0.784000pt;}
.ws33{word-spacing:0.836267pt;}
.ws50{word-spacing:0.888533pt;}
.wsc5{word-spacing:1.097600pt;}
.wsf3{word-spacing:1.149867pt;}
.ws88{word-spacing:1.202133pt;}
.ws48{word-spacing:1.254400pt;}
.ws36{word-spacing:1.306667pt;}
.wsb6{word-spacing:1.358933pt;}
.ws87{word-spacing:1.411200pt;}
.ws10e{word-spacing:1.463467pt;}
.ws117{word-spacing:1.515733pt;}
.ws43{word-spacing:1.620267pt;}
.ws6c{word-spacing:1.672533pt;}
.ws24{word-spacing:1.724800pt;}
.wsa5{word-spacing:1.777067pt;}
.ws19{word-spacing:1.829333pt;}
.wsb1{word-spacing:1.881600pt;}
.ws2c{word-spacing:1.933867pt;}
.ws6f{word-spacing:1.986133pt;}
.ws1c{word-spacing:2.038400pt;}
.ws26{word-spacing:2.090667pt;}
.wsa4{word-spacing:2.142933pt;}
.wsd1{word-spacing:2.247467pt;}
.ws9b{word-spacing:2.352000pt;}
.ws2e{word-spacing:2.404267pt;}
.wse{word-spacing:2.456533pt;}
.ws4a{word-spacing:2.508800pt;}
.wse8{word-spacing:2.561067pt;}
.ws34{word-spacing:2.613333pt;}
.wsa1{word-spacing:2.665600pt;}
.ws31{word-spacing:2.717867pt;}
.ws6e{word-spacing:2.770133pt;}
.ws15{word-spacing:2.822400pt;}
.ws10{word-spacing:2.926933pt;}
.ws8e{word-spacing:2.979200pt;}
.wsaa{word-spacing:3.031467pt;}
.ws3d{word-spacing:3.083733pt;}
.ws86{word-spacing:3.136000pt;}
.wsbc{word-spacing:3.188267pt;}
.ws4c{word-spacing:3.240533pt;}
.ws23{word-spacing:3.292800pt;}
.wsf8{word-spacing:3.345067pt;}
.ws40{word-spacing:3.397333pt;}
.ws22{word-spacing:3.449600pt;}
.wsa0{word-spacing:3.554133pt;}
.wsbe{word-spacing:3.710933pt;}
.ws4b{word-spacing:3.815467pt;}
.wsc4{word-spacing:3.867733pt;}
.ws58{word-spacing:3.920000pt;}
.ws32{word-spacing:3.972267pt;}
.wsba{word-spacing:4.076800pt;}
.wsdc{word-spacing:4.129067pt;}
.ws57{word-spacing:4.233600pt;}
.ws9d{word-spacing:4.285867pt;}
.ws64{word-spacing:4.338133pt;}
.ws17{word-spacing:4.390400pt;}
.ws9e{word-spacing:4.494933pt;}
.ws44{word-spacing:4.547200pt;}
.ws2f{word-spacing:4.599467pt;}
.wsd7{word-spacing:4.608000pt;}
.ws3c{word-spacing:4.651733pt;}
.ws10f{word-spacing:4.756267pt;}
.ws73{word-spacing:4.808533pt;}
.ws5d{word-spacing:4.860800pt;}
.ws1b{word-spacing:4.913067pt;}
.ws41{word-spacing:4.965333pt;}
.ws13{word-spacing:5.017600pt;}
.wsdb{word-spacing:5.069867pt;}
.ws8f{word-spacing:5.122133pt;}
.ws20{word-spacing:5.174400pt;}
.ws7e{word-spacing:5.226667pt;}
.ws5b{word-spacing:5.435733pt;}
.ws6a{word-spacing:5.488000pt;}
.ws25{word-spacing:5.540267pt;}
.ws68{word-spacing:5.592533pt;}
.ws53{word-spacing:5.644800pt;}
.ws66{word-spacing:5.697067pt;}
.ws59{word-spacing:5.801600pt;}
.ws82{word-spacing:5.853867pt;}
.ws21{word-spacing:5.906133pt;}
.wsbf{word-spacing:5.958400pt;}
.wsea{word-spacing:6.010667pt;}
.ws3b{word-spacing:6.062933pt;}
.ws90{word-spacing:6.115200pt;}
.ws1d{word-spacing:6.219733pt;}
.wsf1{word-spacing:6.272000pt;}
.wsd8{word-spacing:6.288000pt;}
.wsde{word-spacing:6.376533pt;}
.ws69{word-spacing:6.428800pt;}
.wsd4{word-spacing:6.481067pt;}
.ws72{word-spacing:6.533333pt;}
.wsd3{word-spacing:6.690133pt;}
.ws1f{word-spacing:6.742400pt;}
.ws76{word-spacing:6.846933pt;}
.wse3{word-spacing:6.899200pt;}
.ws28{word-spacing:6.951467pt;}
.wsa6{word-spacing:7.003733pt;}
.ws89{word-spacing:7.056000pt;}
.wsb0{word-spacing:7.108267pt;}
.wsb2{word-spacing:7.160533pt;}
.wsac{word-spacing:7.212800pt;}
.ws60{word-spacing:7.265067pt;}
.wsad{word-spacing:7.317333pt;}
.ws11{word-spacing:7.369600pt;}
.ws5a{word-spacing:7.421867pt;}
.ws2d{word-spacing:7.474133pt;}
.ws45{word-spacing:7.526400pt;}
.wsa9{word-spacing:7.578667pt;}
.wsb4{word-spacing:7.630933pt;}
.wsb5{word-spacing:7.683200pt;}
.wsb7{word-spacing:7.735467pt;}
.wsf6{word-spacing:7.787733pt;}
.wsf{word-spacing:7.892267pt;}
.ws5f{word-spacing:7.944533pt;}
.wsf0{word-spacing:7.996800pt;}
.ws83{word-spacing:8.049067pt;}
.wse7{word-spacing:8.101333pt;}
.ws62{word-spacing:8.153600pt;}
.ws51{word-spacing:8.205867pt;}
.ws118{word-spacing:8.352000pt;}
.ws75{word-spacing:8.362667pt;}
.ws3a{word-spacing:8.467200pt;}
.wsb3{word-spacing:8.571734pt;}
.ws93{word-spacing:8.624000pt;}
.ws78{word-spacing:8.728534pt;}
.ws119{word-spacing:8.736000pt;}
.ws8d{word-spacing:8.833067pt;}
.ws38{word-spacing:8.937600pt;}
.wsd6{word-spacing:8.989867pt;}
.wsf5{word-spacing:9.042134pt;}
.ws8b{word-spacing:9.094400pt;}
.ws10c{word-spacing:9.146667pt;}
.ws61{word-spacing:9.198934pt;}
.wsa3{word-spacing:9.303467pt;}
.ws16{word-spacing:9.355734pt;}
.ws42{word-spacing:9.408000pt;}
.ws9f{word-spacing:9.460267pt;}
.ws80{word-spacing:9.512534pt;}
.wsa7{word-spacing:9.564800pt;}
.wsf4{word-spacing:9.617067pt;}
.ws1a{word-spacing:9.669334pt;}
.ws65{word-spacing:9.721600pt;}
.ws71{word-spacing:9.773867pt;}
.ws67{word-spacing:9.826134pt;}
.ws63{word-spacing:10.035200pt;}
.ws37{word-spacing:10.087467pt;}
.ws39{word-spacing:10.139734pt;}
.wsfa{word-spacing:10.244267pt;}
.wsdd{word-spacing:10.296534pt;}
.ws47{word-spacing:10.348800pt;}
.ws14{word-spacing:10.401067pt;}
.wsd5{word-spacing:10.453334pt;}
.wse6{word-spacing:10.610134pt;}
.wse2{word-spacing:10.662400pt;}
.wsab{word-spacing:10.714667pt;}
.ws97{word-spacing:10.766934pt;}
.ws77{word-spacing:10.871467pt;}
.ws4e{word-spacing:10.923734pt;}
.ws55{word-spacing:10.976000pt;}
.wsa2{word-spacing:11.028267pt;}
.wsae{word-spacing:11.080534pt;}
.wsa8{word-spacing:11.132800pt;}
.ws5e{word-spacing:11.237334pt;}
.ws5c{word-spacing:11.289600pt;}
.ws91{word-spacing:11.341867pt;}
.ws52{word-spacing:11.446400pt;}
.ws95{word-spacing:11.498667pt;}
.ws46{word-spacing:11.603200pt;}
.wse5{word-spacing:11.760000pt;}
.ws12{word-spacing:11.812267pt;}
.wse1{word-spacing:11.916800pt;}
.ws113{word-spacing:12.073600pt;}
.ws6d{word-spacing:12.125867pt;}
.ws112{word-spacing:12.230400pt;}
.ws81{word-spacing:12.387200pt;}
.ws29{word-spacing:12.439467pt;}
.ws110{word-spacing:12.544000pt;}
.ws7d{word-spacing:12.648534pt;}
.wsed{word-spacing:12.857600pt;}
.ws85{word-spacing:12.962134pt;}
.ws8a{word-spacing:13.014400pt;}
.ws99{word-spacing:13.171200pt;}
.ws56{word-spacing:13.328000pt;}
.ws9a{word-spacing:13.380268pt;}
.ws96{word-spacing:13.432534pt;}
.wsd2{word-spacing:13.484799pt;}
.ws49{word-spacing:13.641600pt;}
.ws18{word-spacing:13.902934pt;}
.wseb{word-spacing:13.955199pt;}
.ws4d{word-spacing:14.112001pt;}
.wsbb{word-spacing:14.164267pt;}
.ws7f{word-spacing:14.216534pt;}
.ws70{word-spacing:14.373334pt;}
.ws94{word-spacing:14.477867pt;}
.ws3e{word-spacing:14.791467pt;}
.wsb8{word-spacing:15.209600pt;}
.wsec{word-spacing:15.418666pt;}
.ws98{word-spacing:15.836800pt;}
.wsc3{word-spacing:15.993600pt;}
.wsf9{word-spacing:16.202667pt;}
.wsf7{word-spacing:16.307200pt;}
.wse4{word-spacing:16.359467pt;}
.ws111{word-spacing:17.300267pt;}
.ws2b{word-spacing:17.666134pt;}
.wsd{word-spacing:17.927467pt;}
.wsfb{word-spacing:18.711468pt;}
.ws54{word-spacing:20.227200pt;}
.wsc0{word-spacing:20.802134pt;}
.wsc1{word-spacing:20.854399pt;}
.ws4f{word-spacing:24.251733pt;}
.ws79{word-spacing:29.321600pt;}
.wse9{word-spacing:31.778132pt;}
.wsc9{word-spacing:150.357335pt;}
.wsd0{word-spacing:163.498656pt;}
.wsc8{word-spacing:175.786659pt;}
.wscf{word-spacing:184.319998pt;}
.wsc7{word-spacing:200.874668pt;}
.wscb{word-spacing:218.666660pt;}
.wscc{word-spacing:221.952000pt;}
.ws10a{word-spacing:226.005322pt;}
.ws10b{word-spacing:226.005325pt;}
.ws109{word-spacing:226.005334pt;}
.ws105{word-spacing:226.521594pt;}
.ws107{word-spacing:234.752009pt;}
.ws102{word-spacing:239.359988pt;}
.wsfe{word-spacing:239.360012pt;}
.ws101{word-spacing:256.042678pt;}
.wsce{word-spacing:258.005325pt;}
.ws108{word-spacing:259.285351pt;}
.ws103{word-spacing:272.639988pt;}
.ws106{word-spacing:280.106684pt;}
.wscd{word-spacing:294.570672pt;}
.ws104{word-spacing:300.328010pt;}
.wsca{word-spacing:325.660791pt;}
.wsff{word-spacing:334.250678pt;}
.wsc6{word-spacing:505.694401pt;}
._11{margin-left:-24.057321pt;}
._2e{margin-left:-7.469860pt;}
._8{margin-left:-5.540023pt;}
._4{margin-left:-4.050145pt;}
._3{margin-left:-2.301855pt;}
._1{margin-left:-1.152001pt;}
._0{width:0.896000pt;}
._2{width:2.688005pt;}
._9{width:4.134295pt;}
._5{width:5.325974pt;}
._7{width:7.100806pt;}
._b{width:8.310401pt;}
._6{width:9.956800pt;}
._a{width:10.923734pt;}
._c{width:12.294085pt;}
._2c{width:13.320286pt;}
._10{width:14.216537pt;}
._2d{width:16.568529pt;}
._f{width:17.595734pt;}
._e{width:18.583786pt;}
._12{width:20.960423pt;}
._d{width:29.130348pt;}
._21{width:156.287990pt;}
._13{width:159.445338pt;}
._1d{width:160.469348pt;}
._17{width:176.000005pt;}
._28{width:177.493327pt;}
._1e{width:180.392512pt;}
._23{width:182.101338pt;}
._19{width:185.130676pt;}
._2b{width:193.149874pt;}
._15{width:196.821326pt;}
._3a{width:209.563764pt;}
._24{width:214.741314pt;}
._2a{width:216.831991pt;}
._26{width:221.440002pt;}
._2f{width:247.854419pt;}
._29{width:253.783493pt;}
._25{width:258.005330pt;}
._39{width:259.619212pt;}
._3c{width:268.629322pt;}
._33{width:281.983988pt;}
._32{width:285.480532pt;}
._22{width:305.832518pt;}
._1a{width:308.989846pt;}
._36{width:310.229322pt;}
._35{width:315.349345pt;}
._1b{width:357.245846pt;}
._3b{width:368.768006pt;}
._3e{width:376.789316pt;}
._27{width:379.221333pt;}
._1c{width:382.890660pt;}
._3f{width:402.047983pt;}
._3d{width:410.069316pt;}
._34{width:424.192009pt;}
._20{width:444.861735pt;}
._1f{width:445.886429pt;}
._14{width:485.843179pt;}
._38{width:496.764829pt;}
._37{width:500.008017pt;}
._16{width:511.487994pt;}
._18{width:559.231994pt;}
._30{width:573.237758pt;}
._31{width:594.784018pt;}
.fsa{font-size:28.000000pt;}
.fs10{font-size:29.866666pt;}
.fsb{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsf{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fs8{font-size:52.266668pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933334pt;}
.fs3{font-size:58.666667pt;}
.fsd{font-size:62.830398pt;}
.fse{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:79.394399pt;}
.y133{bottom:89.967997pt;}
.y18{bottom:90.062398pt;}
.y1aa{bottom:90.571732pt;}
.y19a{bottom:90.584532pt;}
.y237{bottom:90.767720pt;}
.y1e6{bottom:93.997190pt;}
.yf5{bottom:96.460929pt;}
.y90{bottom:96.663869pt;}
.y76{bottom:96.670269pt;}
.y154{bottom:96.683070pt;}
.y17c{bottom:96.695860pt;}
.yb3{bottom:96.715061pt;}
.ybf{bottom:98.372935pt;}
.y110{bottom:98.403595pt;}
.yf8{bottom:98.696533pt;}
.y17{bottom:100.730398pt;}
.y236{bottom:102.767720pt;}
.y1e5{bottom:105.997190pt;}
.y1a9{bottom:106.565331pt;}
.y199{bottom:106.578132pt;}
.y138{bottom:109.672006pt;}
.y16{bottom:111.398397pt;}
.ybe{bottom:111.706268pt;}
.y10f{bottom:111.736928pt;}
.yf7{bottom:112.029867pt;}
.yf4{bottom:112.454529pt;}
.y75{bottom:112.663869pt;}
.y153{bottom:112.676670pt;}
.y8f{bottom:112.683070pt;}
.y17b{bottom:112.689460pt;}
.yb2{bottom:112.708660pt;}
.y235{bottom:114.767720pt;}
.y1e4{bottom:117.997190pt;}
.y1a8{bottom:122.558931pt;}
.y198{bottom:122.571732pt;}
.ybd{bottom:125.039602pt;}
.y10e{bottom:125.070262pt;}
.yf6{bottom:125.363200pt;}
.y137{bottom:125.874674pt;}
.y234{bottom:126.767721pt;}
.yf3{bottom:128.454529pt;}
.y152{bottom:128.670269pt;}
.y74{bottom:128.676670pt;}
.y17a{bottom:128.683060pt;}
.yb1{bottom:128.702260pt;}
.y1e3{bottom:129.997191pt;}
.ybb{bottom:138.373332pt;}
.y10a{bottom:138.402669pt;}
.y1a7{bottom:138.552531pt;}
.y197{bottom:138.565331pt;}
.y233{bottom:138.767721pt;}
.y3f{bottom:140.966665pt;}
.y1e2{bottom:141.997191pt;}
.y136{bottom:142.002673pt;}
.y3a{bottom:143.356537pt;}
.y151{bottom:144.663869pt;}
.y73{bottom:144.670269pt;}
.y179{bottom:144.676659pt;}
.yb0{bottom:144.695860pt;}
.y232{bottom:150.767721pt;}
.y3e{bottom:152.966665pt;}
.y1e1{bottom:153.997191pt;}
.y1a6{bottom:154.552531pt;}
.y196{bottom:154.558931pt;}
.y39{bottom:159.350138pt;}
.yf2{bottom:160.454529pt;}
.y72{bottom:160.663869pt;}
.y178{bottom:160.670259pt;}
.yaf{bottom:160.689460pt;}
.y231{bottom:162.767722pt;}
.y135{bottom:165.906672pt;}
.y1e0{bottom:165.997191pt;}
.y3d{bottom:168.966665pt;}
.y195{bottom:170.552531pt;}
.y184{bottom:170.661601pt;}
.y230{bottom:174.767722pt;}
.y38{bottom:175.343730pt;}
.yf1{bottom:176.460929pt;}
.y8e{bottom:176.663859pt;}
.yae{bottom:176.683060pt;}
.y71{bottom:176.728003pt;}
.y3c{bottom:176.966675pt;}
.y1df{bottom:177.997192pt;}
.y183{bottom:183.994934pt;}
.y1a5{bottom:186.552531pt;}
.y194{bottom:186.571732pt;}
.y22f{bottom:186.767722pt;}
.y134{bottom:187.101339pt;}
.y1de{bottom:189.997192pt;}
.y37{bottom:191.362935pt;}
.yf0{bottom:192.454529pt;}
.y8d{bottom:192.663859pt;}
.yad{bottom:192.676659pt;}
.y177{bottom:192.715203pt;}
.y70{bottom:192.721603pt;}
.y182{bottom:197.328267pt;}
.y22e{bottom:198.767723pt;}
.y1dd{bottom:201.997192pt;}
.y193{bottom:202.565331pt;}
.y36{bottom:207.356527pt;}
.yef{bottom:208.499330pt;}
.y8c{bottom:208.663859pt;}
.yac{bottom:208.670259pt;}
.y176{bottom:208.708803pt;}
.y6f{bottom:208.715203pt;}
.y132{bottom:209.271730pt;}
.y17d{bottom:210.661336pt;}
.y22d{bottom:210.767723pt;}
.y1a4{bottom:218.552531pt;}
.y192{bottom:218.558931pt;}
.y27{bottom:222.711589pt;}
.y22c{bottom:222.767723pt;}
.y35{bottom:223.350138pt;}
.y131{bottom:223.935730pt;}
.yee{bottom:224.492930pt;}
.yab{bottom:224.663859pt;}
.y175{bottom:224.702403pt;}
.y6e{bottom:224.708803pt;}
.y191{bottom:234.552531pt;}
.y1a3{bottom:234.610133pt;}
.y22b{bottom:234.767723pt;}
.y26{bottom:238.705180pt;}
.y34{bottom:239.343730pt;}
.yed{bottom:240.486530pt;}
.yaa{bottom:240.670402pt;}
.y150{bottom:240.676802pt;}
.y174{bottom:240.696002pt;}
.y6d{bottom:240.702403pt;}
.y22a{bottom:246.767724pt;}
.y190{bottom:250.558931pt;}
.y1a2{bottom:250.603733pt;}
.y25{bottom:254.698791pt;}
.y33{bottom:255.362935pt;}
.yec{bottom:256.480130pt;}
.ya9{bottom:256.670402pt;}
.y173{bottom:256.689602pt;}
.y6c{bottom:256.696002pt;}
.y229{bottom:258.767724pt;}
.y1dc{bottom:264.663974pt;}
.y18f{bottom:266.552531pt;}
.y1a1{bottom:266.597332pt;}
.y127{bottom:270.581991pt;}
.y24{bottom:270.692383pt;}
.y228{bottom:270.767724pt;}
.y32{bottom:271.356527pt;}
.yeb{bottom:272.473729pt;}
.ya8{bottom:272.664001pt;}
.y172{bottom:272.683202pt;}
.y6b{bottom:272.689602pt;}
.y18e{bottom:282.552531pt;}
.y1a0{bottom:282.590932pt;}
.y227{bottom:282.767725pt;}
.y23{bottom:286.685994pt;}
.y31{bottom:287.350138pt;}
.yea{bottom:288.467329pt;}
.y1db{bottom:288.663975pt;}
.y171{bottom:288.676802pt;}
.y6a{bottom:288.683202pt;}
.ya7{bottom:288.695982pt;}
.y130{bottom:289.774002pt;}
.yba{bottom:293.115601pt;}
.y226{bottom:294.767725pt;}
.y18d{bottom:298.558931pt;}
.y19f{bottom:298.584532pt;}
.y1da{bottom:300.663975pt;}
.y10d{bottom:301.666397pt;}
.y22{bottom:302.679586pt;}
.y30{bottom:303.343730pt;}
.ye9{bottom:304.460929pt;}
.y170{bottom:304.670402pt;}
.y69{bottom:304.676802pt;}
.ya6{bottom:304.689582pt;}
.y12f{bottom:305.976669pt;}
.y225{bottom:306.767725pt;}
.y18c{bottom:314.552531pt;}
.y19e{bottom:314.578132pt;}
.y21{bottom:318.673177pt;}
.y224{bottom:318.767726pt;}
.y2f{bottom:319.343730pt;}
.ye8{bottom:320.454529pt;}
.yda{bottom:320.664001pt;}
.y68{bottom:320.670402pt;}
.ya5{bottom:320.683182pt;}
.y12e{bottom:322.104668pt;}
.y1d9{bottom:324.663976pt;}
.y18b{bottom:330.571732pt;}
.y223{bottom:330.767726pt;}
.y20{bottom:334.666789pt;}
.y2e{bottom:335.356547pt;}
.ye7{bottom:336.473750pt;}
.y67{bottom:336.664001pt;}
.ya4{bottom:336.676781pt;}
.yd9{bottom:336.683182pt;}
.y12d{bottom:338.232668pt;}
.y222{bottom:342.767726pt;}
.y18a{bottom:346.565331pt;}
.y1d8{bottom:348.663977pt;}
.y1f{bottom:350.660400pt;}
.y2d{bottom:351.350138pt;}
.ye6{bottom:352.467350pt;}
.y14f{bottom:352.663981pt;}
.y66{bottom:352.670381pt;}
.yd8{bottom:352.676781pt;}
.y8b{bottom:352.689582pt;}
.y12c{bottom:354.360667pt;}
.y221{bottom:354.767726pt;}
.y1d7{bottom:360.663977pt;}
.y189{bottom:362.558931pt;}
.y1e{bottom:366.653971pt;}
.y220{bottom:366.767727pt;}
.y2c{bottom:367.343750pt;}
.ye5{bottom:368.460949pt;}
.y65{bottom:368.663981pt;}
.yd7{bottom:368.670381pt;}
.y8a{bottom:368.683182pt;}
.y12b{bottom:370.488667pt;}
.y1d6{bottom:372.663978pt;}
.y188{bottom:378.552531pt;}
.y21f{bottom:378.767727pt;}
.y1d{bottom:382.647583pt;}
.y2b{bottom:383.343750pt;}
.ye4{bottom:384.454549pt;}
.y1d5{bottom:384.663978pt;}
.yd6{bottom:384.663981pt;}
.y89{bottom:384.676781pt;}
.y16f{bottom:384.683182pt;}
.y64{bottom:384.715183pt;}
.y181{bottom:385.934906pt;}
.y12a{bottom:386.616666pt;}
.y21e{bottom:390.767727pt;}
.y187{bottom:394.552531pt;}
.y19d{bottom:394.593615pt;}
.ybc{bottom:396.246786pt;}
.y1d4{bottom:396.663978pt;}
.y1c{bottom:398.647583pt;}
.y2a{bottom:399.350138pt;}
.ye3{bottom:400.454549pt;}
.yd5{bottom:400.663981pt;}
.y88{bottom:400.670381pt;}
.y16e{bottom:400.676781pt;}
.y63{bottom:400.708782pt;}
.y14e{bottom:400.727983pt;}
.y21d{bottom:402.767728pt;}
.y264{bottom:402.767729pt;}
.y1d3{bottom:408.663979pt;}
.y129{bottom:410.520666pt;}
.y186{bottom:410.558931pt;}
.y19c{bottom:410.587215pt;}
.y1b{bottom:414.647583pt;}
.y21c{bottom:414.767728pt;}
.y263{bottom:414.767729pt;}
.y29{bottom:415.343750pt;}
.ye2{bottom:416.460949pt;}
.y87{bottom:416.663981pt;}
.y16d{bottom:416.670381pt;}
.y62{bottom:416.702382pt;}
.y14d{bottom:416.721583pt;}
.y1d2{bottom:420.663979pt;}
.y185{bottom:426.552531pt;}
.y19b{bottom:426.580815pt;}
.y21b{bottom:426.767728pt;}
.y262{bottom:426.767729pt;}
.y1a{bottom:430.647583pt;}
.y28{bottom:431.412394pt;}
.y128{bottom:431.715332pt;}
.ye1{bottom:432.454549pt;}
.y1d1{bottom:432.663979pt;}
.ya3{bottom:432.663981pt;}
.y86{bottom:432.670381pt;}
.y61{bottom:432.695982pt;}
.y14c{bottom:432.715183pt;}
.yd4{bottom:432.727983pt;}
.y21a{bottom:438.767729pt;}
.y261{bottom:438.767730pt;}
.y1d0{bottom:444.663980pt;}
.ye0{bottom:448.467350pt;}
.y85{bottom:448.663981pt;}
.ya2{bottom:448.676781pt;}
.y60{bottom:448.689582pt;}
.y16c{bottom:448.702382pt;}
.y14b{bottom:448.708782pt;}
.yd3{bottom:448.721583pt;}
.y219{bottom:450.767729pt;}
.y260{bottom:450.767730pt;}
.y126{bottom:453.885723pt;}
.y1cf{bottom:456.663980pt;}
.y1bf{bottom:462.090820pt;}
.y218{bottom:462.767729pt;}
.y25f{bottom:462.767730pt;}
.ydf{bottom:464.460949pt;}
.y84{bottom:464.663981pt;}
.ya1{bottom:464.670381pt;}
.y5f{bottom:464.683182pt;}
.y16b{bottom:464.695982pt;}
.y14a{bottom:464.702382pt;}
.yd2{bottom:464.715183pt;}
.y125{bottom:468.549723pt;}
.y217{bottom:474.767729pt;}
.y25e{bottom:474.767731pt;}
.y15{bottom:478.614258pt;}
.yde{bottom:480.454549pt;}
.ya0{bottom:480.663981pt;}
.y5e{bottom:480.676781pt;}
.y16a{bottom:480.689582pt;}
.y83{bottom:480.695982pt;}
.yd1{bottom:480.708782pt;}
.y1c4{bottom:481.794667pt;}
.y10c{bottom:483.186401pt;}
.y216{bottom:486.767730pt;}
.y25d{bottom:486.767731pt;}
.y1ce{bottom:492.663981pt;}
.ydd{bottom:496.462945pt;}
.y5d{bottom:496.670381pt;}
.y169{bottom:496.683182pt;}
.y82{bottom:496.689582pt;}
.yd0{bottom:496.702382pt;}
.y1c3{bottom:497.997334pt;}
.y14{bottom:498.614258pt;}
.y215{bottom:498.767730pt;}
.y25c{bottom:498.767731pt;}
.y1cd{bottom:504.663981pt;}
.y214{bottom:510.767730pt;}
.y25b{bottom:510.767731pt;}
.ydc{bottom:512.456545pt;}
.y5c{bottom:512.663981pt;}
.y168{bottom:512.676781pt;}
.y81{bottom:512.683182pt;}
.ycf{bottom:512.695982pt;}
.y1c2{bottom:514.125333pt;}
.y13{bottom:514.614258pt;}
.y10b{bottom:518.694255pt;}
.y1cc{bottom:520.663981pt;}
.y213{bottom:522.767731pt;}
.y25a{bottom:522.767732pt;}
.ydb{bottom:528.450145pt;}
.y1cb{bottom:528.663978pt;}
.y167{bottom:528.670381pt;}
.y5b{bottom:528.676781pt;}
.y9f{bottom:528.689582pt;}
.y12{bottom:530.614258pt;}
.y119{bottom:533.794283pt;}
.y122{bottom:533.800683pt;}
.y212{bottom:534.767731pt;}
.y259{bottom:534.767732pt;}
.y1c1{bottom:538.029333pt;}
.y166{bottom:544.663981pt;}
.y5a{bottom:544.670381pt;}
.y9e{bottom:544.683182pt;}
.y11{bottom:546.614258pt;}
.y211{bottom:546.767731pt;}
.y258{bottom:546.767732pt;}
.y118{bottom:549.787882pt;}
.y121{bottom:549.794283pt;}
.y1ca{bottom:552.663979pt;}
.y210{bottom:558.767732pt;}
.y257{bottom:558.767733pt;}
.y1c0{bottom:559.223999pt;}
.y59{bottom:560.663981pt;}
.y9d{bottom:560.676781pt;}
.y165{bottom:560.695982pt;}
.y10{bottom:562.614258pt;}
.y1c9{bottom:564.663980pt;}
.y120{bottom:565.787882pt;}
.y117{bottom:565.813483pt;}
.y20f{bottom:570.767732pt;}
.y256{bottom:570.767733pt;}
.yfc{bottom:574.201050pt;}
.y1c8{bottom:576.663980pt;}
.y149{bottom:576.663981pt;}
.y9c{bottom:576.670381pt;}
.y58{bottom:576.676781pt;}
.y164{bottom:576.689582pt;}
.y180{bottom:578.334900pt;}
.yf{bottom:578.614258pt;}
.y1be{bottom:581.394390pt;}
.y11f{bottom:581.800683pt;}
.y116{bottom:581.807083pt;}
.y20e{bottom:582.767732pt;}
.y255{bottom:582.767733pt;}
.yfb{bottom:587.534383pt;}
.y1c7{bottom:588.663980pt;}
.y9b{bottom:592.663981pt;}
.y57{bottom:592.670381pt;}
.y163{bottom:592.683182pt;}
.y148{bottom:592.727902pt;}
.ye{bottom:594.614258pt;}
.y20d{bottom:594.767732pt;}
.y254{bottom:594.767734pt;}
.yb7{bottom:595.012395pt;}
.y1bd{bottom:596.058390pt;}
.y11e{bottom:597.794283pt;}
.y115{bottom:597.800683pt;}
.y1c6{bottom:600.663981pt;}
.yfa{bottom:600.867716pt;}
.y20c{bottom:606.767733pt;}
.y253{bottom:606.767734pt;}
.y56{bottom:608.663981pt;}
.y162{bottom:608.676781pt;}
.yce{bottom:608.683182pt;}
.y147{bottom:608.721501pt;}
.yd{bottom:610.614258pt;}
.yb6{bottom:611.005995pt;}
.y1c5{bottom:612.663981pt;}
.y11d{bottom:613.787882pt;}
.y114{bottom:613.794283pt;}
.yf9{bottom:614.201050pt;}
.y20b{bottom:618.767733pt;}
.y252{bottom:618.767734pt;}
.y80{bottom:624.663981pt;}
.y161{bottom:624.670381pt;}
.ycd{bottom:624.676781pt;}
.y55{bottom:624.695901pt;}
.y146{bottom:624.715101pt;}
.yc{bottom:626.614258pt;}
.yb5{bottom:626.999595pt;}
.y113{bottom:629.787882pt;}
.y11c{bottom:629.794283pt;}
.y20a{bottom:630.767733pt;}
.y251{bottom:630.767734pt;}
.y1ae{bottom:634.856009pt;}
.y160{bottom:640.663981pt;}
.y9a{bottom:640.670381pt;}
.y54{bottom:640.689501pt;}
.y145{bottom:640.708701pt;}
.yb{bottom:642.614258pt;}
.y209{bottom:642.767734pt;}
.y250{bottom:642.767735pt;}
.yb4{bottom:642.993195pt;}
.y11b{bottom:645.787882pt;}
.y112{bottom:645.794283pt;}
.y1ad{bottom:649.966675pt;}
.y208{bottom:654.767734pt;}
.y24f{bottom:654.767735pt;}
.ycc{bottom:656.663981pt;}
.y99{bottom:656.670381pt;}
.y53{bottom:656.683100pt;}
.y144{bottom:656.702301pt;}
.ya{bottom:658.614258pt;}
.y111{bottom:661.787882pt;}
.y11a{bottom:661.795346pt;}
.y207{bottom:666.767734pt;}
.y24e{bottom:666.767735pt;}
.y1bc{bottom:669.958689pt;}
.y1f0{bottom:670.732823pt;}
.y15f{bottom:672.663981pt;}
.y98{bottom:672.670300pt;}
.y52{bottom:672.676700pt;}
.y143{bottom:672.695901pt;}
.y9{bottom:678.614258pt;}
.y206{bottom:678.767735pt;}
.y24d{bottom:678.767736pt;}
.y1ef{bottom:682.732823pt;}
.y1bb{bottom:686.161356pt;}
.yb9{bottom:687.907715pt;}
.ycb{bottom:688.663900pt;}
.y51{bottom:688.670300pt;}
.y142{bottom:688.689501pt;}
.y205{bottom:690.767735pt;}
.y24c{bottom:690.767736pt;}
.y1ee{bottom:694.732824pt;}
.yb8{bottom:701.241048pt;}
.y1ba{bottom:702.289355pt;}
.y204{bottom:702.767735pt;}
.y24b{bottom:702.767736pt;}
.y50{bottom:704.663900pt;}
.y97{bottom:704.670300pt;}
.y141{bottom:704.683100pt;}
.yca{bottom:704.695901pt;}
.y17e{bottom:704.709351pt;}
.y1ed{bottom:706.732824pt;}
.y124{bottom:714.336670pt;}
.y203{bottom:714.767735pt;}
.y24a{bottom:714.767737pt;}
.y1b9{bottom:718.417355pt;}
.y1ec{bottom:718.732824pt;}
.y109{bottom:720.663900pt;}
.y140{bottom:720.676700pt;}
.y4f{bottom:720.683100pt;}
.yc9{bottom:720.689501pt;}
.y103{bottom:720.695901pt;}
.y202{bottom:726.767736pt;}
.y249{bottom:726.767737pt;}
.y123{bottom:727.670003pt;}
.y1b8{bottom:734.545354pt;}
.y8{bottom:735.714274pt;}
.y1eb{bottom:736.062825pt;}
.y108{bottom:736.663900pt;}
.y13f{bottom:736.670300pt;}
.y4e{bottom:736.676700pt;}
.yc8{bottom:736.683100pt;}
.y102{bottom:736.689501pt;}
.y201{bottom:738.767736pt;}
.y248{bottom:738.767737pt;}
.y1ea{bottom:748.062825pt;}
.y1b7{bottom:750.673354pt;}
.y200{bottom:750.767736pt;}
.y247{bottom:750.767737pt;}
.y107{bottom:752.663900pt;}
.y4d{bottom:752.670300pt;}
.yc7{bottom:752.676700pt;}
.y101{bottom:752.683100pt;}
.y1e9{bottom:760.062825pt;}
.y17f{bottom:761.326904pt;}
.y1ff{bottom:762.767737pt;}
.y246{bottom:762.767738pt;}
.y1b6{bottom:766.801353pt;}
.y7{bottom:767.747070pt;}
.y4c{bottom:768.663900pt;}
.yc6{bottom:768.670300pt;}
.y100{bottom:768.676700pt;}
.y13e{bottom:768.695901pt;}
.y1e8{bottom:772.062826pt;}
.y1fe{bottom:774.767737pt;}
.y245{bottom:774.767738pt;}
.y1b5{bottom:782.929353pt;}
.y4b{bottom:784.663900pt;}
.y96{bottom:784.670300pt;}
.y7f{bottom:784.676700pt;}
.y13d{bottom:784.689501pt;}
.y15e{bottom:784.734560pt;}
.y1fd{bottom:786.767737pt;}
.y244{bottom:786.767738pt;}
.y1fc{bottom:798.767738pt;}
.y243{bottom:798.767739pt;}
.y1b4{bottom:799.057352pt;}
.y95{bottom:800.663900pt;}
.y7e{bottom:800.670300pt;}
.y4a{bottom:800.676700pt;}
.y13c{bottom:800.683100pt;}
.y15d{bottom:800.728159pt;}
.y6{bottom:802.403076pt;}
.y1e7{bottom:806.363851pt;}
.y1fb{bottom:810.767738pt;}
.y242{bottom:810.767739pt;}
.y1b3{bottom:815.185352pt;}
.y7d{bottom:816.663900pt;}
.y49{bottom:816.670300pt;}
.y13b{bottom:816.676700pt;}
.yff{bottom:816.683100pt;}
.y94{bottom:816.689501pt;}
.y15c{bottom:816.721759pt;}
.y1fa{bottom:822.767738pt;}
.y241{bottom:822.767739pt;}
.y1b2{bottom:831.313351pt;}
.y48{bottom:832.663900pt;}
.y13a{bottom:832.670300pt;}
.yfe{bottom:832.676700pt;}
.y93{bottom:832.683100pt;}
.yc5{bottom:832.695901pt;}
.y15b{bottom:832.715359pt;}
.y1f9{bottom:834.767738pt;}
.y240{bottom:834.767740pt;}
.y5{bottom:837.059082pt;}
.y1f8{bottom:846.767739pt;}
.y23f{bottom:846.767740pt;}
.y1b1{bottom:847.441350pt;}
.y139{bottom:848.663900pt;}
.y7c{bottom:848.670300pt;}
.y92{bottom:848.676700pt;}
.yc4{bottom:848.689501pt;}
.y47{bottom:848.695901pt;}
.y15a{bottom:848.708959pt;}
.y1f7{bottom:858.767739pt;}
.y23e{bottom:858.767740pt;}
.yfd{bottom:864.663900pt;}
.y7b{bottom:864.670300pt;}
.yc3{bottom:864.683100pt;}
.y46{bottom:864.689501pt;}
.y159{bottom:864.702559pt;}
.y1f6{bottom:870.767739pt;}
.y23d{bottom:870.767740pt;}
.y1b0{bottom:871.238683pt;}
.y4{bottom:871.715088pt;}
.y7a{bottom:880.663900pt;}
.yc2{bottom:880.676700pt;}
.y45{bottom:880.683100pt;}
.y158{bottom:880.696158pt;}
.y1f5{bottom:882.767740pt;}
.y23c{bottom:882.767741pt;}
.y1af{bottom:892.433350pt;}
.y1f4{bottom:894.767740pt;}
.y23b{bottom:894.767741pt;}
.y106{bottom:896.663900pt;}
.y79{bottom:896.670300pt;}
.y44{bottom:896.676700pt;}
.y157{bottom:896.689758pt;}
.y1f3{bottom:906.767740pt;}
.y23a{bottom:906.767741pt;}
.y78{bottom:912.663900pt;}
.y43{bottom:912.670300pt;}
.y156{bottom:912.683358pt;}
.y105{bottom:912.697508pt;}
.y1ac{bottom:914.603741pt;}
.y1f2{bottom:918.767741pt;}
.y239{bottom:918.767742pt;}
.y3{bottom:920.434408pt;}
.y3b{bottom:922.556641pt;}
.y77{bottom:928.657757pt;}
.y42{bottom:928.663900pt;}
.y155{bottom:928.676958pt;}
.y104{bottom:928.691108pt;}
.y1ab{bottom:929.267741pt;}
.y1f1{bottom:930.767741pt;}
.y238{bottom:930.767742pt;}
.y2{bottom:990.598226pt;}
.y40{bottom:1003.244954pt;}
.yc0{bottom:1003.245036pt;}
.y41{bottom:1003.596954pt;}
.yc1{bottom:1003.597036pt;}
.y1{bottom:1003.600911pt;}
.y91{bottom:1003.601074pt;}
.hf{height:24.724000pt;}
.hc{height:32.965333pt;}
.he{height:35.320000pt;}
.h25{height:35.541333pt;}
.h21{height:35.578667pt;}
.h1b{height:37.674667pt;}
.h28{height:38.080000pt;}
.h26{height:38.920000pt;}
.h29{height:39.560000pt;}
.h3{height:40.618667pt;}
.h27{height:40.724001pt;}
.h22{height:41.514667pt;}
.h2{height:41.983924pt;}
.h10{height:41.984000pt;}
.h1a{height:42.197333pt;}
.h24{height:43.438917pt;}
.h1c{height:45.112226pt;}
.h1f{height:45.952000pt;}
.h9{height:47.093333pt;}
.h20{height:47.472000pt;}
.h17{height:47.741866pt;}
.hd{height:49.653334pt;}
.h12{height:49.677905pt;}
.hb{height:51.893333pt;}
.ha{height:54.298667pt;}
.h8{height:54.329068pt;}
.h18{height:55.536068pt;}
.h14{height:55.587107pt;}
.h13{height:55.638309pt;}
.h11{height:55.638390pt;}
.h16{height:55.638471pt;}
.h15{height:55.638797pt;}
.h19{height:55.663991pt;}
.h7{height:59.728663pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h6{height:121.984000pt;}
.h1d{height:409.738647pt;}
.h1e{height:532.437337pt;}
.h23{height:719.273356pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:311.811991pt;}
.w3{width:642.520020pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:13.147868pt;}
.x1{left:75.496002pt;}
.x18{left:79.575582pt;}
.x2{left:82.430532pt;}
.x3{left:84.162801pt;}
.x9{left:86.266020pt;}
.x1b{left:95.590535pt;}
.x13{left:144.685476pt;}
.x19{left:174.575073pt;}
.x12{left:190.609701pt;}
.x17{left:218.434245pt;}
.x10{left:226.059985pt;}
.x11{left:235.616130pt;}
.x4{left:240.726664pt;}
.x15{left:250.543998pt;}
.x14{left:252.447998pt;}
.x16{left:262.207998pt;}
.xe{left:272.791982pt;}
.xf{left:348.715983pt;}
.xd{left:387.401449pt;}
.x5{left:406.304810pt;}
.xa{left:414.632528pt;}
.x6{left:416.961589pt;}
.xb{left:418.915324pt;}
.x1c{left:426.299194pt;}
.x7{left:617.715454pt;}
.x1a{left:658.727458pt;}
.x8{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; }
  