
    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_fb7165c65beb2736524381cc.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_9958819535ece9d6087e65c8.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_01e370ebb07f3a112dfb2e20.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_a43ac5100099eecc9e71909e.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_1b58e203dd120833cfd64dc5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d38dc9a71493999569ef6b6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722000;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_95c74181be4269d23c139852.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.762000;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_ab8bdde210a41e53bb3c388d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_12d45e51a9bb4517f19c0af4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_557aea29fd3931857ad3a127.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f73e1e9c59969dcf4818d313.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6c6035a1da0ef0dafd4e1180.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.896000;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_5a1cca6c0b8e7e3f3858773a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b265c3cad0e725c4fb9aa22a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_298271b2c32b83de00956b90.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3bc061e1dff5a190826d69f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.023000;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);}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-14.728874px;}
.v7{vertical-align:-11.249860px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.487915px;}
.v6{vertical-align:18.000001px;}
.v4{vertical-align:23.462387px;}
.v2{vertical-align:26.399780px;}
.lsf{letter-spacing:-2.922360px;}
.lse{letter-spacing:-1.411200px;}
.lsb{letter-spacing:-0.352800px;}
.ls13{letter-spacing:-0.308599px;}
.ls17{letter-spacing:-0.274310px;}
.ls15{letter-spacing:-0.240022px;}
.ls16{letter-spacing:-0.102866px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000002px;}
.lsd{letter-spacing:0.000007px;}
.ls1{letter-spacing:0.000177px;}
.ls8{letter-spacing:0.000399px;}
.ls7{letter-spacing:0.000491px;}
.ls9{letter-spacing:0.000582px;}
.lsa{letter-spacing:0.019681px;}
.ls11{letter-spacing:0.034289px;}
.ls10{letter-spacing:0.068578px;}
.ls14{letter-spacing:0.137155px;}
.ls12{letter-spacing:0.377177px;}
.lsc{letter-spacing:0.470400px;}
.ls0{letter-spacing:5.460000px;}
.ls6{letter-spacing:6.543953px;}
.ls5{letter-spacing:7.533795px;}
.ls2{letter-spacing:10.393337px;}
.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;}
.ws20{word-spacing:-14.288400px;}
.ws1e{word-spacing:-13.818000px;}
.ws1f{word-spacing:-13.465200px;}
.ws3{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.483600px;}
.wsaf{word-spacing:-12.406800px;}
.ws1b{word-spacing:-11.426400px;}
.ws5{word-spacing:-10.448328px;}
.ws1{word-spacing:-10.117800px;}
.ws1c{word-spacing:-10.101600px;}
.ws14d{word-spacing:-9.855000px;}
.ws1d{word-spacing:-9.672600px;}
.ws14c{word-spacing:-9.315000px;}
.ws4{word-spacing:-9.198000px;}
.ws14e{word-spacing:-9.090000px;}
.ws11c{word-spacing:-8.126445px;}
.ws14f{word-spacing:-8.100000px;}
.ws11d{word-spacing:-7.817846px;}
.ws11b{word-spacing:-7.749269px;}
.ws120{word-spacing:-7.646402px;}
.ws19{word-spacing:-7.533795px;}
.ws11f{word-spacing:-7.509247px;}
.ws121{word-spacing:-7.474958px;}
.ws11e{word-spacing:-7.440669px;}
.ws14b{word-spacing:-6.898500px;}
.wsff{word-spacing:-6.750240px;}
.ws1a{word-spacing:-6.543953px;}
.ws9{word-spacing:-2.772000px;}
.ws8{word-spacing:-2.310000px;}
.wsf9{word-spacing:-1.881600px;}
.ws138{word-spacing:-1.680000px;}
.ws153{word-spacing:-1.575000px;}
.wsb1{word-spacing:-1.352400px;}
.wsd7{word-spacing:-1.058400px;}
.ws134{word-spacing:-0.999600px;}
.ws143{word-spacing:-0.705600px;}
.wsfc{word-spacing:-0.646800px;}
.ws6f{word-spacing:-0.529200px;}
.wsf{word-spacing:-0.470400px;}
.ws6d{word-spacing:-0.411600px;}
.ws77{word-spacing:-0.352800px;}
.ws18{word-spacing:-0.294000px;}
.ws110{word-spacing:-0.235200px;}
.wsa0{word-spacing:-0.176400px;}
.ws137{word-spacing:-0.137155px;}
.ws152{word-spacing:-0.135000px;}
.wsd2{word-spacing:-0.117600px;}
.ws6{word-spacing:-0.073321px;}
.ws135{word-spacing:-0.068578px;}
.ws113{word-spacing:-0.058800px;}
.ws136{word-spacing:-0.034289px;}
.ws7{word-spacing:0.000000px;}
.wsb4{word-spacing:0.058800px;}
.ws9e{word-spacing:0.117600px;}
.ws12f{word-spacing:0.176400px;}
.ws82{word-spacing:0.235200px;}
.ws12{word-spacing:0.294000px;}
.wsfd{word-spacing:0.352800px;}
.ws144{word-spacing:0.411600px;}
.ws12e{word-spacing:0.470400px;}
.wsbd{word-spacing:0.529200px;}
.ws37{word-spacing:0.588000px;}
.ws13f{word-spacing:0.646800px;}
.ws57{word-spacing:0.705600px;}
.ws104{word-spacing:0.764400px;}
.wsc2{word-spacing:0.823200px;}
.wscf{word-spacing:0.882000px;}
.ws59{word-spacing:0.940800px;}
.ws130{word-spacing:0.999600px;}
.ws89{word-spacing:1.117200px;}
.ws115{word-spacing:1.176000px;}
.ws66{word-spacing:1.234800px;}
.ws6c{word-spacing:1.293600px;}
.ws3e{word-spacing:1.528800px;}
.ws26{word-spacing:1.587600px;}
.wsaa{word-spacing:1.646400px;}
.ws8b{word-spacing:1.705200px;}
.ws34{word-spacing:1.764000px;}
.ws7a{word-spacing:1.822800px;}
.wsf1{word-spacing:1.881600px;}
.ws62{word-spacing:1.940400px;}
.wsd6{word-spacing:1.999200px;}
.ws49{word-spacing:2.058000px;}
.ws93{word-spacing:2.175600px;}
.wsa6{word-spacing:2.234400px;}
.ws51{word-spacing:2.293200px;}
.ws50{word-spacing:2.352000px;}
.wsad{word-spacing:2.410800px;}
.ws9d{word-spacing:2.469600px;}
.ws95{word-spacing:2.528400px;}
.ws5b{word-spacing:2.587200px;}
.wsc5{word-spacing:2.646000px;}
.ws84{word-spacing:2.704800px;}
.ws13a{word-spacing:2.763600px;}
.ws30{word-spacing:2.822400px;}
.ws13c{word-spacing:2.881200px;}
.ws145{word-spacing:2.940000px;}
.wsa3{word-spacing:2.998800px;}
.ws58{word-spacing:3.057600px;}
.ws87{word-spacing:3.175200px;}
.wseb{word-spacing:3.234000px;}
.ws127{word-spacing:3.292800px;}
.wsbf{word-spacing:3.351600px;}
.wsb9{word-spacing:3.410400px;}
.ws7c{word-spacing:3.469200px;}
.ws116{word-spacing:3.528000px;}
.ws2f{word-spacing:3.586800px;}
.ws41{word-spacing:3.645600px;}
.wsae{word-spacing:3.704400px;}
.ws7e{word-spacing:3.763200px;}
.ws7f{word-spacing:3.822000px;}
.ws3f{word-spacing:3.880800px;}
.wsb5{word-spacing:3.939600px;}
.ws38{word-spacing:3.998400px;}
.ws8a{word-spacing:4.057200px;}
.wsd0{word-spacing:4.116000px;}
.ws31{word-spacing:4.174800px;}
.wsbc{word-spacing:4.233600px;}
.ws142{word-spacing:4.292400px;}
.wse8{word-spacing:4.351200px;}
.wsa8{word-spacing:4.410000px;}
.ws43{word-spacing:4.468800px;}
.ws80{word-spacing:4.586400px;}
.wsb{word-spacing:4.645200px;}
.wsc0{word-spacing:4.704000px;}
.ws101{word-spacing:4.762800px;}
.wsb6{word-spacing:4.821600px;}
.wsb7{word-spacing:4.880400px;}
.ws4a{word-spacing:4.939200px;}
.ws10a{word-spacing:4.998000px;}
.ws81{word-spacing:5.056800px;}
.wsdb{word-spacing:5.115600px;}
.ws97{word-spacing:5.233200px;}
.wsc4{word-spacing:5.292000px;}
.wsac{word-spacing:5.350800px;}
.ws9c{word-spacing:5.409600px;}
.ws6e{word-spacing:5.468400px;}
.ws3b{word-spacing:5.527200px;}
.ws75{word-spacing:5.586000px;}
.ws12a{word-spacing:5.644800px;}
.ws56{word-spacing:5.703600px;}
.ws5d{word-spacing:5.762400px;}
.ws67{word-spacing:5.821200px;}
.ws78{word-spacing:5.880000px;}
.wse0{word-spacing:5.938800px;}
.ws13{word-spacing:5.997600px;}
.ws73{word-spacing:6.056400px;}
.ws3a{word-spacing:6.115200px;}
.ws83{word-spacing:6.174000px;}
.ws9a{word-spacing:6.232800px;}
.ws72{word-spacing:6.291600px;}
.ws86{word-spacing:6.350400px;}
.ws63{word-spacing:6.409200px;}
.ws65{word-spacing:6.468000px;}
.wsd1{word-spacing:6.526800px;}
.wsf2{word-spacing:6.703200px;}
.ws5c{word-spacing:6.762000px;}
.ws33{word-spacing:6.820800px;}
.ws85{word-spacing:6.879600px;}
.ws39{word-spacing:6.938400px;}
.wsf3{word-spacing:6.997200px;}
.ws92{word-spacing:7.056000px;}
.ws4d{word-spacing:7.114800px;}
.wsa1{word-spacing:7.173600px;}
.ws4b{word-spacing:7.232400px;}
.ws102{word-spacing:7.350000px;}
.ws53{word-spacing:7.408800px;}
.ws3c{word-spacing:7.467600px;}
.ws151{word-spacing:7.526400px;}
.wscb{word-spacing:7.644000px;}
.ws6b{word-spacing:7.702800px;}
.ws45{word-spacing:7.761600px;}
.ws68{word-spacing:7.820400px;}
.ws35{word-spacing:7.879200px;}
.wsa5{word-spacing:7.938000px;}
.ws60{word-spacing:7.996800px;}
.ws139{word-spacing:8.055600px;}
.ws10d{word-spacing:8.114400px;}
.ws13d{word-spacing:8.173200px;}
.ws64{word-spacing:8.232000px;}
.ws11{word-spacing:8.290800px;}
.ws99{word-spacing:8.349600px;}
.wsdf{word-spacing:8.408400px;}
.ws14a{word-spacing:8.467200px;}
.wsc3{word-spacing:8.526000px;}
.wse2{word-spacing:8.584800px;}
.ws6a{word-spacing:8.643600px;}
.ws10e{word-spacing:8.702400px;}
.ws9b{word-spacing:8.761200px;}
.ws48{word-spacing:8.820000px;}
.ws100{word-spacing:8.878800px;}
.wsf4{word-spacing:8.937600px;}
.wsf7{word-spacing:8.996400px;}
.ws118{word-spacing:9.114000px;}
.wsba{word-spacing:9.172800px;}
.wsc9{word-spacing:9.231600px;}
.ws141{word-spacing:9.349200px;}
.ws52{word-spacing:9.408000px;}
.wsa4{word-spacing:9.466800px;}
.ws106{word-spacing:9.525600px;}
.wsc{word-spacing:9.584400px;}
.wsb3{word-spacing:9.643200px;}
.wsdc{word-spacing:9.702000px;}
.ws79{word-spacing:9.760800px;}
.ws42{word-spacing:9.819600px;}
.wsfa{word-spacing:9.878400px;}
.ws2b{word-spacing:9.937200px;}
.wsc7{word-spacing:9.996000px;}
.wsca{word-spacing:10.054800px;}
.wsa9{word-spacing:10.113600px;}
.ws17{word-spacing:10.172400px;}
.ws4f{word-spacing:10.231200px;}
.ws96{word-spacing:10.290000px;}
.ws25{word-spacing:10.348800px;}
.wsc1{word-spacing:10.407600px;}
.ws5f{word-spacing:10.466400px;}
.ws131{word-spacing:10.525200px;}
.ws4c{word-spacing:10.584000px;}
.ws10c{word-spacing:10.701600px;}
.ws8f{word-spacing:10.760400px;}
.ws70{word-spacing:10.819200px;}
.wsb8{word-spacing:10.878000px;}
.ws14{word-spacing:10.936800px;}
.ws61{word-spacing:11.054400px;}
.ws9f{word-spacing:11.172000px;}
.ws22{word-spacing:11.230800px;}
.ws47{word-spacing:11.289600px;}
.ws108{word-spacing:11.348400px;}
.ws44{word-spacing:11.407200px;}
.ws5a{word-spacing:11.583600px;}
.wsce{word-spacing:11.642400px;}
.wsd4{word-spacing:11.701200px;}
.ws7b{word-spacing:11.760000px;}
.ws117{word-spacing:11.818800px;}
.wsd3{word-spacing:11.877600px;}
.ws55{word-spacing:11.995200px;}
.ws69{word-spacing:12.054000px;}
.ws2e{word-spacing:12.230400px;}
.wsee{word-spacing:12.289200px;}
.wsbe{word-spacing:12.524400px;}
.wse4{word-spacing:12.583200px;}
.ws8e{word-spacing:12.642000px;}
.ws10{word-spacing:12.700800px;}
.ws90{word-spacing:12.759600px;}
.ws32{word-spacing:12.818400px;}
.ws88{word-spacing:12.877200px;}
.ws71{word-spacing:12.994800px;}
.wscc{word-spacing:13.053600px;}
.ws10b{word-spacing:13.112400px;}
.wsa2{word-spacing:13.171200px;}
.wsa{word-spacing:13.230000px;}
.ws109{word-spacing:13.347600px;}
.ws91{word-spacing:13.465200px;}
.wsf5{word-spacing:13.582800px;}
.ws54{word-spacing:13.641600px;}
.ws147{word-spacing:13.700400px;}
.wsea{word-spacing:13.759200px;}
.ws40{word-spacing:13.818000px;}
.ws15{word-spacing:13.876800px;}
.ws13b{word-spacing:14.112000px;}
.ws28{word-spacing:14.170800px;}
.ws129{word-spacing:14.229600px;}
.ws46{word-spacing:14.288400px;}
.ws74{word-spacing:14.347200px;}
.ws12d{word-spacing:14.523600px;}
.ws16{word-spacing:14.641200px;}
.ws146{word-spacing:14.758799px;}
.wsde{word-spacing:14.876400px;}
.wsfb{word-spacing:14.935200px;}
.ws2d{word-spacing:14.994000px;}
.ws149{word-spacing:15.052801px;}
.ws133{word-spacing:15.111600px;}
.ws105{word-spacing:15.170399px;}
.ws12c{word-spacing:15.346800px;}
.ws4e{word-spacing:15.464401px;}
.ws36{word-spacing:15.581999px;}
.ws21{word-spacing:15.758400px;}
.ws122{word-spacing:15.934800px;}
.ws8c{word-spacing:16.170000px;}
.ws23{word-spacing:16.287601px;}
.ws125{word-spacing:16.346400px;}
.ws3d{word-spacing:16.464000px;}
.wscd{word-spacing:16.640400px;}
.wse6{word-spacing:16.758000px;}
.ws126{word-spacing:16.816801px;}
.wsfe{word-spacing:16.934399px;}
.ws94{word-spacing:16.993200px;}
.ws2c{word-spacing:17.052000px;}
.wsb2{word-spacing:17.228401px;}
.wsda{word-spacing:17.463600px;}
.ws13e{word-spacing:17.875200px;}
.wsd{word-spacing:17.992800px;}
.wse{word-spacing:18.345600px;}
.ws132{word-spacing:18.404400px;}
.wsc6{word-spacing:18.522000px;}
.wsbb{word-spacing:18.580801px;}
.wsa7{word-spacing:18.698399px;}
.ws119{word-spacing:18.757200px;}
.wsb0{word-spacing:18.816000px;}
.wse7{word-spacing:18.874800px;}
.wsab{word-spacing:18.933600px;}
.wsed{word-spacing:19.051200px;}
.wsd5{word-spacing:19.109999px;}
.ws7d{word-spacing:19.345200px;}
.wsd9{word-spacing:19.404000px;}
.wse5{word-spacing:19.462800px;}
.wsec{word-spacing:19.580400px;}
.ws150{word-spacing:19.756800px;}
.ws114{word-spacing:19.992000px;}
.wsdd{word-spacing:20.109600px;}
.wsc8{word-spacing:20.168400px;}
.ws123{word-spacing:20.227200px;}
.ws112{word-spacing:20.286000px;}
.ws103{word-spacing:20.403600px;}
.ws76{word-spacing:20.815200px;}
.ws10f{word-spacing:21.050401px;}
.wsf8{word-spacing:21.285599px;}
.ws11a{word-spacing:21.344400px;}
.ws124{word-spacing:21.814800px;}
.ws2a{word-spacing:21.991201px;}
.ws27{word-spacing:22.167600px;}
.ws98{word-spacing:22.520399px;}
.wsf0{word-spacing:22.931999px;}
.wse9{word-spacing:23.402400px;}
.ws107{word-spacing:23.696400px;}
.wse1{word-spacing:23.872800px;}
.ws29{word-spacing:23.931600px;}
.ws128{word-spacing:24.049200px;}
.wsef{word-spacing:24.166801px;}
.ws8d{word-spacing:24.284399px;}
.wse3{word-spacing:25.401601px;}
.ws5e{word-spacing:25.930801px;}
.ws111{word-spacing:27.518401px;}
.ws24{word-spacing:28.282801px;}
.wsf6{word-spacing:28.694401px;}
.ws140{word-spacing:30.869999px;}
.wsd8{word-spacing:33.104402px;}
.ws12b{word-spacing:33.633602px;}
.ws148{word-spacing:36.220801px;}
._4{margin-left:-10.701600px;}
._5{margin-left:-8.927783px;}
._13{margin-left:-5.821117px;}
._9{margin-left:-4.268880px;}
._3{margin-left:-2.840481px;}
._0{margin-left:-1.584000px;}
._1{width:1.190368px;}
._2{width:3.168119px;}
._c{width:4.839240px;}
._d{width:6.236737px;}
._a{width:7.559913px;}
._7{width:9.019799px;}
._6{width:10.232243px;}
._8{width:12.354425px;}
._10{width:13.976760px;}
._b{width:15.052799px;}
._f{width:16.699199px;}
._e{width:20.797239px;}
._15{width:22.808879px;}
._14{width:44.768879px;}
._11{width:195.960493px;}
._12{width:215.196505px;}
.fc3{color:rgb(36,43,100);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(62,62,62);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.500000px;}
.fsf{font-size:34.288799px;}
.fse{font-size:41.160001px;}
.fs7{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:54.991201px;}
.fsd{font-size:55.199999px;}
.fs8{font-size:58.800001px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800001px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:73.321197px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1a8{bottom:2.633549px;}
.y3b{bottom:4.582764px;}
.y3a{bottom:22.149994px;}
.y37{bottom:39.715576px;}
.y24{bottom:75.191248px;}
.y23{bottom:87.192753px;}
.y22{bottom:99.194252px;}
.y299{bottom:99.987556px;}
.y20d{bottom:105.120890px;}
.y187{bottom:106.620895px;}
.y74{bottom:106.628096px;}
.y157{bottom:106.635296px;}
.y145{bottom:106.642496px;}
.ya3{bottom:106.656896px;}
.yca{bottom:106.664097px;}
.y175{bottom:106.692898px;}
.y1b0{bottom:108.209404px;}
.y11a{bottom:109.287003px;}
.y1ec{bottom:110.149799px;}
.y1d1{bottom:110.164200px;}
.y21{bottom:111.195751px;}
.y2e7{bottom:112.796262px;}
.y298{bottom:113.487556px;}
.y20c{bottom:118.620891px;}
.y20{bottom:123.197250px;}
.y1af{bottom:123.209404px;}
.y119{bottom:124.287003px;}
.y73{bottom:124.620895px;}
.y156{bottom:124.628096px;}
.y144{bottom:124.635296px;}
.ya2{bottom:124.649696px;}
.yc9{bottom:124.656896px;}
.y174{bottom:124.685697px;}
.y2e6{bottom:124.797762px;}
.y297{bottom:126.987556px;}
.y2de{bottom:126.987568px;}
.y252{bottom:126.990853px;}
.y1eb{bottom:128.142599px;}
.y1d0{bottom:128.157000px;}
.y20b{bottom:132.120891px;}
.y1ae{bottom:138.209404px;}
.y118{bottom:139.287003px;}
.y296{bottom:140.487557px;}
.y2dd{bottom:140.487568px;}
.y251{bottom:140.490853px;}
.y72{bottom:142.620895px;}
.y143{bottom:142.628096px;}
.ya1{bottom:142.642496px;}
.yc8{bottom:142.649696px;}
.y173{bottom:142.678497px;}
.yf2{bottom:142.692898px;}
.y20a{bottom:145.620891px;}
.y1ea{bottom:146.135399px;}
.y1cf{bottom:146.149799px;}
.y2e5{bottom:150.113262px;}
.y192{bottom:153.208500px;}
.y295{bottom:153.987557px;}
.y2dc{bottom:153.987569px;}
.y250{bottom:153.990853px;}
.y117{bottom:154.287003px;}
.y3f{bottom:156.461998px;}
.y209{bottom:159.120892px;}
.y142{bottom:160.620895px;}
.y71{bottom:160.628096px;}
.ya0{bottom:160.635296px;}
.yc7{bottom:160.642496px;}
.y172{bottom:160.671297px;}
.yf1{bottom:160.685697px;}
.y1ce{bottom:164.142599px;}
.y1e9{bottom:164.149799px;}
.y34{bottom:166.642948px;}
.y19d{bottom:167.029049px;}
.y294{bottom:167.487557px;}
.y2db{bottom:167.487569px;}
.y24f{bottom:167.490854px;}
.y2e4{bottom:168.110262px;}
.y3e{bottom:169.961998px;}
.y208{bottom:172.620892px;}
.y19e{bottom:178.541514px;}
.y70{bottom:178.620895px;}
.y9f{bottom:178.628096px;}
.yc6{bottom:178.635296px;}
.y155{bottom:178.649696px;}
.y171{bottom:178.664097px;}
.yf0{bottom:178.678497px;}
.y293{bottom:180.987558px;}
.y2da{bottom:180.987569px;}
.y24e{bottom:180.990854px;}
.y1cd{bottom:182.135399px;}
.y1e8{bottom:182.142599px;}
.y33{bottom:184.635750px;}
.y1ad{bottom:184.822048px;}
.y2e3{bottom:186.107261px;}
.y207{bottom:186.120892px;}
.y3d{bottom:187.961998px;}
.y19f{bottom:190.045406px;}
.y292{bottom:194.487558px;}
.y2d9{bottom:194.487570px;}
.y24d{bottom:194.490854px;}
.y9e{bottom:196.620895px;}
.y6f{bottom:196.628096px;}
.y154{bottom:196.642496px;}
.y170{bottom:196.656896px;}
.yef{bottom:196.671297px;}
.y3c{bottom:196.961998px;}
.y206{bottom:199.620893px;}
.y1e7{bottom:200.135399px;}
.y1cc{bottom:200.142599px;}
.y1a0{bottom:201.549298px;}
.y32{bottom:202.657356px;}
.y2e2{bottom:204.104261px;}
.y291{bottom:207.987558px;}
.y2d8{bottom:207.987570px;}
.y24c{bottom:207.990855px;}
.y1ac{bottom:210.789237px;}
.y1a1{bottom:213.053190px;}
.y205{bottom:213.120893px;}
.y9d{bottom:214.620895px;}
.y6e{bottom:214.628096px;}
.y128{bottom:214.635296px;}
.y16f{bottom:214.649696px;}
.yee{bottom:214.664097px;}
.y186{bottom:214.678497px;}
.y1cb{bottom:218.135399px;}
.y31{bottom:220.650146px;}
.y290{bottom:221.487559px;}
.y2d7{bottom:221.487570px;}
.y24b{bottom:221.490855px;}
.y2e1{bottom:222.101261px;}
.y1a2{bottom:224.557082px;}
.y204{bottom:226.620893px;}
.yc5{bottom:232.620895px;}
.y6d{bottom:232.628096px;}
.y9c{bottom:232.635296px;}
.y16e{bottom:232.642496px;}
.y141{bottom:232.649696px;}
.yed{bottom:232.656896px;}
.y185{bottom:232.671297px;}
.y28f{bottom:234.987559px;}
.y2d6{bottom:234.987571px;}
.y24a{bottom:234.990855px;}
.y1a3{bottom:236.086691px;}
.y1e6{bottom:236.135399px;}
.y1ca{bottom:236.157000px;}
.y1ab{bottom:236.745859px;}
.y2a{bottom:237.852608px;}
.y30{bottom:238.642960px;}
.y2e0{bottom:240.098261px;}
.y203{bottom:240.120894px;}
.y1a4{bottom:247.582011px;}
.y28e{bottom:248.487559px;}
.y2d5{bottom:248.487571px;}
.y249{bottom:248.490856px;}
.y127{bottom:250.620895px;}
.y9b{bottom:250.628096px;}
.y6c{bottom:250.635296px;}
.y140{bottom:250.642496px;}
.yec{bottom:250.649696px;}
.yc4{bottom:250.656896px;}
.y184{bottom:250.664097px;}
.y1aa{bottom:252.175819px;}
.y202{bottom:253.620894px;}
.y1e5{bottom:254.135399px;}
.y1c9{bottom:254.149799px;}
.y29{bottom:255.852608px;}
.y2f{bottom:256.635750px;}
.y2df{bottom:258.095261px;}
.y1a5{bottom:259.085903px;}
.y28d{bottom:261.987560px;}
.y2d4{bottom:261.987571px;}
.y248{bottom:261.990856px;}
.y1a9{bottom:262.711052px;}
.y201{bottom:267.120894px;}
.y9a{bottom:268.620895px;}
.y6b{bottom:268.628096px;}
.y13f{bottom:268.635296px;}
.yeb{bottom:268.642496px;}
.yc3{bottom:268.649696px;}
.y183{bottom:268.656896px;}
.y1a6{bottom:270.589795px;}
.y1c8{bottom:272.142599px;}
.y28{bottom:273.867004px;}
.y2e{bottom:274.635750px;}
.y28c{bottom:275.487560px;}
.y2d3{bottom:275.487572px;}
.y247{bottom:275.490856px;}
.y2e9{bottom:280.194140px;}
.y200{bottom:280.620895px;}
.y1a7{bottom:282.093687px;}
.y6a{bottom:286.620895px;}
.y13e{bottom:286.628096px;}
.yea{bottom:286.635296px;}
.yc2{bottom:286.642496px;}
.y182{bottom:286.649696px;}
.y28b{bottom:288.987560px;}
.y2d2{bottom:288.987572px;}
.y246{bottom:288.990857px;}
.y1c7{bottom:290.135399px;}
.y1e4{bottom:290.157000px;}
.y27{bottom:291.859817px;}
.y2d{bottom:292.654221px;}
.y1ff{bottom:294.120895px;}
.y2e8{bottom:299.994141px;}
.y28a{bottom:302.487561px;}
.y2d1{bottom:302.487572px;}
.y245{bottom:302.490857px;}
.y13d{bottom:304.620895px;}
.y69{bottom:304.625696px;}
.ye9{bottom:304.628096px;}
.y99{bottom:304.635296px;}
.y181{bottom:304.642496px;}
.y16d{bottom:304.649696px;}
.y126{bottom:304.656896px;}
.y1fe{bottom:307.620895px;}
.y1e3{bottom:308.149799px;}
.y1c6{bottom:308.193024px;}
.y26{bottom:309.852608px;}
.y2c{bottom:310.647011px;}
.y193{bottom:311.130169px;}
.y194{bottom:313.361549px;}
.y289{bottom:315.987561px;}
.y2d0{bottom:315.987573px;}
.y244{bottom:315.990857px;}
.y68{bottom:322.620895px;}
.y98{bottom:322.628096px;}
.y180{bottom:322.635296px;}
.y16c{bottom:322.642496px;}
.y125{bottom:322.649696px;}
.y13c{bottom:322.678497px;}
.y188{bottom:324.557396px;}
.y1e2{bottom:326.142599px;}
.y1c5{bottom:326.185823px;}
.y25{bottom:327.852608px;}
.y2b{bottom:328.639824px;}
.y19c{bottom:328.732201px;}
.y288{bottom:329.487561px;}
.y2cf{bottom:329.487573px;}
.y243{bottom:329.490858px;}
.y189{bottom:338.521509px;}
.y97{bottom:340.620895px;}
.ye8{bottom:340.628096px;}
.y153{bottom:340.635296px;}
.y124{bottom:340.642496px;}
.y13b{bottom:340.671297px;}
.y287{bottom:342.987562px;}
.y2ce{bottom:342.987573px;}
.y242{bottom:342.990858px;}
.y1e1{bottom:344.135399px;}
.y1c4{bottom:344.178623px;}
.y18a{bottom:352.502767px;}
.y19b{bottom:354.696695px;}
.y286{bottom:356.487562px;}
.y2cd{bottom:356.487574px;}
.y241{bottom:356.490858px;}
.y96{bottom:358.620895px;}
.y152{bottom:358.628096px;}
.y123{bottom:358.635296px;}
.yc1{bottom:358.642496px;}
.y13a{bottom:358.664097px;}
.y67{bottom:358.678497px;}
.y1e0{bottom:362.157022px;}
.y1c3{bottom:362.171423px;}
.y18b{bottom:366.484025px;}
.y285{bottom:369.987562px;}
.y2cc{bottom:369.987574px;}
.y240{bottom:369.990859px;}
.ye7{bottom:376.620895px;}
.y122{bottom:376.628096px;}
.yc0{bottom:376.635296px;}
.y95{bottom:376.642496px;}
.y139{bottom:376.656896px;}
.y66{bottom:376.671297px;}
.y1df{bottom:380.149822px;}
.y1c2{bottom:380.164223px;}
.y18c{bottom:380.473855px;}
.y19a{bottom:380.661889px;}
.y1f{bottom:381.815094px;}
.y284{bottom:383.487563px;}
.y2cb{bottom:383.487574px;}
.y23f{bottom:383.490859px;}
.y1fd{bottom:385.620890px;}
.y18d{bottom:394.437968px;}
.y121{bottom:394.620895px;}
.ybf{bottom:394.628096px;}
.y94{bottom:394.635296px;}
.y138{bottom:394.649696px;}
.y151{bottom:394.656896px;}
.y65{bottom:394.664097px;}
.y199{bottom:396.091848px;}
.y283{bottom:396.987563px;}
.y2ca{bottom:396.987575px;}
.y23e{bottom:396.990859px;}
.y1de{bottom:398.142622px;}
.y1c1{bottom:398.157022px;}
.y1e{bottom:399.815094px;}
.y198{bottom:406.627081px;}
.y18e{bottom:408.419226px;}
.y282{bottom:410.487563px;}
.y2c9{bottom:410.487575px;}
.y23d{bottom:410.490860px;}
.y1fc{bottom:412.620891px;}
.ybe{bottom:412.620895px;}
.y93{bottom:412.628096px;}
.y120{bottom:412.635296px;}
.y137{bottom:412.642496px;}
.y150{bottom:412.649696px;}
.y64{bottom:412.656896px;}
.y1c0{bottom:416.149822px;}
.y1dd{bottom:416.157022px;}
.y1d{bottom:417.815094px;}
.y197{bottom:422.057041px;}
.y18f{bottom:422.400484px;}
.y281{bottom:423.987564px;}
.y2c8{bottom:423.987575px;}
.y23c{bottom:423.990860px;}
.y1fb{bottom:426.120891px;}
.y92{bottom:430.620895px;}
.ybd{bottom:430.628096px;}
.y136{bottom:430.635296px;}
.y14f{bottom:430.642496px;}
.y63{bottom:430.649696px;}
.ye6{bottom:430.685697px;}
.y196{bottom:432.592274px;}
.y1bf{bottom:434.142622px;}
.y1dc{bottom:434.149822px;}
.y1c{bottom:435.815094px;}
.y190{bottom:436.381742px;}
.y280{bottom:437.487564px;}
.y2c7{bottom:437.487576px;}
.y23b{bottom:437.490861px;}
.ybc{bottom:448.620895px;}
.y135{bottom:448.628096px;}
.y109{bottom:448.635296px;}
.y62{bottom:448.642496px;}
.y91{bottom:448.656896px;}
.ye5{bottom:448.678497px;}
.y116{bottom:448.692898px;}
.y191{bottom:450.354428px;}
.y27f{bottom:450.987564px;}
.y2c6{bottom:450.987576px;}
.y23a{bottom:450.990861px;}
.y1be{bottom:452.135422px;}
.y1db{bottom:452.142622px;}
.y1fa{bottom:453.120892px;}
.y1b{bottom:453.815094px;}
.y195{bottom:458.557468px;}
.y27e{bottom:464.487565px;}
.y2c5{bottom:464.487576px;}
.y239{bottom:464.490861px;}
.y1f9{bottom:466.620893px;}
.ybb{bottom:466.620895px;}
.y108{bottom:466.628096px;}
.y61{bottom:466.635296px;}
.y90{bottom:466.649696px;}
.y17f{bottom:466.656896px;}
.ye4{bottom:466.671297px;}
.y115{bottom:466.685697px;}
.y1bd{bottom:470.135422px;}
.y1a{bottom:471.815094px;}
.y27d{bottom:477.987565px;}
.y2c4{bottom:477.987577px;}
.y238{bottom:477.990862px;}
.y1f8{bottom:480.120893px;}
.y107{bottom:484.620895px;}
.y60{bottom:484.628096px;}
.y8f{bottom:484.642496px;}
.y17e{bottom:484.649696px;}
.ye3{bottom:484.664097px;}
.y114{bottom:484.678497px;}
.y1bc{bottom:488.142622px;}
.y1da{bottom:488.157022px;}
.y19{bottom:489.815094px;}
.y27c{bottom:491.487566px;}
.y2c3{bottom:491.487577px;}
.y237{bottom:491.490862px;}
.y1f7{bottom:493.620893px;}
.y5f{bottom:502.620895px;}
.y106{bottom:502.628096px;}
.y8e{bottom:502.635296px;}
.y17d{bottom:502.642496px;}
.ye2{bottom:502.656896px;}
.y113{bottom:502.671297px;}
.y27b{bottom:504.987566px;}
.y2c2{bottom:504.987577px;}
.y236{bottom:504.990862px;}
.y1bb{bottom:506.135422px;}
.y1d9{bottom:506.149822px;}
.y1f6{bottom:507.120894px;}
.y18{bottom:507.815094px;}
.y27a{bottom:518.487566px;}
.y2c1{bottom:518.487578px;}
.y235{bottom:518.490863px;}
.y1f5{bottom:520.620894px;}
.y105{bottom:520.620895px;}
.y8d{bottom:520.628096px;}
.y5e{bottom:520.635296px;}
.yba{bottom:520.642496px;}
.ye1{bottom:520.649696px;}
.y112{bottom:520.664097px;}
.y14e{bottom:520.685697px;}
.y1d8{bottom:524.142622px;}
.y1ba{bottom:524.149822px;}
.y17{bottom:525.815094px;}
.y279{bottom:531.987567px;}
.y2c0{bottom:531.987578px;}
.y234{bottom:531.990863px;}
.y134{bottom:538.620895px;}
.y5d{bottom:538.628096px;}
.yb9{bottom:538.635296px;}
.ye0{bottom:538.642496px;}
.y8c{bottom:538.649696px;}
.y104{bottom:538.656896px;}
.y14d{bottom:538.678497px;}
.y1d7{bottom:542.135422px;}
.y1b9{bottom:542.142622px;}
.y16{bottom:543.815094px;}
.y278{bottom:545.487567px;}
.y2bf{bottom:545.487578px;}
.y233{bottom:545.490863px;}
.y1f4{bottom:547.620895px;}
.y5c{bottom:556.620895px;}
.yb8{bottom:556.628096px;}
.ydf{bottom:556.635296px;}
.y8b{bottom:556.642496px;}
.y103{bottom:556.649696px;}
.y14c{bottom:556.671297px;}
.y277{bottom:558.987567px;}
.y2be{bottom:558.987579px;}
.y232{bottom:558.990864px;}
.y1b8{bottom:560.135422px;}
.y1d6{bottom:560.157022px;}
.y1f3{bottom:561.120895px;}
.y15{bottom:561.815094px;}
.y276{bottom:572.487568px;}
.y2bd{bottom:572.487579px;}
.y231{bottom:572.490864px;}
.y5b{bottom:574.620895px;}
.yde{bottom:574.628096px;}
.y8a{bottom:574.635296px;}
.y102{bottom:574.642496px;}
.y14b{bottom:574.664097px;}
.y1b7{bottom:578.135422px;}
.y1d5{bottom:578.149822px;}
.y14{bottom:579.815094px;}
.y2bc{bottom:585.987544px;}
.y275{bottom:585.987568px;}
.y230{bottom:585.990864px;}
.ydd{bottom:592.620895px;}
.y89{bottom:592.628096px;}
.y101{bottom:592.635296px;}
.y14a{bottom:592.656896px;}
.y5a{bottom:592.678497px;}
.yb7{bottom:592.714544px;}
.y1b6{bottom:596.142622px;}
.y13{bottom:597.815094px;}
.y2bb{bottom:599.487545px;}
.y274{bottom:599.487568px;}
.y22f{bottom:599.490865px;}
.y1f2{bottom:601.620894px;}
.y88{bottom:610.620895px;}
.y100{bottom:610.628096px;}
.ydc{bottom:610.649696px;}
.y133{bottom:610.656896px;}
.y59{bottom:610.671297px;}
.yb6{bottom:610.707344px;}
.y16b{bottom:610.721744px;}
.y2ba{bottom:612.987545px;}
.y273{bottom:612.987569px;}
.y22e{bottom:612.990865px;}
.y1b5{bottom:614.135422px;}
.y12{bottom:615.815094px;}
.y2b9{bottom:626.487545px;}
.y272{bottom:626.487569px;}
.y22d{bottom:626.490865px;}
.y87{bottom:628.620895px;}
.ydb{bottom:628.642496px;}
.y132{bottom:628.649696px;}
.y58{bottom:628.664097px;}
.yb5{bottom:628.700144px;}
.y16a{bottom:628.714544px;}
.y1b4{bottom:632.135422px;}
.y11{bottom:633.815094px;}
.y2b8{bottom:639.987546px;}
.y271{bottom:639.987569px;}
.y22c{bottom:639.990866px;}
.y1f1{bottom:642.120895px;}
.y111{bottom:646.620895px;}
.y86{bottom:646.628096px;}
.yda{bottom:646.635296px;}
.yff{bottom:646.642496px;}
.y57{bottom:646.656896px;}
.yb4{bottom:646.692943px;}
.y169{bottom:646.707344px;}
.y1d4{bottom:650.142622px;}
.y1b3{bottom:650.149822px;}
.y10{bottom:651.815094px;}
.y2b7{bottom:653.487546px;}
.y270{bottom:653.487570px;}
.y22b{bottom:653.490866px;}
.y1f0{bottom:655.620895px;}
.y85{bottom:664.620895px;}
.yd9{bottom:664.628096px;}
.yfe{bottom:664.635296px;}
.y11f{bottom:664.642496px;}
.y56{bottom:664.649696px;}
.yb3{bottom:664.685743px;}
.y168{bottom:664.700144px;}
.y2b6{bottom:666.987546px;}
.y26f{bottom:666.987570px;}
.y22a{bottom:666.990866px;}
.y1d3{bottom:668.135422px;}
.y1b2{bottom:668.142622px;}
.yf{bottom:669.815094px;}
.y2b5{bottom:680.487547px;}
.y26e{bottom:680.487570px;}
.y229{bottom:680.490867px;}
.y84{bottom:682.620895px;}
.yfd{bottom:682.628096px;}
.y11e{bottom:682.635296px;}
.y55{bottom:682.642496px;}
.yb2{bottom:682.678543px;}
.y167{bottom:682.692943px;}
.y1b1{bottom:686.135422px;}
.y1d2{bottom:686.168984px;}
.ye{bottom:687.815094px;}
.y2b4{bottom:693.987547px;}
.y26d{bottom:693.987571px;}
.y228{bottom:693.990867px;}
.yfc{bottom:700.620895px;}
.y11d{bottom:700.628096px;}
.y54{bottom:700.635296px;}
.y1ef{bottom:700.642496px;}
.yd8{bottom:700.649742px;}
.yb1{bottom:700.671343px;}
.y166{bottom:700.685743px;}
.yd{bottom:705.815094px;}
.y2b3{bottom:707.487547px;}
.y26c{bottom:707.487571px;}
.y227{bottom:707.490867px;}
.y11c{bottom:718.620895px;}
.y53{bottom:718.628096px;}
.y110{bottom:718.635296px;}
.yd7{bottom:718.642542px;}
.yb0{bottom:718.664142px;}
.y131{bottom:718.671343px;}
.y165{bottom:718.678543px;}
.y2b2{bottom:720.987548px;}
.y26b{bottom:720.987571px;}
.y226{bottom:720.990868px;}
.yc{bottom:723.815094px;}
.y2b1{bottom:734.487548px;}
.y26a{bottom:734.487572px;}
.y225{bottom:734.490868px;}
.y52{bottom:736.620895px;}
.y10f{bottom:736.628096px;}
.yd6{bottom:736.635342px;}
.yaf{bottom:736.656942px;}
.y130{bottom:736.664142px;}
.y164{bottom:736.671343px;}
.yb{bottom:741.815094px;}
.y1ee{bottom:742.970261px;}
.y2b0{bottom:747.987548px;}
.y269{bottom:747.987572px;}
.y224{bottom:747.990868px;}
.y10e{bottom:754.620895px;}
.y83{bottom:754.628141px;}
.y51{bottom:754.642542px;}
.yae{bottom:754.649742px;}
.y12f{bottom:754.656942px;}
.y163{bottom:754.664142px;}
.y17a{bottom:754.678543px;}
.y1ed{bottom:757.970261px;}
.ya{bottom:759.815094px;}
.y2af{bottom:761.487549px;}
.y268{bottom:761.487572px;}
.y223{bottom:761.490869px;}
.y82{bottom:772.620941px;}
.y50{bottom:772.635342px;}
.yad{bottom:772.642542px;}
.y12e{bottom:772.649742px;}
.y162{bottom:772.656942px;}
.y10d{bottom:772.664142px;}
.y179{bottom:772.671343px;}
.y2ae{bottom:774.987549px;}
.y267{bottom:774.987573px;}
.y222{bottom:774.990869px;}
.y9{bottom:777.815094px;}
.y2ad{bottom:788.487549px;}
.y2fd{bottom:788.487558px;}
.y266{bottom:788.487573px;}
.y221{bottom:788.490869px;}
.y17c{bottom:790.620941px;}
.y4f{bottom:790.628141px;}
.yac{bottom:790.635342px;}
.yfb{bottom:790.642542px;}
.y149{bottom:790.649742px;}
.yd5{bottom:790.656942px;}
.y178{bottom:790.664142px;}
.y8{bottom:800.315094px;}
.y2ac{bottom:801.987550px;}
.y2fc{bottom:801.987558px;}
.y265{bottom:801.987573px;}
.y220{bottom:801.990870px;}
.y4e{bottom:808.620941px;}
.yab{bottom:808.628141px;}
.yfa{bottom:808.635342px;}
.y148{bottom:808.642542px;}
.yd4{bottom:808.649742px;}
.y177{bottom:808.656942px;}
.y2ab{bottom:815.487550px;}
.y2fb{bottom:815.487559px;}
.y264{bottom:815.487574px;}
.y21f{bottom:815.490870px;}
.y81{bottom:826.620941px;}
.y4d{bottom:826.625741px;}
.yf9{bottom:826.628141px;}
.y147{bottom:826.635342px;}
.yd3{bottom:826.642542px;}
.y176{bottom:826.649742px;}
.y2aa{bottom:828.987550px;}
.y2fa{bottom:828.987559px;}
.y263{bottom:828.987574px;}
.y21e{bottom:828.990870px;}
.y2a9{bottom:842.487551px;}
.y2f9{bottom:842.487559px;}
.y262{bottom:842.487574px;}
.y21d{bottom:842.490871px;}
.y4c{bottom:844.620941px;}
.y146{bottom:844.628141px;}
.yd2{bottom:844.635342px;}
.y80{bottom:844.642542px;}
.y2a8{bottom:855.987551px;}
.y2f8{bottom:855.987560px;}
.y261{bottom:855.987575px;}
.y21c{bottom:855.990871px;}
.y4b{bottom:862.620941px;}
.yd1{bottom:862.628141px;}
.y7f{bottom:862.635342px;}
.yaa{bottom:862.642542px;}
.y7{bottom:864.552612px;}
.y2a7{bottom:869.487551px;}
.y2f7{bottom:869.487560px;}
.y260{bottom:869.487575px;}
.y21b{bottom:869.490871px;}
.yd0{bottom:880.620941px;}
.y7e{bottom:880.628141px;}
.ya9{bottom:880.635342px;}
.y161{bottom:880.693222px;}
.y2a6{bottom:882.987552px;}
.y2f6{bottom:882.987560px;}
.y25f{bottom:882.987575px;}
.y21a{bottom:882.990872px;}
.y2a5{bottom:896.487552px;}
.y2f5{bottom:896.487561px;}
.y25e{bottom:896.487576px;}
.y219{bottom:896.490872px;}
.y7d{bottom:898.620941px;}
.ya8{bottom:898.628141px;}
.y4a{bottom:898.635342px;}
.yf8{bottom:898.656942px;}
.y160{bottom:898.686022px;}
.y6{bottom:900.577515px;}
.y2a4{bottom:909.987552px;}
.y2f4{bottom:909.987561px;}
.y25d{bottom:909.987576px;}
.y218{bottom:909.990872px;}
.ya7{bottom:916.620941px;}
.y49{bottom:916.628141px;}
.y7c{bottom:916.635342px;}
.yf7{bottom:916.649742px;}
.y15f{bottom:916.678821px;}
.y2a3{bottom:923.487553px;}
.y2f3{bottom:923.487561px;}
.y25c{bottom:923.487576px;}
.y217{bottom:923.490873px;}
.y48{bottom:934.620941px;}
.y7b{bottom:934.628141px;}
.ya6{bottom:934.635342px;}
.yf6{bottom:934.642542px;}
.y15e{bottom:934.671621px;}
.y2a2{bottom:936.987553px;}
.y2f2{bottom:936.987562px;}
.y25b{bottom:936.987577px;}
.y216{bottom:936.990873px;}
.y5{bottom:939.565521px;}
.y2a1{bottom:950.487553px;}
.y2f1{bottom:950.487562px;}
.y25a{bottom:950.487577px;}
.y215{bottom:950.490873px;}
.ycf{bottom:952.620941px;}
.y7a{bottom:952.628141px;}
.yf5{bottom:952.635342px;}
.y47{bottom:952.649742px;}
.y15d{bottom:952.664421px;}
.y2a0{bottom:963.987554px;}
.y2f0{bottom:963.987562px;}
.y259{bottom:963.987577px;}
.y214{bottom:963.990874px;}
.y79{bottom:970.620941px;}
.yf4{bottom:970.628141px;}
.y46{bottom:970.642542px;}
.y15c{bottom:970.657221px;}
.y12d{bottom:970.678821px;}
.y29f{bottom:977.487554px;}
.y2ef{bottom:977.487563px;}
.y258{bottom:977.487578px;}
.y213{bottom:977.490874px;}
.y4{bottom:978.553528px;}
.y78{bottom:988.620941px;}
.y11b{bottom:988.628141px;}
.y45{bottom:988.635342px;}
.y15b{bottom:988.650020px;}
.y12c{bottom:988.671621px;}
.yce{bottom:988.678821px;}
.y29e{bottom:990.987554px;}
.y2ee{bottom:990.987563px;}
.y257{bottom:990.987578px;}
.y212{bottom:990.990874px;}
.y29d{bottom:1004.487555px;}
.y2ed{bottom:1004.487563px;}
.y256{bottom:1004.487578px;}
.y211{bottom:1004.490875px;}
.y10c{bottom:1006.620941px;}
.y44{bottom:1006.628141px;}
.yf3{bottom:1006.635342px;}
.y77{bottom:1006.635620px;}
.y15a{bottom:1006.642820px;}
.y12b{bottom:1006.664421px;}
.ycd{bottom:1006.671621px;}
.y29c{bottom:1017.987555px;}
.y2ec{bottom:1017.987564px;}
.y255{bottom:1017.987579px;}
.y210{bottom:1017.990875px;}
.y43{bottom:1024.620941px;}
.ya5{bottom:1024.628141px;}
.y76{bottom:1024.628420px;}
.y159{bottom:1024.635620px;}
.y10b{bottom:1024.640122px;}
.y12a{bottom:1024.657221px;}
.ycc{bottom:1024.664421px;}
.y29b{bottom:1031.487555px;}
.y2eb{bottom:1031.487564px;}
.y254{bottom:1031.487579px;}
.y20f{bottom:1031.490875px;}
.y3{bottom:1033.362579px;}
.y35{bottom:1035.750183px;}
.y42{bottom:1042.620941px;}
.y75{bottom:1042.621220px;}
.y158{bottom:1042.628420px;}
.y10a{bottom:1042.632922px;}
.y17b{bottom:1042.639496px;}
.y129{bottom:1042.650020px;}
.ycb{bottom:1042.657221px;}
.y29a{bottom:1044.987556px;}
.y2ea{bottom:1044.987564px;}
.y253{bottom:1044.987579px;}
.y20e{bottom:1044.990876px;}
.y36{bottom:1078.510529px;}
.y39{bottom:1100.660522px;}
.y2{bottom:1112.297058px;}
.y38{bottom:1118.226105px;}
.ya4{bottom:1126.524628px;}
.y40{bottom:1126.524719px;}
.y41{bottom:1126.920719px;}
.y1{bottom:1126.925079px;}
.h17{height:24.619358px;}
.hf{height:27.814500px;}
.h1e{height:32.130000px;}
.h9{height:37.086000px;}
.he{height:39.735000px;}
.h1d{height:39.735140px;}
.hd{height:41.243401px;}
.h16{height:42.384000px;}
.h1b{height:42.840000px;}
.h19{height:43.785000px;}
.h1c{height:44.505000px;}
.h3{height:45.696000px;}
.h1a{height:45.814501px;}
.h2{height:47.231915px;}
.h10{height:47.232000px;}
.h15{height:47.472000px;}
.h1f{height:49.632000px;}
.hc{height:52.058050px;}
.h8{height:52.980000px;}
.h12{height:53.654399px;}
.h11{height:53.709599px;}
.hb{height:55.276503px;}
.ha{height:55.860001px;}
.h7{height:61.120201px;}
.h13{height:62.564388px;}
.h14{height:62.593189px;}
.h6{height:67.194379px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h18{height:318.123001px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:133.502998px;}
.w3{width:350.787003px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:14.048252px;}
.x8{left:58.459030px;}
.x14{left:68.056355px;}
.xb{left:69.146530px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683151px;}
.xc{left:97.034552px;}
.x13{left:99.469158px;}
.xf{left:103.806691px;}
.xe{left:108.229946px;}
.x11{left:151.052399px;}
.x4{left:270.817497px;}
.x12{left:333.168783px;}
.x15{left:342.809257px;}
.x5{left:457.092911px;}
.xd{left:469.081794px;}
.x19{left:477.562500px;}
.x16{left:479.588091px;}
.x18{left:485.513718px;}
.x7{left:674.056503px;}
.x6{left:694.929886px;}
.xa{left:732.515533px;}
.x17{left:741.068390px;}
.x9{left:747.124329px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-13.092333pt;}
.v7{vertical-align:-9.999875pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322591pt;}
.v6{vertical-align:16.000001pt;}
.v4{vertical-align:20.855455pt;}
.v2{vertical-align:23.466471pt;}
.lsf{letter-spacing:-2.597653pt;}
.lse{letter-spacing:-1.254400pt;}
.lsb{letter-spacing:-0.313600pt;}
.ls13{letter-spacing:-0.274310pt;}
.ls17{letter-spacing:-0.243831pt;}
.ls15{letter-spacing:-0.213353pt;}
.ls16{letter-spacing:-0.091437pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000001pt;}
.lsd{letter-spacing:0.000007pt;}
.ls1{letter-spacing:0.000157pt;}
.ls8{letter-spacing:0.000355pt;}
.ls7{letter-spacing:0.000436pt;}
.ls9{letter-spacing:0.000518pt;}
.lsa{letter-spacing:0.017494pt;}
.ls11{letter-spacing:0.030479pt;}
.ls10{letter-spacing:0.060958pt;}
.ls14{letter-spacing:0.121916pt;}
.ls12{letter-spacing:0.335268pt;}
.lsc{letter-spacing:0.418133pt;}
.ls0{letter-spacing:4.853333pt;}
.ls6{letter-spacing:5.816847pt;}
.ls5{letter-spacing:6.696706pt;}
.ls2{letter-spacing:9.238522pt;}
.ws0{word-spacing:-18.858667pt;}
.ws20{word-spacing:-12.700800pt;}
.ws1e{word-spacing:-12.282667pt;}
.ws1f{word-spacing:-11.969067pt;}
.ws3{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.096534pt;}
.wsaf{word-spacing:-11.028267pt;}
.ws1b{word-spacing:-10.156800pt;}
.ws5{word-spacing:-9.287403pt;}
.ws1{word-spacing:-8.993600pt;}
.ws1c{word-spacing:-8.979200pt;}
.ws14d{word-spacing:-8.760000pt;}
.ws1d{word-spacing:-8.597867pt;}
.ws14c{word-spacing:-8.280000pt;}
.ws4{word-spacing:-8.176000pt;}
.ws14e{word-spacing:-8.080000pt;}
.ws11c{word-spacing:-7.223507pt;}
.ws14f{word-spacing:-7.200000pt;}
.ws11d{word-spacing:-6.949197pt;}
.ws11b{word-spacing:-6.888239pt;}
.ws120{word-spacing:-6.796802pt;}
.ws19{word-spacing:-6.696706pt;}
.ws11f{word-spacing:-6.674886pt;}
.ws121{word-spacing:-6.644407pt;}
.ws11e{word-spacing:-6.613928pt;}
.ws14b{word-spacing:-6.132000pt;}
.wsff{word-spacing:-6.000213pt;}
.ws1a{word-spacing:-5.816847pt;}
.ws9{word-spacing:-2.464000pt;}
.ws8{word-spacing:-2.053333pt;}
.wsf9{word-spacing:-1.672533pt;}
.ws138{word-spacing:-1.493333pt;}
.ws153{word-spacing:-1.400000pt;}
.wsb1{word-spacing:-1.202133pt;}
.wsd7{word-spacing:-0.940800pt;}
.ws134{word-spacing:-0.888533pt;}
.ws143{word-spacing:-0.627200pt;}
.wsfc{word-spacing:-0.574933pt;}
.ws6f{word-spacing:-0.470400pt;}
.wsf{word-spacing:-0.418133pt;}
.ws6d{word-spacing:-0.365867pt;}
.ws77{word-spacing:-0.313600pt;}
.ws18{word-spacing:-0.261333pt;}
.ws110{word-spacing:-0.209067pt;}
.wsa0{word-spacing:-0.156800pt;}
.ws137{word-spacing:-0.121916pt;}
.ws152{word-spacing:-0.120000pt;}
.wsd2{word-spacing:-0.104533pt;}
.ws6{word-spacing:-0.065174pt;}
.ws135{word-spacing:-0.060958pt;}
.ws113{word-spacing:-0.052267pt;}
.ws136{word-spacing:-0.030479pt;}
.ws7{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.052267pt;}
.ws9e{word-spacing:0.104533pt;}
.ws12f{word-spacing:0.156800pt;}
.ws82{word-spacing:0.209067pt;}
.ws12{word-spacing:0.261333pt;}
.wsfd{word-spacing:0.313600pt;}
.ws144{word-spacing:0.365867pt;}
.ws12e{word-spacing:0.418133pt;}
.wsbd{word-spacing:0.470400pt;}
.ws37{word-spacing:0.522667pt;}
.ws13f{word-spacing:0.574933pt;}
.ws57{word-spacing:0.627200pt;}
.ws104{word-spacing:0.679467pt;}
.wsc2{word-spacing:0.731733pt;}
.wscf{word-spacing:0.784000pt;}
.ws59{word-spacing:0.836267pt;}
.ws130{word-spacing:0.888533pt;}
.ws89{word-spacing:0.993067pt;}
.ws115{word-spacing:1.045333pt;}
.ws66{word-spacing:1.097600pt;}
.ws6c{word-spacing:1.149867pt;}
.ws3e{word-spacing:1.358933pt;}
.ws26{word-spacing:1.411200pt;}
.wsaa{word-spacing:1.463467pt;}
.ws8b{word-spacing:1.515733pt;}
.ws34{word-spacing:1.568000pt;}
.ws7a{word-spacing:1.620267pt;}
.wsf1{word-spacing:1.672533pt;}
.ws62{word-spacing:1.724800pt;}
.wsd6{word-spacing:1.777067pt;}
.ws49{word-spacing:1.829333pt;}
.ws93{word-spacing:1.933867pt;}
.wsa6{word-spacing:1.986133pt;}
.ws51{word-spacing:2.038400pt;}
.ws50{word-spacing:2.090667pt;}
.wsad{word-spacing:2.142933pt;}
.ws9d{word-spacing:2.195200pt;}
.ws95{word-spacing:2.247467pt;}
.ws5b{word-spacing:2.299733pt;}
.wsc5{word-spacing:2.352000pt;}
.ws84{word-spacing:2.404267pt;}
.ws13a{word-spacing:2.456533pt;}
.ws30{word-spacing:2.508800pt;}
.ws13c{word-spacing:2.561067pt;}
.ws145{word-spacing:2.613333pt;}
.wsa3{word-spacing:2.665600pt;}
.ws58{word-spacing:2.717867pt;}
.ws87{word-spacing:2.822400pt;}
.wseb{word-spacing:2.874667pt;}
.ws127{word-spacing:2.926933pt;}
.wsbf{word-spacing:2.979200pt;}
.wsb9{word-spacing:3.031467pt;}
.ws7c{word-spacing:3.083733pt;}
.ws116{word-spacing:3.136000pt;}
.ws2f{word-spacing:3.188267pt;}
.ws41{word-spacing:3.240533pt;}
.wsae{word-spacing:3.292800pt;}
.ws7e{word-spacing:3.345067pt;}
.ws7f{word-spacing:3.397333pt;}
.ws3f{word-spacing:3.449600pt;}
.wsb5{word-spacing:3.501867pt;}
.ws38{word-spacing:3.554133pt;}
.ws8a{word-spacing:3.606400pt;}
.wsd0{word-spacing:3.658667pt;}
.ws31{word-spacing:3.710933pt;}
.wsbc{word-spacing:3.763200pt;}
.ws142{word-spacing:3.815467pt;}
.wse8{word-spacing:3.867733pt;}
.wsa8{word-spacing:3.920000pt;}
.ws43{word-spacing:3.972267pt;}
.ws80{word-spacing:4.076800pt;}
.wsb{word-spacing:4.129067pt;}
.wsc0{word-spacing:4.181333pt;}
.ws101{word-spacing:4.233600pt;}
.wsb6{word-spacing:4.285867pt;}
.wsb7{word-spacing:4.338133pt;}
.ws4a{word-spacing:4.390400pt;}
.ws10a{word-spacing:4.442667pt;}
.ws81{word-spacing:4.494933pt;}
.wsdb{word-spacing:4.547200pt;}
.ws97{word-spacing:4.651733pt;}
.wsc4{word-spacing:4.704000pt;}
.wsac{word-spacing:4.756267pt;}
.ws9c{word-spacing:4.808533pt;}
.ws6e{word-spacing:4.860800pt;}
.ws3b{word-spacing:4.913067pt;}
.ws75{word-spacing:4.965333pt;}
.ws12a{word-spacing:5.017600pt;}
.ws56{word-spacing:5.069867pt;}
.ws5d{word-spacing:5.122133pt;}
.ws67{word-spacing:5.174400pt;}
.ws78{word-spacing:5.226667pt;}
.wse0{word-spacing:5.278933pt;}
.ws13{word-spacing:5.331200pt;}
.ws73{word-spacing:5.383467pt;}
.ws3a{word-spacing:5.435733pt;}
.ws83{word-spacing:5.488000pt;}
.ws9a{word-spacing:5.540267pt;}
.ws72{word-spacing:5.592533pt;}
.ws86{word-spacing:5.644800pt;}
.ws63{word-spacing:5.697067pt;}
.ws65{word-spacing:5.749333pt;}
.wsd1{word-spacing:5.801600pt;}
.wsf2{word-spacing:5.958400pt;}
.ws5c{word-spacing:6.010667pt;}
.ws33{word-spacing:6.062933pt;}
.ws85{word-spacing:6.115200pt;}
.ws39{word-spacing:6.167467pt;}
.wsf3{word-spacing:6.219733pt;}
.ws92{word-spacing:6.272000pt;}
.ws4d{word-spacing:6.324267pt;}
.wsa1{word-spacing:6.376533pt;}
.ws4b{word-spacing:6.428800pt;}
.ws102{word-spacing:6.533333pt;}
.ws53{word-spacing:6.585600pt;}
.ws3c{word-spacing:6.637867pt;}
.ws151{word-spacing:6.690133pt;}
.wscb{word-spacing:6.794667pt;}
.ws6b{word-spacing:6.846933pt;}
.ws45{word-spacing:6.899200pt;}
.ws68{word-spacing:6.951467pt;}
.ws35{word-spacing:7.003733pt;}
.wsa5{word-spacing:7.056000pt;}
.ws60{word-spacing:7.108267pt;}
.ws139{word-spacing:7.160533pt;}
.ws10d{word-spacing:7.212800pt;}
.ws13d{word-spacing:7.265067pt;}
.ws64{word-spacing:7.317333pt;}
.ws11{word-spacing:7.369600pt;}
.ws99{word-spacing:7.421867pt;}
.wsdf{word-spacing:7.474133pt;}
.ws14a{word-spacing:7.526400pt;}
.wsc3{word-spacing:7.578667pt;}
.wse2{word-spacing:7.630933pt;}
.ws6a{word-spacing:7.683200pt;}
.ws10e{word-spacing:7.735467pt;}
.ws9b{word-spacing:7.787733pt;}
.ws48{word-spacing:7.840000pt;}
.ws100{word-spacing:7.892267pt;}
.wsf4{word-spacing:7.944533pt;}
.wsf7{word-spacing:7.996800pt;}
.ws118{word-spacing:8.101333pt;}
.wsba{word-spacing:8.153600pt;}
.wsc9{word-spacing:8.205867pt;}
.ws141{word-spacing:8.310400pt;}
.ws52{word-spacing:8.362667pt;}
.wsa4{word-spacing:8.414934pt;}
.ws106{word-spacing:8.467200pt;}
.wsc{word-spacing:8.519467pt;}
.wsb3{word-spacing:8.571734pt;}
.wsdc{word-spacing:8.624000pt;}
.ws79{word-spacing:8.676267pt;}
.ws42{word-spacing:8.728534pt;}
.wsfa{word-spacing:8.780800pt;}
.ws2b{word-spacing:8.833067pt;}
.wsc7{word-spacing:8.885334pt;}
.wsca{word-spacing:8.937600pt;}
.wsa9{word-spacing:8.989867pt;}
.ws17{word-spacing:9.042134pt;}
.ws4f{word-spacing:9.094400pt;}
.ws96{word-spacing:9.146667pt;}
.ws25{word-spacing:9.198934pt;}
.wsc1{word-spacing:9.251200pt;}
.ws5f{word-spacing:9.303467pt;}
.ws131{word-spacing:9.355734pt;}
.ws4c{word-spacing:9.408000pt;}
.ws10c{word-spacing:9.512534pt;}
.ws8f{word-spacing:9.564800pt;}
.ws70{word-spacing:9.617067pt;}
.wsb8{word-spacing:9.669334pt;}
.ws14{word-spacing:9.721600pt;}
.ws61{word-spacing:9.826134pt;}
.ws9f{word-spacing:9.930667pt;}
.ws22{word-spacing:9.982934pt;}
.ws47{word-spacing:10.035200pt;}
.ws108{word-spacing:10.087467pt;}
.ws44{word-spacing:10.139734pt;}
.ws5a{word-spacing:10.296534pt;}
.wsce{word-spacing:10.348800pt;}
.wsd4{word-spacing:10.401067pt;}
.ws7b{word-spacing:10.453334pt;}
.ws117{word-spacing:10.505600pt;}
.wsd3{word-spacing:10.557867pt;}
.ws55{word-spacing:10.662400pt;}
.ws69{word-spacing:10.714667pt;}
.ws2e{word-spacing:10.871467pt;}
.wsee{word-spacing:10.923734pt;}
.wsbe{word-spacing:11.132800pt;}
.wse4{word-spacing:11.185067pt;}
.ws8e{word-spacing:11.237334pt;}
.ws10{word-spacing:11.289600pt;}
.ws90{word-spacing:11.341867pt;}
.ws32{word-spacing:11.394134pt;}
.ws88{word-spacing:11.446400pt;}
.ws71{word-spacing:11.550934pt;}
.wscc{word-spacing:11.603200pt;}
.ws10b{word-spacing:11.655467pt;}
.wsa2{word-spacing:11.707734pt;}
.wsa{word-spacing:11.760000pt;}
.ws109{word-spacing:11.864534pt;}
.ws91{word-spacing:11.969067pt;}
.wsf5{word-spacing:12.073600pt;}
.ws54{word-spacing:12.125867pt;}
.ws147{word-spacing:12.178134pt;}
.wsea{word-spacing:12.230400pt;}
.ws40{word-spacing:12.282667pt;}
.ws15{word-spacing:12.334934pt;}
.ws13b{word-spacing:12.544000pt;}
.ws28{word-spacing:12.596267pt;}
.ws129{word-spacing:12.648534pt;}
.ws46{word-spacing:12.700800pt;}
.ws74{word-spacing:12.753067pt;}
.ws12d{word-spacing:12.909867pt;}
.ws16{word-spacing:13.014400pt;}
.ws146{word-spacing:13.118933pt;}
.wsde{word-spacing:13.223467pt;}
.wsfb{word-spacing:13.275734pt;}
.ws2d{word-spacing:13.328000pt;}
.ws149{word-spacing:13.380268pt;}
.ws133{word-spacing:13.432534pt;}
.ws105{word-spacing:13.484799pt;}
.ws12c{word-spacing:13.641600pt;}
.ws4e{word-spacing:13.746134pt;}
.ws36{word-spacing:13.850666pt;}
.ws21{word-spacing:14.007467pt;}
.ws122{word-spacing:14.164267pt;}
.ws8c{word-spacing:14.373334pt;}
.ws23{word-spacing:14.477867pt;}
.ws125{word-spacing:14.530134pt;}
.ws3d{word-spacing:14.634667pt;}
.wscd{word-spacing:14.791467pt;}
.wse6{word-spacing:14.896000pt;}
.ws126{word-spacing:14.948267pt;}
.wsfe{word-spacing:15.052799pt;}
.ws94{word-spacing:15.105067pt;}
.ws2c{word-spacing:15.157334pt;}
.wsb2{word-spacing:15.314134pt;}
.wsda{word-spacing:15.523200pt;}
.ws13e{word-spacing:15.889067pt;}
.wsd{word-spacing:15.993600pt;}
.wse{word-spacing:16.307200pt;}
.ws132{word-spacing:16.359467pt;}
.wsc6{word-spacing:16.464000pt;}
.wsbb{word-spacing:16.516268pt;}
.wsa7{word-spacing:16.620799pt;}
.ws119{word-spacing:16.673067pt;}
.wsb0{word-spacing:16.725334pt;}
.wse7{word-spacing:16.777600pt;}
.wsab{word-spacing:16.829867pt;}
.wsed{word-spacing:16.934400pt;}
.wsd5{word-spacing:16.986666pt;}
.ws7d{word-spacing:17.195734pt;}
.wsd9{word-spacing:17.248000pt;}
.wse5{word-spacing:17.300267pt;}
.wsec{word-spacing:17.404800pt;}
.ws150{word-spacing:17.561600pt;}
.ws114{word-spacing:17.770667pt;}
.wsdd{word-spacing:17.875200pt;}
.wsc8{word-spacing:17.927467pt;}
.ws123{word-spacing:17.979734pt;}
.ws112{word-spacing:18.032000pt;}
.ws103{word-spacing:18.136534pt;}
.ws76{word-spacing:18.502400pt;}
.ws10f{word-spacing:18.711468pt;}
.wsf8{word-spacing:18.920533pt;}
.ws11a{word-spacing:18.972800pt;}
.ws124{word-spacing:19.390934pt;}
.ws2a{word-spacing:19.547734pt;}
.ws27{word-spacing:19.704534pt;}
.ws98{word-spacing:20.018133pt;}
.wsf0{word-spacing:20.383999pt;}
.wse9{word-spacing:20.802134pt;}
.ws107{word-spacing:21.063467pt;}
.wse1{word-spacing:21.220267pt;}
.ws29{word-spacing:21.272534pt;}
.ws128{word-spacing:21.377067pt;}
.wsef{word-spacing:21.481601pt;}
.ws8d{word-spacing:21.586133pt;}
.wse3{word-spacing:22.579201pt;}
.ws5e{word-spacing:23.049601pt;}
.ws111{word-spacing:24.460800pt;}
.ws24{word-spacing:25.140267pt;}
.wsf6{word-spacing:25.506134pt;}
.ws140{word-spacing:27.439999pt;}
.wsd8{word-spacing:29.426135pt;}
.ws12b{word-spacing:29.896535pt;}
.ws148{word-spacing:32.196267pt;}
._4{margin-left:-9.512534pt;}
._5{margin-left:-7.935807pt;}
._13{margin-left:-5.174327pt;}
._9{margin-left:-3.794560pt;}
._3{margin-left:-2.524872pt;}
._0{margin-left:-1.408000pt;}
._1{width:1.058105pt;}
._2{width:2.816106pt;}
._c{width:4.301547pt;}
._d{width:5.543766pt;}
._a{width:6.719923pt;}
._7{width:8.017599pt;}
._6{width:9.095327pt;}
._8{width:10.981711pt;}
._10{width:12.423787pt;}
._b{width:13.380265pt;}
._f{width:14.843733pt;}
._e{width:18.486434pt;}
._15{width:20.274559pt;}
._14{width:39.794559pt;}
._11{width:174.187105pt;}
._12{width:191.285782pt;}
.fsc{font-size:28.000000pt;}
.fsf{font-size:30.478933pt;}
.fse{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:48.881068pt;}
.fsd{font-size:49.066666pt;}
.fs8{font-size:52.266668pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933334pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:65.174398pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1a8{bottom:2.340932pt;}
.y3b{bottom:4.073568pt;}
.y3a{bottom:19.688883pt;}
.y37{bottom:35.302734pt;}
.y24{bottom:66.836665pt;}
.y23{bottom:77.504669pt;}
.y22{bottom:88.172668pt;}
.y299{bottom:88.877827pt;}
.y20d{bottom:93.440791pt;}
.y187{bottom:94.774129pt;}
.y74{bottom:94.780529pt;}
.y157{bottom:94.786930pt;}
.y145{bottom:94.793330pt;}
.ya3{bottom:94.806130pt;}
.yca{bottom:94.812530pt;}
.y175{bottom:94.838131pt;}
.y1b0{bottom:96.186137pt;}
.y11a{bottom:97.144002pt;}
.y1ec{bottom:97.910933pt;}
.y1d1{bottom:97.923733pt;}
.y21{bottom:98.840668pt;}
.y2e7{bottom:100.263344pt;}
.y298{bottom:100.877828pt;}
.y20c{bottom:105.440792pt;}
.y20{bottom:109.508667pt;}
.y1af{bottom:109.519470pt;}
.y119{bottom:110.477336pt;}
.y73{bottom:110.774129pt;}
.y156{bottom:110.780529pt;}
.y144{bottom:110.786930pt;}
.ya2{bottom:110.799730pt;}
.yc9{bottom:110.806130pt;}
.y174{bottom:110.831731pt;}
.y2e6{bottom:110.931344pt;}
.y297{bottom:112.877828pt;}
.y2de{bottom:112.877838pt;}
.y252{bottom:112.880758pt;}
.y1eb{bottom:113.904533pt;}
.y1d0{bottom:113.917333pt;}
.y20b{bottom:117.440792pt;}
.y1ae{bottom:122.852804pt;}
.y118{bottom:123.810669pt;}
.y296{bottom:124.877828pt;}
.y2dd{bottom:124.877838pt;}
.y251{bottom:124.880758pt;}
.y72{bottom:126.774129pt;}
.y143{bottom:126.780529pt;}
.ya1{bottom:126.793330pt;}
.yc8{bottom:126.799730pt;}
.y173{bottom:126.825331pt;}
.yf2{bottom:126.838131pt;}
.y20a{bottom:129.440792pt;}
.y1ea{bottom:129.898132pt;}
.y1cf{bottom:129.910933pt;}
.y2e5{bottom:133.434011pt;}
.y192{bottom:136.185333pt;}
.y295{bottom:136.877829pt;}
.y2dc{bottom:136.877839pt;}
.y250{bottom:136.880759pt;}
.y117{bottom:137.144002pt;}
.y3f{bottom:139.077332pt;}
.y209{bottom:141.440793pt;}
.y142{bottom:142.774129pt;}
.y71{bottom:142.780529pt;}
.ya0{bottom:142.786930pt;}
.yc7{bottom:142.793330pt;}
.y172{bottom:142.818931pt;}
.yf1{bottom:142.831731pt;}
.y1ce{bottom:145.904533pt;}
.y1e9{bottom:145.910933pt;}
.y34{bottom:148.127065pt;}
.y19d{bottom:148.470266pt;}
.y294{bottom:148.877829pt;}
.y2db{bottom:148.877839pt;}
.y24f{bottom:148.880759pt;}
.y2e4{bottom:149.431344pt;}
.y3e{bottom:151.077332pt;}
.y208{bottom:153.440793pt;}
.y19e{bottom:158.703568pt;}
.y70{bottom:158.774129pt;}
.y9f{bottom:158.780529pt;}
.yc6{bottom:158.786930pt;}
.y155{bottom:158.799730pt;}
.y171{bottom:158.812530pt;}
.yf0{bottom:158.825331pt;}
.y293{bottom:160.877829pt;}
.y2da{bottom:160.877839pt;}
.y24e{bottom:160.880759pt;}
.y1cd{bottom:161.898132pt;}
.y1e8{bottom:161.904533pt;}
.y33{bottom:164.120666pt;}
.y1ad{bottom:164.286265pt;}
.y2e3{bottom:165.428677pt;}
.y207{bottom:165.440793pt;}
.y3d{bottom:167.077332pt;}
.y19f{bottom:168.929250pt;}
.y292{bottom:172.877829pt;}
.y2d9{bottom:172.877840pt;}
.y24d{bottom:172.880759pt;}
.y9e{bottom:174.774129pt;}
.y6f{bottom:174.780529pt;}
.y154{bottom:174.793330pt;}
.y170{bottom:174.806130pt;}
.yef{bottom:174.818931pt;}
.y3c{bottom:175.077332pt;}
.y206{bottom:177.440793pt;}
.y1e7{bottom:177.898132pt;}
.y1cc{bottom:177.904533pt;}
.y1a0{bottom:179.154931pt;}
.y32{bottom:180.139872pt;}
.y2e2{bottom:181.426010pt;}
.y291{bottom:184.877830pt;}
.y2d8{bottom:184.877840pt;}
.y24c{bottom:184.880760pt;}
.y1ac{bottom:187.368211pt;}
.y1a1{bottom:189.380613pt;}
.y205{bottom:189.440794pt;}
.y9d{bottom:190.774129pt;}
.y6e{bottom:190.780529pt;}
.y128{bottom:190.786930pt;}
.y16f{bottom:190.799730pt;}
.yee{bottom:190.812530pt;}
.y186{bottom:190.825331pt;}
.y1cb{bottom:193.898132pt;}
.y31{bottom:196.133464pt;}
.y290{bottom:196.877830pt;}
.y2d7{bottom:196.877840pt;}
.y24b{bottom:196.880760pt;}
.y2e1{bottom:197.423343pt;}
.y1a2{bottom:199.606295pt;}
.y204{bottom:201.440794pt;}
.yc5{bottom:206.774129pt;}
.y6d{bottom:206.780529pt;}
.y9c{bottom:206.786930pt;}
.y16e{bottom:206.793330pt;}
.y141{bottom:206.799730pt;}
.yed{bottom:206.806130pt;}
.y185{bottom:206.818931pt;}
.y28f{bottom:208.877830pt;}
.y2d6{bottom:208.877841pt;}
.y24a{bottom:208.880760pt;}
.y1a3{bottom:209.854837pt;}
.y1e6{bottom:209.898132pt;}
.y1ca{bottom:209.917333pt;}
.y1ab{bottom:210.440764pt;}
.y2a{bottom:211.424540pt;}
.y30{bottom:212.127075pt;}
.y2e0{bottom:213.420676pt;}
.y203{bottom:213.440794pt;}
.y1a4{bottom:220.072898pt;}
.y28e{bottom:220.877831pt;}
.y2d5{bottom:220.877841pt;}
.y249{bottom:220.880761pt;}
.y127{bottom:222.774129pt;}
.y9b{bottom:222.780529pt;}
.y6c{bottom:222.786930pt;}
.y140{bottom:222.793330pt;}
.yec{bottom:222.799730pt;}
.yc4{bottom:222.806130pt;}
.y184{bottom:222.812530pt;}
.y1aa{bottom:224.156283pt;}
.y202{bottom:225.440795pt;}
.y1e5{bottom:225.898132pt;}
.y1c9{bottom:225.910933pt;}
.y29{bottom:227.424540pt;}
.y2f{bottom:228.120666pt;}
.y2df{bottom:229.418009pt;}
.y1a5{bottom:230.298580pt;}
.y28d{bottom:232.877831pt;}
.y2d4{bottom:232.877841pt;}
.y248{bottom:232.880761pt;}
.y1a9{bottom:233.520935pt;}
.y201{bottom:237.440795pt;}
.y9a{bottom:238.774129pt;}
.y6b{bottom:238.780529pt;}
.y13f{bottom:238.786930pt;}
.yeb{bottom:238.793330pt;}
.yc3{bottom:238.799730pt;}
.y183{bottom:238.806130pt;}
.y1a6{bottom:240.524262pt;}
.y1c8{bottom:241.904533pt;}
.y28{bottom:243.437337pt;}
.y2e{bottom:244.120666pt;}
.y28c{bottom:244.877831pt;}
.y2d3{bottom:244.877841pt;}
.y247{bottom:244.880761pt;}
.y2e9{bottom:249.061458pt;}
.y200{bottom:249.440795pt;}
.y1a7{bottom:250.749944pt;}
.y6a{bottom:254.774129pt;}
.y13e{bottom:254.780529pt;}
.yea{bottom:254.786930pt;}
.yc2{bottom:254.793330pt;}
.y182{bottom:254.799730pt;}
.y28b{bottom:256.877832pt;}
.y2d2{bottom:256.877842pt;}
.y246{bottom:256.880762pt;}
.y1c7{bottom:257.898132pt;}
.y1e4{bottom:257.917333pt;}
.y27{bottom:259.430949pt;}
.y2d{bottom:260.137085pt;}
.y1ff{bottom:261.440796pt;}
.y2e8{bottom:266.661458pt;}
.y28a{bottom:268.877832pt;}
.y2d1{bottom:268.877842pt;}
.y245{bottom:268.880762pt;}
.y13d{bottom:270.774129pt;}
.y69{bottom:270.778396pt;}
.ye9{bottom:270.780529pt;}
.y99{bottom:270.786930pt;}
.y181{bottom:270.793330pt;}
.y16d{bottom:270.799730pt;}
.y126{bottom:270.806130pt;}
.y1fe{bottom:273.440796pt;}
.y1e3{bottom:273.910933pt;}
.y1c6{bottom:273.949354pt;}
.y26{bottom:275.424540pt;}
.y2c{bottom:276.130676pt;}
.y193{bottom:276.560150pt;}
.y194{bottom:278.543599pt;}
.y289{bottom:280.877832pt;}
.y2d0{bottom:280.877842pt;}
.y244{bottom:280.880762pt;}
.y68{bottom:286.774129pt;}
.y98{bottom:286.780529pt;}
.y180{bottom:286.786930pt;}
.y16c{bottom:286.793330pt;}
.y125{bottom:286.799730pt;}
.y13c{bottom:286.825331pt;}
.y188{bottom:288.495463pt;}
.y1e2{bottom:289.904533pt;}
.y1c5{bottom:289.942954pt;}
.y25{bottom:291.424540pt;}
.y2b{bottom:292.124288pt;}
.y19c{bottom:292.206401pt;}
.y288{bottom:292.877832pt;}
.y2cf{bottom:292.877843pt;}
.y243{bottom:292.880762pt;}
.y189{bottom:300.908008pt;}
.y97{bottom:302.774129pt;}
.ye8{bottom:302.780529pt;}
.y153{bottom:302.786930pt;}
.y124{bottom:302.793330pt;}
.y13b{bottom:302.818931pt;}
.y287{bottom:304.877833pt;}
.y2ce{bottom:304.877843pt;}
.y242{bottom:304.880763pt;}
.y1e1{bottom:305.898132pt;}
.y1c4{bottom:305.936554pt;}
.y18a{bottom:313.335793pt;}
.y19b{bottom:315.285951pt;}
.y286{bottom:316.877833pt;}
.y2cd{bottom:316.877843pt;}
.y241{bottom:316.880763pt;}
.y96{bottom:318.774129pt;}
.y152{bottom:318.780529pt;}
.y123{bottom:318.786930pt;}
.yc1{bottom:318.793330pt;}
.y13a{bottom:318.812530pt;}
.y67{bottom:318.825331pt;}
.y1e0{bottom:321.917353pt;}
.y1c3{bottom:321.930154pt;}
.y18b{bottom:325.763578pt;}
.y285{bottom:328.877833pt;}
.y2cc{bottom:328.877844pt;}
.y240{bottom:328.880763pt;}
.ye7{bottom:334.774129pt;}
.y122{bottom:334.780529pt;}
.yc0{bottom:334.786930pt;}
.y95{bottom:334.793330pt;}
.y139{bottom:334.806130pt;}
.y66{bottom:334.818931pt;}
.y1df{bottom:337.910953pt;}
.y1c2{bottom:337.923753pt;}
.y18c{bottom:338.198982pt;}
.y19a{bottom:338.366123pt;}
.y1f{bottom:339.391195pt;}
.y284{bottom:340.877834pt;}
.y2cb{bottom:340.877844pt;}
.y23f{bottom:340.880764pt;}
.y1fd{bottom:342.774124pt;}
.y18d{bottom:350.611527pt;}
.y121{bottom:350.774129pt;}
.ybf{bottom:350.780529pt;}
.y94{bottom:350.786930pt;}
.y138{bottom:350.799730pt;}
.y151{bottom:350.806130pt;}
.y65{bottom:350.812530pt;}
.y199{bottom:352.081643pt;}
.y283{bottom:352.877834pt;}
.y2ca{bottom:352.877844pt;}
.y23e{bottom:352.880764pt;}
.y1de{bottom:353.904553pt;}
.y1c1{bottom:353.917353pt;}
.y1e{bottom:355.391195pt;}
.y198{bottom:361.446295pt;}
.y18e{bottom:363.039312pt;}
.y282{bottom:364.877834pt;}
.y2c9{bottom:364.877844pt;}
.y23d{bottom:364.880764pt;}
.y1fc{bottom:366.774125pt;}
.ybe{bottom:366.774129pt;}
.y93{bottom:366.780529pt;}
.y120{bottom:366.786930pt;}
.y137{bottom:366.793330pt;}
.y150{bottom:366.799730pt;}
.y64{bottom:366.806130pt;}
.y1c0{bottom:369.910953pt;}
.y1dd{bottom:369.917353pt;}
.y1d{bottom:371.391195pt;}
.y197{bottom:375.161814pt;}
.y18f{bottom:375.467097pt;}
.y281{bottom:376.877835pt;}
.y2c8{bottom:376.877845pt;}
.y23c{bottom:376.880765pt;}
.y1fb{bottom:378.774125pt;}
.y92{bottom:382.774129pt;}
.ybd{bottom:382.780529pt;}
.y136{bottom:382.786930pt;}
.y14f{bottom:382.793330pt;}
.y63{bottom:382.799730pt;}
.ye6{bottom:382.831731pt;}
.y196{bottom:384.526466pt;}
.y1bf{bottom:385.904553pt;}
.y1dc{bottom:385.910953pt;}
.y1c{bottom:387.391195pt;}
.y190{bottom:387.894882pt;}
.y280{bottom:388.877835pt;}
.y2c7{bottom:388.877845pt;}
.y23b{bottom:388.880765pt;}
.ybc{bottom:398.774129pt;}
.y135{bottom:398.780529pt;}
.y109{bottom:398.786930pt;}
.y62{bottom:398.793330pt;}
.y91{bottom:398.806130pt;}
.ye5{bottom:398.825331pt;}
.y116{bottom:398.838131pt;}
.y191{bottom:400.315047pt;}
.y27f{bottom:400.877835pt;}
.y2c6{bottom:400.877845pt;}
.y23a{bottom:400.880765pt;}
.y1be{bottom:401.898153pt;}
.y1db{bottom:401.904553pt;}
.y1fa{bottom:402.774126pt;}
.y1b{bottom:403.391195pt;}
.y195{bottom:407.606638pt;}
.y27e{bottom:412.877835pt;}
.y2c5{bottom:412.877846pt;}
.y239{bottom:412.880765pt;}
.y1f9{bottom:414.774127pt;}
.ybb{bottom:414.774129pt;}
.y108{bottom:414.780529pt;}
.y61{bottom:414.786930pt;}
.y90{bottom:414.799730pt;}
.y17f{bottom:414.806130pt;}
.ye4{bottom:414.818931pt;}
.y115{bottom:414.831731pt;}
.y1bd{bottom:417.898153pt;}
.y1a{bottom:419.391195pt;}
.y27d{bottom:424.877836pt;}
.y2c4{bottom:424.877846pt;}
.y238{bottom:424.880766pt;}
.y1f8{bottom:426.774127pt;}
.y107{bottom:430.774129pt;}
.y60{bottom:430.780529pt;}
.y8f{bottom:430.793330pt;}
.y17e{bottom:430.799730pt;}
.ye3{bottom:430.812530pt;}
.y114{bottom:430.825331pt;}
.y1bc{bottom:433.904553pt;}
.y1da{bottom:433.917353pt;}
.y19{bottom:435.391195pt;}
.y27c{bottom:436.877836pt;}
.y2c3{bottom:436.877846pt;}
.y237{bottom:436.880766pt;}
.y1f7{bottom:438.774127pt;}
.y5f{bottom:446.774129pt;}
.y106{bottom:446.780529pt;}
.y8e{bottom:446.786930pt;}
.y17d{bottom:446.793330pt;}
.ye2{bottom:446.806130pt;}
.y113{bottom:446.818931pt;}
.y27b{bottom:448.877836pt;}
.y2c2{bottom:448.877847pt;}
.y236{bottom:448.880766pt;}
.y1bb{bottom:449.898153pt;}
.y1d9{bottom:449.910953pt;}
.y1f6{bottom:450.774128pt;}
.y18{bottom:451.391195pt;}
.y27a{bottom:460.877837pt;}
.y2c1{bottom:460.877847pt;}
.y235{bottom:460.880767pt;}
.y1f5{bottom:462.774128pt;}
.y105{bottom:462.774129pt;}
.y8d{bottom:462.780529pt;}
.y5e{bottom:462.786930pt;}
.yba{bottom:462.793330pt;}
.ye1{bottom:462.799730pt;}
.y112{bottom:462.812530pt;}
.y14e{bottom:462.831731pt;}
.y1d8{bottom:465.904553pt;}
.y1ba{bottom:465.910953pt;}
.y17{bottom:467.391195pt;}
.y279{bottom:472.877837pt;}
.y2c0{bottom:472.877847pt;}
.y234{bottom:472.880767pt;}
.y134{bottom:478.774129pt;}
.y5d{bottom:478.780529pt;}
.yb9{bottom:478.786930pt;}
.ye0{bottom:478.793330pt;}
.y8c{bottom:478.799730pt;}
.y104{bottom:478.806130pt;}
.y14d{bottom:478.825331pt;}
.y1d7{bottom:481.898153pt;}
.y1b9{bottom:481.904553pt;}
.y16{bottom:483.391195pt;}
.y278{bottom:484.877837pt;}
.y2bf{bottom:484.877847pt;}
.y233{bottom:484.880767pt;}
.y1f4{bottom:486.774129pt;}
.y5c{bottom:494.774129pt;}
.yb8{bottom:494.780529pt;}
.ydf{bottom:494.786930pt;}
.y8b{bottom:494.793330pt;}
.y103{bottom:494.799730pt;}
.y14c{bottom:494.818931pt;}
.y277{bottom:496.877838pt;}
.y2be{bottom:496.877848pt;}
.y232{bottom:496.880768pt;}
.y1b8{bottom:497.898153pt;}
.y1d6{bottom:497.917353pt;}
.y1f3{bottom:498.774129pt;}
.y15{bottom:499.391195pt;}
.y276{bottom:508.877838pt;}
.y2bd{bottom:508.877848pt;}
.y231{bottom:508.880768pt;}
.y5b{bottom:510.774129pt;}
.yde{bottom:510.780529pt;}
.y8a{bottom:510.786930pt;}
.y102{bottom:510.793330pt;}
.y14b{bottom:510.812530pt;}
.y1b7{bottom:513.898153pt;}
.y1d5{bottom:513.910953pt;}
.y14{bottom:515.391195pt;}
.y2bc{bottom:520.877817pt;}
.y275{bottom:520.877838pt;}
.y230{bottom:520.880768pt;}
.ydd{bottom:526.774129pt;}
.y89{bottom:526.780529pt;}
.y101{bottom:526.786930pt;}
.y14a{bottom:526.806130pt;}
.y5a{bottom:526.825331pt;}
.yb7{bottom:526.857372pt;}
.y1b6{bottom:529.904553pt;}
.y13{bottom:531.391195pt;}
.y2bb{bottom:532.877817pt;}
.y274{bottom:532.877838pt;}
.y22f{bottom:532.880768pt;}
.y1f2{bottom:534.774128pt;}
.y88{bottom:542.774129pt;}
.y100{bottom:542.780529pt;}
.ydc{bottom:542.799730pt;}
.y133{bottom:542.806130pt;}
.y59{bottom:542.818931pt;}
.yb6{bottom:542.850972pt;}
.y16b{bottom:542.863773pt;}
.y2ba{bottom:544.877818pt;}
.y273{bottom:544.877839pt;}
.y22e{bottom:544.880769pt;}
.y1b5{bottom:545.898153pt;}
.y12{bottom:547.391195pt;}
.y2b9{bottom:556.877818pt;}
.y272{bottom:556.877839pt;}
.y22d{bottom:556.880769pt;}
.y87{bottom:558.774129pt;}
.ydb{bottom:558.793330pt;}
.y132{bottom:558.799730pt;}
.y58{bottom:558.812530pt;}
.yb5{bottom:558.844572pt;}
.y16a{bottom:558.857372pt;}
.y1b4{bottom:561.898153pt;}
.y11{bottom:563.391195pt;}
.y2b8{bottom:568.877818pt;}
.y271{bottom:568.877839pt;}
.y22c{bottom:568.880769pt;}
.y1f1{bottom:570.774129pt;}
.y111{bottom:574.774129pt;}
.y86{bottom:574.780529pt;}
.yda{bottom:574.786930pt;}
.yff{bottom:574.793330pt;}
.y57{bottom:574.806130pt;}
.yb4{bottom:574.838172pt;}
.y169{bottom:574.850972pt;}
.y1d4{bottom:577.904553pt;}
.y1b3{bottom:577.910953pt;}
.y10{bottom:579.391195pt;}
.y2b7{bottom:580.877819pt;}
.y270{bottom:580.877840pt;}
.y22b{bottom:580.880770pt;}
.y1f0{bottom:582.774129pt;}
.y85{bottom:590.774129pt;}
.yd9{bottom:590.780529pt;}
.yfe{bottom:590.786930pt;}
.y11f{bottom:590.793330pt;}
.y56{bottom:590.799730pt;}
.yb3{bottom:590.831772pt;}
.y168{bottom:590.844572pt;}
.y2b6{bottom:592.877819pt;}
.y26f{bottom:592.877840pt;}
.y22a{bottom:592.880770pt;}
.y1d3{bottom:593.898153pt;}
.y1b2{bottom:593.904553pt;}
.yf{bottom:595.391195pt;}
.y2b5{bottom:604.877819pt;}
.y26e{bottom:604.877840pt;}
.y229{bottom:604.880770pt;}
.y84{bottom:606.774129pt;}
.yfd{bottom:606.780529pt;}
.y11e{bottom:606.786930pt;}
.y55{bottom:606.793330pt;}
.yb2{bottom:606.825371pt;}
.y167{bottom:606.838172pt;}
.y1b1{bottom:609.898153pt;}
.y1d2{bottom:609.927985pt;}
.ye{bottom:611.391195pt;}
.y2b4{bottom:616.877820pt;}
.y26d{bottom:616.877841pt;}
.y228{bottom:616.880771pt;}
.yfc{bottom:622.774129pt;}
.y11d{bottom:622.780529pt;}
.y54{bottom:622.786930pt;}
.y1ef{bottom:622.793330pt;}
.yd8{bottom:622.799771pt;}
.yb1{bottom:622.818971pt;}
.y166{bottom:622.831772pt;}
.yd{bottom:627.391195pt;}
.y2b3{bottom:628.877820pt;}
.y26c{bottom:628.877841pt;}
.y227{bottom:628.880771pt;}
.y11c{bottom:638.774129pt;}
.y53{bottom:638.780529pt;}
.y110{bottom:638.786930pt;}
.yd7{bottom:638.793370pt;}
.yb0{bottom:638.812571pt;}
.y131{bottom:638.818971pt;}
.y165{bottom:638.825371pt;}
.y2b2{bottom:640.877820pt;}
.y26b{bottom:640.877841pt;}
.y226{bottom:640.880771pt;}
.yc{bottom:643.391195pt;}
.y2b1{bottom:652.877820pt;}
.y26a{bottom:652.877841pt;}
.y225{bottom:652.880771pt;}
.y52{bottom:654.774129pt;}
.y10f{bottom:654.780529pt;}
.yd6{bottom:654.786970pt;}
.yaf{bottom:654.806171pt;}
.y130{bottom:654.812571pt;}
.y164{bottom:654.818971pt;}
.yb{bottom:659.391195pt;}
.y1ee{bottom:660.418009pt;}
.y2b0{bottom:664.877821pt;}
.y269{bottom:664.877842pt;}
.y224{bottom:664.880772pt;}
.y10e{bottom:670.774129pt;}
.y83{bottom:670.780570pt;}
.y51{bottom:670.793370pt;}
.yae{bottom:670.799771pt;}
.y12f{bottom:670.806171pt;}
.y163{bottom:670.812571pt;}
.y17a{bottom:670.825371pt;}
.y1ed{bottom:673.751343pt;}
.ya{bottom:675.391195pt;}
.y2af{bottom:676.877821pt;}
.y268{bottom:676.877842pt;}
.y223{bottom:676.880772pt;}
.y82{bottom:686.774170pt;}
.y50{bottom:686.786970pt;}
.yad{bottom:686.793370pt;}
.y12e{bottom:686.799771pt;}
.y162{bottom:686.806171pt;}
.y10d{bottom:686.812571pt;}
.y179{bottom:686.818971pt;}
.y2ae{bottom:688.877821pt;}
.y267{bottom:688.877842pt;}
.y222{bottom:688.880772pt;}
.y9{bottom:691.391195pt;}
.y2ad{bottom:700.877822pt;}
.y2fd{bottom:700.877829pt;}
.y266{bottom:700.877843pt;}
.y221{bottom:700.880773pt;}
.y17c{bottom:702.774170pt;}
.y4f{bottom:702.780570pt;}
.yac{bottom:702.786970pt;}
.yfb{bottom:702.793370pt;}
.y149{bottom:702.799771pt;}
.yd5{bottom:702.806171pt;}
.y178{bottom:702.812571pt;}
.y8{bottom:711.391195pt;}
.y2ac{bottom:712.877822pt;}
.y2fc{bottom:712.877830pt;}
.y265{bottom:712.877843pt;}
.y220{bottom:712.880773pt;}
.y4e{bottom:718.774170pt;}
.yab{bottom:718.780570pt;}
.yfa{bottom:718.786970pt;}
.y148{bottom:718.793370pt;}
.yd4{bottom:718.799771pt;}
.y177{bottom:718.806171pt;}
.y2ab{bottom:724.877822pt;}
.y2fb{bottom:724.877830pt;}
.y264{bottom:724.877843pt;}
.y21f{bottom:724.880773pt;}
.y81{bottom:734.774170pt;}
.y4d{bottom:734.778437pt;}
.yf9{bottom:734.780570pt;}
.y147{bottom:734.786970pt;}
.yd3{bottom:734.793370pt;}
.y176{bottom:734.799771pt;}
.y2aa{bottom:736.877823pt;}
.y2fa{bottom:736.877830pt;}
.y263{bottom:736.877844pt;}
.y21e{bottom:736.880774pt;}
.y2a9{bottom:748.877823pt;}
.y2f9{bottom:748.877830pt;}
.y262{bottom:748.877844pt;}
.y21d{bottom:748.880774pt;}
.y4c{bottom:750.774170pt;}
.y146{bottom:750.780570pt;}
.yd2{bottom:750.786970pt;}
.y80{bottom:750.793370pt;}
.y2a8{bottom:760.877823pt;}
.y2f8{bottom:760.877831pt;}
.y261{bottom:760.877844pt;}
.y21c{bottom:760.880774pt;}
.y4b{bottom:766.774170pt;}
.yd1{bottom:766.780570pt;}
.y7f{bottom:766.786970pt;}
.yaa{bottom:766.793370pt;}
.y7{bottom:768.491211pt;}
.y2a7{bottom:772.877823pt;}
.y2f7{bottom:772.877831pt;}
.y260{bottom:772.877844pt;}
.y21b{bottom:772.880774pt;}
.yd0{bottom:782.774170pt;}
.y7e{bottom:782.780570pt;}
.ya9{bottom:782.786970pt;}
.y161{bottom:782.838419pt;}
.y2a6{bottom:784.877824pt;}
.y2f6{bottom:784.877831pt;}
.y25f{bottom:784.877845pt;}
.y21a{bottom:784.880775pt;}
.y2a5{bottom:796.877824pt;}
.y2f5{bottom:796.877832pt;}
.y25e{bottom:796.877845pt;}
.y219{bottom:796.880775pt;}
.y7d{bottom:798.774170pt;}
.ya8{bottom:798.780570pt;}
.y4a{bottom:798.786970pt;}
.yf8{bottom:798.806171pt;}
.y160{bottom:798.832019pt;}
.y6{bottom:800.513346pt;}
.y2a4{bottom:808.877824pt;}
.y2f4{bottom:808.877832pt;}
.y25d{bottom:808.877845pt;}
.y218{bottom:808.880775pt;}
.ya7{bottom:814.774170pt;}
.y49{bottom:814.780570pt;}
.y7c{bottom:814.786970pt;}
.yf7{bottom:814.799771pt;}
.y15f{bottom:814.825619pt;}
.y2a3{bottom:820.877825pt;}
.y2f3{bottom:820.877832pt;}
.y25c{bottom:820.877846pt;}
.y217{bottom:820.880776pt;}
.y48{bottom:830.774170pt;}
.y7b{bottom:830.780570pt;}
.ya6{bottom:830.786970pt;}
.yf6{bottom:830.793370pt;}
.y15e{bottom:830.819219pt;}
.y2a2{bottom:832.877825pt;}
.y2f2{bottom:832.877833pt;}
.y25b{bottom:832.877846pt;}
.y216{bottom:832.880776pt;}
.y5{bottom:835.169352pt;}
.y2a1{bottom:844.877825pt;}
.y2f1{bottom:844.877833pt;}
.y25a{bottom:844.877846pt;}
.y215{bottom:844.880776pt;}
.ycf{bottom:846.774170pt;}
.y7a{bottom:846.780570pt;}
.yf5{bottom:846.786970pt;}
.y47{bottom:846.799771pt;}
.y15d{bottom:846.812819pt;}
.y2a0{bottom:856.877826pt;}
.y2f0{bottom:856.877833pt;}
.y259{bottom:856.877847pt;}
.y214{bottom:856.880777pt;}
.y79{bottom:862.774170pt;}
.yf4{bottom:862.780570pt;}
.y46{bottom:862.793370pt;}
.y15c{bottom:862.806418pt;}
.y12d{bottom:862.825619pt;}
.y29f{bottom:868.877826pt;}
.y2ef{bottom:868.877833pt;}
.y258{bottom:868.877847pt;}
.y213{bottom:868.880777pt;}
.y4{bottom:869.825358pt;}
.y78{bottom:878.774170pt;}
.y11b{bottom:878.780570pt;}
.y45{bottom:878.786970pt;}
.y15b{bottom:878.800018pt;}
.y12c{bottom:878.819219pt;}
.yce{bottom:878.825619pt;}
.y29e{bottom:880.877826pt;}
.y2ee{bottom:880.877834pt;}
.y257{bottom:880.877847pt;}
.y212{bottom:880.880777pt;}
.y29d{bottom:892.877826pt;}
.y2ed{bottom:892.877834pt;}
.y256{bottom:892.877847pt;}
.y211{bottom:892.880777pt;}
.y10c{bottom:894.774170pt;}
.y44{bottom:894.780570pt;}
.yf3{bottom:894.786970pt;}
.y77{bottom:894.787218pt;}
.y15a{bottom:894.793618pt;}
.y12b{bottom:894.812819pt;}
.ycd{bottom:894.819219pt;}
.y29c{bottom:904.877827pt;}
.y2ec{bottom:904.877834pt;}
.y255{bottom:904.877848pt;}
.y210{bottom:904.880778pt;}
.y43{bottom:910.774170pt;}
.ya5{bottom:910.780570pt;}
.y76{bottom:910.780818pt;}
.y159{bottom:910.787218pt;}
.y10b{bottom:910.791220pt;}
.y12a{bottom:910.806418pt;}
.ycc{bottom:910.812819pt;}
.y29b{bottom:916.877827pt;}
.y2eb{bottom:916.877835pt;}
.y254{bottom:916.877848pt;}
.y20f{bottom:916.880778pt;}
.y3{bottom:918.544515pt;}
.y35{bottom:920.666829pt;}
.y42{bottom:926.774170pt;}
.y75{bottom:926.774417pt;}
.y158{bottom:926.780818pt;}
.y10a{bottom:926.784819pt;}
.y17b{bottom:926.790663pt;}
.y129{bottom:926.800018pt;}
.ycb{bottom:926.806418pt;}
.y29a{bottom:928.877827pt;}
.y2ea{bottom:928.877835pt;}
.y253{bottom:928.877848pt;}
.y20e{bottom:928.880778pt;}
.y36{bottom:958.676025pt;}
.y39{bottom:978.364909pt;}
.y2{bottom:988.708496pt;}
.y38{bottom:993.978760pt;}
.ya4{bottom:1001.355225pt;}
.y40{bottom:1001.355306pt;}
.y41{bottom:1001.707306pt;}
.y1{bottom:1001.711182pt;}
.h17{height:21.883874pt;}
.hf{height:24.724000pt;}
.h1e{height:28.560000pt;}
.h9{height:32.965333pt;}
.he{height:35.320000pt;}
.h1d{height:35.320125pt;}
.hd{height:36.660801pt;}
.h16{height:37.674667pt;}
.h1b{height:38.080000pt;}
.h19{height:38.920000pt;}
.h1c{height:39.560000pt;}
.h3{height:40.618667pt;}
.h1a{height:40.724001pt;}
.h2{height:41.983924pt;}
.h10{height:41.984000pt;}
.h15{height:42.197333pt;}
.h1f{height:44.117333pt;}
.hc{height:46.273822pt;}
.h8{height:47.093333pt;}
.h12{height:47.692799pt;}
.h11{height:47.741866pt;}
.hb{height:49.134669pt;}
.ha{height:49.653334pt;}
.h7{height:54.329068pt;}
.h13{height:55.612789pt;}
.h14{height:55.638390pt;}
.h6{height:59.728337pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h18{height:282.776001pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:118.669332pt;}
.w3{width:311.810669pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:12.487335pt;}
.x8{left:51.963582pt;}
.x14{left:60.494537pt;}
.xb{left:61.463582pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162801pt;}
.xc{left:86.252935pt;}
.x13{left:88.417029pt;}
.xf{left:92.272614pt;}
.xe{left:96.204397pt;}
.x11{left:134.268799pt;}
.x4{left:240.726664pt;}
.x12{left:296.150029pt;}
.x15{left:304.719340pt;}
.x5{left:406.304810pt;}
.xd{left:416.961594pt;}
.x19{left:424.500000pt;}
.x16{left:426.300525pt;}
.x18{left:431.567749pt;}
.x7{left:599.161336pt;}
.x6{left:617.715454pt;}
.xa{left:651.124919pt;}
.x17{left:658.727458pt;}
.x9{left:664.110514pt;}
}




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