
    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_079938443d87ad47901efa35.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_a4c930e2bf5e303daed41846.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_2ae5143a4f0f1997cb03c4aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_692fd8f08fde5029d3c8ecd4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;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_502c6cc737a5ca6364babf85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_ba644b351af356bfd13c8ce2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_4d0f517d874fd423954e60a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_4292e8adaa9b6f99e8941536.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;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_005fee0ef0856b243b0deae9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064000;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_95035a59588434c1d3240bd4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.736816;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_37e40422aead7d4955f2148e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.734000;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_80e113d24d36fa7a86305e37.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.952000;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_9b9737e9c9e908d439fe4cd8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.723633;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_3720314e3318715958cd8de7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.998000;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_663910b534e410aff29e6155.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8f21514d1527ad8b7c4be5d8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.674316;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_958f37082cac4866f154a73c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.999000;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:ff12;src:url('chunks/assets/font_ff64b3150f06ca78a3fb3237.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f0a74b112552466e7c2f0375.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.999000;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(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-11.226600px;}
.v3{vertical-align:-10.204672px;}
.v4{vertical-align:-3.060000px;}
.v1{vertical-align:-1.695600px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.263600px;}
.ls12{letter-spacing:-1.200600px;}
.ls15{letter-spacing:-1.199985px;}
.ls26{letter-spacing:-0.300000px;}
.ls14{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.239997px;}
.ls13{letter-spacing:-0.239400px;}
.lsf{letter-spacing:-0.237600px;}
.ls17{letter-spacing:-0.237598px;}
.ls10{letter-spacing:-0.212372px;}
.ls18{letter-spacing:-0.211976px;}
.ls11{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.786000px;}
.ls9{letter-spacing:1.363183px;}
.ls7{letter-spacing:2.721566px;}
.lsc{letter-spacing:2.726366px;}
.ls8{letter-spacing:3.743953px;}
.ls29{letter-spacing:4.425545px;}
.ls5{letter-spacing:4.766340px;}
.ls2{letter-spacing:5.486400px;}
.ls0{letter-spacing:6.852600px;}
.ls28{letter-spacing:7.487906px;}
.lsb{letter-spacing:8.764690px;}
.ls1{letter-spacing:9.909000px;}
.ls6{letter-spacing:10.046274px;}
.ls1e{letter-spacing:10.382270px;}
.ls22{letter-spacing:10.387070px;}
.ls1d{letter-spacing:10.723066px;}
.ls1c{letter-spacing:10.727866px;}
.ls1a{letter-spacing:12.564000px;}
.ls19{letter-spacing:12.678000px;}
.ls1b{letter-spacing:12.822000px;}
.ls16{letter-spacing:12.978000px;}
.lsa{letter-spacing:13.607830px;}
.ls3{letter-spacing:20.783740px;}
.ls4{letter-spacing:20.788540px;}
.ls24{letter-spacing:632.670492px;}
.ls23{letter-spacing:711.927101px;}
.ls25{letter-spacing:727.915701px;}
.ls20{letter-spacing:1425.572580px;}
.ls1f{letter-spacing:1504.824389px;}
.ls21{letter-spacing:1520.812990px;}
.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;}
}
.ws28{word-spacing:-26.265272px;}
.ws119{word-spacing:-19.994233px;}
.ws6{word-spacing:-15.174000px;}
.ws72{word-spacing:-13.740000px;}
.ws18{word-spacing:-13.487831px;}
.ws16{word-spacing:-13.247834px;}
.ws2b{word-spacing:-11.999850px;}
.ws34{word-spacing:-10.799865px;}
.ws10f{word-spacing:-6.546000px;}
.ws81{word-spacing:-4.499962px;}
.ws6b{word-spacing:-4.456763px;}
.ws6e{word-spacing:-4.413563px;}
.ws8c{word-spacing:-4.399163px;}
.ws89{word-spacing:-4.355964px;}
.ws11a{word-spacing:-4.233565px;}
.ws94{word-spacing:-4.175965px;}
.ws142{word-spacing:-3.643154px;}
.ws123{word-spacing:-3.575955px;}
.wsc{word-spacing:-3.571155px;}
.ws144{word-spacing:-3.479956px;}
.ws147{word-spacing:-3.470357px;}
.ws24{word-spacing:-3.465600px;}
.ws14d{word-spacing:-3.465557px;}
.ws14b{word-spacing:-3.455957px;}
.ws152{word-spacing:-3.441557px;}
.ws128{word-spacing:-3.427157px;}
.ws159{word-spacing:-3.422357px;}
.ws15b{word-spacing:-3.407957px;}
.ws127{word-spacing:-3.403157px;}
.ws25{word-spacing:-3.391500px;}
.wsa{word-spacing:-3.388758px;}
.wsb4{word-spacing:-3.364758px;}
.ws155{word-spacing:-3.359958px;}
.ws1b{word-spacing:-3.355158px;}
.ws130{word-spacing:-3.350358px;}
.ws7{word-spacing:-3.342600px;}
.ws13{word-spacing:-3.340758px;}
.wsbd{word-spacing:-3.326358px;}
.ws21{word-spacing:-3.323100px;}
.ws153{word-spacing:-3.321558px;}
.ws156{word-spacing:-3.316759px;}
.ws154{word-spacing:-3.311959px;}
.ws158{word-spacing:-3.307159px;}
.ws143{word-spacing:-3.302359px;}
.ws148{word-spacing:-3.297559px;}
.ws22{word-spacing:-3.294600px;}
.ws157{word-spacing:-3.292759px;}
.ws12a{word-spacing:-3.287959px;}
.ws12d{word-spacing:-3.283159px;}
.wsb{word-spacing:-3.278359px;}
.wscd{word-spacing:-3.263959px;}
.ws131{word-spacing:-3.259159px;}
.ws1c{word-spacing:-3.254700px;}
.ws12c{word-spacing:-3.254359px;}
.ws135{word-spacing:-3.249559px;}
.ws1e{word-spacing:-3.249000px;}
.ws78{word-spacing:-3.239960px;}
.wse{word-spacing:-3.235160px;}
.ws13a{word-spacing:-3.230360px;}
.ws5{word-spacing:-3.229200px;}
.wsf{word-spacing:-3.225560px;}
.ws13b{word-spacing:-3.220760px;}
.ws12e{word-spacing:-3.211160px;}
.ws15{word-spacing:-3.196760px;}
.ws140{word-spacing:-3.191960px;}
.ws19{word-spacing:-3.187160px;}
.ws4{word-spacing:-3.186000px;}
.ws11{word-spacing:-3.182360px;}
.ws13f{word-spacing:-3.177560px;}
.ws17{word-spacing:-3.172760px;}
.ws117{word-spacing:-3.167960px;}
.ws14{word-spacing:-3.163160px;}
.ws8{word-spacing:-3.159000px;}
.ws10{word-spacing:-3.158361px;}
.wse5{word-spacing:-3.153561px;}
.ws134{word-spacing:-3.148761px;}
.ws27{word-spacing:-3.146400px;}
.wsf5{word-spacing:-3.139161px;}
.wsc7{word-spacing:-3.134361px;}
.ws9{word-spacing:-3.132000px;}
.ws10a{word-spacing:-3.129561px;}
.ws146{word-spacing:-3.124761px;}
.wsb6{word-spacing:-3.119961px;}
.ws14e{word-spacing:-3.115161px;}
.wsa1{word-spacing:-3.110361px;}
.ws13d{word-spacing:-3.105561px;}
.wseb{word-spacing:-3.100761px;}
.ws12f{word-spacing:-3.095961px;}
.ws13e{word-spacing:-3.091161px;}
.ws1f{word-spacing:-3.089400px;}
.ws109{word-spacing:-3.086361px;}
.ws1d{word-spacing:-3.083700px;}
.ws150{word-spacing:-3.081561px;}
.ws12b{word-spacing:-3.071962px;}
.wsf2{word-spacing:-3.067162px;}
.wsc5{word-spacing:-3.062362px;}
.wsd0{word-spacing:-3.057562px;}
.wsf8{word-spacing:-3.052762px;}
.wsb5{word-spacing:-3.047962px;}
.ws20{word-spacing:-3.043800px;}
.wsfa{word-spacing:-3.043162px;}
.ws14a{word-spacing:-3.038362px;}
.wsec{word-spacing:-3.033562px;}
.wscf{word-spacing:-3.028762px;}
.wsf3{word-spacing:-3.023962px;}
.wsba{word-spacing:-3.019162px;}
.wsa4{word-spacing:-3.014362px;}
.ws2{word-spacing:-3.013200px;}
.wsce{word-spacing:-3.009562px;}
.ws133{word-spacing:-3.004762px;}
.ws14f{word-spacing:-2.999962px;}
.ws1a{word-spacing:-2.990363px;}
.ws26{word-spacing:-2.986800px;}
.ws132{word-spacing:-2.985563px;}
.ws23{word-spacing:-2.981100px;}
.wse2{word-spacing:-2.975963px;}
.wse4{word-spacing:-2.971163px;}
.ws1{word-spacing:-2.970000px;}
.wse3{word-spacing:-2.951963px;}
.ws137{word-spacing:-2.942363px;}
.wsee{word-spacing:-2.937563px;}
.wsc3{word-spacing:-2.932763px;}
.wsdf{word-spacing:-2.927963px;}
.ws125{word-spacing:-2.913564px;}
.ws129{word-spacing:-2.908764px;}
.ws12{word-spacing:-2.894364px;}
.ws3{word-spacing:-2.883600px;}
.ws124{word-spacing:-2.875164px;}
.wsbf{word-spacing:-2.870364px;}
.ws15a{word-spacing:-2.860764px;}
.wsa9{word-spacing:-2.851164px;}
.wsef{word-spacing:-2.846364px;}
.wsa3{word-spacing:-2.836765px;}
.wsc0{word-spacing:-2.831965px;}
.wse7{word-spacing:-2.827165px;}
.wsc4{word-spacing:-2.812765px;}
.ws151{word-spacing:-2.807965px;}
.wsc8{word-spacing:-2.803165px;}
.wse1{word-spacing:-2.788765px;}
.wsf4{word-spacing:-2.783965px;}
.ws138{word-spacing:-2.779165px;}
.ws149{word-spacing:-2.774365px;}
.wsb7{word-spacing:-2.769565px;}
.ws141{word-spacing:-2.764765px;}
.ws145{word-spacing:-2.759966px;}
.wsd{word-spacing:-2.750366px;}
.ws139{word-spacing:-2.745566px;}
.ws106{word-spacing:-2.740766px;}
.wse6{word-spacing:-2.735966px;}
.wsc1{word-spacing:-2.731166px;}
.wsea{word-spacing:-2.716766px;}
.wsc9{word-spacing:-2.707166px;}
.ws108{word-spacing:-2.702366px;}
.ws126{word-spacing:-2.687966px;}
.wsb0{word-spacing:-2.673567px;}
.ws115{word-spacing:-2.668767px;}
.wsaf{word-spacing:-2.663967px;}
.wsca{word-spacing:-2.659167px;}
.ws0{word-spacing:-2.649567px;}
.wsd5{word-spacing:-2.639967px;}
.wsf6{word-spacing:-2.635167px;}
.wsf9{word-spacing:-2.630367px;}
.wsd4{word-spacing:-2.625567px;}
.ws107{word-spacing:-2.620767px;}
.wsc6{word-spacing:-2.534368px;}
.wsad{word-spacing:-2.529568px;}
.wsc2{word-spacing:-2.495969px;}
.wsa8{word-spacing:-2.491169px;}
.wsf7{word-spacing:-2.481569px;}
.wsbe{word-spacing:-2.452769px;}
.ws116{word-spacing:-2.447969px;}
.ws7f{word-spacing:-0.960000px;}
.ws113{word-spacing:-0.924000px;}
.ws45{word-spacing:-0.916789px;}
.ws3d{word-spacing:-0.892789px;}
.ws3a{word-spacing:-0.878389px;}
.ws79{word-spacing:-0.859189px;}
.wsd9{word-spacing:-0.834000px;}
.ws47{word-spacing:-0.815990px;}
.ws4c{word-spacing:-0.806390px;}
.ws38{word-spacing:-0.791990px;}
.ws2f{word-spacing:-0.782390px;}
.ws3c{word-spacing:-0.758391px;}
.ws3b{word-spacing:-0.743991px;}
.ws49{word-spacing:-0.739191px;}
.ws40{word-spacing:-0.729591px;}
.ws4a{word-spacing:-0.719991px;}
.ws42{word-spacing:-0.715191px;}
.ws4e{word-spacing:-0.705591px;}
.ws9e{word-spacing:-0.702000px;}
.ws32{word-spacing:-0.695991px;}
.ws7b{word-spacing:-0.676792px;}
.ws46{word-spacing:-0.671992px;}
.ws4f{word-spacing:-0.662392px;}
.wsfe{word-spacing:-0.660000px;}
.ws30{word-spacing:-0.647992px;}
.ws50{word-spacing:-0.643192px;}
.ws48{word-spacing:-0.633592px;}
.ws29{word-spacing:-0.623992px;}
.ws8b{word-spacing:-0.618000px;}
.ws2a{word-spacing:-0.609592px;}
.ws36{word-spacing:-0.585593px;}
.ws35{word-spacing:-0.571193px;}
.wsde{word-spacing:-0.546000px;}
.ws3f{word-spacing:-0.537593px;}
.ws2c{word-spacing:-0.518394px;}
.ws10e{word-spacing:-0.510000px;}
.ws2d{word-spacing:-0.508794px;}
.ws2e{word-spacing:-0.503994px;}
.ws41{word-spacing:-0.494394px;}
.wsdc{word-spacing:-0.480000px;}
.ws6a{word-spacing:-0.474000px;}
.ws44{word-spacing:-0.470394px;}
.ws7e{word-spacing:-0.468000px;}
.ws37{word-spacing:-0.465594px;}
.ws99{word-spacing:-0.462000px;}
.ws31{word-spacing:-0.460794px;}
.ws63{word-spacing:-0.456000px;}
.ws4b{word-spacing:-0.451194px;}
.ws110{word-spacing:-0.450000px;}
.ws84{word-spacing:-0.438000px;}
.ws68{word-spacing:-0.432000px;}
.ws71{word-spacing:-0.426000px;}
.wsd8{word-spacing:-0.408000px;}
.wsfd{word-spacing:-0.402000px;}
.ws62{word-spacing:-0.396000px;}
.ws9f{word-spacing:-0.390000px;}
.ws57{word-spacing:-0.384000px;}
.ws39{word-spacing:-0.379195px;}
.ws52{word-spacing:-0.378000px;}
.ws66{word-spacing:-0.366000px;}
.ws74{word-spacing:-0.360000px;}
.ws80{word-spacing:-0.354000px;}
.ws4d{word-spacing:-0.350396px;}
.ws105{word-spacing:-0.348000px;}
.ws98{word-spacing:-0.342000px;}
.ws33{word-spacing:-0.340796px;}
.wsd6{word-spacing:-0.336000px;}
.ws43{word-spacing:-0.335996px;}
.ws67{word-spacing:-0.330000px;}
.ws87{word-spacing:-0.324000px;}
.ws75{word-spacing:-0.318000px;}
.ws96{word-spacing:-0.312000px;}
.ws7a{word-spacing:-0.307196px;}
.ws76{word-spacing:-0.306000px;}
.wsa0{word-spacing:-0.300000px;}
.ws69{word-spacing:-0.294000px;}
.ws3e{word-spacing:-0.292796px;}
.ws64{word-spacing:-0.288000px;}
.ws65{word-spacing:-0.282000px;}
.ws5e{word-spacing:-0.276000px;}
.ws59{word-spacing:-0.264000px;}
.ws88{word-spacing:-0.258000px;}
.ws53{word-spacing:-0.252000px;}
.ws95{word-spacing:-0.246000px;}
.ws8a{word-spacing:-0.240000px;}
.ws5b{word-spacing:-0.234000px;}
.wsd7{word-spacing:-0.222000px;}
.wsfc{word-spacing:-0.216000px;}
.ws5d{word-spacing:-0.210000px;}
.ws90{word-spacing:-0.204000px;}
.ws6d{word-spacing:-0.192000px;}
.ws83{word-spacing:-0.186000px;}
.ws5c{word-spacing:-0.180000px;}
.ws61{word-spacing:-0.174000px;}
.ws101{word-spacing:-0.168000px;}
.ws9a{word-spacing:-0.162000px;}
.ws112{word-spacing:-0.156000px;}
.ws103{word-spacing:-0.150000px;}
.ws73{word-spacing:-0.132000px;}
.ws77{word-spacing:-0.126000px;}
.ws9b{word-spacing:-0.120000px;}
.wsdd{word-spacing:-0.114000px;}
.ws93{word-spacing:-0.102000px;}
.ws6f{word-spacing:-0.096000px;}
.ws60{word-spacing:-0.090000px;}
.ws9d{word-spacing:-0.084000px;}
.ws5f{word-spacing:-0.078000px;}
.ws118{word-spacing:-0.066000px;}
.wsdb{word-spacing:-0.060000px;}
.ws10d{word-spacing:-0.054000px;}
.ws56{word-spacing:-0.048000px;}
.ws55{word-spacing:-0.036000px;}
.ws86{word-spacing:-0.030000px;}
.wsff{word-spacing:-0.024000px;}
.wsda{word-spacing:-0.018000px;}
.ws9c{word-spacing:-0.012000px;}
.ws111{word-spacing:-0.006000px;}
.ws51{word-spacing:0.000000px;}
.ws92{word-spacing:0.006000px;}
.ws8d{word-spacing:0.012000px;}
.ws104{word-spacing:0.018000px;}
.ws7c{word-spacing:0.030000px;}
.ws54{word-spacing:0.042000px;}
.ws70{word-spacing:0.048000px;}
.ws97{word-spacing:0.060000px;}
.ws100{word-spacing:0.078000px;}
.ws6c{word-spacing:0.084000px;}
.ws114{word-spacing:0.090000px;}
.ws82{word-spacing:0.108000px;}
.wsfb{word-spacing:0.120000px;}
.ws85{word-spacing:0.126000px;}
.ws102{word-spacing:0.138000px;}
.ws8e{word-spacing:0.144000px;}
.ws58{word-spacing:0.156000px;}
.ws7d{word-spacing:0.168000px;}
.ws91{word-spacing:0.180000px;}
.ws8f{word-spacing:0.186000px;}
.ws5a{word-spacing:0.264000px;}
.ws121{word-spacing:0.342000px;}
.ws11c{word-spacing:0.666000px;}
.ws120{word-spacing:0.708000px;}
.ws11d{word-spacing:0.762000px;}
.ws11f{word-spacing:0.900000px;}
.ws11e{word-spacing:0.978000px;}
.ws11b{word-spacing:1.158000px;}
.ws13c{word-spacing:7.857502px;}
.ws136{word-spacing:46.842614px;}
.ws14c{word-spacing:46.847414px;}
.ws122{word-spacing:46.909814px;}
.ws10c{word-spacing:78.959013px;}
.wsac{word-spacing:277.719728px;}
.wsbc{word-spacing:302.809015px;}
.wsab{word-spacing:303.913001px;}
.wsa6{word-spacing:303.951401px;}
.wsb3{word-spacing:316.076049px;}
.wsb9{word-spacing:317.180035px;}
.wsa7{word-spacing:321.523981px;}
.wsd3{word-spacing:330.130273px;}
.wsb2{word-spacing:330.447069px;}
.wscc{word-spacing:343.397307px;}
.wsd2{word-spacing:356.318746px;}
.wsa2{word-spacing:399.436607px;}
.wsd1{word-spacing:456.512694px;}
.wscb{word-spacing:626.248172px;}
.wsf0{word-spacing:665.996475px;}
.wsf1{word-spacing:684.524243px;}
.wsed{word-spacing:697.474481px;}
.wse8{word-spacing:719.923801px;}
.wse9{word-spacing:790.271721px;}
.ws10b{word-spacing:800.735591px;}
.wsb8{word-spacing:923.206060px;}
.wse0{word-spacing:1052.122848px;}
.wsa5{word-spacing:1189.204335px;}
.wsae{word-spacing:1202.471369px;}
.wsaa{word-spacing:1204.852139px;}
.wsb1{word-spacing:1208.255297px;}
.wsbb{word-spacing:1332.410545px;}
._8{margin-left:-4.420745px;}
._0{margin-left:-1.113586px;}
._5{width:1.829700px;}
._36{width:4.055949px;}
._3{width:9.220685px;}
._2{width:11.337458px;}
._9{width:12.498000px;}
._4{width:13.816800px;}
._a{width:14.856000px;}
._b{width:21.042937px;}
._37{width:23.966100px;}
._1{width:25.444800px;}
._6{width:47.812202px;}
._46{width:92.446844px;}
._62{width:109.145836px;}
._41{width:131.422357px;}
._3b{width:175.749803px;}
._45{width:199.831102px;}
._63{width:213.414932px;}
._47{width:226.024375px;}
._16{width:313.172085px;}
._13{width:314.285671px;}
._27{width:326.818315px;}
._40{width:330.355870px;}
._f{width:332.227847px;}
._11{width:340.051749px;}
._2f{width:345.864477px;}
._42{width:356.544343px;}
._2d{width:359.486706px;}
._24{width:372.024150px;}
._23{width:379.473657px;}
._2b{width:385.286384px;}
._34{width:392.740691px;}
._e{width:394.727866px;}
._5b{width:445.544831px;}
._c{width:449.744778px;}
._3f{width:471.742903px;}
._3e{width:554.335471px;}
._58{width:562.370570px;}
._57{width:588.904639px;}
._50{width:593.594180px;}
._51{width:596.445344px;}
._4d{width:599.330108px;}
._59{width:631.081711px;}
._5a{width:640.268797px;}
._54{width:651.932651px;}
._4f{width:660.332546px;}
._56{width:666.798065px;}
._5d{width:675.557955px;}
._65{width:678.764315px;}
._5c{width:681.313083px;}
._5e{width:691.541756px;}
._60{width:700.080849px;}
._64{width:710.347921px;}
._61{width:716.069449px;}
._5f{width:724.910939px;}
._49{width:733.411632px;}
._48{width:740.333146px;}
._55{width:742.267522px;}
._43{width:747.792252px;}
._4c{width:750.336221px;}
._4b{width:753.312183px;}
._44{width:759.604905px;}
._4a{width:782.255822px;}
._4e{width:793.290884px;}
._53{width:824.730491px;}
._52{width:846.234222px;}
._25{width:1097.741478px;}
._33{width:1138.046574px;}
._22{width:1147.996850px;}
._15{width:1207.938501px;}
._31{width:1229.317433px;}
._2c{width:1230.383020px;}
._35{width:1266.564968px;}
._2a{width:1269.147335px;}
._32{width:1286.124723px;}
._2e{width:1299.050962px;}
._30{width:1307.268459px;}
._29{width:1321.865076px;}
._12{width:1333.356133px;}
._39{width:1342.778415px;}
._38{width:1348.783140px;}
._3a{width:1358.762215px;}
._3c{width:1367.901301px;}
._3d{width:1383.241909px;}
._1e{width:1385.795477px;}
._21{width:1388.771440px;}
._1a{width:1392.227397px;}
._10{width:1407.193610px;}
._14{width:1412.867139px;}
._26{width:1432.100499px;}
._1c{width:1453.234634px;}
._1f{width:1471.666404px;}
._20{width:1490.242172px;}
._28{width:1535.169610px;}
._19{width:1543.233509px;}
._18{width:1546.209472px;}
._1d{width:1570.161173px;}
._17{width:1575.153110px;}
._1b{width:1586.192972px;}
._66{width:1633.568380px;}
._7{width:1659.372858px;}
._d{width:1683.262159px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.995400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:71.999400px;}
.fs4{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:54.000000px;}
.ye3{bottom:124.498650px;}
.ybd{bottom:124.499100px;}
.y1d8{bottom:124.499700px;}
.y5a{bottom:124.500364px;}
.y89{bottom:124.500600px;}
.y13c{bottom:126.118650px;}
.y19f{bottom:126.457350px;}
.y11b{bottom:137.086669px;}
.y1d7{bottom:138.785521px;}
.y180{bottom:140.063438px;}
.y59{bottom:140.997758px;}
.ye2{bottom:143.971650px;}
.ybc{bottom:143.972100px;}
.y88{bottom:143.975100px;}
.y13b{bottom:145.677150px;}
.y21b{bottom:145.847016px;}
.y19e{bottom:145.931850px;}
.y1d6{bottom:152.987344px;}
.y58{bottom:157.495152px;}
.y11a{bottom:158.856797px;}
.y21a{bottom:160.048838px;}
.y17f{bottom:161.833566px;}
.ybb{bottom:163.530600px;}
.y87{bottom:163.533600px;}
.y13a{bottom:165.150150px;}
.y19d{bottom:165.490350px;}
.ye1{bottom:169.483350px;}
.y1d5{bottom:172.460700px;}
.y57{bottom:173.993745px;}
.y219{bottom:174.335859px;}
.y119{bottom:177.564563px;}
.y17e{bottom:180.626531px;}
.y86{bottom:183.006600px;}
.y139{bottom:184.624650px;}
.y19c{bottom:184.964850px;}
.y1d4{bottom:186.747722px;}
.y31{bottom:187.428825px;}
.yba{bottom:189.042450px;}
.y56{bottom:190.491139px;}
.y218{bottom:193.809216px;}
.y118{bottom:196.358728px;}
.y17d{bottom:199.335497px;}
.y85{bottom:202.481100px;}
.y138{bottom:204.183150px;}
.y19b{bottom:204.437850px;}
.y1d3{bottom:206.222278px;}
.y55{bottom:206.988533px;}
.y217{bottom:208.096237px;}
.y30{bottom:208.433325px;}
.ye0{bottom:212.517750px;}
.y117{bottom:215.067694px;}
.y17c{bottom:218.128462px;}
.y1d2{bottom:220.508100px;}
.y84{bottom:222.039600px;}
.y214{bottom:222.296860px;}
.y216{bottom:222.552457px;}
.y215{bottom:222.722855px;}
.y54{bottom:223.485927px;}
.y137{bottom:223.657650px;}
.y19a{bottom:223.912350px;}
.y2f{bottom:229.437825px;}
.yb9{bottom:231.903450px;}
.ydf{bottom:232.077750px;}
.y116{bottom:233.860659px;}
.y17b{bottom:236.837428px;}
.y1d1{bottom:239.982656px;}
.y83{bottom:241.514100px;}
.y213{bottom:241.856615px;}
.y136{bottom:243.130650px;}
.y199{bottom:243.470850px;}
.y53{bottom:248.997608px;}
.y2e{bottom:250.442325px;}
.yb8{bottom:251.377950px;}
.yde{bottom:251.550750px;}
.y115{bottom:252.569625px;}
.y1d0{bottom:254.268478px;}
.y17a{bottom:255.631593px;}
.y212{bottom:256.058438px;}
.y82{bottom:260.987100px;}
.y135{bottom:262.605150px;}
.y198{bottom:262.945350px;}
.y52{bottom:265.495001px;}
.y211{bottom:270.344259px;}
.yb7{bottom:270.936450px;}
.ydd{bottom:271.025250px;}
.y114{bottom:271.362590px;}
.y2d{bottom:271.446825px;}
.y1cf{bottom:273.743034px;}
.y179{bottom:274.339359px;}
.y81{bottom:280.461600px;}
.y134{bottom:282.163650px;}
.y197{bottom:282.419850px;}
.y1ce{bottom:288.028856px;}
.y210{bottom:289.818816px;}
.y113{bottom:290.071557px;}
.yb6{bottom:290.410950px;}
.ydc{bottom:290.583750px;}
.y51{bottom:291.006683px;}
.y2c{bottom:292.367250px;}
.y178{bottom:293.048325px;}
.y80{bottom:300.020100px;}
.y133{bottom:301.638150px;}
.y196{bottom:301.978350px;}
.y1cb{bottom:302.230678px;}
.y1cc{bottom:302.655473px;}
.y20f{bottom:304.104637px;}
.y1cd{bottom:304.867045px;}
.y50{bottom:307.504076px;}
.y112{bottom:308.865722px;}
.yb5{bottom:309.883950px;}
.ydb{bottom:310.058250px;}
.y177{bottom:311.841290px;}
.y2b{bottom:313.371750px;}
.y20e{bottom:318.306460px;}
.y7f{bottom:319.494600px;}
.y132{bottom:321.112650px;}
.y195{bottom:321.451350px;}
.y1ca{bottom:321.789234px;}
.y4f{bottom:324.001470px;}
.y111{bottom:327.573488px;}
.yb4{bottom:329.443950px;}
.yda{bottom:329.531250px;}
.y176{bottom:330.550257px;}
.y2a{bottom:334.376250px;}
.y1c9{bottom:335.991056px;}
.y20d{bottom:337.865015px;}
.y7e{bottom:338.969100px;}
.y4e{bottom:340.500064px;}
.y131{bottom:340.671150px;}
.y194{bottom:340.925850px;}
.y110{bottom:346.367653px;}
.yb3{bottom:348.916950px;}
.yd9{bottom:349.089750px;}
.y175{bottom:349.344422px;}
.y1c8{bottom:350.278078px;}
.y20c{bottom:352.066838px;}
.y29{bottom:355.380750px;}
.y4d{bottom:356.997458px;}
.y7d{bottom:358.527600px;}
.y130{bottom:360.144150px;}
.y193{bottom:360.484350px;}
.y1c7{bottom:364.478700px;}
.y10f{bottom:365.076619px;}
.y20b{bottom:366.353859px;}
.y174{bottom:368.052188px;}
.yb2{bottom:368.391450px;}
.yd8{bottom:368.564250px;}
.y4b{bottom:373.494851px;}
.y4c{bottom:373.919646px;}
.y28{bottom:376.385250px;}
.y7c{bottom:378.000600px;}
.y12f{bottom:379.618650px;}
.y192{bottom:379.958850px;}
.y10e{bottom:383.869584px;}
.y1c6{bottom:384.718050px;}
.y20a{bottom:385.827216px;}
.y173{bottom:386.846353px;}
.yb1{bottom:387.864450px;}
.yd7{bottom:388.038750px;}
.y27{bottom:397.389750px;}
.y7a{bottom:397.475100px;}
.y7b{bottom:398.240100px;}
.y4a{bottom:399.006533px;}
.y12e{bottom:399.177150px;}
.y191{bottom:399.433350px;}
.y209{bottom:400.114237px;}
.y10d{bottom:402.578550px;}
.y172{bottom:405.555319px;}
.yd6{bottom:407.511750px;}
.yb0{bottom:413.376300px;}
.y208{bottom:414.314860px;}
.y79{bottom:417.033600px;}
.y26{bottom:418.394250px;}
.y12d{bottom:418.651650px;}
.y190{bottom:418.991850px;}
.y10c{bottom:421.371515px;}
.y171{bottom:424.348284px;}
.y49{bottom:424.518214px;}
.y23c{bottom:424.860328px;}
.yd5{bottom:427.071750px;}
.y205{bottom:428.601881px;}
.y207{bottom:428.857478px;}
.y206{bottom:428.942677px;}
.y1c5{bottom:434.213250px;}
.y78{bottom:436.508100px;}
.y12c{bottom:438.126150px;}
.y18f{bottom:438.464850px;}
.y23b{bottom:439.062150px;}
.y25{bottom:439.398750px;}
.y10b{bottom:440.080481px;}
.y170{bottom:443.057250px;}
.yd4{bottom:446.544750px;}
.y204{bottom:448.076438px;}
.y48{bottom:450.029895px;}
.y77{bottom:455.981100px;}
.yaf{bottom:456.321750px;}
.y12b{bottom:457.684650px;}
.y18e{bottom:457.939350px;}
.y23a{bottom:458.620706px;}
.y10a{bottom:458.874647px;}
.y24{bottom:460.403250px;}
.y16f{bottom:461.850215px;}
.y203{bottom:462.362259px;}
.y1c4{bottom:462.701250px;}
.yd3{bottom:466.019250px;}
.y239{bottom:472.822528px;}
.y47{bottom:475.541576px;}
.yae{bottom:475.796250px;}
.y201{bottom:476.564082px;}
.y202{bottom:476.988876px;}
.y12a{bottom:477.157650px;}
.y18d{bottom:477.413850px;}
.y109{bottom:477.582413px;}
.y16e{bottom:480.559181px;}
.y23{bottom:481.407750px;}
.y76{bottom:481.492800px;}
.yd2{bottom:485.577750px;}
.y238{bottom:487.108350px;}
.y1c3{bottom:491.189250px;}
.y45{bottom:492.038970px;}
.y46{bottom:492.294566px;}
.yad{bottom:495.270750px;}
.y200{bottom:496.122637px;}
.y108{bottom:496.376578px;}
.y129{bottom:496.632150px;}
.y18c{bottom:496.972350px;}
.y16d{bottom:499.353347px;}
.yd1{bottom:505.052250px;}
.y237{bottom:506.582906px;}
.y1ff{bottom:510.324459px;}
.y22{bottom:514.403100px;}
.yac{bottom:514.829250px;}
.y107{bottom:515.084344px;}
.y128{bottom:516.106650px;}
.y18b{bottom:516.445350px;}
.y44{bottom:517.465452px;}
.y16c{bottom:518.061113px;}
.y1c2{bottom:519.677250px;}
.y75{bottom:520.527600px;}
.y236{bottom:520.868728px;}
.yd0{bottom:524.525250px;}
.y1fe{bottom:529.797816px;}
.y106{bottom:533.878509px;}
.y43{bottom:533.962846px;}
.yab{bottom:534.302250px;}
.y127{bottom:535.665150px;}
.y18a{bottom:535.919850px;}
.y16b{bottom:536.855278px;}
.y74{bottom:540.086100px;}
.y235{bottom:540.343284px;}
.y1fd{bottom:544.084837px;}
.ycf{bottom:544.085250px;}
.y1c1{bottom:548.165250px;}
.y42{bottom:550.545438px;}
.y105{bottom:552.587475px;}
.y234{bottom:554.545107px;}
.y126{bottom:555.138150px;}
.y189{bottom:555.478350px;}
.y16a{bottom:555.563044px;}
.y1fb{bottom:558.371859px;}
.y73{bottom:559.560600px;}
.yaa{bottom:559.814100px;}
.y1fc{bottom:560.923027px;}
.yce{bottom:563.558250px;}
.y41{bottom:567.042832px;}
.y233{bottom:568.830928px;}
.y104{bottom:571.295241px;}
.y169{bottom:574.357209px;}
.y125{bottom:574.612650px;}
.y21{bottom:574.697287px;}
.y188{bottom:574.952850px;}
.y1c0{bottom:576.737250px;}
.y1fa{bottom:577.845215px;}
.y72{bottom:579.033600px;}
.ycd{bottom:583.032750px;}
.y40{bottom:583.541426px;}
.y232{bottom:588.305485px;}
.y103{bottom:590.089406px;}
.y1f9{bottom:592.047038px;}
.y168{bottom:593.066175px;}
.y124{bottom:594.171150px;}
.y187{bottom:594.427350px;}
.y71{bottom:598.592100px;}
.y3f{bottom:600.038820px;}
.ycc{bottom:602.591250px;}
.y231{bottom:602.591306px;}
.ya9{bottom:602.674500px;}
.y20{bottom:604.716112px;}
.y1bf{bottom:605.225250px;}
.y102{bottom:608.798372px;}
.y1f8{bottom:611.605593px;}
.y167{bottom:611.859140px;}
.y123{bottom:613.645650px;}
.y186{bottom:613.985850px;}
.y3c{bottom:616.536213px;}
.y230{bottom:616.793129px;}
.y3e{bottom:616.875809px;}
.y3d{bottom:619.087382px;}
.y1e{bottom:619.683525px;}
.y1f{bottom:619.937922px;}
.ycb{bottom:622.065750px;}
.ya8{bottom:622.233000px;}
.ya6{bottom:622.234050px;}
.y70{bottom:624.018750px;}
.y1f7{bottom:625.807416px;}
.y101{bottom:627.591338px;}
.ya7{bottom:628.866000px;}
.y166{bottom:630.568106px;}
.y39{bottom:633.033607px;}
.y122{bottom:633.120150px;}
.y3b{bottom:633.289204px;}
.y3a{bottom:633.373203px;}
.y185{bottom:633.458850px;}
.y1be{bottom:633.713250px;}
.y1c{bottom:634.734937px;}
.y1d{bottom:635.075733px;}
.y22f{bottom:636.351684px;}
.y1f6{bottom:640.094437px;}
.yca{bottom:641.538750px;}
.ya5{bottom:641.707050px;}
.ya3{bottom:641.708250px;}
.y100{bottom:646.300304px;}
.ya4{bottom:648.340050px;}
.y165{bottom:649.361071px;}
.y1b{bottom:649.702350px;}
.y22e{bottom:650.553507px;}
.y121{bottom:652.678650px;}
.y184{bottom:652.933350px;}
.y38{bottom:657.609300px;}
.y1f5{bottom:659.567794px;}
.yc9{bottom:661.013250px;}
.ya2{bottom:661.182750px;}
.y1bd{bottom:662.201550px;}
.y6f{bottom:663.139950px;}
.y1a{bottom:664.668563px;}
.y22d{bottom:664.840528px;}
.yff{bottom:665.093269px;}
.y164{bottom:668.070038px;}
.y120{bottom:672.151650px;}
.y183{bottom:672.407850px;}
.y1f4{bottom:679.041151px;}
.y19{bottom:679.721175px;}
.yc8{bottom:680.571750px;}
.ya1{bottom:680.741250px;}
.y6e{bottom:682.614450px;}
.yfe{bottom:683.802235px;}
.y22c{bottom:684.313885px;}
.y163{bottom:686.864203px;}
.y11f{bottom:691.626150px;}
.y182{bottom:691.966350px;}
.y1f3{bottom:693.328172px;}
.y18{bottom:694.687388px;}
.y22a{bottom:698.600906px;}
.y22b{bottom:698.855303px;}
.yc7{bottom:700.046250px;}
.ya0{bottom:700.215750px;}
.y6d{bottom:702.087450px;}
.yfd{bottom:702.595200px;}
.yfb{bottom:702.596456px;}
.y1bb{bottom:702.681300px;}
.y1bc{bottom:703.446300px;}
.y162{bottom:705.571969px;}
.yfc{bottom:707.952750px;}
.y17{bottom:709.738799px;}
.y11e{bottom:711.100650px;}
.y181{bottom:711.439350px;}
.y1f2{bottom:712.802728px;}
.y229{bottom:718.074263px;}
.yc6{bottom:719.519250px;}
.y9f{bottom:719.688750px;}
.yfa{bottom:721.305422px;}
.y6c{bottom:721.647450px;}
.y1ba{bottom:722.154300px;}
.y161{bottom:724.366134px;}
.y16{bottom:724.706212px;}
.y1f1{bottom:727.088550px;}
.y11d{bottom:730.659150px;}
.y228{bottom:732.361284px;}
.yc5{bottom:739.079250px;}
.y9e{bottom:739.163250px;}
.y15{bottom:739.673625px;}
.yf9{bottom:740.098388px;}
.y6b{bottom:741.120450px;}
.y1f0{bottom:741.290372px;}
.y160{bottom:743.073900px;}
.y37{bottom:744.521100px;}
.y227{bottom:746.563106px;}
.y1b9{bottom:747.666000px;}
.y11c{bottom:750.132150px;}
.y14{bottom:754.725037px;}
.y1b1{bottom:755.660737px;}
.yc4{bottom:758.552250px;}
.y9d{bottom:758.721750px;}
.yf8{bottom:758.807354px;}
.y6a{bottom:760.594950px;}
.y1ef{bottom:760.848928px;}
.y36{bottom:761.783100px;}
.y15e{bottom:761.869416px;}
.y226{bottom:766.121662px;}
.y15f{bottom:767.140050px;}
.y13{bottom:769.691250px;}
.y1ee{bottom:775.050750px;}
.yf7{bottom:777.600319px;}
.yc3{bottom:778.026750px;}
.y9c{bottom:778.196250px;}
.y35{bottom:778.961100px;}
.y69{bottom:780.153450px;}
.y225{bottom:780.323484px;}
.y15d{bottom:780.578382px;}
.y1b0{bottom:782.617200px;}
.y1af{bottom:787.974750px;}
.y1b8{bottom:788.062650px;}
.y1eb{bottom:789.337772px;}
.y1ed{bottom:789.592169px;}
.y1ec{bottom:791.972939px;}
.y224{bottom:794.609306px;}
.y14c{bottom:795.373988px;}
.y34{bottom:796.224600px;}
.yf6{bottom:796.309285px;}
.y12{bottom:796.733850px;}
.y10{bottom:796.734450px;}
.yc2{bottom:797.585250px;}
.y9b{bottom:797.669250px;}
.y15c{bottom:799.371347px;}
.y68{bottom:799.627950px;}
.y1b4{bottom:800.645550px;}
.y1ae{bottom:800.646674px;}
.y1b2{bottom:800.647654px;}
.y11{bottom:802.686600px;}
.y1b3{bottom:805.918050px;}
.y1b7{bottom:807.621150px;}
.y1ea{bottom:808.811128px;}
.ye{bottom:813.231450px;}
.yb{bottom:813.232050px;}
.y33{bottom:813.486600px;}
.yf{bottom:813.655350px;}
.y223{bottom:814.083862px;}
.yf5{bottom:815.102250px;}
.yf3{bottom:815.102821px;}
.yc{bottom:816.038700px;}
.yc1{bottom:817.059750px;}
.y15b{bottom:818.080313px;}
.y1ad{bottom:818.588850px;}
.y1ab{bottom:818.589830px;}
.y67{bottom:819.100950px;}
.yd{bottom:819.184200px;}
.yf4{bottom:820.374750px;}
.y14b{bottom:822.415650px;}
.y1e8{bottom:823.098150px;}
.y9a{bottom:823.181100px;}
.y1e9{bottom:823.437746px;}
.y1ac{bottom:823.946400px;}
.y1b6{bottom:827.095650px;}
.y14a{bottom:827.688150px;}
.y222{bottom:828.369684px;}
.y7{bottom:829.729050px;}
.ya{bottom:829.982850px;}
.y8{bottom:830.152950px;}
.yf2{bottom:833.811788px;}
.y9{bottom:835.681800px;}
.yc0{bottom:836.532750px;}
.y15a{bottom:836.873278px;}
.y66{bottom:838.659450px;}
.y149{bottom:840.358950px;}
.y1e7{bottom:842.571506px;}
.y148{bottom:845.716500px;}
.y1b5{bottom:846.568650px;}
.y1aa{bottom:846.737878px;}
.yf1{bottom:852.605953px;}
.y159{bottom:855.582244px;}
.ybf{bottom:856.091250px;}
.y1e6{bottom:856.858528px;}
.y65{bottom:858.133950px;}
.y147{bottom:858.389104px;}
.y1a9{bottom:865.532043px;}
.y99{bottom:866.127150px;}
.y6{bottom:867.232050px;}
.y1e5{bottom:871.059150px;}
.yf0{bottom:871.313719px;}
.y158{bottom:874.376409px;}
.y221{bottom:876.331884px;}
.y146{bottom:876.417679px;}
.y64{bottom:877.608450px;}
.ybe{bottom:881.518050px;}
.y1a8{bottom:884.241009px;}
.y98{bottom:885.601650px;}
.yef{bottom:890.107884px;}
.y1e4{bottom:890.618906px;}
.y157{bottom:893.084175px;}
.y63{bottom:897.081450px;}
.y5{bottom:900.992850px;}
.y1a7{bottom:903.033974px;}
.y145{bottom:904.480528px;}
.y1e3{bottom:904.820728px;}
.y97{bottom:905.076150px;}
.yee{bottom:908.815650px;}
.yec{bottom:908.816678px;}
.y156{bottom:911.793142px;}
.yed{bottom:914.173200px;}
.y62{bottom:916.641450px;}
.y1e2{bottom:919.106550px;}
.y1a6{bottom:921.742941px;}
.y144{bottom:923.273493px;}
.y220{bottom:924.294085px;}
.y96{bottom:924.634650px;}
.yeb{bottom:927.610843px;}
.y155{bottom:930.586107px;}
.y4{bottom:934.669950px;}
.y61{bottom:936.114450px;}
.y1e1{bottom:938.581106px;}
.y1a5{bottom:940.535906px;}
.y143{bottom:941.982459px;}
.y95{bottom:944.109150px;}
.yea{bottom:946.319809px;}
.y154{bottom:949.295073px;}
.y1e0{bottom:952.866928px;}
.y60{bottom:955.588950px;}
.y21f{bottom:958.054463px;}
.y1a4{bottom:959.244872px;}
.y142{bottom:960.775425px;}
.y94{bottom:963.582150px;}
.ye9{bottom:965.112775px;}
.y1df{bottom:967.068750px;}
.y153{bottom:968.089238px;}
.y3{bottom:968.430750px;}
.y21e{bottom:972.341484px;}
.y5f{bottom:975.147450px;}
.y1a3{bottom:978.039037px;}
.y141{bottom:979.484391px;}
.y1de{bottom:981.355772px;}
.y93{bottom:983.140650px;}
.ye8{bottom:983.821741px;}
.y21d{bottom:986.542107px;}
.y152{bottom:987.562594px;}
.y5e{bottom:994.621950px;}
.y1a2{bottom:997.512393px;}
.y140{bottom:998.278556px;}
.y1dd{bottom:1000.829128px;}
.y2{bottom:1002.188850px;}
.ye7{bottom:1002.614706px;}
.y92{bottom:1002.615150px;}
.y151{bottom:1007.121150px;}
.y14f{bottom:1007.121849px;}
.y150{bottom:1012.393650px;}
.y8e{bottom:1013.578805px;}
.y5d{bottom:1014.094950px;}
.y1dc{bottom:1015.116150px;}
.y1a1{bottom:1016.985750px;}
.y13f{bottom:1016.986322px;}
.y21c{bottom:1020.303685px;}
.ye6{bottom:1021.323672px;}
.y91{bottom:1022.089650px;}
.y1a0{bottom:1022.343300px;}
.y14e{bottom:1026.596406px;}
.y8d{bottom:1030.076199px;}
.y5c{bottom:1033.653450px;}
.y1db{bottom:1034.589506px;}
.y1{bottom:1035.949500px;}
.y13e{bottom:1036.460878px;}
.ye5{bottom:1040.797029px;}
.y90{bottom:1041.562650px;}
.y8c{bottom:1046.574793px;}
.y14d{bottom:1048.791329px;}
.y5b{bottom:1059.080250px;}
.y8f{bottom:1061.121150px;}
.y13d{bottom:1062.736950px;}
.y8b{bottom:1063.072186px;}
.ye4{bottom:1063.077150px;}
.y1d9{bottom:1063.331547px;}
.y1da{bottom:1063.416746px;}
.y8a{bottom:1118.692800px;}
.h11{height:24.796125px;}
.h12{height:24.828120px;}
.h4{height:27.932275px;}
.h10{height:29.996550px;}
.ha{height:34.968313px;}
.h1{height:37.199535px;}
.h6{height:37.247534px;}
.h5{height:38.416992px;}
.hc{height:39.119511px;}
.hb{height:40.559493px;}
.h3{height:41.904000px;}
.h8{height:44.175000px;}
.h9{height:45.000000px;}
.he{height:46.500000px;}
.hf{height:55.799535px;}
.hd{height:55.871534px;}
.h7{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:54.000000px;}
.x31{left:61.738500px;}
.x2a{left:65.990250px;}
.x19{left:71.433000px;}
.x1a{left:101.961818px;}
.x2b{left:108.000000px;}
.x2c{left:112.932150px;}
.x2e{left:119.820450px;}
.x3d{left:122.541600px;}
.x2f{left:127.558950px;}
.x39{left:129.174750px;}
.x1f{left:145.076079px;}
.x2d{left:162.680250px;}
.x1d{left:171.268152px;}
.x1e{left:196.099442px;}
.x1b{left:204.008543px;}
.x1c{left:252.820333px;}
.x3e{left:261.666000px;}
.x3f{left:266.683350px;}
.x38{left:291.262113px;}
.x1{left:300.018750px;}
.xb{left:302.655750px;}
.x41{left:307.332150px;}
.x3c{left:311.756656px;}
.x20{left:317.961750px;}
.x33{left:332.841714px;}
.x42{left:340.156540px;}
.x4c{left:341.517323px;}
.x53{left:346.704858px;}
.x32{left:350.275097px;}
.x4f{left:355.293150px;}
.x2{left:356.313750px;}
.xc{left:358.100700px;}
.xd{left:372.047100px;}
.x49{left:374.341712px;}
.x4d{left:395.262251px;}
.x5a{left:422.643877px;}
.x34{left:428.003100px;}
.x4e{left:431.403399px;}
.x3{left:438.377850px;}
.x4{left:443.905500px;}
.x54{left:445.944817px;}
.x47{left:449.261576px;}
.x13{left:459.552750px;}
.xe{left:466.440450px;}
.x14{left:473.414100px;}
.x48{left:480.045991px;}
.x29{left:503.600780px;}
.x50{left:509.214026px;}
.x5{left:520.184550px;}
.x40{left:525.966750px;}
.xf{left:533.111700px;}
.x35{left:536.173200px;}
.x25{left:542.211000px;}
.x10{left:547.058250px;}
.x26{left:550.884900px;}
.x51{left:551.903493px;}
.x15{left:576.651900px;}
.x16{left:582.179400px;}
.x6{left:590.087550px;}
.x55{left:599.865693px;}
.x36{left:611.177850px;}
.x4a{left:614.152715px;}
.x22{left:616.535400px;}
.x43{left:620.275038px;}
.x4b{left:623.336200px;}
.x7{left:624.614100px;}
.x8{left:630.226650px;}
.x27{left:637.625100px;}
.x28{left:642.982650px;}
.x21{left:647.231250px;}
.x44{left:661.774119px;}
.x11{left:667.984200px;}
.x5b{left:673.935136px;}
.x17{left:675.890052px;}
.x12{left:681.845550px;}
.x56{left:693.663721px;}
.x23{left:709.398300px;}
.x24{left:714.670800px;}
.x37{left:740.267700px;}
.x45{left:743.155902px;}
.x57{left:747.238251px;}
.x52{left:783.379399px;}
.x3a{left:788.825100px;}
.x9{left:790.781100px;}
.x3b{left:793.842450px;}
.x58{left:797.241626px;}
.x46{left:799.281601px;}
.x30{left:800.641336px;}
.xa{left:804.642450px;}
.x59{left:834.402762px;}
@media print{
.v2{vertical-align:-9.979200pt;}
.v3{vertical-align:-9.070820pt;}
.v4{vertical-align:-2.720000pt;}
.v1{vertical-align:-1.507200pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.123200pt;}
.ls12{letter-spacing:-1.067200pt;}
.ls15{letter-spacing:-1.066653pt;}
.ls26{letter-spacing:-0.266667pt;}
.ls14{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.213331pt;}
.ls13{letter-spacing:-0.212800pt;}
.lsf{letter-spacing:-0.211200pt;}
.ls17{letter-spacing:-0.211198pt;}
.ls10{letter-spacing:-0.188775pt;}
.ls18{letter-spacing:-0.188423pt;}
.ls11{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.698667pt;}
.ls9{letter-spacing:1.211718pt;}
.ls7{letter-spacing:2.419170pt;}
.lsc{letter-spacing:2.423436pt;}
.ls8{letter-spacing:3.327958pt;}
.ls29{letter-spacing:3.933817pt;}
.ls5{letter-spacing:4.236747pt;}
.ls2{letter-spacing:4.876800pt;}
.ls0{letter-spacing:6.091200pt;}
.ls28{letter-spacing:6.655917pt;}
.lsb{letter-spacing:7.790836pt;}
.ls1{letter-spacing:8.808000pt;}
.ls6{letter-spacing:8.930022pt;}
.ls1e{letter-spacing:9.228685pt;}
.ls22{letter-spacing:9.232951pt;}
.ls1d{letter-spacing:9.531614pt;}
.ls1c{letter-spacing:9.535881pt;}
.ls1a{letter-spacing:11.168000pt;}
.ls19{letter-spacing:11.269333pt;}
.ls1b{letter-spacing:11.397333pt;}
.ls16{letter-spacing:11.536000pt;}
.lsa{letter-spacing:12.095849pt;}
.ls3{letter-spacing:18.474436pt;}
.ls4{letter-spacing:18.478702pt;}
.ls24{letter-spacing:562.373770pt;}
.ls23{letter-spacing:632.824090pt;}
.ls25{letter-spacing:647.036179pt;}
.ls20{letter-spacing:1267.175627pt;}
.ls1f{letter-spacing:1337.621680pt;}
.ls21{letter-spacing:1351.833769pt;}
.ws28{word-spacing:-23.346908pt;}
.ws119{word-spacing:-17.772652pt;}
.ws6{word-spacing:-13.488000pt;}
.ws72{word-spacing:-12.213333pt;}
.ws18{word-spacing:-11.989183pt;}
.ws16{word-spacing:-11.775853pt;}
.ws2b{word-spacing:-10.666533pt;}
.ws34{word-spacing:-9.599880pt;}
.ws10f{word-spacing:-5.818667pt;}
.ws81{word-spacing:-3.999967pt;}
.ws6b{word-spacing:-3.961567pt;}
.ws6e{word-spacing:-3.923167pt;}
.ws8c{word-spacing:-3.910367pt;}
.ws89{word-spacing:-3.871968pt;}
.ws11a{word-spacing:-3.763169pt;}
.ws94{word-spacing:-3.711969pt;}
.ws142{word-spacing:-3.238360pt;}
.ws123{word-spacing:-3.178627pt;}
.wsc{word-spacing:-3.174360pt;}
.ws144{word-spacing:-3.093295pt;}
.ws147{word-spacing:-3.084761pt;}
.ws24{word-spacing:-3.080533pt;}
.ws14d{word-spacing:-3.080495pt;}
.ws14b{word-spacing:-3.071962pt;}
.ws152{word-spacing:-3.059162pt;}
.ws128{word-spacing:-3.046362pt;}
.ws159{word-spacing:-3.042095pt;}
.ws15b{word-spacing:-3.029295pt;}
.ws127{word-spacing:-3.025029pt;}
.ws25{word-spacing:-3.014667pt;}
.wsa{word-spacing:-3.012229pt;}
.wsb4{word-spacing:-2.990896pt;}
.ws155{word-spacing:-2.986629pt;}
.ws1b{word-spacing:-2.982363pt;}
.ws130{word-spacing:-2.978096pt;}
.ws7{word-spacing:-2.971200pt;}
.ws13{word-spacing:-2.969563pt;}
.wsbd{word-spacing:-2.956763pt;}
.ws21{word-spacing:-2.953867pt;}
.ws153{word-spacing:-2.952496pt;}
.ws156{word-spacing:-2.948230pt;}
.ws154{word-spacing:-2.943963pt;}
.ws158{word-spacing:-2.939697pt;}
.ws143{word-spacing:-2.935430pt;}
.ws148{word-spacing:-2.931163pt;}
.ws22{word-spacing:-2.928533pt;}
.ws157{word-spacing:-2.926897pt;}
.ws12a{word-spacing:-2.922630pt;}
.ws12d{word-spacing:-2.918364pt;}
.wsb{word-spacing:-2.914097pt;}
.wscd{word-spacing:-2.901297pt;}
.ws131{word-spacing:-2.897030pt;}
.ws1c{word-spacing:-2.893067pt;}
.ws12c{word-spacing:-2.892764pt;}
.ws135{word-spacing:-2.888497pt;}
.ws1e{word-spacing:-2.888000pt;}
.ws78{word-spacing:-2.879964pt;}
.wse{word-spacing:-2.875697pt;}
.ws13a{word-spacing:-2.871431pt;}
.ws5{word-spacing:-2.870400pt;}
.wsf{word-spacing:-2.867164pt;}
.ws13b{word-spacing:-2.862898pt;}
.ws12e{word-spacing:-2.854364pt;}
.ws15{word-spacing:-2.841564pt;}
.ws140{word-spacing:-2.837298pt;}
.ws19{word-spacing:-2.833031pt;}
.ws4{word-spacing:-2.832000pt;}
.ws11{word-spacing:-2.828765pt;}
.ws13f{word-spacing:-2.824498pt;}
.ws17{word-spacing:-2.820231pt;}
.ws117{word-spacing:-2.815965pt;}
.ws14{word-spacing:-2.811698pt;}
.ws8{word-spacing:-2.808000pt;}
.ws10{word-spacing:-2.807432pt;}
.wse5{word-spacing:-2.803165pt;}
.ws134{word-spacing:-2.798898pt;}
.ws27{word-spacing:-2.796800pt;}
.wsf5{word-spacing:-2.790365pt;}
.wsc7{word-spacing:-2.786099pt;}
.ws9{word-spacing:-2.784000pt;}
.ws10a{word-spacing:-2.781832pt;}
.ws146{word-spacing:-2.777565pt;}
.wsb6{word-spacing:-2.773299pt;}
.ws14e{word-spacing:-2.769032pt;}
.wsa1{word-spacing:-2.764765pt;}
.ws13d{word-spacing:-2.760499pt;}
.wseb{word-spacing:-2.756232pt;}
.ws12f{word-spacing:-2.751966pt;}
.ws13e{word-spacing:-2.747699pt;}
.ws1f{word-spacing:-2.746133pt;}
.ws109{word-spacing:-2.743432pt;}
.ws1d{word-spacing:-2.741067pt;}
.ws150{word-spacing:-2.739166pt;}
.ws12b{word-spacing:-2.730633pt;}
.wsf2{word-spacing:-2.726366pt;}
.wsc5{word-spacing:-2.722099pt;}
.wsd0{word-spacing:-2.717833pt;}
.wsf8{word-spacing:-2.713566pt;}
.wsb5{word-spacing:-2.709299pt;}
.ws20{word-spacing:-2.705600pt;}
.wsfa{word-spacing:-2.705033pt;}
.ws14a{word-spacing:-2.700766pt;}
.wsec{word-spacing:-2.696500pt;}
.wscf{word-spacing:-2.692233pt;}
.wsf3{word-spacing:-2.687966pt;}
.wsba{word-spacing:-2.683700pt;}
.wsa4{word-spacing:-2.679433pt;}
.ws2{word-spacing:-2.678400pt;}
.wsce{word-spacing:-2.675167pt;}
.ws133{word-spacing:-2.670900pt;}
.ws14f{word-spacing:-2.666633pt;}
.ws1a{word-spacing:-2.658100pt;}
.ws26{word-spacing:-2.654933pt;}
.ws132{word-spacing:-2.653833pt;}
.ws23{word-spacing:-2.649867pt;}
.wse2{word-spacing:-2.645300pt;}
.wse4{word-spacing:-2.641034pt;}
.ws1{word-spacing:-2.640000pt;}
.wse3{word-spacing:-2.623967pt;}
.ws137{word-spacing:-2.615434pt;}
.wsee{word-spacing:-2.611167pt;}
.wsc3{word-spacing:-2.606901pt;}
.wsdf{word-spacing:-2.602634pt;}
.ws125{word-spacing:-2.589834pt;}
.ws129{word-spacing:-2.585568pt;}
.ws12{word-spacing:-2.572768pt;}
.ws3{word-spacing:-2.563200pt;}
.ws124{word-spacing:-2.555701pt;}
.wsbf{word-spacing:-2.551435pt;}
.ws15a{word-spacing:-2.542902pt;}
.wsa9{word-spacing:-2.534368pt;}
.wsef{word-spacing:-2.530102pt;}
.wsa3{word-spacing:-2.521568pt;}
.wsc0{word-spacing:-2.517302pt;}
.wse7{word-spacing:-2.513035pt;}
.wsc4{word-spacing:-2.500235pt;}
.ws151{word-spacing:-2.495969pt;}
.wsc8{word-spacing:-2.491702pt;}
.wse1{word-spacing:-2.478902pt;}
.wsf4{word-spacing:-2.474636pt;}
.ws138{word-spacing:-2.470369pt;}
.ws149{word-spacing:-2.466103pt;}
.wsb7{word-spacing:-2.461836pt;}
.ws141{word-spacing:-2.457569pt;}
.ws145{word-spacing:-2.453303pt;}
.wsd{word-spacing:-2.444769pt;}
.ws139{word-spacing:-2.440503pt;}
.ws106{word-spacing:-2.436236pt;}
.wse6{word-spacing:-2.431970pt;}
.wsc1{word-spacing:-2.427703pt;}
.wsea{word-spacing:-2.414903pt;}
.wsc9{word-spacing:-2.406370pt;}
.ws108{word-spacing:-2.402103pt;}
.ws126{word-spacing:-2.389303pt;}
.wsb0{word-spacing:-2.376504pt;}
.ws115{word-spacing:-2.372237pt;}
.wsaf{word-spacing:-2.367970pt;}
.wsca{word-spacing:-2.363704pt;}
.ws0{word-spacing:-2.355171pt;}
.wsd5{word-spacing:-2.346637pt;}
.wsf6{word-spacing:-2.342371pt;}
.wsf9{word-spacing:-2.338104pt;}
.wsd4{word-spacing:-2.333837pt;}
.ws107{word-spacing:-2.329571pt;}
.wsc6{word-spacing:-2.252772pt;}
.wsad{word-spacing:-2.248505pt;}
.wsc2{word-spacing:-2.218639pt;}
.wsa8{word-spacing:-2.214372pt;}
.wsf7{word-spacing:-2.205839pt;}
.wsbe{word-spacing:-2.180239pt;}
.ws116{word-spacing:-2.175973pt;}
.ws7f{word-spacing:-0.853333pt;}
.ws113{word-spacing:-0.821333pt;}
.ws45{word-spacing:-0.814923pt;}
.ws3d{word-spacing:-0.793590pt;}
.ws3a{word-spacing:-0.780790pt;}
.ws79{word-spacing:-0.763724pt;}
.wsd9{word-spacing:-0.741333pt;}
.ws47{word-spacing:-0.725324pt;}
.ws4c{word-spacing:-0.716791pt;}
.ws38{word-spacing:-0.703991pt;}
.ws2f{word-spacing:-0.695458pt;}
.ws3c{word-spacing:-0.674125pt;}
.ws3b{word-spacing:-0.661325pt;}
.ws49{word-spacing:-0.657058pt;}
.ws40{word-spacing:-0.648525pt;}
.ws4a{word-spacing:-0.639992pt;}
.ws42{word-spacing:-0.635725pt;}
.ws4e{word-spacing:-0.627192pt;}
.ws9e{word-spacing:-0.624000pt;}
.ws32{word-spacing:-0.618659pt;}
.ws7b{word-spacing:-0.601592pt;}
.ws46{word-spacing:-0.597326pt;}
.ws4f{word-spacing:-0.588793pt;}
.wsfe{word-spacing:-0.586667pt;}
.ws30{word-spacing:-0.575993pt;}
.ws50{word-spacing:-0.571726pt;}
.ws48{word-spacing:-0.563193pt;}
.ws29{word-spacing:-0.554660pt;}
.ws8b{word-spacing:-0.549333pt;}
.ws2a{word-spacing:-0.541860pt;}
.ws36{word-spacing:-0.520527pt;}
.ws35{word-spacing:-0.507727pt;}
.wsde{word-spacing:-0.485333pt;}
.ws3f{word-spacing:-0.477861pt;}
.ws2c{word-spacing:-0.460794pt;}
.ws10e{word-spacing:-0.453333pt;}
.ws2d{word-spacing:-0.452261pt;}
.ws2e{word-spacing:-0.447994pt;}
.ws41{word-spacing:-0.439461pt;}
.wsdc{word-spacing:-0.426667pt;}
.ws6a{word-spacing:-0.421333pt;}
.ws44{word-spacing:-0.418128pt;}
.ws7e{word-spacing:-0.416000pt;}
.ws37{word-spacing:-0.413861pt;}
.ws99{word-spacing:-0.410667pt;}
.ws31{word-spacing:-0.409595pt;}
.ws63{word-spacing:-0.405333pt;}
.ws4b{word-spacing:-0.401062pt;}
.ws110{word-spacing:-0.400000pt;}
.ws84{word-spacing:-0.389333pt;}
.ws68{word-spacing:-0.384000pt;}
.ws71{word-spacing:-0.378667pt;}
.wsd8{word-spacing:-0.362667pt;}
.wsfd{word-spacing:-0.357333pt;}
.ws62{word-spacing:-0.352000pt;}
.ws9f{word-spacing:-0.346667pt;}
.ws57{word-spacing:-0.341333pt;}
.ws39{word-spacing:-0.337062pt;}
.ws52{word-spacing:-0.336000pt;}
.ws66{word-spacing:-0.325333pt;}
.ws74{word-spacing:-0.320000pt;}
.ws80{word-spacing:-0.314667pt;}
.ws4d{word-spacing:-0.311463pt;}
.ws105{word-spacing:-0.309333pt;}
.ws98{word-spacing:-0.304000pt;}
.ws33{word-spacing:-0.302930pt;}
.wsd6{word-spacing:-0.298667pt;}
.ws43{word-spacing:-0.298663pt;}
.ws67{word-spacing:-0.293333pt;}
.ws87{word-spacing:-0.288000pt;}
.ws75{word-spacing:-0.282667pt;}
.ws96{word-spacing:-0.277333pt;}
.ws7a{word-spacing:-0.273063pt;}
.ws76{word-spacing:-0.272000pt;}
.wsa0{word-spacing:-0.266667pt;}
.ws69{word-spacing:-0.261333pt;}
.ws3e{word-spacing:-0.260263pt;}
.ws64{word-spacing:-0.256000pt;}
.ws65{word-spacing:-0.250667pt;}
.ws5e{word-spacing:-0.245333pt;}
.ws59{word-spacing:-0.234667pt;}
.ws88{word-spacing:-0.229333pt;}
.ws53{word-spacing:-0.224000pt;}
.ws95{word-spacing:-0.218667pt;}
.ws8a{word-spacing:-0.213333pt;}
.ws5b{word-spacing:-0.208000pt;}
.wsd7{word-spacing:-0.197333pt;}
.wsfc{word-spacing:-0.192000pt;}
.ws5d{word-spacing:-0.186667pt;}
.ws90{word-spacing:-0.181333pt;}
.ws6d{word-spacing:-0.170667pt;}
.ws83{word-spacing:-0.165333pt;}
.ws5c{word-spacing:-0.160000pt;}
.ws61{word-spacing:-0.154667pt;}
.ws101{word-spacing:-0.149333pt;}
.ws9a{word-spacing:-0.144000pt;}
.ws112{word-spacing:-0.138667pt;}
.ws103{word-spacing:-0.133333pt;}
.ws73{word-spacing:-0.117333pt;}
.ws77{word-spacing:-0.112000pt;}
.ws9b{word-spacing:-0.106667pt;}
.wsdd{word-spacing:-0.101333pt;}
.ws93{word-spacing:-0.090667pt;}
.ws6f{word-spacing:-0.085333pt;}
.ws60{word-spacing:-0.080000pt;}
.ws9d{word-spacing:-0.074667pt;}
.ws5f{word-spacing:-0.069333pt;}
.ws118{word-spacing:-0.058667pt;}
.wsdb{word-spacing:-0.053333pt;}
.ws10d{word-spacing:-0.048000pt;}
.ws56{word-spacing:-0.042667pt;}
.ws55{word-spacing:-0.032000pt;}
.ws86{word-spacing:-0.026667pt;}
.wsff{word-spacing:-0.021333pt;}
.wsda{word-spacing:-0.016000pt;}
.ws9c{word-spacing:-0.010667pt;}
.ws111{word-spacing:-0.005333pt;}
.ws51{word-spacing:0.000000pt;}
.ws92{word-spacing:0.005333pt;}
.ws8d{word-spacing:0.010667pt;}
.ws104{word-spacing:0.016000pt;}
.ws7c{word-spacing:0.026667pt;}
.ws54{word-spacing:0.037333pt;}
.ws70{word-spacing:0.042667pt;}
.ws97{word-spacing:0.053333pt;}
.ws100{word-spacing:0.069333pt;}
.ws6c{word-spacing:0.074667pt;}
.ws114{word-spacing:0.080000pt;}
.ws82{word-spacing:0.096000pt;}
.wsfb{word-spacing:0.106667pt;}
.ws85{word-spacing:0.112000pt;}
.ws102{word-spacing:0.122667pt;}
.ws8e{word-spacing:0.128000pt;}
.ws58{word-spacing:0.138667pt;}
.ws7d{word-spacing:0.149333pt;}
.ws91{word-spacing:0.160000pt;}
.ws8f{word-spacing:0.165333pt;}
.ws5a{word-spacing:0.234667pt;}
.ws121{word-spacing:0.304000pt;}
.ws11c{word-spacing:0.592000pt;}
.ws120{word-spacing:0.629333pt;}
.ws11d{word-spacing:0.677333pt;}
.ws11f{word-spacing:0.800000pt;}
.ws11e{word-spacing:0.869333pt;}
.ws11b{word-spacing:1.029333pt;}
.ws13c{word-spacing:6.984446pt;}
.ws136{word-spacing:41.637880pt;}
.ws14c{word-spacing:41.642146pt;}
.ws122{word-spacing:41.697612pt;}
.ws10c{word-spacing:70.185789pt;}
.wsac{word-spacing:246.861981pt;}
.wsbc{word-spacing:269.163569pt;}
.wsab{word-spacing:270.144890pt;}
.wsa6{word-spacing:270.179023pt;}
.wsb3{word-spacing:280.956488pt;}
.wsb9{word-spacing:281.937809pt;}
.wsa7{word-spacing:285.799094pt;}
.wsd3{word-spacing:293.449132pt;}
.wsb2{word-spacing:293.730728pt;}
.wscc{word-spacing:305.242051pt;}
.wsd2{word-spacing:316.727774pt;}
.wsa2{word-spacing:355.054762pt;}
.wsd1{word-spacing:405.789061pt;}
.wscb{word-spacing:556.665042pt;}
.wsf0{word-spacing:591.996867pt;}
.wsf1{word-spacing:608.465994pt;}
.wsed{word-spacing:619.977317pt;}
.wse8{word-spacing:639.932267pt;}
.wse9{word-spacing:702.463752pt;}
.ws10b{word-spacing:711.764969pt;}
.wsb8{word-spacing:820.627609pt;}
.wse0{word-spacing:935.220310pt;}
.wsa5{word-spacing:1057.070520pt;}
.wsae{word-spacing:1068.863439pt;}
.wsaa{word-spacing:1070.979679pt;}
.wsb1{word-spacing:1074.004708pt;}
.wsbb{word-spacing:1184.364929pt;}
._8{margin-left:-3.929551pt;}
._0{margin-left:-0.989854pt;}
._5{width:1.626400pt;}
._36{width:3.605288pt;}
._3{width:8.196164pt;}
._2{width:10.077741pt;}
._9{width:11.109333pt;}
._4{width:12.281600pt;}
._a{width:13.205333pt;}
._b{width:18.704833pt;}
._37{width:21.303200pt;}
._1{width:22.617600pt;}
._6{width:42.499735pt;}
._46{width:82.174973pt;}
._62{width:97.018521pt;}
._41{width:116.819873pt;}
._3b{width:156.222047pt;}
._45{width:177.627646pt;}
._63{width:189.702162pt;}
._47{width:200.910555pt;}
._16{width:278.375187pt;}
._13{width:279.365041pt;}
._27{width:290.505169pt;}
._40{width:293.649663pt;}
._f{width:295.313642pt;}
._11{width:302.268222pt;}
._2f{width:307.435090pt;}
._42{width:316.928305pt;}
._2d{width:319.543739pt;}
._24{width:330.688133pt;}
._23{width:337.309917pt;}
._2b{width:342.476786pt;}
._34{width:349.102836pt;}
._e{width:350.869214pt;}
._5b{width:396.039849pt;}
._c{width:399.773136pt;}
._3f{width:419.327025pt;}
._3e{width:492.742641pt;}
._58{width:499.884951pt;}
._57{width:523.470790pt;}
._50{width:527.639271pt;}
._51{width:530.173639pt;}
._4d{width:532.737874pt;}
._59{width:560.961521pt;}
._5a{width:569.127819pt;}
._54{width:579.495690pt;}
._4f{width:586.962263pt;}
._56{width:592.709391pt;}
._5d{width:600.495960pt;}
._65{width:603.346058pt;}
._5c{width:605.611630pt;}
._5e{width:614.703783pt;}
._60{width:622.294088pt;}
._64{width:631.420374pt;}
._61{width:636.506177pt;}
._5f{width:644.365279pt;}
._49{width:651.921451pt;}
._48{width:658.073907pt;}
._55{width:659.793352pt;}
._43{width:664.704224pt;}
._4c{width:666.965529pt;}
._4b{width:669.610830pt;}
._44{width:675.204360pt;}
._4a{width:695.338508pt;}
._4e{width:705.147452pt;}
._53{width:733.093770pt;}
._52{width:752.208197pt;}
._25{width:975.770203pt;}
._33{width:1011.596955pt;}
._22{width:1020.441644pt;}
._15{width:1073.723112pt;}
._31{width:1092.726607pt;}
._2c{width:1093.673796pt;}
._35{width:1125.835527pt;}
._2a{width:1128.130965pt;}
._32{width:1143.221976pt;}
._2e{width:1154.711966pt;}
._30{width:1162.016408pt;}
._29{width:1174.991179pt;}
._12{width:1185.205451pt;}
._39{width:1193.580813pt;}
._38{width:1198.918347pt;}
._3a{width:1207.788636pt;}
._3c{width:1215.912268pt;}
._3d{width:1229.548364pt;}
._1e{width:1231.818202pt;}
._21{width:1234.463502pt;}
._1a{width:1237.535464pt;}
._10{width:1250.838764pt;}
._14{width:1255.881901pt;}
._26{width:1272.978221pt;}
._1c{width:1291.764119pt;}
._1f{width:1308.147915pt;}
._20{width:1324.659708pt;}
._28{width:1364.595209pt;}
._19{width:1371.763119pt;}
._18{width:1374.408420pt;}
._1d{width:1395.698820pt;}
._17{width:1400.136098pt;}
._1b{width:1409.949309pt;}
._66{width:1452.060782pt;}
._7{width:1474.998096pt;}
._d{width:1496.233030pt;}
.fs9{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.551467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:63.999467pt;}
.fs4{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:48.000000pt;}
.ye3{bottom:110.665467pt;}
.ybd{bottom:110.665867pt;}
.y1d8{bottom:110.666400pt;}
.y5a{bottom:110.666990pt;}
.y89{bottom:110.667200pt;}
.y13c{bottom:112.105467pt;}
.y19f{bottom:112.406533pt;}
.y11b{bottom:121.854817pt;}
.y1d7{bottom:123.364908pt;}
.y180{bottom:124.500834pt;}
.y59{bottom:125.331340pt;}
.ye2{bottom:127.974800pt;}
.ybc{bottom:127.975200pt;}
.y88{bottom:127.977867pt;}
.y13b{bottom:129.490800pt;}
.y21b{bottom:129.641792pt;}
.y19e{bottom:129.717200pt;}
.y1d6{bottom:135.988750pt;}
.y58{bottom:139.995690pt;}
.y11a{bottom:141.206042pt;}
.y21a{bottom:142.265634pt;}
.y17f{bottom:143.852058pt;}
.ybb{bottom:145.360533pt;}
.y87{bottom:145.363200pt;}
.y13a{bottom:146.800133pt;}
.y19d{bottom:147.102533pt;}
.ye1{bottom:150.651867pt;}
.y1d5{bottom:153.298400pt;}
.y57{bottom:154.661107pt;}
.y219{bottom:154.965208pt;}
.y119{bottom:157.835167pt;}
.y17e{bottom:160.556916pt;}
.y86{bottom:162.672533pt;}
.y139{bottom:164.110800pt;}
.y19c{bottom:164.413200pt;}
.y1d4{bottom:165.997975pt;}
.y31{bottom:166.603400pt;}
.yba{bottom:168.037733pt;}
.y56{bottom:169.325457pt;}
.y218{bottom:172.274859pt;}
.y118{bottom:174.541092pt;}
.y17d{bottom:177.187108pt;}
.y85{bottom:179.983200pt;}
.y138{bottom:181.496133pt;}
.y19b{bottom:181.722533pt;}
.y1d3{bottom:183.308692pt;}
.y55{bottom:183.989807pt;}
.y217{bottom:184.974433pt;}
.y30{bottom:185.274067pt;}
.ye0{bottom:188.904667pt;}
.y117{bottom:191.171284pt;}
.y17c{bottom:193.891966pt;}
.y1d2{bottom:196.007200pt;}
.y84{bottom:197.368533pt;}
.y214{bottom:197.597209pt;}
.y216{bottom:197.824406pt;}
.y215{bottom:197.975871pt;}
.y54{bottom:198.654157pt;}
.y137{bottom:198.806800pt;}
.y19a{bottom:199.033200pt;}
.y2f{bottom:203.944733pt;}
.yb9{bottom:206.136400pt;}
.ydf{bottom:206.291333pt;}
.y116{bottom:207.876142pt;}
.y17b{bottom:210.522158pt;}
.y1d1{bottom:213.317917pt;}
.y83{bottom:214.679200pt;}
.y213{bottom:214.983658pt;}
.y136{bottom:216.116133pt;}
.y199{bottom:216.418533pt;}
.y53{bottom:221.331207pt;}
.y2e{bottom:222.615400pt;}
.yb8{bottom:223.447067pt;}
.yde{bottom:223.600667pt;}
.y115{bottom:224.506334pt;}
.y1d0{bottom:226.016425pt;}
.y17a{bottom:227.228083pt;}
.y212{bottom:227.607500pt;}
.y82{bottom:231.988533pt;}
.y135{bottom:233.426800pt;}
.y198{bottom:233.729200pt;}
.y52{bottom:235.995557pt;}
.y211{bottom:240.306008pt;}
.yb7{bottom:240.832400pt;}
.ydd{bottom:240.911333pt;}
.y114{bottom:241.211192pt;}
.y2d{bottom:241.286067pt;}
.y1cf{bottom:243.327142pt;}
.y179{bottom:243.857208pt;}
.y81{bottom:249.299200pt;}
.y134{bottom:250.812133pt;}
.y197{bottom:251.039867pt;}
.y1ce{bottom:256.025649pt;}
.y210{bottom:257.616725pt;}
.y113{bottom:257.841384pt;}
.yb6{bottom:258.143067pt;}
.ydc{bottom:258.296667pt;}
.y51{bottom:258.672607pt;}
.y2c{bottom:259.882000pt;}
.y178{bottom:260.487400pt;}
.y80{bottom:266.684533pt;}
.y133{bottom:268.122800pt;}
.y196{bottom:268.425200pt;}
.y1cb{bottom:268.649492pt;}
.y1cc{bottom:269.027087pt;}
.y20f{bottom:270.315233pt;}
.y1cd{bottom:270.992929pt;}
.y50{bottom:273.336957pt;}
.y112{bottom:274.547308pt;}
.yb5{bottom:275.452400pt;}
.ydb{bottom:275.607333pt;}
.y177{bottom:277.192258pt;}
.y2b{bottom:278.552667pt;}
.y20e{bottom:282.939075pt;}
.y7f{bottom:283.995200pt;}
.y132{bottom:285.433467pt;}
.y195{bottom:285.734533pt;}
.y1ca{bottom:286.034874pt;}
.y4f{bottom:288.001307pt;}
.y111{bottom:291.176434pt;}
.yb4{bottom:292.839067pt;}
.yda{bottom:292.916667pt;}
.y176{bottom:293.822450pt;}
.y2a{bottom:297.223333pt;}
.y1c9{bottom:298.658717pt;}
.y20d{bottom:300.324458pt;}
.y7e{bottom:301.305867pt;}
.y4e{bottom:302.666723pt;}
.y131{bottom:302.818800pt;}
.y194{bottom:303.045200pt;}
.y110{bottom:307.882358pt;}
.yb3{bottom:310.148400pt;}
.yd9{bottom:310.302000pt;}
.y175{bottom:310.528375pt;}
.y1c8{bottom:311.358291pt;}
.y20c{bottom:312.948300pt;}
.y29{bottom:315.894000pt;}
.y4d{bottom:317.331074pt;}
.y7d{bottom:318.691200pt;}
.y130{bottom:320.128133pt;}
.y193{bottom:320.430533pt;}
.y1c7{bottom:323.981067pt;}
.y10f{bottom:324.512550pt;}
.y20b{bottom:325.647875pt;}
.y174{bottom:327.157500pt;}
.yb2{bottom:327.459067pt;}
.yd8{bottom:327.612667pt;}
.y4b{bottom:331.995424pt;}
.y4c{bottom:332.373019pt;}
.y28{bottom:334.564667pt;}
.y7c{bottom:336.000533pt;}
.y12f{bottom:337.438800pt;}
.y192{bottom:337.741200pt;}
.y10e{bottom:341.217408pt;}
.y1c6{bottom:341.971600pt;}
.y20a{bottom:342.957525pt;}
.y173{bottom:343.863425pt;}
.yb1{bottom:344.768400pt;}
.yd7{bottom:344.923333pt;}
.y27{bottom:353.235333pt;}
.y7a{bottom:353.311200pt;}
.y7b{bottom:353.991200pt;}
.y4a{bottom:354.672473pt;}
.y12e{bottom:354.824133pt;}
.y191{bottom:355.051867pt;}
.y209{bottom:355.657100pt;}
.y10d{bottom:357.847600pt;}
.y172{bottom:360.493617pt;}
.yd6{bottom:362.232667pt;}
.yb0{bottom:367.445600pt;}
.y208{bottom:368.279875pt;}
.y79{bottom:370.696533pt;}
.y26{bottom:371.906000pt;}
.y12d{bottom:372.134800pt;}
.y190{bottom:372.437200pt;}
.y10c{bottom:374.552458pt;}
.y171{bottom:377.198475pt;}
.y49{bottom:377.349523pt;}
.y23c{bottom:377.653625pt;}
.yd5{bottom:379.619333pt;}
.y205{bottom:380.979450pt;}
.y207{bottom:381.206647pt;}
.y206{bottom:381.282379pt;}
.y1c5{bottom:385.967333pt;}
.y78{bottom:388.007200pt;}
.y12c{bottom:389.445467pt;}
.y18f{bottom:389.746533pt;}
.y23b{bottom:390.277467pt;}
.y25{bottom:390.576667pt;}
.y10b{bottom:391.182650pt;}
.y170{bottom:393.828667pt;}
.yd4{bottom:396.928667pt;}
.y204{bottom:398.290167pt;}
.y48{bottom:400.026573pt;}
.y77{bottom:405.316533pt;}
.yaf{bottom:405.619333pt;}
.y12b{bottom:406.830800pt;}
.y18e{bottom:407.057200pt;}
.y23a{bottom:407.662850pt;}
.y10a{bottom:407.888575pt;}
.y24{bottom:409.247333pt;}
.y16f{bottom:410.533525pt;}
.y203{bottom:410.988675pt;}
.y1c4{bottom:411.290000pt;}
.yd3{bottom:414.239333pt;}
.y239{bottom:420.286692pt;}
.y47{bottom:422.703623pt;}
.yae{bottom:422.930000pt;}
.y201{bottom:423.612517pt;}
.y202{bottom:423.990112pt;}
.y12a{bottom:424.140133pt;}
.y18d{bottom:424.367867pt;}
.y109{bottom:424.517700pt;}
.y16e{bottom:427.163717pt;}
.y23{bottom:427.918000pt;}
.y76{bottom:427.993600pt;}
.yd2{bottom:431.624667pt;}
.y238{bottom:432.985200pt;}
.y1c3{bottom:436.612667pt;}
.y45{bottom:437.367973pt;}
.y46{bottom:437.595170pt;}
.yad{bottom:440.240667pt;}
.y200{bottom:440.997900pt;}
.y108{bottom:441.223625pt;}
.y129{bottom:441.450800pt;}
.y18c{bottom:441.753200pt;}
.y16d{bottom:443.869641pt;}
.yd1{bottom:448.935333pt;}
.y237{bottom:450.295917pt;}
.y1ff{bottom:453.621742pt;}
.y22{bottom:457.247200pt;}
.yac{bottom:457.626000pt;}
.y107{bottom:457.852750pt;}
.y128{bottom:458.761467pt;}
.y18b{bottom:459.062533pt;}
.y44{bottom:459.969291pt;}
.y16c{bottom:460.498767pt;}
.y1c2{bottom:461.935333pt;}
.y75{bottom:462.691200pt;}
.y236{bottom:462.994425pt;}
.yd0{bottom:466.244667pt;}
.y1fe{bottom:470.931392pt;}
.y106{bottom:474.558675pt;}
.y43{bottom:474.633641pt;}
.yab{bottom:474.935333pt;}
.y127{bottom:476.146800pt;}
.y18a{bottom:476.373200pt;}
.y16b{bottom:477.204691pt;}
.y74{bottom:480.076533pt;}
.y235{bottom:480.305142pt;}
.y1fd{bottom:483.630967pt;}
.ycf{bottom:483.631333pt;}
.y1c1{bottom:487.258000pt;}
.y42{bottom:489.373723pt;}
.y105{bottom:491.188867pt;}
.y234{bottom:492.928984pt;}
.y126{bottom:493.456133pt;}
.y189{bottom:493.758533pt;}
.y16a{bottom:493.833817pt;}
.y1fb{bottom:496.330541pt;}
.y73{bottom:497.387200pt;}
.yaa{bottom:497.612533pt;}
.y1fc{bottom:498.598246pt;}
.yce{bottom:500.940667pt;}
.y41{bottom:504.038073pt;}
.y233{bottom:505.627492pt;}
.y104{bottom:507.817992pt;}
.y169{bottom:510.539741pt;}
.y125{bottom:510.766800pt;}
.y21{bottom:510.842033pt;}
.y188{bottom:511.069200pt;}
.y1c0{bottom:512.655333pt;}
.y1fa{bottom:513.640192pt;}
.y72{bottom:514.696533pt;}
.ycd{bottom:518.251333pt;}
.y40{bottom:518.703490pt;}
.y232{bottom:522.938209pt;}
.y103{bottom:524.523917pt;}
.y1f9{bottom:526.264034pt;}
.y168{bottom:527.169933pt;}
.y124{bottom:528.152133pt;}
.y187{bottom:528.379867pt;}
.y71{bottom:532.081867pt;}
.y3f{bottom:533.367840pt;}
.ycc{bottom:535.636667pt;}
.y231{bottom:535.636717pt;}
.ya9{bottom:535.710667pt;}
.y20{bottom:537.525433pt;}
.y1bf{bottom:537.978000pt;}
.y102{bottom:541.154109pt;}
.y1f8{bottom:543.649416pt;}
.y167{bottom:543.874791pt;}
.y123{bottom:545.462800pt;}
.y186{bottom:545.765200pt;}
.y3c{bottom:548.032190pt;}
.y230{bottom:548.260559pt;}
.y3e{bottom:548.334053pt;}
.y3d{bottom:550.299895pt;}
.y1e{bottom:550.829800pt;}
.y1f{bottom:551.055931pt;}
.ycb{bottom:552.947333pt;}
.ya8{bottom:553.096000pt;}
.ya6{bottom:553.096933pt;}
.y70{bottom:554.683333pt;}
.y1f7{bottom:556.273259pt;}
.y101{bottom:557.858967pt;}
.ya7{bottom:558.992000pt;}
.y166{bottom:560.504983pt;}
.y39{bottom:562.696540pt;}
.y122{bottom:562.773467pt;}
.y3b{bottom:562.923737pt;}
.y3a{bottom:562.998403pt;}
.y185{bottom:563.074533pt;}
.y1be{bottom:563.300667pt;}
.y1c{bottom:564.208833pt;}
.y1d{bottom:564.511762pt;}
.y22f{bottom:565.645941pt;}
.y1f6{bottom:568.972833pt;}
.yca{bottom:570.256667pt;}
.ya5{bottom:570.406267pt;}
.ya3{bottom:570.407333pt;}
.y100{bottom:574.489159pt;}
.ya4{bottom:576.302267pt;}
.y165{bottom:577.209841pt;}
.y1b{bottom:577.513200pt;}
.y22e{bottom:578.269784pt;}
.y121{bottom:580.158800pt;}
.y184{bottom:580.385200pt;}
.y38{bottom:584.541600pt;}
.y1f5{bottom:586.282483pt;}
.yc9{bottom:587.567333pt;}
.ya2{bottom:587.718000pt;}
.y1bd{bottom:588.623600pt;}
.y6f{bottom:589.457733pt;}
.y1a{bottom:590.816500pt;}
.y22d{bottom:590.969358pt;}
.yff{bottom:591.194017pt;}
.y164{bottom:593.840033pt;}
.y120{bottom:597.468133pt;}
.y183{bottom:597.695867pt;}
.y1f4{bottom:603.592134pt;}
.y19{bottom:604.196600pt;}
.yc8{bottom:604.952667pt;}
.ya1{bottom:605.103333pt;}
.y6e{bottom:606.768400pt;}
.yfe{bottom:607.824209pt;}
.y22c{bottom:608.279009pt;}
.y163{bottom:610.545958pt;}
.y11f{bottom:614.778800pt;}
.y182{bottom:615.081200pt;}
.y1f3{bottom:616.291708pt;}
.y18{bottom:617.499900pt;}
.y22a{bottom:620.978583pt;}
.y22b{bottom:621.204714pt;}
.yc7{bottom:622.263333pt;}
.ya0{bottom:622.414000pt;}
.y6d{bottom:624.077733pt;}
.yfd{bottom:624.529067pt;}
.yfb{bottom:624.530183pt;}
.y1bb{bottom:624.605600pt;}
.y1bc{bottom:625.285600pt;}
.y162{bottom:627.175083pt;}
.yfc{bottom:629.291333pt;}
.y17{bottom:630.878933pt;}
.y11e{bottom:632.089467pt;}
.y181{bottom:632.390533pt;}
.y1f2{bottom:633.602425pt;}
.y229{bottom:638.288233pt;}
.yc6{bottom:639.572667pt;}
.y9f{bottom:639.723333pt;}
.yfa{bottom:641.160376pt;}
.y6c{bottom:641.464400pt;}
.y1ba{bottom:641.914933pt;}
.y161{bottom:643.881008pt;}
.y16{bottom:644.183300pt;}
.y1f1{bottom:646.300933pt;}
.y11d{bottom:649.474800pt;}
.y228{bottom:650.987808pt;}
.yc5{bottom:656.959333pt;}
.y9e{bottom:657.034000pt;}
.y15{bottom:657.487667pt;}
.yf9{bottom:657.865233pt;}
.y6b{bottom:658.773733pt;}
.y1f0{bottom:658.924775pt;}
.y160{bottom:660.510133pt;}
.y37{bottom:661.796533pt;}
.y227{bottom:663.611650pt;}
.y1b9{bottom:664.592000pt;}
.y11c{bottom:666.784133pt;}
.y14{bottom:670.866700pt;}
.y1b1{bottom:671.698433pt;}
.yc4{bottom:674.268667pt;}
.y9d{bottom:674.419333pt;}
.yf8{bottom:674.495426pt;}
.y6a{bottom:676.084400pt;}
.y1ef{bottom:676.310158pt;}
.y36{bottom:677.140533pt;}
.y15e{bottom:677.217258pt;}
.y226{bottom:680.997033pt;}
.y15f{bottom:681.902267pt;}
.y13{bottom:684.170000pt;}
.y1ee{bottom:688.934000pt;}
.yf7{bottom:691.200283pt;}
.yc3{bottom:691.579333pt;}
.y9c{bottom:691.730000pt;}
.y35{bottom:692.409867pt;}
.y69{bottom:693.469733pt;}
.y225{bottom:693.620875pt;}
.y15d{bottom:693.847451pt;}
.y1b0{bottom:695.659733pt;}
.y1af{bottom:700.422000pt;}
.y1b8{bottom:700.500133pt;}
.y1eb{bottom:701.633575pt;}
.y1ed{bottom:701.859705pt;}
.y1ec{bottom:703.975946pt;}
.y224{bottom:706.319383pt;}
.y14c{bottom:706.999100pt;}
.y34{bottom:707.755200pt;}
.yf6{bottom:707.830475pt;}
.y12{bottom:708.207867pt;}
.y10{bottom:708.208400pt;}
.yc2{bottom:708.964667pt;}
.y9b{bottom:709.039333pt;}
.y15c{bottom:710.552308pt;}
.y68{bottom:710.780400pt;}
.y1b4{bottom:711.684933pt;}
.y1ae{bottom:711.685933pt;}
.y1b2{bottom:711.686804pt;}
.y11{bottom:713.499200pt;}
.y1b3{bottom:716.371600pt;}
.y1b7{bottom:717.885467pt;}
.y1ea{bottom:718.943225pt;}
.ye{bottom:722.872400pt;}
.yb{bottom:722.872933pt;}
.y33{bottom:723.099200pt;}
.yf{bottom:723.249200pt;}
.y223{bottom:723.630100pt;}
.yf5{bottom:724.535333pt;}
.yf3{bottom:724.535841pt;}
.yc{bottom:725.367733pt;}
.yc1{bottom:726.275333pt;}
.y15b{bottom:727.182500pt;}
.y1ad{bottom:727.634533pt;}
.y1ab{bottom:727.635404pt;}
.y67{bottom:728.089733pt;}
.yd{bottom:728.163733pt;}
.yf4{bottom:729.222000pt;}
.y14b{bottom:731.036133pt;}
.y1e8{bottom:731.642800pt;}
.y9a{bottom:731.716533pt;}
.y1e9{bottom:731.944663pt;}
.y1ac{bottom:732.396800pt;}
.y1b6{bottom:735.196133pt;}
.y14a{bottom:735.722800pt;}
.y222{bottom:736.328608pt;}
.y7{bottom:737.536933pt;}
.ya{bottom:737.762533pt;}
.y8{bottom:737.913733pt;}
.yf2{bottom:741.166033pt;}
.y9{bottom:742.828267pt;}
.yc0{bottom:743.584667pt;}
.y15a{bottom:743.887358pt;}
.y66{bottom:745.475067pt;}
.y149{bottom:746.985733pt;}
.y1e7{bottom:748.952450pt;}
.y148{bottom:751.748000pt;}
.y1b5{bottom:752.505467pt;}
.y1aa{bottom:752.655892pt;}
.yf1{bottom:757.871958pt;}
.y159{bottom:760.517550pt;}
.ybf{bottom:760.970000pt;}
.y1e6{bottom:761.652025pt;}
.y65{bottom:762.785733pt;}
.y147{bottom:763.012537pt;}
.y1a9{bottom:769.361816pt;}
.y99{bottom:769.890800pt;}
.y6{bottom:770.872933pt;}
.y1e5{bottom:774.274800pt;}
.yf0{bottom:774.501083pt;}
.y158{bottom:777.223475pt;}
.y221{bottom:778.961675pt;}
.y146{bottom:779.037937pt;}
.y64{bottom:780.096400pt;}
.ybe{bottom:783.571600pt;}
.y1a8{bottom:785.992008pt;}
.y98{bottom:787.201467pt;}
.yef{bottom:791.207008pt;}
.y1e4{bottom:791.661250pt;}
.y157{bottom:793.852600pt;}
.y63{bottom:797.405733pt;}
.y5{bottom:800.882533pt;}
.y1a7{bottom:802.696866pt;}
.y145{bottom:803.982692pt;}
.y1e3{bottom:804.285092pt;}
.y97{bottom:804.512133pt;}
.yee{bottom:807.836133pt;}
.yec{bottom:807.837047pt;}
.y156{bottom:810.482793pt;}
.yed{bottom:812.598400pt;}
.y62{bottom:814.792400pt;}
.y1e2{bottom:816.983600pt;}
.y1a6{bottom:819.327058pt;}
.y144{bottom:820.687550pt;}
.y220{bottom:821.594742pt;}
.y96{bottom:821.897467pt;}
.yeb{bottom:824.542972pt;}
.y155{bottom:827.187650pt;}
.y4{bottom:830.817733pt;}
.y61{bottom:832.101733pt;}
.y1e1{bottom:834.294317pt;}
.y1a5{bottom:836.031916pt;}
.y143{bottom:837.317742pt;}
.y95{bottom:839.208133pt;}
.yea{bottom:841.173164pt;}
.y154{bottom:843.817843pt;}
.y1e0{bottom:846.992825pt;}
.y60{bottom:849.412400pt;}
.y21f{bottom:851.603967pt;}
.y1a4{bottom:852.662108pt;}
.y142{bottom:854.022600pt;}
.y94{bottom:856.517467pt;}
.ye9{bottom:857.878022pt;}
.y1df{bottom:859.616667pt;}
.y153{bottom:860.523767pt;}
.y3{bottom:860.827333pt;}
.y21e{bottom:864.303542pt;}
.y5f{bottom:866.797733pt;}
.y1a3{bottom:869.368033pt;}
.y141{bottom:870.652792pt;}
.y1de{bottom:872.316241pt;}
.y93{bottom:873.902800pt;}
.ye8{bottom:874.508214pt;}
.y21d{bottom:876.926317pt;}
.y152{bottom:877.833417pt;}
.y5e{bottom:884.108400pt;}
.y1a2{bottom:886.677683pt;}
.y140{bottom:887.358716pt;}
.y1dd{bottom:889.625892pt;}
.y2{bottom:890.834533pt;}
.ye7{bottom:891.213072pt;}
.y92{bottom:891.213467pt;}
.y151{bottom:895.218800pt;}
.y14f{bottom:895.219422pt;}
.y150{bottom:899.905467pt;}
.y8e{bottom:900.958938pt;}
.y5d{bottom:901.417733pt;}
.y1dc{bottom:902.325466pt;}
.y1a1{bottom:903.987333pt;}
.y13f{bottom:903.987842pt;}
.y21c{bottom:906.936609pt;}
.ye6{bottom:907.843264pt;}
.y91{bottom:908.524133pt;}
.y1a0{bottom:908.749600pt;}
.y14e{bottom:912.530139pt;}
.y8d{bottom:915.623288pt;}
.y5c{bottom:918.803067pt;}
.y1db{bottom:919.635117pt;}
.y1{bottom:920.844000pt;}
.y13e{bottom:921.298559pt;}
.ye5{bottom:925.152914pt;}
.y90{bottom:925.833467pt;}
.y8c{bottom:930.288705pt;}
.y14d{bottom:932.258959pt;}
.y5b{bottom:941.404667pt;}
.y8f{bottom:943.218800pt;}
.y13d{bottom:944.655067pt;}
.y8b{bottom:944.953055pt;}
.ye4{bottom:944.957467pt;}
.y1d9{bottom:945.183597pt;}
.y1da{bottom:945.259330pt;}
.y8a{bottom:994.393600pt;}
.h11{height:22.041000pt;}
.h12{height:22.069440pt;}
.h4{height:24.828689pt;}
.h10{height:26.663600pt;}
.ha{height:31.082945pt;}
.h1{height:33.066253pt;}
.h6{height:33.108919pt;}
.h5{height:34.148438pt;}
.hc{height:34.772899pt;}
.hb{height:36.052883pt;}
.h3{height:37.248000pt;}
.h8{height:39.266667pt;}
.h9{height:40.000000pt;}
.he{height:41.333333pt;}
.hf{height:49.599587pt;}
.hd{height:49.663586pt;}
.h7{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:48.000000pt;}
.x31{left:54.878667pt;}
.x2a{left:58.658000pt;}
.x19{left:63.496000pt;}
.x1a{left:90.632727pt;}
.x2b{left:96.000000pt;}
.x2c{left:100.384133pt;}
.x2e{left:106.507067pt;}
.x3d{left:108.925867pt;}
.x2f{left:113.385733pt;}
.x39{left:114.822000pt;}
.x1f{left:128.956515pt;}
.x2d{left:144.604667pt;}
.x1d{left:152.238357pt;}
.x1e{left:174.310615pt;}
.x1b{left:181.340927pt;}
.x1c{left:224.729185pt;}
.x3e{left:232.592000pt;}
.x3f{left:237.051867pt;}
.x38{left:258.899656pt;}
.x1{left:266.683333pt;}
.xb{left:269.027333pt;}
.x41{left:273.184133pt;}
.x3c{left:277.117028pt;}
.x20{left:282.632667pt;}
.x33{left:295.859302pt;}
.x42{left:302.361369pt;}
.x4c{left:303.570953pt;}
.x53{left:308.182096pt;}
.x32{left:311.355641pt;}
.x4f{left:315.816134pt;}
.x2{left:316.723333pt;}
.xc{left:318.311733pt;}
.xd{left:330.708533pt;}
.x49{left:332.748189pt;}
.x4d{left:351.344223pt;}
.x5a{left:375.683446pt;}
.x34{left:380.447200pt;}
.x4e{left:383.469688pt;}
.x3{left:389.669200pt;}
.x4{left:394.582667pt;}
.x54{left:396.395393pt;}
.x47{left:399.343623pt;}
.x13{left:408.491333pt;}
.xe{left:414.613733pt;}
.x14{left:420.812533pt;}
.x48{left:426.707548pt;}
.x29{left:447.645138pt;}
.x50{left:452.634690pt;}
.x5{left:462.386267pt;}
.x40{left:467.526000pt;}
.xf{left:473.877067pt;}
.x35{left:476.598400pt;}
.x25{left:481.965333pt;}
.x10{left:486.274000pt;}
.x26{left:489.675467pt;}
.x51{left:490.580883pt;}
.x15{left:512.579467pt;}
.x16{left:517.492800pt;}
.x6{left:524.522267pt;}
.x55{left:533.213950pt;}
.x36{left:543.269200pt;}
.x4a{left:545.913524pt;}
.x22{left:548.031467pt;}
.x43{left:551.355589pt;}
.x4b{left:554.076622pt;}
.x7{left:555.212533pt;}
.x8{left:560.201467pt;}
.x27{left:566.777867pt;}
.x28{left:571.540133pt;}
.x21{left:575.316667pt;}
.x44{left:588.243662pt;}
.x11{left:593.763733pt;}
.x5b{left:599.053454pt;}
.x17{left:600.791157pt;}
.x12{left:606.084933pt;}
.x56{left:616.589974pt;}
.x23{left:630.576267pt;}
.x24{left:635.262933pt;}
.x37{left:658.015733pt;}
.x45{left:660.583024pt;}
.x57{left:664.211779pt;}
.x52{left:696.337244pt;}
.x3a{left:701.177867pt;}
.x9{left:702.916533pt;}
.x3b{left:705.637733pt;}
.x58{left:708.659223pt;}
.x46{left:710.472534pt;}
.x30{left:711.681188pt;}
.xa{left:715.237733pt;}
.x59{left:741.691344pt;}
}




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