
    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_575c451c1e42ce60ee4f909c.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_9bf962cd624ec0a28046b209.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_2206ae011c3351b50e84fbf8.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_0d1709f7443e11f318e8f047.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_715eefcd8649bcdf58ff8e9d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e7ce56bf4da7af9ef4c811f9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d94b80da78ec8556f7d72e94.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_873d0f1b35f6a4840e7a7e9f.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_be1481d7bbaa2d3b2ff675f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.715000;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_e0dafa3c8e67fb1952f16981.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_90f5de4bfd1a567dd4734055.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d6bcc35f0575bf7715a41cb8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d39d5e589468ddbc365657f7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_73946052a889d8e7786d945a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.972000;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;}
.vc{vertical-align:-16.800110px;}
.v5{vertical-align:-14.786842px;}
.ve{vertical-align:-12.000000px;}
.v6{vertical-align:-1.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.487915px;}
.vb{vertical-align:14.700073px;}
.v7{vertical-align:17.313572px;}
.v8{vertical-align:19.199982px;}
.v3{vertical-align:24.000000px;}
.v2{vertical-align:26.400147px;}
.v9{vertical-align:52.080002px;}
.vd{vertical-align:54.000000px;}
.va{vertical-align:71.271559px;}
.ls16{letter-spacing:-3.168000px;}
.ls27{letter-spacing:-1.632000px;}
.ls1b{letter-spacing:-1.344000px;}
.ls15{letter-spacing:-0.529200px;}
.ls2a{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.336000px;}
.ls2e{letter-spacing:-0.294000px;}
.ls25{letter-spacing:-0.192000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000002px;}
.ls3{letter-spacing:0.000008px;}
.ls18{letter-spacing:0.000025px;}
.ls17{letter-spacing:0.000030px;}
.ls2{letter-spacing:0.000094px;}
.ls2d{letter-spacing:0.000098px;}
.ls1{letter-spacing:0.000177px;}
.ls13{letter-spacing:0.000399px;}
.ls11{letter-spacing:0.205660px;}
.ls12{letter-spacing:0.206576px;}
.ls2c{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.294000px;}
.ls29{letter-spacing:0.384000px;}
.ls28{letter-spacing:0.768000px;}
.lsf{letter-spacing:0.823092px;}
.lse{letter-spacing:1.176000px;}
.ls14{letter-spacing:1.293600px;}
.ls0{letter-spacing:5.460000px;}
.ls2b{letter-spacing:21.179454px;}
.ls19{letter-spacing:40.152660px;}
.ls1d{letter-spacing:108.670164px;}
.lsa{letter-spacing:118.416000px;}
.ls9{letter-spacing:119.712005px;}
.ls1a{letter-spacing:120.669628px;}
.lsb{letter-spacing:121.727999px;}
.lsc{letter-spacing:123.504007px;}
.ls8{letter-spacing:128.928000px;}
.ls23{letter-spacing:139.678160px;}
.ls6{letter-spacing:143.136005px;}
.ls1e{letter-spacing:148.797544px;}
.ls7{letter-spacing:152.352000px;}
.lsd{letter-spacing:156.143999px;}
.ls1c{letter-spacing:156.381590px;}
.ls24{letter-spacing:171.453550px;}
.ls1f{letter-spacing:172.220945px;}
.ls22{letter-spacing:218.876951px;}
.ls21{letter-spacing:250.652342px;}
.ls20{letter-spacing:320.587804px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.216000px;}
.ws5c{word-spacing:-15.111600px;}
.ws5d{word-spacing:-14.112000px;}
.ws4{word-spacing:-13.986000px;}
.ws7{word-spacing:-13.818000px;}
.wsbd{word-spacing:-13.706280px;}
.ws110{word-spacing:-13.524000px;}
.ws5e{word-spacing:-13.288800px;}
.ws2{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.ws5f{word-spacing:-10.908000px;}
.ws6{word-spacing:-10.800000px;}
.ws1b{word-spacing:-10.512000px;}
.ws12d{word-spacing:-10.508400px;}
.ws1{word-spacing:-10.117800px;}
.wsbf{word-spacing:-10.101600px;}
.ws128{word-spacing:-9.855000px;}
.ws19{word-spacing:-9.672600px;}
.ws127{word-spacing:-9.315000px;}
.ws5{word-spacing:-9.198000px;}
.ws1c{word-spacing:-7.358400px;}
.ws61{word-spacing:-7.344000px;}
.ws129{word-spacing:-6.898500px;}
.ws60{word-spacing:-6.787200px;}
.ws9f{word-spacing:-6.232800px;}
.ws111{word-spacing:-5.979941px;}
.ws9{word-spacing:-2.772000px;}
.ws5b{word-spacing:-1.680000px;}
.ws6e{word-spacing:-1.176000px;}
.ws124{word-spacing:-0.999600px;}
.ws91{word-spacing:-0.882000px;}
.ws8f{word-spacing:-0.588000px;}
.ws11f{word-spacing:-0.529200px;}
.wsbe{word-spacing:-0.517440px;}
.ws25{word-spacing:-0.470400px;}
.ws11c{word-spacing:-0.411600px;}
.ws10a{word-spacing:-0.352800px;}
.ws51{word-spacing:-0.294000px;}
.ws10e{word-spacing:-0.240000px;}
.ws2e{word-spacing:-0.235200px;}
.ws39{word-spacing:-0.176400px;}
.ws64{word-spacing:-0.117600px;}
.ws12e{word-spacing:-0.090000px;}
.ws28{word-spacing:-0.058800px;}
.ws12f{word-spacing:-0.045000px;}
.ws8{word-spacing:0.000000px;}
.ws1a{word-spacing:0.023520px;}
.ws2b{word-spacing:0.058800px;}
.wsd8{word-spacing:0.117600px;}
.ws30{word-spacing:0.235200px;}
.ws120{word-spacing:0.294000px;}
.ws10d{word-spacing:0.336000px;}
.ws7a{word-spacing:0.352800px;}
.wsb{word-spacing:0.470400px;}
.wsff{word-spacing:0.529200px;}
.ws2f{word-spacing:0.646800px;}
.ws78{word-spacing:0.705600px;}
.wsaf{word-spacing:0.764400px;}
.ws53{word-spacing:0.823200px;}
.ws2a{word-spacing:0.882000px;}
.wsa5{word-spacing:0.940800px;}
.wsd6{word-spacing:0.999600px;}
.wscc{word-spacing:1.058400px;}
.ws18{word-spacing:1.117200px;}
.ws86{word-spacing:1.176000px;}
.ws3d{word-spacing:1.293600px;}
.ws36{word-spacing:1.352400px;}
.wsca{word-spacing:1.470000px;}
.wsdc{word-spacing:1.528800px;}
.ws12{word-spacing:1.587600px;}
.ws29{word-spacing:1.646400px;}
.wsad{word-spacing:1.705200px;}
.wscb{word-spacing:1.764000px;}
.ws49{word-spacing:1.822800px;}
.ws10c{word-spacing:1.890000px;}
.wsa{word-spacing:2.116800px;}
.wsb5{word-spacing:2.175600px;}
.ws80{word-spacing:2.293200px;}
.wscd{word-spacing:2.352000px;}
.ws58{word-spacing:2.410800px;}
.ws68{word-spacing:2.528400px;}
.ws27{word-spacing:2.587200px;}
.wsd7{word-spacing:2.646000px;}
.ws11a{word-spacing:2.704800px;}
.wscf{word-spacing:2.763600px;}
.ws41{word-spacing:2.822400px;}
.ws65{word-spacing:2.998800px;}
.ws33{word-spacing:3.057600px;}
.ws126{word-spacing:3.116400px;}
.ws3b{word-spacing:3.175200px;}
.wsdf{word-spacing:3.234000px;}
.ws106{word-spacing:3.292800px;}
.ws119{word-spacing:3.351600px;}
.wsba{word-spacing:3.410400px;}
.wsb6{word-spacing:3.469200px;}
.wsb8{word-spacing:3.645600px;}
.wsb2{word-spacing:3.704400px;}
.ws98{word-spacing:3.763200px;}
.ws125{word-spacing:3.822000px;}
.ws92{word-spacing:3.880800px;}
.ws50{word-spacing:3.939600px;}
.ws70{word-spacing:3.998400px;}
.wsfb{word-spacing:4.057200px;}
.wsfd{word-spacing:4.116000px;}
.wseb{word-spacing:4.174800px;}
.ws121{word-spacing:4.233600px;}
.ws13{word-spacing:4.292400px;}
.ws26{word-spacing:4.410000px;}
.ws7e{word-spacing:4.468800px;}
.ws34{word-spacing:4.527600px;}
.ws3e{word-spacing:4.586400px;}
.ws89{word-spacing:4.645200px;}
.wsfc{word-spacing:4.704000px;}
.ws52{word-spacing:4.762800px;}
.wsda{word-spacing:4.821600px;}
.ws105{word-spacing:4.880400px;}
.wsd5{word-spacing:4.939200px;}
.ws77{word-spacing:4.998000px;}
.ws95{word-spacing:5.056800px;}
.ws2d{word-spacing:5.115600px;}
.ws6c{word-spacing:5.174400px;}
.ws113{word-spacing:5.233200px;}
.wsbb{word-spacing:5.238000px;}
.ws72{word-spacing:5.292000px;}
.wsb4{word-spacing:5.350800px;}
.ws8a{word-spacing:5.409600px;}
.ws3a{word-spacing:5.468400px;}
.ws17{word-spacing:5.527200px;}
.wsb0{word-spacing:5.586000px;}
.wsae{word-spacing:5.644800px;}
.ws40{word-spacing:5.703600px;}
.ws9a{word-spacing:5.762400px;}
.ws7b{word-spacing:5.821200px;}
.ws16{word-spacing:5.880000px;}
.ws31{word-spacing:5.938800px;}
.wsd4{word-spacing:5.997600px;}
.wsfe{word-spacing:6.056400px;}
.ws116{word-spacing:6.115200px;}
.ws114{word-spacing:6.174000px;}
.ws37{word-spacing:6.232800px;}
.ws20{word-spacing:6.291600px;}
.wse2{word-spacing:6.350400px;}
.wsb3{word-spacing:6.468000px;}
.ws42{word-spacing:6.526800px;}
.wse6{word-spacing:6.585600px;}
.ws6d{word-spacing:6.644400px;}
.wsb9{word-spacing:6.762000px;}
.ws55{word-spacing:6.820800px;}
.ws44{word-spacing:6.938400px;}
.ws108{word-spacing:7.056000px;}
.ws99{word-spacing:7.232400px;}
.wsea{word-spacing:7.291200px;}
.ws12b{word-spacing:7.350000px;}
.ws118{word-spacing:7.408800px;}
.ws117{word-spacing:7.526400px;}
.wsec{word-spacing:7.585200px;}
.wsa6{word-spacing:7.644000px;}
.ws46{word-spacing:7.702800px;}
.ws45{word-spacing:7.761600px;}
.ws4a{word-spacing:7.820400px;}
.ws7c{word-spacing:7.879200px;}
.ws82{word-spacing:7.938000px;}
.ws8e{word-spacing:7.996800px;}
.ws63{word-spacing:8.055600px;}
.ws73{word-spacing:8.114400px;}
.ws35{word-spacing:8.173200px;}
.ws122{word-spacing:8.232000px;}
.ws38{word-spacing:8.290800px;}
.wsde{word-spacing:8.349600px;}
.ws8d{word-spacing:8.408400px;}
.wsdb{word-spacing:8.467200px;}
.ws3f{word-spacing:8.526000px;}
.wsb1{word-spacing:8.584800px;}
.ws4c{word-spacing:8.643600px;}
.wsef{word-spacing:8.702400px;}
.ws4f{word-spacing:8.761200px;}
.wsb7{word-spacing:8.820000px;}
.ws32{word-spacing:9.114000px;}
.ws43{word-spacing:9.172800px;}
.wsd1{word-spacing:9.231600px;}
.wsd0{word-spacing:9.290400px;}
.ws56{word-spacing:9.349200px;}
.ws21{word-spacing:9.466800px;}
.ws69{word-spacing:9.525600px;}
.ws97{word-spacing:9.584400px;}
.wsd2{word-spacing:9.643200px;}
.ws59{word-spacing:9.760800px;}
.ws115{word-spacing:9.819600px;}
.ws67{word-spacing:9.996000px;}
.wsa7{word-spacing:10.054800px;}
.ws100{word-spacing:10.113600px;}
.wsab{word-spacing:10.231200px;}
.wsbc{word-spacing:10.314000px;}
.ws4d{word-spacing:10.525200px;}
.ws109{word-spacing:10.584000px;}
.wsaa{word-spacing:10.642800px;}
.wsa9{word-spacing:10.760400px;}
.ws9b{word-spacing:10.878000px;}
.ws96{word-spacing:10.936800px;}
.ws10f{word-spacing:10.962000px;}
.ws3c{word-spacing:11.054400px;}
.wse3{word-spacing:11.466000px;}
.wsc{word-spacing:11.583600px;}
.ws76{word-spacing:11.642400px;}
.wsd{word-spacing:11.701200px;}
.ws5a{word-spacing:11.818800px;}
.ws102{word-spacing:11.877600px;}
.ws57{word-spacing:11.995200px;}
.wse8{word-spacing:12.054000px;}
.wse7{word-spacing:12.112800px;}
.ws84{word-spacing:12.171600px;}
.ws54{word-spacing:12.230400px;}
.wsdd{word-spacing:12.289200px;}
.wsfa{word-spacing:12.465600px;}
.ws88{word-spacing:12.642000px;}
.ws12c{word-spacing:12.700800px;}
.wsa8{word-spacing:12.818400px;}
.ws6b{word-spacing:12.994800px;}
.ws9e{word-spacing:13.014000px;}
.wsed{word-spacing:13.230000px;}
.wse1{word-spacing:13.288800px;}
.ws11b{word-spacing:13.406400px;}
.wsc9{word-spacing:13.465200px;}
.ws12a{word-spacing:13.524000px;}
.ws2c{word-spacing:13.700400px;}
.ws24{word-spacing:13.818000px;}
.ws22{word-spacing:13.876800px;}
.ws66{word-spacing:13.994400px;}
.ws75{word-spacing:14.053200px;}
.ws14{word-spacing:14.170800px;}
.ws23{word-spacing:14.288400px;}
.ws112{word-spacing:14.582400px;}
.ws74{word-spacing:15.052801px;}
.ws123{word-spacing:15.229200px;}
.wsac{word-spacing:15.346800px;}
.ws7d{word-spacing:15.581999px;}
.ws83{word-spacing:16.346400px;}
.ws4b{word-spacing:16.405201px;}
.ws47{word-spacing:16.522799px;}
.ws48{word-spacing:16.640400px;}
.ws11d{word-spacing:16.699200px;}
.ws103{word-spacing:16.875600px;}
.ws8c{word-spacing:16.934399px;}
.ws9c{word-spacing:17.110800px;}
.wsee{word-spacing:17.228401px;}
.wse4{word-spacing:17.287200px;}
.ws85{word-spacing:17.404800px;}
.ws11e{word-spacing:17.463600px;}
.ws107{word-spacing:17.522400px;}
.ws15{word-spacing:17.640001px;}
.wse0{word-spacing:17.698800px;}
.ws93{word-spacing:17.816400px;}
.ws1f{word-spacing:17.875200px;}
.ws104{word-spacing:17.992800px;}
.ws8b{word-spacing:18.228000px;}
.ws4e{word-spacing:18.580801px;}
.ws7f{word-spacing:18.757200px;}
.ws71{word-spacing:19.109999px;}
.wse9{word-spacing:19.227600px;}
.ws6a{word-spacing:19.462800px;}
.ws1e{word-spacing:19.933199px;}
.ws10b{word-spacing:20.227200px;}
.ws6f{word-spacing:20.344799px;}
.ws101{word-spacing:20.462399px;}
.ws87{word-spacing:20.521200px;}
.wsce{word-spacing:20.580000px;}
.wsd9{word-spacing:20.815200px;}
.wsd3{word-spacing:20.991600px;}
.ws81{word-spacing:21.226800px;}
.ws11{word-spacing:21.403200px;}
.ws94{word-spacing:22.285200px;}
.wsf0{word-spacing:22.461600px;}
.ws10{word-spacing:22.520399px;}
.ws90{word-spacing:24.578402px;}
.wse{word-spacing:25.048801px;}
.wsf{word-spacing:25.578001px;}
.ws9d{word-spacing:27.107998px;}
.ws79{word-spacing:27.459601px;}
.wse5{word-spacing:29.694001px;}
.wsf1{word-spacing:38.502000px;}
.wsf4{word-spacing:39.168000px;}
.wsc3{word-spacing:121.588796px;}
.wsf3{word-spacing:130.320000px;}
.wsf2{word-spacing:171.696007px;}
.ws62{word-spacing:207.647995px;}
.wsc6{word-spacing:224.159996px;}
.wsc7{word-spacing:225.503996px;}
.wsc2{word-spacing:226.079996px;}
.wsa3{word-spacing:231.936001px;}
.wsa4{word-spacing:234.720001px;}
.wsc4{word-spacing:237.695996px;}
.wsc1{word-spacing:240.959996px;}
.wsc5{word-spacing:248.975996px;}
.wsf8{word-spacing:265.344003px;}
.wsc0{word-spacing:265.631996px;}
.wsf6{word-spacing:276.672007px;}
.wsf9{word-spacing:277.584010px;}
.wsa2{word-spacing:277.967998px;}
.wsf7{word-spacing:285.359995px;}
.wsa0{word-spacing:320.404820px;}
.wsc8{word-spacing:325.919997px;}
.wsf5{word-spacing:350.687999px;}
.wsa1{word-spacing:353.040020px;}
.ws1d{word-spacing:366.336010px;}
._52{margin-left:-38.294984px;}
._1f{margin-left:-26.900982px;}
._53{margin-left:-22.410003px;}
._20{margin-left:-11.016002px;}
._b{margin-left:-9.065992px;}
._a{margin-left:-7.759182px;}
._3{margin-left:-5.668764px;}
._4{margin-left:-3.771021px;}
._6{margin-left:-2.496732px;}
._0{margin-left:-1.204818px;}
._2{width:1.296000px;}
._5{width:2.526526px;}
._1{width:3.638418px;}
._e{width:5.697720px;}
._d{width:6.811145px;}
._10{width:7.991976px;}
._2d{width:9.167832px;}
._12{width:10.241337px;}
._1d{width:12.093962px;}
._f{width:13.448758px;}
._8{width:14.520002px;}
._9{width:15.900005px;}
._7{width:17.044831px;}
._11{width:19.098240px;}
._1e{width:20.149933px;}
._c{width:21.403163px;}
._83{width:22.491020px;}
._21{width:27.244236px;}
._61{width:36.780119px;}
._54{width:38.562019px;}
._36{width:39.643194px;}
._14{width:41.040007px;}
._82{width:44.271020px;}
._5d{width:48.700615px;}
._34{width:58.703998px;}
._65{width:61.226653px;}
._31{width:62.351994px;}
._35{width:63.551994px;}
._68{width:70.451843px;}
._64{width:71.519993px;}
._33{width:75.312020px;}
._28{width:77.183977px;}
._2f{width:80.495990px;}
._38{width:82.127998px;}
._30{width:84.911994px;}
._1b{width:86.304741px;}
._69{width:95.022498px;}
._37{width:96.576020px;}
._6b{width:100.057455px;}
._62{width:101.108879px;}
._63{width:105.599999px;}
._55{width:108.431996px;}
._2e{width:116.735981px;}
._4c{width:119.755193px;}
._16{width:121.248010px;}
._67{width:123.764230px;}
._3d{width:125.232005px;}
._49{width:135.023995px;}
._46{width:139.199990px;}
._17{width:142.512010px;}
._44{width:143.517108px;}
._4b{width:144.674887px;}
._6a{width:146.692817px;}
._56{width:149.855997px;}
._48{width:151.871993px;}
._27{width:157.055977px;}
._66{width:158.639984px;}
._19{width:162.340828px;}
._47{width:166.943981px;}
._4a{width:168.098882px;}
._3e{width:169.103993px;}
._4d{width:173.951995px;}
._57{width:176.496019px;}
._13{width:177.936010px;}
._39{width:180.960020px;}
._2a{width:198.148795px;}
._5e{width:202.943997px;}
._3b{width:204.292838px;}
._3a{width:211.169494px;}
._22{width:213.720586px;}
._3f{width:215.472001px;}
._26{width:218.159995px;}
._25{width:223.776000px;}
._18{width:226.896010px;}
._50{width:228.912727px;}
._6c{width:234.580817px;}
._5b{width:235.727997px;}
._5f{width:241.918118px;}
._23{width:243.412837px;}
._32{width:244.751981px;}
._5a{width:248.447996px;}
._1c{width:250.228828px;}
._5c{width:255.473467px;}
._1a{width:257.105484px;}
._15{width:258.432010px;}
._29{width:262.703977px;}
._45{width:263.855995px;}
._41{width:268.891163px;}
._58{width:275.951996px;}
._2c{width:286.036795px;}
._2b{width:292.913451px;}
._24{width:294.239977px;}
._40{width:303.071993px;}
._3c{width:305.280003px;}
._60{width:306.815992px;}
._59{width:314.207997px;}
._6d{width:346.031988px;}
._4e{width:369.503995px;}
._51{width:392.836813px;}
._4f{width:399.713469px;}
._73{width:406.319988px;}
._72{width:420.623988px;}
._43{width:433.296003px;}
._6e{width:439.151988px;}
._70{width:445.679988px;}
._74{width:474.672001px;}
._76{width:491.443425px;}
._6f{width:498.096001px;}
._75{width:506.636094px;}
._77{width:515.299183px;}
._71{width:530.064001px;}
._42{width:605.375995px;}
._7b{width:675.983972px;}
._7d{width:714.911972px;}
._81{width:746.448753px;}
._7a{width:804.815972px;}
._78{width:838.080022px;}
._7f{width:845.908790px;}
._7c{width:857.856003px;}
._7e{width:910.463972px;}
._80{width:917.249496px;}
._79{width:990.479993px;}
.fc3{color:rgb(84,126,171);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:29.400001px;}
.fsa{font-size:31.500000px;}
.fse{font-size:33.599999px;}
.fs12{font-size:37.800001px;}
.fs11{font-size:40.800001px;}
.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;}
.fs10{font-size:53.349003px;}
.fsd{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;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:77.317200px;}
.y21{bottom:89.318699px;}
.y20{bottom:101.320198px;}
.y25e{bottom:105.113694px;}
.y1e7{bottom:105.925495px;}
.y12d{bottom:105.961647px;}
.y186{bottom:107.393545px;}
.y1d9{bottom:108.797243px;}
.y70{bottom:108.811643px;}
.y1b0{bottom:110.321995px;}
.y9a{bottom:110.875347px;}
.y165{bottom:111.521999px;}
.y1f{bottom:113.321697px;}
.y30c{bottom:115.358548px;}
.y2a0{bottom:115.613685px;}
.y2e6{bottom:115.613696px;}
.y219{bottom:117.746967px;}
.y25d{bottom:118.613695px;}
.y1e6{bottom:122.927399px;}
.y12c{bottom:122.963699px;}
.y1e{bottom:125.323196px;}
.y185{bottom:125.494371px;}
.y30b{bottom:125.857498px;}
.y1d8{bottom:126.790043px;}
.ye0{bottom:126.797243px;}
.y6f{bottom:126.804443px;}
.ybc{bottom:126.900745px;}
.y1af{bottom:128.556005px;}
.y29f{bottom:129.113686px;}
.y2e5{bottom:129.113697px;}
.y99{bottom:129.573453px;}
.y164{bottom:129.755998px;}
.y218{bottom:131.246967px;}
.y25c{bottom:132.113695px;}
.y139{bottom:140.658464px;}
.y1f2{bottom:141.228893px;}
.y29e{bottom:142.613686px;}
.y2e4{bottom:142.613697px;}
.y184{bottom:143.487171px;}
.y217{bottom:144.746967px;}
.y1d7{bottom:144.782843px;}
.ydf{bottom:144.790043px;}
.y6e{bottom:144.797243px;}
.ybb{bottom:144.893545px;}
.y25b{bottom:145.613695px;}
.y1ae{bottom:146.706003px;}
.y163{bottom:147.905996px;}
.y98{bottom:148.201504px;}
.y29d{bottom:156.113686px;}
.y2e3{bottom:156.113697px;}
.y216{bottom:158.246968px;}
.y30a{bottom:158.391907px;}
.y39{bottom:158.587498px;}
.y138{bottom:158.886465px;}
.y25a{bottom:159.113696px;}
.y1f1{bottom:159.456894px;}
.y183{bottom:161.479971px;}
.y1d6{bottom:162.775642px;}
.yde{bottom:162.782843px;}
.y6d{bottom:162.790043px;}
.yba{bottom:162.886345px;}
.y1ad{bottom:164.863499px;}
.y162{bottom:166.056005px;}
.y97{bottom:166.825505px;}
.y29c{bottom:169.613687px;}
.y2e2{bottom:169.613698px;}
.y215{bottom:171.746968px;}
.y38{bottom:172.087498px;}
.y259{bottom:172.613696px;}
.y34{bottom:173.276104px;}
.y309{bottom:177.006908px;}
.y137{bottom:177.030464px;}
.y1f0{bottom:177.600893px;}
.y182{bottom:179.472770px;}
.y1d5{bottom:180.768442px;}
.ydd{bottom:180.775642px;}
.y6c{bottom:180.782843px;}
.yb9{bottom:180.929546px;}
.y1ac{bottom:183.007498px;}
.y29b{bottom:183.113687px;}
.y2e1{bottom:183.113698px;}
.y161{bottom:184.205991px;}
.y214{bottom:185.246968px;}
.y96{bottom:185.451588px;}
.y258{bottom:186.113696px;}
.y37{bottom:190.087498px;}
.y33{bottom:191.268906px;}
.y136{bottom:195.174463px;}
.y308{bottom:195.621909px;}
.y1ef{bottom:195.744892px;}
.y29a{bottom:196.613687px;}
.y2e0{bottom:196.613698px;}
.y181{bottom:197.465570px;}
.y213{bottom:198.746969px;}
.y1d4{bottom:198.761242px;}
.ydc{bottom:198.768442px;}
.y6b{bottom:198.775642px;}
.yb8{bottom:198.922346px;}
.y36{bottom:199.087509px;}
.y257{bottom:199.613697px;}
.y1ab{bottom:201.151497px;}
.y160{bottom:202.356001px;}
.y95{bottom:204.077694px;}
.y32{bottom:209.261696px;}
.y299{bottom:210.113688px;}
.y2df{bottom:210.113699px;}
.y212{bottom:212.246969px;}
.y256{bottom:213.113697px;}
.y135{bottom:213.318463px;}
.y1ee{bottom:213.888892px;}
.y307{bottom:214.236910px;}
.y180{bottom:215.458370px;}
.y1d3{bottom:216.754042px;}
.ydb{bottom:216.761242px;}
.y6a{bottom:216.768442px;}
.yb7{bottom:216.915146px;}
.y1aa{bottom:219.295497px;}
.y15f{bottom:220.506010px;}
.y94{bottom:222.695704px;}
.y298{bottom:223.613688px;}
.y2de{bottom:223.613699px;}
.y211{bottom:225.746969px;}
.y255{bottom:226.613697px;}
.y31{bottom:227.297699px;}
.y134{bottom:231.462462px;}
.y1ed{bottom:232.032891px;}
.y306{bottom:232.851910px;}
.y17f{bottom:233.451170px;}
.yda{bottom:234.754042px;}
.y69{bottom:234.761242px;}
.yb6{bottom:234.907946px;}
.y297{bottom:237.113688px;}
.y2dd{bottom:237.113699px;}
.y1a9{bottom:237.451497px;}
.y15e{bottom:238.655996px;}
.y210{bottom:239.246970px;}
.y254{bottom:240.113698px;}
.y93{bottom:240.853810px;}
.y29{bottom:244.514557px;}
.y30{bottom:245.290489px;}
.y133{bottom:249.606462px;}
.y1ec{bottom:250.176891px;}
.y296{bottom:250.613689px;}
.y2dc{bottom:250.613700px;}
.y17e{bottom:251.443970px;}
.y305{bottom:251.466911px;}
.yd9{bottom:252.746841px;}
.y20f{bottom:252.746970px;}
.y68{bottom:252.754042px;}
.yb5{bottom:252.900745px;}
.y253{bottom:253.613698px;}
.y92{bottom:254.353810px;}
.y1a8{bottom:255.595496px;}
.y15d{bottom:256.806005px;}
.y28{bottom:262.507347px;}
.y2f{bottom:263.283302px;}
.y295{bottom:264.113689px;}
.y2db{bottom:264.113700px;}
.y20e{bottom:266.246970px;}
.y252{bottom:267.113698px;}
.y132{bottom:267.750461px;}
.y1eb{bottom:268.320890px;}
.y17d{bottom:269.436769px;}
.y67{bottom:270.746841px;}
.yd8{bottom:270.761402px;}
.y1d2{bottom:270.833381px;}
.yb4{bottom:270.893545px;}
.y91{bottom:272.979893px;}
.y15c{bottom:274.955991px;}
.y294{bottom:277.613689px;}
.y2da{bottom:277.613700px;}
.y20d{bottom:279.746971px;}
.y27{bottom:280.500160px;}
.y251{bottom:280.613699px;}
.y2e{bottom:281.276093px;}
.y1a7{bottom:282.487495px;}
.y304{bottom:282.857253px;}
.y131{bottom:285.894460px;}
.y1ea{bottom:286.464889px;}
.y17c{bottom:287.429569px;}
.yd7{bottom:288.754202px;}
.y1d1{bottom:288.826181px;}
.y66{bottom:288.833381px;}
.yb3{bottom:288.886345px;}
.y293{bottom:291.113690px;}
.y2d9{bottom:291.113701px;}
.y90{bottom:291.595496px;}
.y15b{bottom:293.095496px;}
.y20c{bottom:293.246971px;}
.y250{bottom:294.113699px;}
.y26{bottom:298.492950px;}
.y303{bottom:298.861954px;}
.y2d{bottom:299.268906px;}
.y130{bottom:304.033942px;}
.y1e9{bottom:304.610404px;}
.y292{bottom:304.613690px;}
.y2d8{bottom:304.613701px;}
.y17b{bottom:305.422369px;}
.y20b{bottom:306.746971px;}
.yd6{bottom:306.747002px;}
.y1d0{bottom:306.818981px;}
.y65{bottom:306.826181px;}
.yb2{bottom:306.900745px;}
.y1a6{bottom:307.429208px;}
.y24f{bottom:307.613699px;}
.y25{bottom:316.485741px;}
.y2c{bottom:317.261696px;}
.y291{bottom:318.113690px;}
.y2d7{bottom:318.113701px;}
.y8f{bottom:318.487495px;}
.y15a{bottom:319.987495px;}
.y20a{bottom:320.246972px;}
.y24e{bottom:321.113700px;}
.y17a{bottom:323.415169px;}
.y1a5{bottom:323.926208px;}
.y157{bottom:324.747002px;}
.yd5{bottom:324.751802px;}
.y1cf{bottom:324.811781px;}
.y64{bottom:324.818981px;}
.yb1{bottom:324.893545px;}
.y12f{bottom:330.925960px;}
.y1e8{bottom:331.502403px;}
.y290{bottom:331.613691px;}
.y2d6{bottom:331.613702px;}
.y209{bottom:333.746972px;}
.y24{bottom:334.478554px;}
.y24d{bottom:334.613700px;}
.y2b{bottom:335.301773px;}
.y179{bottom:341.407968px;}
.yd4{bottom:342.747002px;}
.y156{bottom:342.754202px;}
.y1ce{bottom:342.804581px;}
.y63{bottom:342.811781px;}
.yb0{bottom:342.886345px;}
.y8e{bottom:343.426208px;}
.y159{bottom:344.929208px;}
.y28f{bottom:345.113691px;}
.y2d5{bottom:345.113702px;}
.y208{bottom:347.246972px;}
.y24c{bottom:348.113700px;}
.y12e{bottom:349.225960px;}
.y23{bottom:352.478554px;}
.y2a{bottom:353.294563px;}
.y1e5{bottom:356.444093px;}
.y28e{bottom:358.613691px;}
.y2d4{bottom:358.613702px;}
.y178{bottom:359.400768px;}
.yd3{bottom:360.747002px;}
.y155{bottom:360.782980px;}
.y1cd{bottom:360.797380px;}
.y62{bottom:360.804581px;}
.yaf{bottom:360.900768px;}
.y158{bottom:361.426208px;}
.y24b{bottom:361.613701px;}
.y28d{bottom:372.113692px;}
.y2d3{bottom:372.113703px;}
.y1e4{bottom:372.941093px;}
.y207{bottom:374.246974px;}
.y12b{bottom:374.480417px;}
.y24a{bottom:375.113701px;}
.y177{bottom:377.393568px;}
.y154{bottom:378.775780px;}
.y1cc{bottom:378.790180px;}
.y61{bottom:378.797380px;}
.yae{bottom:378.893568px;}
.y28c{bottom:385.613692px;}
.y2d2{bottom:385.613703px;}
.y206{bottom:387.746974px;}
.y249{bottom:388.613701px;}
.y12a{bottom:390.977417px;}
.y176{bottom:395.386368px;}
.y195{bottom:395.422369px;}
.yd2{bottom:396.768579px;}
.y1cb{bottom:396.782980px;}
.y60{bottom:396.790180px;}
.yad{bottom:396.893568px;}
.y28b{bottom:399.113692px;}
.y2d1{bottom:399.113703px;}
.y205{bottom:401.246974px;}
.y248{bottom:402.113702px;}
.y1d{bottom:406.441040px;}
.y28a{bottom:412.613693px;}
.y2d0{bottom:412.613704px;}
.y175{bottom:413.393568px;}
.y194{bottom:413.415169px;}
.y204{bottom:414.746975px;}
.y8d{bottom:414.746979px;}
.yd1{bottom:414.761379px;}
.y1ca{bottom:414.775780px;}
.y5f{bottom:414.782980px;}
.yac{bottom:414.886368px;}
.y247{bottom:415.613702px;}
.y289{bottom:426.113693px;}
.y2cf{bottom:426.113704px;}
.y203{bottom:428.246975px;}
.y1c{bottom:428.941040px;}
.y246{bottom:429.113702px;}
.y174{bottom:431.400768px;}
.y193{bottom:431.407968px;}
.y8c{bottom:432.754179px;}
.y1c9{bottom:432.768579px;}
.y5e{bottom:432.775780px;}
.yab{bottom:432.893568px;}
.y288{bottom:439.613693px;}
.y2ce{bottom:439.613704px;}
.y202{bottom:441.746975px;}
.y245{bottom:442.613703px;}
.y1b{bottom:446.941040px;}
.y173{bottom:449.393568px;}
.y192{bottom:449.400768px;}
.yff{bottom:450.605099px;}
.y8b{bottom:450.746979px;}
.y11a{bottom:450.754179px;}
.y1c8{bottom:450.761379px;}
.y5d{bottom:450.768579px;}
.yaa{bottom:450.886368px;}
.y287{bottom:453.113694px;}
.y2cd{bottom:453.113705px;}
.y201{bottom:455.246976px;}
.y244{bottom:456.113703px;}
.y1a{bottom:464.941040px;}
.y286{bottom:466.613694px;}
.y2cc{bottom:466.613705px;}
.y191{bottom:467.393568px;}
.y172{bottom:467.422369px;}
.yfe{bottom:468.597898px;}
.y8a{bottom:468.746979px;}
.y119{bottom:468.754179px;}
.y5c{bottom:468.761379px;}
.ya9{bottom:468.907968px;}
.y243{bottom:469.613703px;}
.y285{bottom:480.113694px;}
.y2cb{bottom:480.113705px;}
.y200{bottom:482.246977px;}
.y19{bottom:482.941040px;}
.y242{bottom:483.113704px;}
.y190{bottom:485.386368px;}
.y171{bottom:485.415169px;}
.yfd{bottom:486.590698px;}
.y118{bottom:486.746979px;}
.y5b{bottom:486.754179px;}
.y1c7{bottom:486.768579px;}
.ya8{bottom:486.900768px;}
.y284{bottom:493.613695px;}
.y2ca{bottom:493.613706px;}
.y1ff{bottom:495.746977px;}
.y241{bottom:496.613704px;}
.y18f{bottom:503.386368px;}
.y170{bottom:503.407968px;}
.yfc{bottom:504.590698px;}
.y5a{bottom:504.746979px;}
.y1c6{bottom:504.761379px;}
.yd0{bottom:504.790180px;}
.y89{bottom:504.804581px;}
.y1e3{bottom:504.818981px;}
.ya7{bottom:504.893568px;}
.y18{bottom:505.441040px;}
.y283{bottom:507.113695px;}
.y2c9{bottom:507.113706px;}
.y1fe{bottom:509.246977px;}
.y240{bottom:510.113704px;}
.y282{bottom:520.613695px;}
.y2c8{bottom:520.613706px;}
.y18e{bottom:521.393568px;}
.y16f{bottom:521.400768px;}
.y1fd{bottom:522.746978px;}
.y59{bottom:522.746979px;}
.y1c5{bottom:522.754179px;}
.y145{bottom:522.761379px;}
.ycf{bottom:522.782980px;}
.y88{bottom:522.797380px;}
.y1e2{bottom:522.811781px;}
.ya6{bottom:522.886368px;}
.y17{bottom:523.441040px;}
.y23f{bottom:523.613705px;}
.y281{bottom:534.113696px;}
.y2c7{bottom:534.113707px;}
.y1fc{bottom:536.246978px;}
.y23e{bottom:537.113705px;}
.y18d{bottom:539.386368px;}
.y16e{bottom:539.393568px;}
.yfb{bottom:540.605099px;}
.y117{bottom:540.746979px;}
.y144{bottom:540.754179px;}
.yce{bottom:540.775780px;}
.y87{bottom:540.790180px;}
.y58{bottom:540.804581px;}
.ya5{bottom:540.886368px;}
.y16{bottom:541.441040px;}
.y280{bottom:547.613696px;}
.y2c6{bottom:547.613707px;}
.y1fb{bottom:549.746978px;}
.y23d{bottom:550.613705px;}
.y16d{bottom:557.386368px;}
.yfa{bottom:558.597898px;}
.y153{bottom:558.746979px;}
.ycd{bottom:558.768579px;}
.y86{bottom:558.782980px;}
.y57{bottom:558.797380px;}
.y1c4{bottom:558.826181px;}
.y15{bottom:559.441040px;}
.y27f{bottom:561.113696px;}
.y2c5{bottom:561.113707px;}
.y1fa{bottom:563.246978px;}
.y23c{bottom:564.113706px;}
.y27e{bottom:574.613697px;}
.y2c4{bottom:574.613708px;}
.y16c{bottom:575.393568px;}
.yf9{bottom:576.597898px;}
.y1f9{bottom:576.746979px;}
.y152{bottom:576.754179px;}
.ycc{bottom:576.761379px;}
.y85{bottom:576.775780px;}
.y56{bottom:576.790180px;}
.y116{bottom:576.797380px;}
.y1c3{bottom:576.818981px;}
.ya4{bottom:576.922369px;}
.y14{bottom:577.441040px;}
.y23b{bottom:577.613706px;}
.y27d{bottom:588.113697px;}
.y2c3{bottom:588.113708px;}
.y23a{bottom:591.113706px;}
.y16b{bottom:593.386368px;}
.y18c{bottom:593.400768px;}
.yf8{bottom:594.590698px;}
.ycb{bottom:594.754179px;}
.y84{bottom:594.768579px;}
.y55{bottom:594.782980px;}
.y115{bottom:594.790180px;}
.y1c2{bottom:594.811781px;}
.ya3{bottom:594.915169px;}
.y13{bottom:595.441040px;}
.y27c{bottom:601.613697px;}
.y2c2{bottom:601.613708px;}
.y239{bottom:604.613707px;}
.y18b{bottom:611.393568px;}
.y16a{bottom:611.415169px;}
.yf7{bottom:612.605099px;}
.yca{bottom:612.754179px;}
.y83{bottom:612.761379px;}
.y54{bottom:612.775780px;}
.y114{bottom:612.782980px;}
.y1c1{bottom:612.804581px;}
.ya2{bottom:612.907968px;}
.y12{bottom:613.441040px;}
.y27b{bottom:615.113698px;}
.y2c1{bottom:615.113709px;}
.y238{bottom:618.113707px;}
.y21f{bottom:622.578132px;}
.y27a{bottom:628.613698px;}
.y2c0{bottom:628.613709px;}
.y18a{bottom:629.393568px;}
.y169{bottom:629.407968px;}
.yf6{bottom:630.597898px;}
.y143{bottom:630.746979px;}
.y82{bottom:630.754179px;}
.y53{bottom:630.768579px;}
.y113{bottom:630.775780px;}
.y1c0{bottom:630.797380px;}
.ya1{bottom:630.900768px;}
.y11{bottom:631.441040px;}
.y237{bottom:631.613707px;}
.y21e{bottom:636.078132px;}
.y279{bottom:642.113698px;}
.y2bf{bottom:642.113709px;}
.y236{bottom:645.113708px;}
.y189{bottom:647.386368px;}
.y168{bottom:647.400768px;}
.yf5{bottom:648.590698px;}
.y81{bottom:648.746979px;}
.y142{bottom:648.754179px;}
.y52{bottom:648.761379px;}
.y112{bottom:648.768579px;}
.y1bf{bottom:648.790180px;}
.ya0{bottom:648.893568px;}
.y10{bottom:649.441040px;}
.y21d{bottom:655.574382px;}
.y278{bottom:655.613699px;}
.y2be{bottom:655.613710px;}
.y235{bottom:658.613708px;}
.y167{bottom:665.393568px;}
.y188{bottom:665.405529px;}
.yf4{bottom:666.597898px;}
.y51{bottom:666.754179px;}
.y111{bottom:666.761379px;}
.y80{bottom:666.768579px;}
.y1be{bottom:666.782980px;}
.yc9{bottom:666.818889px;}
.y9f{bottom:666.886368px;}
.yf{bottom:667.441040px;}
.y21c{bottom:669.074383px;}
.y277{bottom:669.113699px;}
.y2bd{bottom:669.113710px;}
.y234{bottom:672.113708px;}
.y302{bottom:682.613681px;}
.y276{bottom:682.613699px;}
.y2bc{bottom:682.613710px;}
.y166{bottom:683.386368px;}
.y187{bottom:683.398329px;}
.yf3{bottom:684.590698px;}
.y141{bottom:684.746979px;}
.y110{bottom:684.754179px;}
.y7f{bottom:684.761379px;}
.y1bd{bottom:684.775780px;}
.y151{bottom:684.782888px;}
.y50{bottom:684.811689px;}
.y9e{bottom:684.900768px;}
.ye{bottom:685.441040px;}
.y21b{bottom:688.570633px;}
.y301{bottom:696.113681px;}
.y275{bottom:696.113700px;}
.y2bb{bottom:696.113711px;}
.yf2{bottom:702.590698px;}
.y10f{bottom:702.746979px;}
.y7e{bottom:702.754179px;}
.y1bc{bottom:702.768579px;}
.y150{bottom:702.775688px;}
.y4f{bottom:702.804489px;}
.y9d{bottom:702.893568px;}
.yd{bottom:707.941040px;}
.y300{bottom:709.613681px;}
.y274{bottom:709.613700px;}
.y2ba{bottom:709.613711px;}
.y7d{bottom:720.746979px;}
.y140{bottom:720.754179px;}
.y1bb{bottom:720.761379px;}
.y14f{bottom:720.768488px;}
.y4e{bottom:720.797289px;}
.y1e1{bottom:720.811689px;}
.y9c{bottom:720.886368px;}
.y2ff{bottom:723.113682px;}
.y273{bottom:723.113700px;}
.y2b9{bottom:723.113711px;}
.yc{bottom:725.941040px;}
.y21a{bottom:727.159332px;}
.y2fe{bottom:736.613682px;}
.y272{bottom:736.613701px;}
.y2b8{bottom:736.613712px;}
.y7c{bottom:738.746979px;}
.y1ba{bottom:738.754179px;}
.y14e{bottom:738.761288px;}
.y10e{bottom:738.768488px;}
.y4d{bottom:738.790089px;}
.y1e0{bottom:738.804489px;}
.y197{bottom:740.910461px;}
.yb{bottom:743.941040px;}
.y2fd{bottom:750.113683px;}
.y233{bottom:750.113702px;}
.y2b7{bottom:750.113712px;}
.y11c{bottom:751.410461px;}
.y13f{bottom:756.746979px;}
.y14d{bottom:756.754087px;}
.y10d{bottom:756.761288px;}
.y4c{bottom:756.782888px;}
.y1df{bottom:756.797289px;}
.y196{bottom:757.912491px;}
.ya{bottom:761.941040px;}
.y2fc{bottom:763.613683px;}
.y271{bottom:763.613701px;}
.y2b6{bottom:763.613712px;}
.y11b{bottom:768.412537px;}
.yef{bottom:773.329485px;}
.y7b{bottom:774.746887px;}
.y10c{bottom:774.754087px;}
.y1f8{bottom:774.761288px;}
.y4b{bottom:774.775688px;}
.y1de{bottom:774.790089px;}
.y1a4{bottom:776.033259px;}
.y2fb{bottom:777.113683px;}
.y270{bottom:777.113702px;}
.y232{bottom:777.113703px;}
.y2b5{bottom:777.113713px;}
.y9{bottom:779.941040px;}
.y129{bottom:786.684039px;}
.y2fa{bottom:790.613684px;}
.y26f{bottom:790.613702px;}
.y231{bottom:790.613703px;}
.y2b4{bottom:790.613713px;}
.yee{bottom:791.557485px;}
.y10b{bottom:792.746887px;}
.y1f7{bottom:792.754087px;}
.y14c{bottom:792.761288px;}
.y4a{bottom:792.768488px;}
.y1dd{bottom:792.782888px;}
.y1a3{bottom:794.261259px;}
.y8{bottom:802.441040px;}
.y2f9{bottom:804.113684px;}
.y26e{bottom:804.113702px;}
.y2b3{bottom:804.113713px;}
.y128{bottom:804.912039px;}
.yed{bottom:809.701485px;}
.y1f6{bottom:810.746887px;}
.y13e{bottom:810.754087px;}
.y49{bottom:810.761288px;}
.y10a{bottom:810.775688px;}
.y1b9{bottom:810.790089px;}
.y1a2{bottom:812.417259px;}
.y2f8{bottom:817.613684px;}
.y26d{bottom:817.613703px;}
.y230{bottom:817.613704px;}
.y2b2{bottom:817.613714px;}
.y127{bottom:823.068040px;}
.yec{bottom:827.857485px;}
.y48{bottom:828.754087px;}
.y13d{bottom:828.761288px;}
.y109{bottom:828.768488px;}
.y1b8{bottom:828.782888px;}
.y1a1{bottom:830.561259px;}
.y2f7{bottom:831.113685px;}
.y26c{bottom:831.113703px;}
.y22f{bottom:831.113705px;}
.y2b1{bottom:831.113714px;}
.y126{bottom:841.212039px;}
.y2f6{bottom:844.613685px;}
.y26b{bottom:844.613703px;}
.y22e{bottom:844.613705px;}
.y2b0{bottom:844.613714px;}
.yeb{bottom:846.001484px;}
.y47{bottom:846.746887px;}
.yc8{bottom:846.754087px;}
.y108{bottom:846.761288px;}
.y1b7{bottom:846.775688px;}
.y1a0{bottom:848.705258px;}
.y2f5{bottom:858.113685px;}
.y26a{bottom:858.113704px;}
.y22d{bottom:858.113705px;}
.y2af{bottom:858.113715px;}
.y125{bottom:859.356038px;}
.yea{bottom:864.145483px;}
.y7a{bottom:864.746887px;}
.yc7{bottom:864.754087px;}
.y46{bottom:864.761288px;}
.y1b6{bottom:864.768488px;}
.y14b{bottom:864.775688px;}
.y7{bottom:866.678558px;}
.y19f{bottom:866.849258px;}
.y2f4{bottom:871.613686px;}
.y269{bottom:871.613704px;}
.y22c{bottom:871.613706px;}
.y2ae{bottom:871.613715px;}
.y124{bottom:877.512038px;}
.ye9{bottom:882.301484px;}
.y79{bottom:882.746887px;}
.y45{bottom:882.754087px;}
.y1b5{bottom:882.761288px;}
.y14a{bottom:882.768488px;}
.yc6{bottom:882.818854px;}
.y19e{bottom:884.993257px;}
.y2f3{bottom:885.113686px;}
.y268{bottom:885.113704px;}
.y22b{bottom:885.113706px;}
.y2ad{bottom:885.113715px;}
.y123{bottom:891.012038px;}
.y2f2{bottom:898.613686px;}
.y267{bottom:898.613705px;}
.y22a{bottom:898.613706px;}
.y2ac{bottom:898.613716px;}
.ye8{bottom:900.445483px;}
.y107{bottom:900.746887px;}
.y44{bottom:900.754087px;}
.y149{bottom:900.761288px;}
.yc5{bottom:900.811654px;}
.y6{bottom:902.703461px;}
.y19d{bottom:903.149257px;}
.y122{bottom:909.156038px;}
.y2f1{bottom:912.113687px;}
.y266{bottom:912.113705px;}
.y229{bottom:912.113707px;}
.y2ab{bottom:912.113716px;}
.y19c{bottom:916.649257px;}
.ye7{bottom:918.601483px;}
.y43{bottom:918.746887px;}
.y148{bottom:918.754087px;}
.y78{bottom:918.775688px;}
.yc4{bottom:918.804453px;}
.y2f0{bottom:925.613687px;}
.y265{bottom:925.613705px;}
.y228{bottom:925.613707px;}
.y2aa{bottom:925.613716px;}
.y121{bottom:927.312038px;}
.y19b{bottom:934.793256px;}
.ye6{bottom:936.745483px;}
.y42{bottom:936.746887px;}
.y13c{bottom:936.761288px;}
.y77{bottom:936.768488px;}
.y1b4{bottom:936.775688px;}
.yc3{bottom:936.797253px;}
.y106{bottom:936.807593px;}
.y2ef{bottom:939.113687px;}
.y264{bottom:939.113706px;}
.y2a9{bottom:939.113717px;}
.y120{bottom:940.812038px;}
.y5{bottom:941.691467px;}
.y2ee{bottom:952.613688px;}
.y263{bottom:952.613706px;}
.y227{bottom:952.613708px;}
.y2a8{bottom:952.613717px;}
.y19a{bottom:952.932921px;}
.y1dc{bottom:954.746887px;}
.y41{bottom:954.754087px;}
.y76{bottom:954.761288px;}
.y1b3{bottom:954.768488px;}
.y1f5{bottom:954.782888px;}
.yc2{bottom:954.790053px;}
.y105{bottom:954.800393px;}
.y11f{bottom:958.956037px;}
.ye5{bottom:963.643519px;}
.y2ed{bottom:966.113688px;}
.y262{bottom:966.113706px;}
.y226{bottom:966.113708px;}
.y2a7{bottom:966.113717px;}
.y40{bottom:972.746887px;}
.y75{bottom:972.754087px;}
.y1b2{bottom:972.761288px;}
.y1f4{bottom:972.775688px;}
.yc1{bottom:972.782853px;}
.y104{bottom:972.793193px;}
.y11e{bottom:977.095519px;}
.y2ec{bottom:979.613688px;}
.y261{bottom:979.613707px;}
.y225{bottom:979.613708px;}
.y2a6{bottom:979.613718px;}
.y199{bottom:979.830774px;}
.y4{bottom:980.679474px;}
.ye4{bottom:987.487518px;}
.y74{bottom:990.746887px;}
.y1b1{bottom:990.754087px;}
.y3f{bottom:990.761288px;}
.y1f3{bottom:990.768488px;}
.yc0{bottom:990.775653px;}
.y103{bottom:990.785992px;}
.y2eb{bottom:993.113689px;}
.y260{bottom:993.113707px;}
.y224{bottom:993.113708px;}
.y2a5{bottom:993.113718px;}
.y198{bottom:1003.674774px;}
.y11d{bottom:1003.987518px;}
.y2ea{bottom:1006.613689px;}
.y223{bottom:1006.613708px;}
.y2a4{bottom:1006.613719px;}
.y73{bottom:1008.746887px;}
.y3e{bottom:1008.754087px;}
.y13b{bottom:1008.761288px;}
.ybf{bottom:1008.768452px;}
.y102{bottom:1008.778792px;}
.ye3{bottom:1012.432208px;}
.y2e9{bottom:1020.113689px;}
.y222{bottom:1020.113708px;}
.y2a3{bottom:1020.113719px;}
.y3d{bottom:1026.746887px;}
.y13a{bottom:1026.754087px;}
.ybe{bottom:1026.761252px;}
.y101{bottom:1026.771592px;}
.y147{bottom:1026.788084px;}
.y1db{bottom:1026.797567px;}
.y72{bottom:1026.811968px;}
.ye2{bottom:1028.929208px;}
.y2e8{bottom:1033.613690px;}
.y25f{bottom:1033.613708px;}
.y2a2{bottom:1033.613719px;}
.y3{bottom:1035.488708px;}
.y35{bottom:1037.876221px;}
.y221{bottom:1038.113708px;}
.y3c{bottom:1044.746887px;}
.ybd{bottom:1044.754052px;}
.y100{bottom:1044.764392px;}
.y146{bottom:1044.780883px;}
.y1da{bottom:1044.790367px;}
.y71{bottom:1044.804767px;}
.ye1{bottom:1045.426208px;}
.y2e7{bottom:1047.113690px;}
.y220{bottom:1047.113708px;}
.y2a1{bottom:1047.113720px;}
.y2{bottom:1114.423004px;}
.y3a{bottom:1128.650574px;}
.yf0{bottom:1128.650665px;}
.y3b{bottom:1129.046574px;}
.yf1{bottom:1129.046665px;}
.y1{bottom:1129.051025px;}
.y9b{bottom:1129.051208px;}
.he{height:27.814500px;}
.h22{height:27.988801px;}
.h45{height:28.350001px;}
.h44{height:31.089601px;}
.hb{height:37.086000px;}
.hd{height:39.735000px;}
.h3e{height:39.735001px;}
.h43{height:40.651940px;}
.h18{height:42.384000px;}
.h42{height:42.840000px;}
.h3d{height:43.785000px;}
.h3f{height:44.505000px;}
.h3{height:45.696000px;}
.h40{height:45.814501px;}
.h41{height:45.814503px;}
.h15{height:46.704000px;}
.h1d{height:46.928427px;}
.h1b{height:46.932576px;}
.h1c{height:46.940404px;}
.h17{height:46.940450px;}
.h1a{height:46.972745px;}
.h16{height:46.982371px;}
.h2{height:47.231915px;}
.hf{height:47.232000px;}
.h39{height:48.814796px;}
.h30{height:48.844742px;}
.h31{height:48.844788px;}
.h2f{height:48.844834px;}
.h32{height:48.880820px;}
.h38{height:48.886210px;}
.h23{height:48.886576px;}
.h3c{height:48.886759px;}
.h26{height:48.886851px;}
.h1f{height:52.406325px;}
.h37{height:52.407058px;}
.h25{height:52.430398px;}
.h36{height:52.430473px;}
.h9{height:52.980000px;}
.h14{height:53.406000px;}
.h1e{height:53.654399px;}
.h13{height:53.709599px;}
.hc{height:55.860001px;}
.h8{height:58.380000px;}
.ha{height:61.086000px;}
.h7{height:61.120201px;}
.h34{height:62.189931px;}
.h3a{height:62.275830px;}
.h2e{height:62.362828px;}
.h12{height:62.363239px;}
.h2c{height:62.478077px;}
.h2a{height:62.478443px;}
.h29{height:62.535679px;}
.h28{height:62.564296px;}
.h2b{height:62.564479px;}
.h33{height:62.564846px;}
.h11{height:62.592365px;}
.h27{height:62.593097px;}
.h3b{height:62.593189px;}
.h20{height:62.593280px;}
.h35{height:62.593647px;}
.h10{height:62.621166px;}
.h2d{height:62.621990px;}
.h21{height:62.622081px;}
.h6{height:67.194745px;}
.h4{height:77.142000px;}
.h24{height:96.384000px;}
.h19{height:100.940358px;}
.h5{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683151px;}
.x8{left:97.039352px;}
.xf{left:107.539352px;}
.xd{left:217.828354px;}
.xb{left:230.689499px;}
.x4{left:270.817497px;}
.xc{left:334.636368px;}
.x5{left:457.092911px;}
.x9{left:466.081358px;}
.xa{left:469.091552px;}
.xe{left:479.586593px;}
.x12{left:483.244034px;}
.x11{left:484.307556px;}
.x6{left:694.929886px;}
.x10{left:741.068390px;}
.x7{left:747.224258px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.vc{vertical-align:-14.933431pt;}
.v5{vertical-align:-13.143860pt;}
.ve{vertical-align:-10.666667pt;}
.v6{vertical-align:-1.706667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322591pt;}
.vb{vertical-align:13.066732pt;}
.v7{vertical-align:15.389841pt;}
.v8{vertical-align:17.066650pt;}
.v3{vertical-align:21.333333pt;}
.v2{vertical-align:23.466797pt;}
.v9{vertical-align:46.293335pt;}
.vd{vertical-align:48.000000pt;}
.va{vertical-align:63.352497pt;}
.ls16{letter-spacing:-2.816000pt;}
.ls27{letter-spacing:-1.450667pt;}
.ls1b{letter-spacing:-1.194667pt;}
.ls15{letter-spacing:-0.470400pt;}
.ls2a{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.298667pt;}
.ls2e{letter-spacing:-0.261333pt;}
.ls25{letter-spacing:-0.170667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000001pt;}
.ls3{letter-spacing:0.000007pt;}
.ls18{letter-spacing:0.000022pt;}
.ls17{letter-spacing:0.000027pt;}
.ls2{letter-spacing:0.000083pt;}
.ls2d{letter-spacing:0.000087pt;}
.ls1{letter-spacing:0.000157pt;}
.ls13{letter-spacing:0.000355pt;}
.ls11{letter-spacing:0.182809pt;}
.ls12{letter-spacing:0.183623pt;}
.ls2c{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.261333pt;}
.ls29{letter-spacing:0.341333pt;}
.ls28{letter-spacing:0.682667pt;}
.lsf{letter-spacing:0.731638pt;}
.lse{letter-spacing:1.045333pt;}
.ls14{letter-spacing:1.149867pt;}
.ls0{letter-spacing:4.853333pt;}
.ls2b{letter-spacing:18.826182pt;}
.ls19{letter-spacing:35.691253pt;}
.ls1d{letter-spacing:96.595701pt;}
.lsa{letter-spacing:105.258667pt;}
.ls9{letter-spacing:106.410671pt;}
.ls1a{letter-spacing:107.261891pt;}
.lsb{letter-spacing:108.202665pt;}
.lsc{letter-spacing:109.781339pt;}
.ls8{letter-spacing:114.602667pt;}
.ls23{letter-spacing:124.158364pt;}
.ls6{letter-spacing:127.232004pt;}
.ls1e{letter-spacing:132.264484pt;}
.ls7{letter-spacing:135.424000pt;}
.lsd{letter-spacing:138.794665pt;}
.ls1c{letter-spacing:139.005858pt;}
.ls24{letter-spacing:152.403156pt;}
.ls1f{letter-spacing:153.085285pt;}
.ls22{letter-spacing:194.557290pt;}
.ls21{letter-spacing:222.802082pt;}
.ls20{letter-spacing:284.966937pt;}
.ws0{word-spacing:-18.858667pt;}
.ws5c{word-spacing:-13.432534pt;}
.ws5d{word-spacing:-12.544000pt;}
.ws4{word-spacing:-12.432000pt;}
.ws7{word-spacing:-12.282667pt;}
.wsbd{word-spacing:-12.183360pt;}
.ws110{word-spacing:-12.021334pt;}
.ws5e{word-spacing:-11.812267pt;}
.ws2{word-spacing:-11.096534pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5f{word-spacing:-9.696000pt;}
.ws6{word-spacing:-9.600000pt;}
.ws1b{word-spacing:-9.344000pt;}
.ws12d{word-spacing:-9.340800pt;}
.ws1{word-spacing:-8.993600pt;}
.wsbf{word-spacing:-8.979200pt;}
.ws128{word-spacing:-8.760000pt;}
.ws19{word-spacing:-8.597867pt;}
.ws127{word-spacing:-8.280000pt;}
.ws5{word-spacing:-8.176000pt;}
.ws1c{word-spacing:-6.540800pt;}
.ws61{word-spacing:-6.528000pt;}
.ws129{word-spacing:-6.132000pt;}
.ws60{word-spacing:-6.033067pt;}
.ws9f{word-spacing:-5.540267pt;}
.ws111{word-spacing:-5.315503pt;}
.ws9{word-spacing:-2.464000pt;}
.ws5b{word-spacing:-1.493333pt;}
.ws6e{word-spacing:-1.045333pt;}
.ws124{word-spacing:-0.888533pt;}
.ws91{word-spacing:-0.784000pt;}
.ws8f{word-spacing:-0.522667pt;}
.ws11f{word-spacing:-0.470400pt;}
.wsbe{word-spacing:-0.459947pt;}
.ws25{word-spacing:-0.418133pt;}
.ws11c{word-spacing:-0.365867pt;}
.ws10a{word-spacing:-0.313600pt;}
.ws51{word-spacing:-0.261333pt;}
.ws10e{word-spacing:-0.213333pt;}
.ws2e{word-spacing:-0.209067pt;}
.ws39{word-spacing:-0.156800pt;}
.ws64{word-spacing:-0.104533pt;}
.ws12e{word-spacing:-0.080000pt;}
.ws28{word-spacing:-0.052267pt;}
.ws12f{word-spacing:-0.040000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.020906pt;}
.ws2b{word-spacing:0.052267pt;}
.wsd8{word-spacing:0.104533pt;}
.ws30{word-spacing:0.209067pt;}
.ws120{word-spacing:0.261333pt;}
.ws10d{word-spacing:0.298667pt;}
.ws7a{word-spacing:0.313600pt;}
.wsb{word-spacing:0.418133pt;}
.wsff{word-spacing:0.470400pt;}
.ws2f{word-spacing:0.574933pt;}
.ws78{word-spacing:0.627200pt;}
.wsaf{word-spacing:0.679467pt;}
.ws53{word-spacing:0.731733pt;}
.ws2a{word-spacing:0.784000pt;}
.wsa5{word-spacing:0.836267pt;}
.wsd6{word-spacing:0.888533pt;}
.wscc{word-spacing:0.940800pt;}
.ws18{word-spacing:0.993067pt;}
.ws86{word-spacing:1.045333pt;}
.ws3d{word-spacing:1.149867pt;}
.ws36{word-spacing:1.202133pt;}
.wsca{word-spacing:1.306667pt;}
.wsdc{word-spacing:1.358933pt;}
.ws12{word-spacing:1.411200pt;}
.ws29{word-spacing:1.463467pt;}
.wsad{word-spacing:1.515733pt;}
.wscb{word-spacing:1.568000pt;}
.ws49{word-spacing:1.620267pt;}
.ws10c{word-spacing:1.680000pt;}
.wsa{word-spacing:1.881600pt;}
.wsb5{word-spacing:1.933867pt;}
.ws80{word-spacing:2.038400pt;}
.wscd{word-spacing:2.090667pt;}
.ws58{word-spacing:2.142933pt;}
.ws68{word-spacing:2.247467pt;}
.ws27{word-spacing:2.299733pt;}
.wsd7{word-spacing:2.352000pt;}
.ws11a{word-spacing:2.404267pt;}
.wscf{word-spacing:2.456533pt;}
.ws41{word-spacing:2.508800pt;}
.ws65{word-spacing:2.665600pt;}
.ws33{word-spacing:2.717867pt;}
.ws126{word-spacing:2.770133pt;}
.ws3b{word-spacing:2.822400pt;}
.wsdf{word-spacing:2.874667pt;}
.ws106{word-spacing:2.926933pt;}
.ws119{word-spacing:2.979200pt;}
.wsba{word-spacing:3.031467pt;}
.wsb6{word-spacing:3.083733pt;}
.wsb8{word-spacing:3.240533pt;}
.wsb2{word-spacing:3.292800pt;}
.ws98{word-spacing:3.345067pt;}
.ws125{word-spacing:3.397333pt;}
.ws92{word-spacing:3.449600pt;}
.ws50{word-spacing:3.501867pt;}
.ws70{word-spacing:3.554133pt;}
.wsfb{word-spacing:3.606400pt;}
.wsfd{word-spacing:3.658667pt;}
.wseb{word-spacing:3.710933pt;}
.ws121{word-spacing:3.763200pt;}
.ws13{word-spacing:3.815467pt;}
.ws26{word-spacing:3.920000pt;}
.ws7e{word-spacing:3.972267pt;}
.ws34{word-spacing:4.024533pt;}
.ws3e{word-spacing:4.076800pt;}
.ws89{word-spacing:4.129067pt;}
.wsfc{word-spacing:4.181333pt;}
.ws52{word-spacing:4.233600pt;}
.wsda{word-spacing:4.285867pt;}
.ws105{word-spacing:4.338133pt;}
.wsd5{word-spacing:4.390400pt;}
.ws77{word-spacing:4.442667pt;}
.ws95{word-spacing:4.494933pt;}
.ws2d{word-spacing:4.547200pt;}
.ws6c{word-spacing:4.599467pt;}
.ws113{word-spacing:4.651733pt;}
.wsbb{word-spacing:4.656000pt;}
.ws72{word-spacing:4.704000pt;}
.wsb4{word-spacing:4.756267pt;}
.ws8a{word-spacing:4.808533pt;}
.ws3a{word-spacing:4.860800pt;}
.ws17{word-spacing:4.913067pt;}
.wsb0{word-spacing:4.965333pt;}
.wsae{word-spacing:5.017600pt;}
.ws40{word-spacing:5.069867pt;}
.ws9a{word-spacing:5.122133pt;}
.ws7b{word-spacing:5.174400pt;}
.ws16{word-spacing:5.226667pt;}
.ws31{word-spacing:5.278933pt;}
.wsd4{word-spacing:5.331200pt;}
.wsfe{word-spacing:5.383467pt;}
.ws116{word-spacing:5.435733pt;}
.ws114{word-spacing:5.488000pt;}
.ws37{word-spacing:5.540267pt;}
.ws20{word-spacing:5.592533pt;}
.wse2{word-spacing:5.644800pt;}
.wsb3{word-spacing:5.749333pt;}
.ws42{word-spacing:5.801600pt;}
.wse6{word-spacing:5.853867pt;}
.ws6d{word-spacing:5.906133pt;}
.wsb9{word-spacing:6.010667pt;}
.ws55{word-spacing:6.062933pt;}
.ws44{word-spacing:6.167467pt;}
.ws108{word-spacing:6.272000pt;}
.ws99{word-spacing:6.428800pt;}
.wsea{word-spacing:6.481067pt;}
.ws12b{word-spacing:6.533333pt;}
.ws118{word-spacing:6.585600pt;}
.ws117{word-spacing:6.690133pt;}
.wsec{word-spacing:6.742400pt;}
.wsa6{word-spacing:6.794667pt;}
.ws46{word-spacing:6.846933pt;}
.ws45{word-spacing:6.899200pt;}
.ws4a{word-spacing:6.951467pt;}
.ws7c{word-spacing:7.003733pt;}
.ws82{word-spacing:7.056000pt;}
.ws8e{word-spacing:7.108267pt;}
.ws63{word-spacing:7.160533pt;}
.ws73{word-spacing:7.212800pt;}
.ws35{word-spacing:7.265067pt;}
.ws122{word-spacing:7.317333pt;}
.ws38{word-spacing:7.369600pt;}
.wsde{word-spacing:7.421867pt;}
.ws8d{word-spacing:7.474133pt;}
.wsdb{word-spacing:7.526400pt;}
.ws3f{word-spacing:7.578667pt;}
.wsb1{word-spacing:7.630933pt;}
.ws4c{word-spacing:7.683200pt;}
.wsef{word-spacing:7.735467pt;}
.ws4f{word-spacing:7.787733pt;}
.wsb7{word-spacing:7.840000pt;}
.ws32{word-spacing:8.101333pt;}
.ws43{word-spacing:8.153600pt;}
.wsd1{word-spacing:8.205867pt;}
.wsd0{word-spacing:8.258134pt;}
.ws56{word-spacing:8.310400pt;}
.ws21{word-spacing:8.414934pt;}
.ws69{word-spacing:8.467200pt;}
.ws97{word-spacing:8.519467pt;}
.wsd2{word-spacing:8.571734pt;}
.ws59{word-spacing:8.676267pt;}
.ws115{word-spacing:8.728534pt;}
.ws67{word-spacing:8.885334pt;}
.wsa7{word-spacing:8.937600pt;}
.ws100{word-spacing:8.989867pt;}
.wsab{word-spacing:9.094400pt;}
.wsbc{word-spacing:9.168000pt;}
.ws4d{word-spacing:9.355734pt;}
.ws109{word-spacing:9.408000pt;}
.wsaa{word-spacing:9.460267pt;}
.wsa9{word-spacing:9.564800pt;}
.ws9b{word-spacing:9.669334pt;}
.ws96{word-spacing:9.721600pt;}
.ws10f{word-spacing:9.744000pt;}
.ws3c{word-spacing:9.826134pt;}
.wse3{word-spacing:10.192000pt;}
.wsc{word-spacing:10.296534pt;}
.ws76{word-spacing:10.348800pt;}
.wsd{word-spacing:10.401067pt;}
.ws5a{word-spacing:10.505600pt;}
.ws102{word-spacing:10.557867pt;}
.ws57{word-spacing:10.662400pt;}
.wse8{word-spacing:10.714667pt;}
.wse7{word-spacing:10.766934pt;}
.ws84{word-spacing:10.819200pt;}
.ws54{word-spacing:10.871467pt;}
.wsdd{word-spacing:10.923734pt;}
.wsfa{word-spacing:11.080534pt;}
.ws88{word-spacing:11.237334pt;}
.ws12c{word-spacing:11.289600pt;}
.wsa8{word-spacing:11.394134pt;}
.ws6b{word-spacing:11.550934pt;}
.ws9e{word-spacing:11.568000pt;}
.wsed{word-spacing:11.760000pt;}
.wse1{word-spacing:11.812267pt;}
.ws11b{word-spacing:11.916800pt;}
.wsc9{word-spacing:11.969067pt;}
.ws12a{word-spacing:12.021334pt;}
.ws2c{word-spacing:12.178134pt;}
.ws24{word-spacing:12.282667pt;}
.ws22{word-spacing:12.334934pt;}
.ws66{word-spacing:12.439467pt;}
.ws75{word-spacing:12.491734pt;}
.ws14{word-spacing:12.596267pt;}
.ws23{word-spacing:12.700800pt;}
.ws112{word-spacing:12.962134pt;}
.ws74{word-spacing:13.380268pt;}
.ws123{word-spacing:13.537067pt;}
.wsac{word-spacing:13.641600pt;}
.ws7d{word-spacing:13.850666pt;}
.ws83{word-spacing:14.530134pt;}
.ws4b{word-spacing:14.582401pt;}
.ws47{word-spacing:14.686933pt;}
.ws48{word-spacing:14.791467pt;}
.ws11d{word-spacing:14.843734pt;}
.ws103{word-spacing:15.000534pt;}
.ws8c{word-spacing:15.052799pt;}
.ws9c{word-spacing:15.209600pt;}
.wsee{word-spacing:15.314134pt;}
.wse4{word-spacing:15.366400pt;}
.ws85{word-spacing:15.470934pt;}
.ws11e{word-spacing:15.523200pt;}
.ws107{word-spacing:15.575467pt;}
.ws15{word-spacing:15.680001pt;}
.wse0{word-spacing:15.732267pt;}
.ws93{word-spacing:15.836800pt;}
.ws1f{word-spacing:15.889067pt;}
.ws104{word-spacing:15.993600pt;}
.ws8b{word-spacing:16.202667pt;}
.ws4e{word-spacing:16.516268pt;}
.ws7f{word-spacing:16.673067pt;}
.ws71{word-spacing:16.986666pt;}
.wse9{word-spacing:17.091200pt;}
.ws6a{word-spacing:17.300267pt;}
.ws1e{word-spacing:17.718399pt;}
.ws10b{word-spacing:17.979734pt;}
.ws6f{word-spacing:18.084266pt;}
.ws101{word-spacing:18.188799pt;}
.ws87{word-spacing:18.241067pt;}
.wsce{word-spacing:18.293334pt;}
.wsd9{word-spacing:18.502400pt;}
.wsd3{word-spacing:18.659200pt;}
.ws81{word-spacing:18.868267pt;}
.ws11{word-spacing:19.025067pt;}
.ws94{word-spacing:19.809067pt;}
.wsf0{word-spacing:19.965867pt;}
.ws10{word-spacing:20.018133pt;}
.ws90{word-spacing:21.847468pt;}
.wse{word-spacing:22.265600pt;}
.wsf{word-spacing:22.736000pt;}
.ws9d{word-spacing:24.095999pt;}
.ws79{word-spacing:24.408534pt;}
.wse5{word-spacing:26.394667pt;}
.wsf1{word-spacing:34.224000pt;}
.wsf4{word-spacing:34.816000pt;}
.wsc3{word-spacing:108.078929pt;}
.wsf3{word-spacing:115.840000pt;}
.wsf2{word-spacing:152.618673pt;}
.ws62{word-spacing:184.575996pt;}
.wsc6{word-spacing:199.253329pt;}
.wsc7{word-spacing:200.447996pt;}
.wsc2{word-spacing:200.959996pt;}
.wsa3{word-spacing:206.165335pt;}
.wsa4{word-spacing:208.640001pt;}
.wsc4{word-spacing:211.285329pt;}
.wsc1{word-spacing:214.186663pt;}
.wsc5{word-spacing:221.311996pt;}
.wsf8{word-spacing:235.861336pt;}
.wsc0{word-spacing:236.117329pt;}
.wsf6{word-spacing:245.930673pt;}
.wsf9{word-spacing:246.741342pt;}
.wsa2{word-spacing:247.082665pt;}
.wsf7{word-spacing:253.653329pt;}
.wsa0{word-spacing:284.804284pt;}
.wsc8{word-spacing:289.706664pt;}
.wsf5{word-spacing:311.722666pt;}
.wsa1{word-spacing:313.813351pt;}
.ws1d{word-spacing:325.632009pt;}
._52{margin-left:-34.039986pt;}
._1f{margin-left:-23.911984pt;}
._53{margin-left:-19.920003pt;}
._20{margin-left:-9.792001pt;}
._b{margin-left:-8.058659pt;}
._a{margin-left:-6.897051pt;}
._3{margin-left:-5.038901pt;}
._4{margin-left:-3.352019pt;}
._6{margin-left:-2.219317pt;}
._0{margin-left:-1.070949pt;}
._2{width:1.152000pt;}
._5{width:2.245801pt;}
._1{width:3.234149pt;}
._e{width:5.064640pt;}
._d{width:6.054351pt;}
._10{width:7.103978pt;}
._2d{width:8.149184pt;}
._12{width:9.103411pt;}
._1d{width:10.750189pt;}
._f{width:11.954452pt;}
._8{width:12.906668pt;}
._9{width:14.133337pt;}
._7{width:15.150961pt;}
._11{width:16.976213pt;}
._1e{width:17.911052pt;}
._c{width:19.025034pt;}
._83{width:19.992018pt;}
._21{width:24.217099pt;}
._61{width:32.693439pt;}
._54{width:34.277350pt;}
._36{width:35.238394pt;}
._14{width:36.480006pt;}
._82{width:39.352018pt;}
._5d{width:43.289435pt;}
._34{width:52.181331pt;}
._65{width:54.423692pt;}
._31{width:55.423994pt;}
._35{width:56.490661pt;}
._68{width:62.623860pt;}
._64{width:63.573327pt;}
._33{width:66.944017pt;}
._28{width:68.607980pt;}
._2f{width:71.551991pt;}
._38{width:73.002665pt;}
._30{width:75.477328pt;}
._1b{width:76.715326pt;}
._69{width:84.464443pt;}
._37{width:85.845351pt;}
._6b{width:88.939960pt;}
._62{width:89.874559pt;}
._63{width:93.866666pt;}
._55{width:96.383996pt;}
._2e{width:103.765317pt;}
._4c{width:106.449060pt;}
._16{width:107.776009pt;}
._67{width:110.012649pt;}
._3d{width:111.317338pt;}
._49{width:120.021329pt;}
._46{width:123.733325pt;}
._17{width:126.677342pt;}
._44{width:127.570763pt;}
._4b{width:128.599899pt;}
._6a{width:130.393615pt;}
._56{width:133.205331pt;}
._48{width:134.997327pt;}
._27{width:139.605313pt;}
._66{width:141.013319pt;}
._19{width:144.302958pt;}
._47{width:148.394650pt;}
._4a{width:149.421229pt;}
._3e{width:150.314660pt;}
._4d{width:154.623996pt;}
._57{width:156.885350pt;}
._13{width:158.165342pt;}
._39{width:160.853351pt;}
._2a{width:176.132263pt;}
._5e{width:180.394664pt;}
._3b{width:181.593633pt;}
._3a{width:187.706217pt;}
._22{width:189.973854pt;}
._3f{width:191.530668pt;}
._26{width:193.919996pt;}
._25{width:198.912000pt;}
._18{width:201.685342pt;}
._50{width:203.477980pt;}
._6c{width:208.516282pt;}
._5b{width:209.535997pt;}
._5f{width:215.038327pt;}
._23{width:216.366966pt;}
._32{width:217.557317pt;}
._5a{width:220.842663pt;}
._1c{width:222.425624pt;}
._5c{width:227.087526pt;}
._1a{width:228.538208pt;}
._15{width:229.717342pt;}
._29{width:233.514647pt;}
._45{width:234.538662pt;}
._41{width:239.014367pt;}
._58{width:245.290663pt;}
._2c{width:254.254929pt;}
._2b{width:260.367512pt;}
._24{width:261.546647pt;}
._40{width:269.397327pt;}
._3c{width:271.360003pt;}
._60{width:272.725326pt;}
._59{width:279.295997pt;}
._6d{width:307.583989pt;}
._4e{width:328.447996pt;}
._51{width:349.188278pt;}
._4f{width:355.300861pt;}
._73{width:361.173323pt;}
._72{width:373.887989pt;}
._43{width:385.152003pt;}
._6e{width:390.357323pt;}
._70{width:396.159989pt;}
._74{width:421.930668pt;}
._76{width:436.838600pt;}
._6f{width:442.752001pt;}
._75{width:450.343195pt;}
._77{width:458.043718pt;}
._71{width:471.168001pt;}
._42{width:538.111996pt;}
._7b{width:600.874642pt;}
._7d{width:635.477309pt;}
._81{width:663.510003pt;}
._7a{width:715.391975pt;}
._78{width:744.960019pt;}
._7f{width:751.918925pt;}
._7c{width:762.538670pt;}
._7e{width:809.301309pt;}
._80{width:815.332885pt;}
._79{width:880.426661pt;}
.fsf{font-size:26.133334pt;}
.fsa{font-size:28.000000pt;}
.fse{font-size:29.866666pt;}
.fs12{font-size:33.600001pt;}
.fs11{font-size:36.266668pt;}
.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;}
.fs10{font-size:47.421336pt;}
.fsd{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;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:68.726400pt;}
.y21{bottom:79.394399pt;}
.y20{bottom:90.062398pt;}
.y25e{bottom:93.434395pt;}
.y1e7{bottom:94.155996pt;}
.y12d{bottom:94.188131pt;}
.y186{bottom:95.460929pt;}
.y1d9{bottom:96.708660pt;}
.y70{bottom:96.721461pt;}
.y1b0{bottom:98.063995pt;}
.y9a{bottom:98.555864pt;}
.y165{bottom:99.130666pt;}
.y1f{bottom:100.730398pt;}
.y30c{bottom:102.540932pt;}
.y2a0{bottom:102.767720pt;}
.y2e6{bottom:102.767730pt;}
.y219{bottom:104.663970pt;}
.y25d{bottom:105.434395pt;}
.y1e6{bottom:109.268799pt;}
.y12c{bottom:109.301066pt;}
.y1e{bottom:111.398397pt;}
.y185{bottom:111.550552pt;}
.y30b{bottom:111.873332pt;}
.y1d8{bottom:112.702260pt;}
.ye0{bottom:112.708660pt;}
.y6f{bottom:112.715061pt;}
.ybc{bottom:112.800663pt;}
.y1af{bottom:114.272005pt;}
.y29f{bottom:114.767720pt;}
.y2e5{bottom:114.767730pt;}
.y99{bottom:115.176402pt;}
.y164{bottom:115.338665pt;}
.y218{bottom:116.663971pt;}
.y25c{bottom:117.434396pt;}
.y139{bottom:125.029746pt;}
.y1f2{bottom:125.536794pt;}
.y29e{bottom:126.767721pt;}
.y2e4{bottom:126.767731pt;}
.y184{bottom:127.544152pt;}
.y217{bottom:128.663971pt;}
.y1d7{bottom:128.695860pt;}
.ydf{bottom:128.702260pt;}
.y6e{bottom:128.708660pt;}
.ybb{bottom:128.794262pt;}
.y25b{bottom:129.434396pt;}
.y1ae{bottom:130.405336pt;}
.y163{bottom:131.471996pt;}
.y98{bottom:131.734671pt;}
.y29d{bottom:138.767721pt;}
.y2e3{bottom:138.767731pt;}
.y216{bottom:140.663971pt;}
.y30a{bottom:140.792806pt;}
.y39{bottom:140.966665pt;}
.y138{bottom:141.232413pt;}
.y25a{bottom:141.434396pt;}
.y1f1{bottom:141.739461pt;}
.y183{bottom:143.537752pt;}
.y1d6{bottom:144.689460pt;}
.yde{bottom:144.695860pt;}
.y6d{bottom:144.702260pt;}
.yba{bottom:144.787862pt;}
.y1ad{bottom:146.545332pt;}
.y162{bottom:147.605338pt;}
.y97{bottom:148.289338pt;}
.y29c{bottom:150.767721pt;}
.y2e2{bottom:150.767731pt;}
.y215{bottom:152.663972pt;}
.y38{bottom:152.966665pt;}
.y259{bottom:153.434396pt;}
.y34{bottom:154.023204pt;}
.y309{bottom:157.339474pt;}
.y137{bottom:157.360412pt;}
.y1f0{bottom:157.867461pt;}
.y182{bottom:159.531352pt;}
.y1d5{bottom:160.683060pt;}
.ydd{bottom:160.689460pt;}
.y6c{bottom:160.695860pt;}
.yb9{bottom:160.826263pt;}
.y1ac{bottom:162.673331pt;}
.y29b{bottom:162.767722pt;}
.y2e1{bottom:162.767731pt;}
.y161{bottom:163.738659pt;}
.y214{bottom:164.663972pt;}
.y96{bottom:164.845856pt;}
.y258{bottom:165.434397pt;}
.y37{bottom:168.966665pt;}
.y33{bottom:170.016805pt;}
.y136{bottom:173.488412pt;}
.y308{bottom:173.886141pt;}
.y1ef{bottom:173.995460pt;}
.y29a{bottom:174.767722pt;}
.y2e0{bottom:174.767732pt;}
.y181{bottom:175.524951pt;}
.y213{bottom:176.663972pt;}
.y1d4{bottom:176.676659pt;}
.ydc{bottom:176.683060pt;}
.y6b{bottom:176.689460pt;}
.yb8{bottom:176.819863pt;}
.y36{bottom:176.966675pt;}
.y257{bottom:177.434397pt;}
.y1ab{bottom:178.801331pt;}
.y160{bottom:179.872001pt;}
.y95{bottom:181.402395pt;}
.y32{bottom:186.010396pt;}
.y299{bottom:186.767722pt;}
.y2df{bottom:186.767732pt;}
.y212{bottom:188.663973pt;}
.y256{bottom:189.434397pt;}
.y135{bottom:189.616411pt;}
.y1ee{bottom:190.123459pt;}
.y307{bottom:190.432809pt;}
.y180{bottom:191.518551pt;}
.y1d3{bottom:192.670259pt;}
.ydb{bottom:192.676659pt;}
.y6a{bottom:192.683060pt;}
.yb7{bottom:192.813463pt;}
.y1aa{bottom:194.929330pt;}
.y15f{bottom:196.005342pt;}
.y94{bottom:197.951737pt;}
.y298{bottom:198.767723pt;}
.y2de{bottom:198.767732pt;}
.y211{bottom:200.663973pt;}
.y255{bottom:201.434398pt;}
.y31{bottom:202.042399pt;}
.y134{bottom:205.744411pt;}
.y1ed{bottom:206.251459pt;}
.y306{bottom:206.979476pt;}
.y17f{bottom:207.512151pt;}
.yda{bottom:208.670259pt;}
.y69{bottom:208.676659pt;}
.yb6{bottom:208.807063pt;}
.y297{bottom:210.767723pt;}
.y2dd{bottom:210.767733pt;}
.y1a9{bottom:211.067997pt;}
.y15e{bottom:212.138663pt;}
.y210{bottom:212.663973pt;}
.y254{bottom:213.434398pt;}
.y93{bottom:214.092275pt;}
.y29{bottom:217.346273pt;}
.y30{bottom:218.035990pt;}
.y133{bottom:221.872410pt;}
.y1ec{bottom:222.379458pt;}
.y296{bottom:222.767723pt;}
.y2dc{bottom:222.767733pt;}
.y17e{bottom:223.505751pt;}
.y305{bottom:223.526143pt;}
.yd9{bottom:224.663859pt;}
.y20f{bottom:224.663973pt;}
.y68{bottom:224.670259pt;}
.yb5{bottom:224.800663pt;}
.y253{bottom:225.434398pt;}
.y92{bottom:226.092275pt;}
.y1a8{bottom:227.195997pt;}
.y15d{bottom:228.272005pt;}
.y28{bottom:233.339864pt;}
.y2f{bottom:234.029602pt;}
.y295{bottom:234.767723pt;}
.y2db{bottom:234.767733pt;}
.y20e{bottom:236.663974pt;}
.y252{bottom:237.434399pt;}
.y132{bottom:238.000410pt;}
.y1eb{bottom:238.507458pt;}
.y17d{bottom:239.499351pt;}
.y67{bottom:240.663859pt;}
.yd8{bottom:240.676802pt;}
.y1d2{bottom:240.740783pt;}
.yb4{bottom:240.794262pt;}
.y91{bottom:242.648794pt;}
.y15c{bottom:244.405326pt;}
.y294{bottom:246.767724pt;}
.y2da{bottom:246.767734pt;}
.y20d{bottom:248.663974pt;}
.y27{bottom:249.333476pt;}
.y251{bottom:249.434399pt;}
.y2e{bottom:250.023193pt;}
.y1a7{bottom:251.099996pt;}
.y304{bottom:251.428669pt;}
.y131{bottom:254.128409pt;}
.y1ea{bottom:254.635457pt;}
.y17c{bottom:255.492950pt;}
.yd7{bottom:256.670402pt;}
.y1d1{bottom:256.734383pt;}
.y66{bottom:256.740783pt;}
.yb3{bottom:256.787862pt;}
.y293{bottom:258.767724pt;}
.y2d9{bottom:258.767734pt;}
.y90{bottom:259.195997pt;}
.y15b{bottom:260.529330pt;}
.y20c{bottom:260.663974pt;}
.y250{bottom:261.434399pt;}
.y26{bottom:265.327067pt;}
.y303{bottom:265.655070pt;}
.y2d{bottom:266.016805pt;}
.y130{bottom:270.252393pt;}
.y1e9{bottom:270.764804pt;}
.y292{bottom:270.767724pt;}
.y2d8{bottom:270.767734pt;}
.y17b{bottom:271.486550pt;}
.y20b{bottom:272.663975pt;}
.yd6{bottom:272.664001pt;}
.y1d0{bottom:272.727983pt;}
.y65{bottom:272.734383pt;}
.yb2{bottom:272.800663pt;}
.y1a6{bottom:273.270408pt;}
.y24f{bottom:273.434399pt;}
.y25{bottom:281.320658pt;}
.y2c{bottom:282.010396pt;}
.y291{bottom:282.767725pt;}
.y2d7{bottom:282.767734pt;}
.y8f{bottom:283.099996pt;}
.y15a{bottom:284.433329pt;}
.y20a{bottom:284.663975pt;}
.y24e{bottom:285.434400pt;}
.y17a{bottom:287.480150pt;}
.y1a5{bottom:287.934408pt;}
.y157{bottom:288.664001pt;}
.yd5{bottom:288.668268pt;}
.y1cf{bottom:288.721583pt;}
.y64{bottom:288.727983pt;}
.yb1{bottom:288.794262pt;}
.y12f{bottom:294.156409pt;}
.y1e8{bottom:294.668803pt;}
.y290{bottom:294.767725pt;}
.y2d6{bottom:294.767735pt;}
.y209{bottom:296.663975pt;}
.y24{bottom:297.314270pt;}
.y24d{bottom:297.434400pt;}
.y2b{bottom:298.046021pt;}
.y179{bottom:303.473750pt;}
.yd4{bottom:304.664001pt;}
.y156{bottom:304.670402pt;}
.y1ce{bottom:304.715183pt;}
.y63{bottom:304.721583pt;}
.yb0{bottom:304.787862pt;}
.y8e{bottom:305.267741pt;}
.y159{bottom:306.603741pt;}
.y28f{bottom:306.767725pt;}
.y2d5{bottom:306.767735pt;}
.y208{bottom:308.663976pt;}
.y24c{bottom:309.434400pt;}
.y12e{bottom:310.423075pt;}
.y23{bottom:313.314270pt;}
.y2a{bottom:314.039612pt;}
.y1e5{bottom:316.839194pt;}
.y28e{bottom:318.767726pt;}
.y2d4{bottom:318.767735pt;}
.y178{bottom:319.467350pt;}
.yd3{bottom:320.664001pt;}
.y155{bottom:320.695982pt;}
.y1cd{bottom:320.708782pt;}
.y62{bottom:320.715183pt;}
.yaf{bottom:320.800683pt;}
.y158{bottom:321.267741pt;}
.y24b{bottom:321.434401pt;}
.y28d{bottom:330.767726pt;}
.y2d3{bottom:330.767736pt;}
.y1e4{bottom:331.503194pt;}
.y207{bottom:332.663977pt;}
.y12b{bottom:332.871482pt;}
.y24a{bottom:333.434401pt;}
.y177{bottom:335.460949pt;}
.y154{bottom:336.689582pt;}
.y1cc{bottom:336.702382pt;}
.y61{bottom:336.708782pt;}
.yae{bottom:336.794283pt;}
.y28c{bottom:342.767726pt;}
.y2d2{bottom:342.767736pt;}
.y206{bottom:344.663977pt;}
.y249{bottom:345.434401pt;}
.y12a{bottom:347.535482pt;}
.y176{bottom:351.454549pt;}
.y195{bottom:351.486550pt;}
.yd2{bottom:352.683182pt;}
.y1cb{bottom:352.695982pt;}
.y60{bottom:352.702382pt;}
.yad{bottom:352.794283pt;}
.y28b{bottom:354.767726pt;}
.y2d1{bottom:354.767736pt;}
.y205{bottom:356.663977pt;}
.y248{bottom:357.434402pt;}
.y1d{bottom:361.280924pt;}
.y28a{bottom:366.767727pt;}
.y2d0{bottom:366.767737pt;}
.y175{bottom:367.460949pt;}
.y194{bottom:367.480150pt;}
.y204{bottom:368.663977pt;}
.y8d{bottom:368.663981pt;}
.yd1{bottom:368.676781pt;}
.y1ca{bottom:368.689582pt;}
.y5f{bottom:368.695982pt;}
.yac{bottom:368.787882pt;}
.y247{bottom:369.434402pt;}
.y289{bottom:378.767727pt;}
.y2cf{bottom:378.767737pt;}
.y203{bottom:380.663978pt;}
.y1c{bottom:381.280924pt;}
.y246{bottom:381.434402pt;}
.y174{bottom:383.467350pt;}
.y193{bottom:383.473750pt;}
.y8c{bottom:384.670381pt;}
.y1c9{bottom:384.683182pt;}
.y5e{bottom:384.689582pt;}
.yab{bottom:384.794283pt;}
.y288{bottom:390.767727pt;}
.y2ce{bottom:390.767737pt;}
.y202{bottom:392.663978pt;}
.y245{bottom:393.434402pt;}
.y1b{bottom:397.280924pt;}
.y173{bottom:399.460949pt;}
.y192{bottom:399.467350pt;}
.yff{bottom:400.537865pt;}
.y8b{bottom:400.663981pt;}
.y11a{bottom:400.670381pt;}
.y1c8{bottom:400.676781pt;}
.y5d{bottom:400.683182pt;}
.yaa{bottom:400.787882pt;}
.y287{bottom:402.767728pt;}
.y2cd{bottom:402.767737pt;}
.y201{bottom:404.663978pt;}
.y244{bottom:405.434403pt;}
.y1a{bottom:413.280924pt;}
.y286{bottom:414.767728pt;}
.y2cc{bottom:414.767738pt;}
.y191{bottom:415.460949pt;}
.y172{bottom:415.486550pt;}
.yfe{bottom:416.531465pt;}
.y8a{bottom:416.663981pt;}
.y119{bottom:416.670381pt;}
.y5c{bottom:416.676781pt;}
.ya9{bottom:416.807083pt;}
.y243{bottom:417.434403pt;}
.y285{bottom:426.767728pt;}
.y2cb{bottom:426.767738pt;}
.y200{bottom:428.663979pt;}
.y19{bottom:429.280924pt;}
.y242{bottom:429.434403pt;}
.y190{bottom:431.454549pt;}
.y171{bottom:431.480150pt;}
.yfd{bottom:432.525065pt;}
.y118{bottom:432.663981pt;}
.y5b{bottom:432.670381pt;}
.y1c7{bottom:432.683182pt;}
.ya8{bottom:432.800683pt;}
.y284{bottom:438.767729pt;}
.y2ca{bottom:438.767738pt;}
.y1ff{bottom:440.663980pt;}
.y241{bottom:441.434404pt;}
.y18f{bottom:447.454549pt;}
.y170{bottom:447.473750pt;}
.yfc{bottom:448.525065pt;}
.y5a{bottom:448.663981pt;}
.y1c6{bottom:448.676781pt;}
.yd0{bottom:448.702382pt;}
.y89{bottom:448.715183pt;}
.y1e3{bottom:448.727983pt;}
.ya7{bottom:448.794283pt;}
.y18{bottom:449.280924pt;}
.y283{bottom:450.767729pt;}
.y2c9{bottom:450.767739pt;}
.y1fe{bottom:452.663980pt;}
.y240{bottom:453.434404pt;}
.y282{bottom:462.767729pt;}
.y2c8{bottom:462.767739pt;}
.y18e{bottom:463.460949pt;}
.y16f{bottom:463.467350pt;}
.y1fd{bottom:464.663980pt;}
.y59{bottom:464.663981pt;}
.y1c5{bottom:464.670381pt;}
.y145{bottom:464.676781pt;}
.ycf{bottom:464.695982pt;}
.y88{bottom:464.708782pt;}
.y1e2{bottom:464.721583pt;}
.ya6{bottom:464.787882pt;}
.y17{bottom:465.280924pt;}
.y23f{bottom:465.434404pt;}
.y281{bottom:474.767729pt;}
.y2c7{bottom:474.767739pt;}
.y1fc{bottom:476.663981pt;}
.y23e{bottom:477.434405pt;}
.y18d{bottom:479.454549pt;}
.y16e{bottom:479.460949pt;}
.yfb{bottom:480.537865pt;}
.y117{bottom:480.663981pt;}
.y144{bottom:480.670381pt;}
.yce{bottom:480.689582pt;}
.y87{bottom:480.702382pt;}
.y58{bottom:480.715183pt;}
.ya5{bottom:480.787882pt;}
.y16{bottom:481.280924pt;}
.y280{bottom:486.767730pt;}
.y2c6{bottom:486.767740pt;}
.y1fb{bottom:488.663981pt;}
.y23d{bottom:489.434405pt;}
.y16d{bottom:495.454549pt;}
.yfa{bottom:496.531465pt;}
.y153{bottom:496.663981pt;}
.ycd{bottom:496.683182pt;}
.y86{bottom:496.695982pt;}
.y57{bottom:496.708782pt;}
.y1c4{bottom:496.734383pt;}
.y15{bottom:497.280924pt;}
.y27f{bottom:498.767730pt;}
.y2c5{bottom:498.767740pt;}
.y1fa{bottom:500.663981pt;}
.y23c{bottom:501.434405pt;}
.y27e{bottom:510.767730pt;}
.y2c4{bottom:510.767740pt;}
.y16c{bottom:511.460949pt;}
.yf9{bottom:512.531465pt;}
.y1f9{bottom:512.663981pt;}
.y152{bottom:512.670381pt;}
.ycc{bottom:512.676781pt;}
.y85{bottom:512.689582pt;}
.y56{bottom:512.702382pt;}
.y116{bottom:512.708782pt;}
.y1c3{bottom:512.727983pt;}
.ya4{bottom:512.819883pt;}
.y14{bottom:513.280924pt;}
.y23b{bottom:513.434405pt;}
.y27d{bottom:522.767731pt;}
.y2c3{bottom:522.767740pt;}
.y23a{bottom:525.434406pt;}
.y16b{bottom:527.454549pt;}
.y18c{bottom:527.467350pt;}
.yf8{bottom:528.525065pt;}
.ycb{bottom:528.670381pt;}
.y84{bottom:528.683182pt;}
.y55{bottom:528.695982pt;}
.y115{bottom:528.702382pt;}
.y1c2{bottom:528.721583pt;}
.ya3{bottom:528.813483pt;}
.y13{bottom:529.280924pt;}
.y27c{bottom:534.767731pt;}
.y2c2{bottom:534.767741pt;}
.y239{bottom:537.434406pt;}
.y18b{bottom:543.460949pt;}
.y16a{bottom:543.480150pt;}
.yf7{bottom:544.537865pt;}
.yca{bottom:544.670381pt;}
.y83{bottom:544.676781pt;}
.y54{bottom:544.689582pt;}
.y114{bottom:544.695982pt;}
.y1c1{bottom:544.715183pt;}
.ya2{bottom:544.807083pt;}
.y12{bottom:545.280924pt;}
.y27b{bottom:546.767731pt;}
.y2c1{bottom:546.767741pt;}
.y238{bottom:549.434406pt;}
.y21f{bottom:553.402784pt;}
.y27a{bottom:558.767732pt;}
.y2c0{bottom:558.767741pt;}
.y18a{bottom:559.460949pt;}
.y169{bottom:559.473750pt;}
.yf6{bottom:560.531465pt;}
.y143{bottom:560.663981pt;}
.y82{bottom:560.670381pt;}
.y53{bottom:560.683182pt;}
.y113{bottom:560.689582pt;}
.y1c0{bottom:560.708782pt;}
.ya1{bottom:560.800683pt;}
.y11{bottom:561.280924pt;}
.y237{bottom:561.434407pt;}
.y21e{bottom:565.402784pt;}
.y279{bottom:570.767732pt;}
.y2bf{bottom:570.767742pt;}
.y236{bottom:573.434407pt;}
.y189{bottom:575.454549pt;}
.y168{bottom:575.467350pt;}
.yf5{bottom:576.525065pt;}
.y81{bottom:576.663981pt;}
.y142{bottom:576.670381pt;}
.y52{bottom:576.676781pt;}
.y112{bottom:576.683182pt;}
.y1bf{bottom:576.702382pt;}
.ya0{bottom:576.794283pt;}
.y10{bottom:577.280924pt;}
.y21d{bottom:582.732784pt;}
.y278{bottom:582.767732pt;}
.y2be{bottom:582.767742pt;}
.y235{bottom:585.434407pt;}
.y167{bottom:591.460949pt;}
.y188{bottom:591.471581pt;}
.yf4{bottom:592.531465pt;}
.y51{bottom:592.670381pt;}
.y111{bottom:592.676781pt;}
.y80{bottom:592.683182pt;}
.y1be{bottom:592.695982pt;}
.yc9{bottom:592.727902pt;}
.y9f{bottom:592.787882pt;}
.yf{bottom:593.280924pt;}
.y21c{bottom:594.732785pt;}
.y277{bottom:594.767732pt;}
.y2bd{bottom:594.767742pt;}
.y234{bottom:597.434408pt;}
.y302{bottom:606.767716pt;}
.y276{bottom:606.767733pt;}
.y2bc{bottom:606.767743pt;}
.y166{bottom:607.454549pt;}
.y187{bottom:607.465181pt;}
.yf3{bottom:608.525065pt;}
.y141{bottom:608.663981pt;}
.y110{bottom:608.670381pt;}
.y7f{bottom:608.676781pt;}
.y1bd{bottom:608.689582pt;}
.y151{bottom:608.695901pt;}
.y50{bottom:608.721501pt;}
.y9e{bottom:608.800683pt;}
.ye{bottom:609.280924pt;}
.y21b{bottom:612.062785pt;}
.y301{bottom:618.767717pt;}
.y275{bottom:618.767733pt;}
.y2bb{bottom:618.767743pt;}
.yf2{bottom:624.525065pt;}
.y10f{bottom:624.663981pt;}
.y7e{bottom:624.670381pt;}
.y1bc{bottom:624.683182pt;}
.y150{bottom:624.689501pt;}
.y4f{bottom:624.715101pt;}
.y9d{bottom:624.794283pt;}
.yd{bottom:629.280924pt;}
.y300{bottom:630.767717pt;}
.y274{bottom:630.767733pt;}
.y2ba{bottom:630.767743pt;}
.y7d{bottom:640.663981pt;}
.y140{bottom:640.670381pt;}
.y1bb{bottom:640.676781pt;}
.y14f{bottom:640.683100pt;}
.y4e{bottom:640.708701pt;}
.y1e1{bottom:640.721501pt;}
.y9c{bottom:640.787882pt;}
.y2ff{bottom:642.767717pt;}
.y273{bottom:642.767734pt;}
.y2b9{bottom:642.767743pt;}
.yc{bottom:645.280924pt;}
.y21a{bottom:646.363851pt;}
.y2fe{bottom:654.767717pt;}
.y272{bottom:654.767734pt;}
.y2b8{bottom:654.767744pt;}
.y7c{bottom:656.663981pt;}
.y1ba{bottom:656.670381pt;}
.y14e{bottom:656.676700pt;}
.y10e{bottom:656.683100pt;}
.y4d{bottom:656.702301pt;}
.y1e0{bottom:656.715101pt;}
.y197{bottom:658.587077pt;}
.yb{bottom:661.280924pt;}
.y2fd{bottom:666.767718pt;}
.y233{bottom:666.767735pt;}
.y2b7{bottom:666.767744pt;}
.y11c{bottom:667.920410pt;}
.y13f{bottom:672.663981pt;}
.y14d{bottom:672.670300pt;}
.y10d{bottom:672.676700pt;}
.y4c{bottom:672.695901pt;}
.y1df{bottom:672.708701pt;}
.y196{bottom:673.699992pt;}
.ya{bottom:677.280924pt;}
.y2fc{bottom:678.767718pt;}
.y271{bottom:678.767735pt;}
.y2b6{bottom:678.767744pt;}
.y11b{bottom:683.033366pt;}
.yef{bottom:687.403986pt;}
.y7b{bottom:688.663900pt;}
.y10c{bottom:688.670300pt;}
.y1f8{bottom:688.676700pt;}
.y4b{bottom:688.689501pt;}
.y1de{bottom:688.702301pt;}
.y1a4{bottom:689.807341pt;}
.y2fb{bottom:690.767718pt;}
.y270{bottom:690.767735pt;}
.y232{bottom:690.767736pt;}
.y2b5{bottom:690.767745pt;}
.y9{bottom:693.280924pt;}
.y129{bottom:699.274701pt;}
.y2fa{bottom:702.767719pt;}
.y26f{bottom:702.767735pt;}
.y231{bottom:702.767736pt;}
.y2b4{bottom:702.767745pt;}
.yee{bottom:703.606653pt;}
.y10b{bottom:704.663900pt;}
.y1f7{bottom:704.670300pt;}
.y14c{bottom:704.676700pt;}
.y4a{bottom:704.683100pt;}
.y1dd{bottom:704.695901pt;}
.y1a3{bottom:706.010008pt;}
.y8{bottom:713.280924pt;}
.y2f9{bottom:714.767719pt;}
.y26e{bottom:714.767735pt;}
.y2b3{bottom:714.767745pt;}
.y128{bottom:715.477368pt;}
.yed{bottom:719.734653pt;}
.y1f6{bottom:720.663900pt;}
.y13e{bottom:720.670300pt;}
.y49{bottom:720.676700pt;}
.y10a{bottom:720.689501pt;}
.y1b9{bottom:720.702301pt;}
.y1a2{bottom:722.148675pt;}
.y2f8{bottom:726.767719pt;}
.y26d{bottom:726.767736pt;}
.y230{bottom:726.767737pt;}
.y2b2{bottom:726.767746pt;}
.y127{bottom:731.616035pt;}
.yec{bottom:735.873320pt;}
.y48{bottom:736.670300pt;}
.y13d{bottom:736.676700pt;}
.y109{bottom:736.683100pt;}
.y1b8{bottom:736.695901pt;}
.y1a1{bottom:738.276675pt;}
.y2f7{bottom:738.767720pt;}
.y26c{bottom:738.767736pt;}
.y22f{bottom:738.767737pt;}
.y2b1{bottom:738.767746pt;}
.y126{bottom:747.744035pt;}
.y2f6{bottom:750.767720pt;}
.y26b{bottom:750.767736pt;}
.y22e{bottom:750.767738pt;}
.y2b0{bottom:750.767746pt;}
.yeb{bottom:752.001319pt;}
.y47{bottom:752.663900pt;}
.yc8{bottom:752.670300pt;}
.y108{bottom:752.676700pt;}
.y1b7{bottom:752.689501pt;}
.y1a0{bottom:754.404674pt;}
.y2f5{bottom:762.767720pt;}
.y26a{bottom:762.767737pt;}
.y22d{bottom:762.767738pt;}
.y2af{bottom:762.767746pt;}
.y125{bottom:763.872034pt;}
.yea{bottom:768.129319pt;}
.y7a{bottom:768.663900pt;}
.yc7{bottom:768.670300pt;}
.y46{bottom:768.676700pt;}
.y1b6{bottom:768.683100pt;}
.y14b{bottom:768.689501pt;}
.y7{bottom:770.380941pt;}
.y19f{bottom:770.532673pt;}
.y2f4{bottom:774.767720pt;}
.y269{bottom:774.767737pt;}
.y22c{bottom:774.767738pt;}
.y2ae{bottom:774.767747pt;}
.y124{bottom:780.010701pt;}
.ye9{bottom:784.267985pt;}
.y79{bottom:784.663900pt;}
.y45{bottom:784.670300pt;}
.y1b5{bottom:784.676700pt;}
.y14a{bottom:784.683100pt;}
.yc6{bottom:784.727870pt;}
.y19e{bottom:786.660673pt;}
.y2f3{bottom:786.767721pt;}
.y268{bottom:786.767737pt;}
.y22b{bottom:786.767739pt;}
.y2ad{bottom:786.767747pt;}
.y123{bottom:792.010701pt;}
.y2f2{bottom:798.767721pt;}
.y267{bottom:798.767738pt;}
.y22a{bottom:798.767739pt;}
.y2ac{bottom:798.767747pt;}
.ye8{bottom:800.395985pt;}
.y107{bottom:800.663900pt;}
.y44{bottom:800.670300pt;}
.y149{bottom:800.676700pt;}
.yc5{bottom:800.721470pt;}
.y6{bottom:802.403076pt;}
.y19d{bottom:802.799340pt;}
.y122{bottom:808.138700pt;}
.y2f1{bottom:810.767721pt;}
.y266{bottom:810.767738pt;}
.y229{bottom:810.767739pt;}
.y2ab{bottom:810.767748pt;}
.y19c{bottom:814.799340pt;}
.ye7{bottom:816.534652pt;}
.y43{bottom:816.663900pt;}
.y148{bottom:816.670300pt;}
.y78{bottom:816.689501pt;}
.yc4{bottom:816.715070pt;}
.y2f0{bottom:822.767722pt;}
.y265{bottom:822.767738pt;}
.y228{bottom:822.767740pt;}
.y2aa{bottom:822.767748pt;}
.y121{bottom:824.277367pt;}
.y19b{bottom:830.927339pt;}
.ye6{bottom:832.662651pt;}
.y42{bottom:832.663900pt;}
.y13c{bottom:832.676700pt;}
.y77{bottom:832.683100pt;}
.y1b4{bottom:832.689501pt;}
.yc3{bottom:832.708670pt;}
.y106{bottom:832.717860pt;}
.y2ef{bottom:834.767722pt;}
.y264{bottom:834.767738pt;}
.y2a9{bottom:834.767748pt;}
.y120{bottom:836.277367pt;}
.y5{bottom:837.059082pt;}
.y2ee{bottom:846.767722pt;}
.y263{bottom:846.767739pt;}
.y227{bottom:846.767741pt;}
.y2a8{bottom:846.767749pt;}
.y19a{bottom:847.051486pt;}
.y1dc{bottom:848.663900pt;}
.y41{bottom:848.670300pt;}
.y76{bottom:848.676700pt;}
.y1b3{bottom:848.683100pt;}
.y1f5{bottom:848.695901pt;}
.yc2{bottom:848.702269pt;}
.y105{bottom:848.711460pt;}
.y11f{bottom:852.405366pt;}
.ye5{bottom:856.572016pt;}
.y2ed{bottom:858.767723pt;}
.y262{bottom:858.767739pt;}
.y226{bottom:858.767741pt;}
.y2a7{bottom:858.767749pt;}
.y40{bottom:864.663900pt;}
.y75{bottom:864.670300pt;}
.y1b2{bottom:864.676700pt;}
.y1f4{bottom:864.689501pt;}
.yc1{bottom:864.695869pt;}
.y104{bottom:864.705060pt;}
.y11e{bottom:868.529350pt;}
.y2ec{bottom:870.767723pt;}
.y261{bottom:870.767739pt;}
.y225{bottom:870.767740pt;}
.y2a6{bottom:870.767749pt;}
.y199{bottom:870.960688pt;}
.y4{bottom:871.715088pt;}
.ye4{bottom:877.766683pt;}
.y74{bottom:880.663900pt;}
.y1b1{bottom:880.670300pt;}
.y3f{bottom:880.676700pt;}
.y1f3{bottom:880.683100pt;}
.yc0{bottom:880.689469pt;}
.y103{bottom:880.698660pt;}
.y2eb{bottom:882.767723pt;}
.y260{bottom:882.767740pt;}
.y224{bottom:882.767741pt;}
.y2a5{bottom:882.767749pt;}
.y198{bottom:892.155355pt;}
.y11d{bottom:892.433350pt;}
.y2ea{bottom:894.767723pt;}
.y223{bottom:894.767741pt;}
.y2a4{bottom:894.767750pt;}
.y73{bottom:896.663900pt;}
.y3e{bottom:896.670300pt;}
.y13b{bottom:896.676700pt;}
.ybf{bottom:896.683069pt;}
.y102{bottom:896.692260pt;}
.ye3{bottom:899.939741pt;}
.y2e9{bottom:906.767724pt;}
.y222{bottom:906.767741pt;}
.y2a3{bottom:906.767750pt;}
.y3d{bottom:912.663900pt;}
.y13a{bottom:912.670300pt;}
.ybe{bottom:912.676669pt;}
.y101{bottom:912.685859pt;}
.y147{bottom:912.700519pt;}
.y1db{bottom:912.708949pt;}
.y72{bottom:912.721749pt;}
.ye2{bottom:914.603741pt;}
.y2e8{bottom:918.767724pt;}
.y25f{bottom:918.767741pt;}
.y2a2{bottom:918.767750pt;}
.y3{bottom:920.434408pt;}
.y35{bottom:922.556641pt;}
.y221{bottom:922.767741pt;}
.y3c{bottom:928.663900pt;}
.ybd{bottom:928.670268pt;}
.y100{bottom:928.679459pt;}
.y146{bottom:928.694119pt;}
.y1da{bottom:928.702548pt;}
.y71{bottom:928.715349pt;}
.ye1{bottom:929.267741pt;}
.y2e7{bottom:930.767724pt;}
.y220{bottom:930.767741pt;}
.y2a1{bottom:930.767751pt;}
.y2{bottom:990.598226pt;}
.y3a{bottom:1003.244954pt;}
.yf0{bottom:1003.245036pt;}
.y3b{bottom:1003.596954pt;}
.yf1{bottom:1003.597036pt;}
.y1{bottom:1003.600911pt;}
.y9b{bottom:1003.601074pt;}
.he{height:24.724000pt;}
.h22{height:24.878934pt;}
.h45{height:25.200001pt;}
.h44{height:27.635201pt;}
.hb{height:32.965333pt;}
.hd{height:35.320000pt;}
.h3e{height:35.320001pt;}
.h43{height:36.135058pt;}
.h18{height:37.674667pt;}
.h42{height:38.080000pt;}
.h3d{height:38.920000pt;}
.h3f{height:39.560000pt;}
.h3{height:40.618667pt;}
.h40{height:40.724001pt;}
.h41{height:40.724002pt;}
.h15{height:41.514667pt;}
.h1d{height:41.714158pt;}
.h1b{height:41.717845pt;}
.h1c{height:41.724803pt;}
.h17{height:41.724844pt;}
.h1a{height:41.753551pt;}
.h16{height:41.762108pt;}
.h2{height:41.983924pt;}
.hf{height:41.984000pt;}
.h39{height:43.390930pt;}
.h30{height:43.417549pt;}
.h31{height:43.417589pt;}
.h2f{height:43.417630pt;}
.h32{height:43.449618pt;}
.h38{height:43.454409pt;}
.h23{height:43.454735pt;}
.h3c{height:43.454897pt;}
.h26{height:43.454979pt;}
.h1f{height:46.583400pt;}
.h37{height:46.584051pt;}
.h25{height:46.604798pt;}
.h36{height:46.604865pt;}
.h9{height:47.093333pt;}
.h14{height:47.472000pt;}
.h1e{height:47.692799pt;}
.h13{height:47.741866pt;}
.hc{height:49.653334pt;}
.h8{height:51.893333pt;}
.ha{height:54.298667pt;}
.h7{height:54.329068pt;}
.h34{height:55.279938pt;}
.h3a{height:55.356293pt;}
.h2e{height:55.433625pt;}
.h12{height:55.433991pt;}
.h2c{height:55.536068pt;}
.h2a{height:55.536394pt;}
.h29{height:55.587270pt;}
.h28{height:55.612708pt;}
.h2b{height:55.612871pt;}
.h33{height:55.613196pt;}
.h11{height:55.637658pt;}
.h27{height:55.638309pt;}
.h3b{height:55.638390pt;}
.h20{height:55.638472pt;}
.h35{height:55.638797pt;}
.h10{height:55.663258pt;}
.h2d{height:55.663991pt;}
.h21{height:55.664072pt;}
.h6{height:59.728663pt;}
.h4{height:68.570667pt;}
.h24{height:85.674667pt;}
.h19{height:89.724763pt;}
.h5{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162801pt;}
.x8{left:86.257202pt;}
.xf{left:95.590535pt;}
.xd{left:193.625204pt;}
.xb{left:205.057332pt;}
.x4{left:240.726664pt;}
.xc{left:297.454549pt;}
.x5{left:406.304810pt;}
.x9{left:414.294540pt;}
.xa{left:416.970268pt;}
.xe{left:426.299194pt;}
.x12{left:429.550252pt;}
.x11{left:430.495605pt;}
.x6{left:617.715454pt;}
.x10{left:658.727458pt;}
.x7{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; }
  