
    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_59785d524b934b68eb4dca77.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_31dc9bfad59266199de0ff29.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b23a6e5edb4579397e09662a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_674805ed853e529a70f8e8b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e440b30adfacfeacd466ba38.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_38f350bf60d221c801f92a9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881348;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_ba7a473b71bab38da047aa48.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.392000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0163f828b96e53dce3655632.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7b0cf0e8fe3266b223d400d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5eff6584c25c6e98f8821715.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a5b86876a7d9f8b0d2383511.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ca40850981802c690dd241ce.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.279000;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_d92a1eeeefcd657dd2d559e3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5119d304815ad056d8fee807.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f9c8cc57ece2976baae1dbcb.woff2')format("woff");}.fff{font-family:fff;line-height:0.894000;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_48e8ea154396e0747c727c6c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3f6dcb4934e95fd5511b70f9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_10538f7785ba845bad518ded.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_dec26764e3098c8f0de45696.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.847000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-3.060000px;}
.v1{vertical-align:-1.358383px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:36.735775px;}
.ls5{letter-spacing:-1.263600px;}
.ls8{letter-spacing:-1.200600px;}
.lsb{letter-spacing:-1.199985px;}
.ls9{letter-spacing:-1.140000px;}
.ls44{letter-spacing:-1.080000px;}
.ls2e{letter-spacing:-1.020000px;}
.ls28{letter-spacing:-1.011884px;}
.ls1e{letter-spacing:-0.840000px;}
.ls1d{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.239997px;}
.ls6{letter-spacing:-0.237600px;}
.ls17{letter-spacing:-0.237598px;}
.ls3d{letter-spacing:-0.214367px;}
.ls7{letter-spacing:-0.212372px;}
.ls2f{letter-spacing:-0.211976px;}
.ls27{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.450000px;}
.ls13{letter-spacing:1.022387px;}
.ls14{letter-spacing:1.027187px;}
.ls42{letter-spacing:1.128000px;}
.ls16{letter-spacing:1.363183px;}
.ls22{letter-spacing:1.812000px;}
.ls26{letter-spacing:2.154000px;}
.ls4d{letter-spacing:2.832000px;}
.ls4f{letter-spacing:4.425545px;}
.ls53{letter-spacing:4.761540px;}
.ls4e{letter-spacing:4.766340px;}
.ls3{letter-spacing:8.783890px;}
.ls51{letter-spacing:10.012675px;}
.ls2{letter-spacing:10.031875px;}
.ls52{letter-spacing:10.046274px;}
.ls3c{letter-spacing:10.401470px;}
.ls37{letter-spacing:10.699066px;}
.ls30{letter-spacing:11.011062px;}
.ls38{letter-spacing:11.039862px;}
.ls39{letter-spacing:11.054262px;}
.ls31{letter-spacing:11.083061px;}
.ls3a{letter-spacing:11.087861px;}
.ls3b{letter-spacing:11.159860px;}
.ls23{letter-spacing:11.658000px;}
.ls15{letter-spacing:11.908651px;}
.ls3e{letter-spacing:12.042000px;}
.ls24{letter-spacing:12.066000px;}
.ls25{letter-spacing:12.072000px;}
.ls3f{letter-spacing:12.114000px;}
.ls49{letter-spacing:12.138000px;}
.ls2c{letter-spacing:12.336000px;}
.ls32{letter-spacing:12.342000px;}
.ls45{letter-spacing:12.408000px;}
.ls46{letter-spacing:12.468000px;}
.ls34{letter-spacing:12.480000px;}
.ls40{letter-spacing:12.558000px;}
.ls48{letter-spacing:12.636000px;}
.ls2d{letter-spacing:12.678000px;}
.ls2a{letter-spacing:12.750000px;}
.ls4c{letter-spacing:12.768000px;}
.ls4a{letter-spacing:12.816000px;}
.ls33{letter-spacing:12.822000px;}
.ls36{letter-spacing:12.864000px;}
.ls1c{letter-spacing:12.924000px;}
.ls47{letter-spacing:12.930000px;}
.lsd{letter-spacing:12.936000px;}
.lsf{letter-spacing:12.942000px;}
.ls29{letter-spacing:12.984000px;}
.ls21{letter-spacing:12.990000px;}
.lse{letter-spacing:13.002000px;}
.ls18{letter-spacing:13.008000px;}
.ls12{letter-spacing:13.074000px;}
.ls4b{letter-spacing:13.080000px;}
.ls2b{letter-spacing:13.092000px;}
.ls1a{letter-spacing:13.146000px;}
.lsc{letter-spacing:13.278000px;}
.ls11{letter-spacing:13.284000px;}
.ls20{letter-spacing:13.326000px;}
.ls1f{letter-spacing:13.332000px;}
.ls10{letter-spacing:13.344000px;}
.ls19{letter-spacing:13.350000px;}
.ls35{letter-spacing:13.386000px;}
.ls1b{letter-spacing:13.488000px;}
.ls41{letter-spacing:13.716000px;}
.ls50{letter-spacing:15.311809px;}
.ls0{letter-spacing:20.783740px;}
.ls1{letter-spacing:23.327708px;}
.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;}
}
.ws1e3{word-spacing:-35.759553px;}
.ws135{word-spacing:-29.760000px;}
.ws2e{word-spacing:-26.265272px;}
.ws182{word-spacing:-19.994233px;}
.ws13c{word-spacing:-19.785724px;}
.ws10e{word-spacing:-17.382000px;}
.ws111{word-spacing:-17.346000px;}
.wsd9{word-spacing:-17.316000px;}
.ws10d{word-spacing:-17.040000px;}
.wsda{word-spacing:-16.974000px;}
.wsf4{word-spacing:-16.386000px;}
.wsf7{word-spacing:-16.380000px;}
.ws130{word-spacing:-15.918000px;}
.wse1{word-spacing:-15.162000px;}
.ws103{word-spacing:-15.078000px;}
.ws119{word-spacing:-14.628000px;}
.ws14e{word-spacing:-13.487831px;}
.ws19{word-spacing:-13.247834px;}
.ws10a{word-spacing:-13.194000px;}
.ws34{word-spacing:-10.799865px;}
.ws156{word-spacing:-4.507162px;}
.wsdd{word-spacing:-4.499963px;}
.ws12e{word-spacing:-4.492763px;}
.wsc5{word-spacing:-4.456763px;}
.ws17d{word-spacing:-4.442363px;}
.ws11b{word-spacing:-4.420763px;}
.ws160{word-spacing:-4.413563px;}
.ws13a{word-spacing:-4.327164px;}
.ws112{word-spacing:-4.240765px;}
.ws183{word-spacing:-4.233565px;}
.ws141{word-spacing:-4.226365px;}
.ws139{word-spacing:-4.154365px;}
.ws180{word-spacing:-4.082366px;}
.ws1d7{word-spacing:-3.763153px;}
.ws18e{word-spacing:-3.580755px;}
.wsa{word-spacing:-3.571155px;}
.ws1be{word-spacing:-3.561555px;}
.ws1e2{word-spacing:-3.542356px;}
.ws1b0{word-spacing:-3.532756px;}
.ws1d8{word-spacing:-3.513556px;}
.ws1e4{word-spacing:-3.508756px;}
.ws19a{word-spacing:-3.499156px;}
.ws13e{word-spacing:-3.475157px;}
.ws1b5{word-spacing:-3.470357px;}
.ws1d0{word-spacing:-3.465557px;}
.ws1e8{word-spacing:-3.455957px;}
.ws1c5{word-spacing:-3.446357px;}
.ws18c{word-spacing:-3.427157px;}
.ws1c0{word-spacing:-3.422357px;}
.ws1da{word-spacing:-3.417557px;}
.ws190{word-spacing:-3.403157px;}
.ws5{word-spacing:-3.396600px;}
.ws1db{word-spacing:-3.393558px;}
.ws1bc{word-spacing:-3.388758px;}
.ws1ca{word-spacing:-3.374358px;}
.ws1a3{word-spacing:-3.369558px;}
.ws1ab{word-spacing:-3.364758px;}
.ws1b2{word-spacing:-3.359958px;}
.ws1d2{word-spacing:-3.355158px;}
.ws1d1{word-spacing:-3.350358px;}
.wsd{word-spacing:-3.345558px;}
.ws18{word-spacing:-3.340758px;}
.ws13{word-spacing:-3.335958px;}
.ws1c6{word-spacing:-3.331158px;}
.ws1e6{word-spacing:-3.326358px;}
.ws1b7{word-spacing:-3.321558px;}
.ws1a5{word-spacing:-3.316759px;}
.ws12c{word-spacing:-3.311959px;}
.ws1e7{word-spacing:-3.307159px;}
.ws9{word-spacing:-3.304800px;}
.ws15f{word-spacing:-3.302359px;}
.ws146{word-spacing:-3.297559px;}
.ws1cf{word-spacing:-3.292759px;}
.ws1ba{word-spacing:-3.283159px;}
.ws11{word-spacing:-3.278359px;}
.ws1d4{word-spacing:-3.273559px;}
.ws6{word-spacing:-3.272400px;}
.ws1cb{word-spacing:-3.268759px;}
.ws1de{word-spacing:-3.263959px;}
.ws158{word-spacing:-3.259159px;}
.ws18b{word-spacing:-3.254359px;}
.ws18d{word-spacing:-3.249559px;}
.ws1b4{word-spacing:-3.244759px;}
.wsf{word-spacing:-3.239960px;}
.ws196{word-spacing:-3.235160px;}
.ws1bd{word-spacing:-3.230360px;}
.ws12{word-spacing:-3.225560px;}
.wse{word-spacing:-3.220760px;}
.ws145{word-spacing:-3.215960px;}
.ws1a0{word-spacing:-3.211160px;}
.ws1dc{word-spacing:-3.206360px;}
.ws1a1{word-spacing:-3.201560px;}
.ws1ad{word-spacing:-3.196760px;}
.ws1c7{word-spacing:-3.182360px;}
.wsc{word-spacing:-3.177560px;}
.ws1d9{word-spacing:-3.172760px;}
.ws8{word-spacing:-3.169800px;}
.ws140{word-spacing:-3.167960px;}
.ws1aa{word-spacing:-3.163160px;}
.ws1dd{word-spacing:-3.158361px;}
.ws7{word-spacing:-3.153600px;}
.ws19f{word-spacing:-3.153561px;}
.ws15b{word-spacing:-3.148761px;}
.ws1d3{word-spacing:-3.143961px;}
.ws193{word-spacing:-3.134361px;}
.ws1a2{word-spacing:-3.129561px;}
.ws2b{word-spacing:-3.124761px;}
.ws4{word-spacing:-3.121200px;}
.ws1b1{word-spacing:-3.115161px;}
.ws1c2{word-spacing:-3.110361px;}
.ws1a6{word-spacing:-3.105561px;}
.ws199{word-spacing:-3.100761px;}
.ws1e1{word-spacing:-3.095961px;}
.ws15e{word-spacing:-3.091161px;}
.ws1b3{word-spacing:-3.086361px;}
.ws1a7{word-spacing:-3.081561px;}
.ws1e9{word-spacing:-3.076762px;}
.ws13f{word-spacing:-3.071962px;}
.ws19c{word-spacing:-3.067162px;}
.ws19e{word-spacing:-3.062362px;}
.ws1b8{word-spacing:-3.052762px;}
.ws1b6{word-spacing:-3.047962px;}
.ws14b{word-spacing:-3.043162px;}
.ws1d5{word-spacing:-3.038362px;}
.ws155{word-spacing:-3.023962px;}
.ws1c9{word-spacing:-3.019162px;}
.ws192{word-spacing:-3.009562px;}
.ws194{word-spacing:-3.004762px;}
.ws1e5{word-spacing:-2.999962px;}
.ws17{word-spacing:-2.995163px;}
.ws1b9{word-spacing:-2.985563px;}
.ws1ed{word-spacing:-2.980763px;}
.ws12a{word-spacing:-2.975963px;}
.ws3{word-spacing:-2.970000px;}
.ws153{word-spacing:-2.966363px;}
.ws197{word-spacing:-2.961563px;}
.ws12d{word-spacing:-2.956763px;}
.wsb{word-spacing:-2.951963px;}
.ws126{word-spacing:-2.947163px;}
.ws1ce{word-spacing:-2.942363px;}
.ws122{word-spacing:-2.937563px;}
.ws14a{word-spacing:-2.932763px;}
.ws14f{word-spacing:-2.927963px;}
.ws1af{word-spacing:-2.923163px;}
.ws2d{word-spacing:-2.918364px;}
.ws195{word-spacing:-2.913564px;}
.ws198{word-spacing:-2.908764px;}
.ws1bb{word-spacing:-2.903964px;}
.ws154{word-spacing:-2.899164px;}
.ws15a{word-spacing:-2.894364px;}
.ws14d{word-spacing:-2.889564px;}
.ws1cc{word-spacing:-2.884764px;}
.ws1c8{word-spacing:-2.879964px;}
.ws191{word-spacing:-2.875164px;}
.ws1ac{word-spacing:-2.870364px;}
.ws123{word-spacing:-2.865564px;}
.ws1ea{word-spacing:-2.860764px;}
.ws14c{word-spacing:-2.855964px;}
.ws124{word-spacing:-2.851164px;}
.ws11d{word-spacing:-2.846364px;}
.ws10{word-spacing:-2.841564px;}
.ws1ae{word-spacing:-2.831965px;}
.ws1bf{word-spacing:-2.827165px;}
.ws2{word-spacing:-2.818800px;}
.ws11f{word-spacing:-2.817565px;}
.ws15d{word-spacing:-2.812765px;}
.ws1eb{word-spacing:-2.807965px;}
.ws1{word-spacing:-2.797200px;}
.ws12b{word-spacing:-2.793565px;}
.ws152{word-spacing:-2.788765px;}
.ws129{word-spacing:-2.783965px;}
.ws1a9{word-spacing:-2.779165px;}
.ws19b{word-spacing:-2.769565px;}
.ws159{word-spacing:-2.764765px;}
.ws1c3{word-spacing:-2.759966px;}
.ws1a4{word-spacing:-2.750366px;}
.ws14{word-spacing:-2.745566px;}
.ws1ec{word-spacing:-2.726366px;}
.ws121{word-spacing:-2.716766px;}
.ws15{word-spacing:-2.697566px;}
.ws15c{word-spacing:-2.683166px;}
.ws1c1{word-spacing:-2.663967px;}
.ws1c4{word-spacing:-2.654367px;}
.ws0{word-spacing:-2.649567px;}
.ws125{word-spacing:-2.635167px;}
.ws128{word-spacing:-2.567968px;}
.ws127{word-spacing:-2.563168px;}
.ws1d6{word-spacing:-2.553568px;}
.ws147{word-spacing:-2.486369px;}
.ws1d{word-spacing:-2.485200px;}
.ws21{word-spacing:-2.462400px;}
.ws25{word-spacing:-2.451000px;}
.ws120{word-spacing:-2.447969px;}
.ws22{word-spacing:-2.445300px;}
.ws1b{word-spacing:-2.439600px;}
.ws149{word-spacing:-2.414370px;}
.ws1f{word-spacing:-2.405400px;}
.ws23{word-spacing:-2.399700px;}
.ws11e{word-spacing:-2.356771px;}
.ws24{word-spacing:-2.337000px;}
.ws2a{word-spacing:-2.319900px;}
.ws27{word-spacing:-2.297100px;}
.ws20{word-spacing:-2.194500px;}
.ws1a{word-spacing:-2.160300px;}
.ws28{word-spacing:-2.103300px;}
.ws1c{word-spacing:-2.052000px;}
.ws26{word-spacing:-1.989300px;}
.ws29{word-spacing:-1.829700px;}
.ws1e{word-spacing:-1.630200px;}
.wsb7{word-spacing:-1.110000px;}
.ws46{word-spacing:-1.070387px;}
.ws3f{word-spacing:-1.060787px;}
.ws144{word-spacing:-0.966000px;}
.wsb6{word-spacing:-0.960000px;}
.ws86{word-spacing:-0.926388px;}
.ws42{word-spacing:-0.921588px;}
.ws3d{word-spacing:-0.911989px;}
.wsa2{word-spacing:-0.906000px;}
.wsa3{word-spacing:-0.876000px;}
.ws65{word-spacing:-0.870000px;}
.ws39{word-spacing:-0.863989px;}
.ws33{word-spacing:-0.854389px;}
.wsc1{word-spacing:-0.852000px;}
.ws88{word-spacing:-0.839989px;}
.ws37{word-spacing:-0.815990px;}
.ws44{word-spacing:-0.811190px;}
.ws7e{word-spacing:-0.806390px;}
.ws82{word-spacing:-0.801590px;}
.ws115{word-spacing:-0.792000px;}
.ws83{word-spacing:-0.787190px;}
.ws3b{word-spacing:-0.767990px;}
.ws134{word-spacing:-0.750000px;}
.ws49{word-spacing:-0.748791px;}
.ws91{word-spacing:-0.743991px;}
.ws7d{word-spacing:-0.739191px;}
.ws171{word-spacing:-0.738000px;}
.ws80{word-spacing:-0.734391px;}
.ws5b{word-spacing:-0.732000px;}
.ws32{word-spacing:-0.729591px;}
.ws9d{word-spacing:-0.714000px;}
.ws4b{word-spacing:-0.695991px;}
.ws4a{word-spacing:-0.691191px;}
.ws3e{word-spacing:-0.686391px;}
.ws30{word-spacing:-0.681591px;}
.ws40{word-spacing:-0.676792px;}
.ws43{word-spacing:-0.671992px;}
.ws36{word-spacing:-0.652792px;}
.ws90{word-spacing:-0.647992px;}
.ws3c{word-spacing:-0.638392px;}
.ws5a{word-spacing:-0.636000px;}
.ws4d{word-spacing:-0.633592px;}
.ws7b{word-spacing:-0.628792px;}
.ws9c{word-spacing:-0.624000px;}
.ws2f{word-spacing:-0.623992px;}
.ws132{word-spacing:-0.618000px;}
.ws85{word-spacing:-0.614392px;}
.ws31{word-spacing:-0.604792px;}
.ws47{word-spacing:-0.595193px;}
.ws35{word-spacing:-0.575993px;}
.ws10b{word-spacing:-0.570000px;}
.ws48{word-spacing:-0.566393px;}
.ws138{word-spacing:-0.546000px;}
.ws79{word-spacing:-0.537593px;}
.ws131{word-spacing:-0.534000px;}
.ws8e{word-spacing:-0.532793px;}
.wsbe{word-spacing:-0.528000px;}
.ws38{word-spacing:-0.527993px;}
.ws4c{word-spacing:-0.518394px;}
.ws63{word-spacing:-0.516000px;}
.ws6a{word-spacing:-0.510000px;}
.ws92{word-spacing:-0.508794px;}
.ws113{word-spacing:-0.504000px;}
.ws89{word-spacing:-0.503994px;}
.ws81{word-spacing:-0.499194px;}
.wsb2{word-spacing:-0.498000px;}
.ws7a{word-spacing:-0.494394px;}
.ws78{word-spacing:-0.489594px;}
.ws7c{word-spacing:-0.475194px;}
.ws167{word-spacing:-0.474000px;}
.ws41{word-spacing:-0.470394px;}
.ws133{word-spacing:-0.468000px;}
.wsde{word-spacing:-0.462000px;}
.ws87{word-spacing:-0.460794px;}
.ws8d{word-spacing:-0.455994px;}
.wsb3{word-spacing:-0.444000px;}
.ws8f{word-spacing:-0.441594px;}
.ws10f{word-spacing:-0.438000px;}
.ws6e{word-spacing:-0.432000px;}
.ws7f{word-spacing:-0.431995px;}
.ws8a{word-spacing:-0.427195px;}
.ws137{word-spacing:-0.426000px;}
.ws13b{word-spacing:-0.414000px;}
.wsbc{word-spacing:-0.408000px;}
.ws178{word-spacing:-0.402000px;}
.ws5f{word-spacing:-0.396000px;}
.ws8c{word-spacing:-0.393595px;}
.ws6f{word-spacing:-0.390000px;}
.ws68{word-spacing:-0.384000px;}
.ws3a{word-spacing:-0.379195px;}
.ws51{word-spacing:-0.378000px;}
.ws8b{word-spacing:-0.374395px;}
.ws5e{word-spacing:-0.366000px;}
.ws58{word-spacing:-0.360000px;}
.wsa7{word-spacing:-0.354000px;}
.ws74{word-spacing:-0.348000px;}
.ws50{word-spacing:-0.342000px;}
.ws110{word-spacing:-0.336000px;}
.ws57{word-spacing:-0.330000px;}
.wsc9{word-spacing:-0.324000px;}
.ws11c{word-spacing:-0.318000px;}
.ws142{word-spacing:-0.312000px;}
.ws84{word-spacing:-0.307196px;}
.ws52{word-spacing:-0.306000px;}
.ws9f{word-spacing:-0.300000px;}
.ws66{word-spacing:-0.294000px;}
.ws5d{word-spacing:-0.288000px;}
.ws56{word-spacing:-0.282000px;}
.ws4f{word-spacing:-0.276000px;}
.ws143{word-spacing:-0.270000px;}
.ws53{word-spacing:-0.264000px;}
.ws55{word-spacing:-0.258000px;}
.ws62{word-spacing:-0.252000px;}
.ws99{word-spacing:-0.246000px;}
.wsa6{word-spacing:-0.240000px;}
.ws6b{word-spacing:-0.234000px;}
.ws54{word-spacing:-0.228000px;}
.ws17e{word-spacing:-0.222000px;}
.wsa5{word-spacing:-0.216000px;}
.wsc4{word-spacing:-0.210000px;}
.wsdc{word-spacing:-0.204000px;}
.ws45{word-spacing:-0.201597px;}
.ws93{word-spacing:-0.198000px;}
.ws69{word-spacing:-0.192000px;}
.ws6c{word-spacing:-0.186000px;}
.ws76{word-spacing:-0.180000px;}
.ws60{word-spacing:-0.174000px;}
.ws9e{word-spacing:-0.168000px;}
.ws94{word-spacing:-0.162000px;}
.ws170{word-spacing:-0.156000px;}
.ws172{word-spacing:-0.150000px;}
.ws136{word-spacing:-0.144000px;}
.ws157{word-spacing:-0.132000px;}
.ws72{word-spacing:-0.126000px;}
.wsbf{word-spacing:-0.120000px;}
.ws5c{word-spacing:-0.114000px;}
.wsad{word-spacing:-0.108000px;}
.ws16e{word-spacing:-0.102000px;}
.wsb8{word-spacing:-0.096000px;}
.wsa1{word-spacing:-0.090000px;}
.ws75{word-spacing:-0.084000px;}
.ws117{word-spacing:-0.078000px;}
.wsb9{word-spacing:-0.072000px;}
.wsdf{word-spacing:-0.066000px;}
.ws71{word-spacing:-0.060000px;}
.ws61{word-spacing:-0.054000px;}
.ws96{word-spacing:-0.048000px;}
.wsbb{word-spacing:-0.042000px;}
.wsaf{word-spacing:-0.036000px;}
.wsba{word-spacing:-0.030000px;}
.ws73{word-spacing:-0.024000px;}
.ws70{word-spacing:-0.018000px;}
.wsd0{word-spacing:-0.012000px;}
.wsa4{word-spacing:-0.006000px;}
.ws4e{word-spacing:0.000000px;}
.ws64{word-spacing:0.006000px;}
.wsbd{word-spacing:0.012000px;}
.ws109{word-spacing:0.018000px;}
.wsb5{word-spacing:0.024000px;}
.ws12f{word-spacing:0.030000px;}
.wsd4{word-spacing:0.036000px;}
.ws116{word-spacing:0.042000px;}
.ws98{word-spacing:0.048000px;}
.wsdb{word-spacing:0.054000px;}
.ws97{word-spacing:0.060000px;}
.ws95{word-spacing:0.066000px;}
.ws175{word-spacing:0.072000px;}
.ws59{word-spacing:0.078000px;}
.ws16f{word-spacing:0.084000px;}
.ws16d{word-spacing:0.090000px;}
.ws162{word-spacing:0.096000px;}
.ws67{word-spacing:0.102000px;}
.wsc2{word-spacing:0.108000px;}
.wsa0{word-spacing:0.114000px;}
.wsd2{word-spacing:0.120000px;}
.ws13d{word-spacing:0.126000px;}
.wsb1{word-spacing:0.132000px;}
.ws9a{word-spacing:0.138000px;}
.ws6d{word-spacing:0.144000px;}
.wsd8{word-spacing:0.150000px;}
.ws9b{word-spacing:0.156000px;}
.wsc0{word-spacing:0.162000px;}
.ws161{word-spacing:0.168000px;}
.wsc3{word-spacing:0.174000px;}
.ws11a{word-spacing:0.180000px;}
.wsaa{word-spacing:0.186000px;}
.wsa9{word-spacing:0.192000px;}
.wsae{word-spacing:0.198000px;}
.ws173{word-spacing:0.204000px;}
.wsd5{word-spacing:0.210000px;}
.ws10c{word-spacing:0.216000px;}
.wsd1{word-spacing:0.228000px;}
.ws17b{word-spacing:0.234000px;}
.wscd{word-spacing:0.246000px;}
.ws17f{word-spacing:0.252000px;}
.wsd3{word-spacing:0.270000px;}
.wsac{word-spacing:0.276000px;}
.ws176{word-spacing:0.282000px;}
.wsb4{word-spacing:0.288000px;}
.ws174{word-spacing:0.294000px;}
.wscc{word-spacing:0.306000px;}
.wscf{word-spacing:0.318000px;}
.ws17a{word-spacing:0.330000px;}
.wsca{word-spacing:0.336000px;}
.ws165{word-spacing:0.342000px;}
.wsc7{word-spacing:0.348000px;}
.wsfd{word-spacing:0.366000px;}
.ws105{word-spacing:0.378000px;}
.ws177{word-spacing:0.384000px;}
.wsa8{word-spacing:0.390000px;}
.ws106{word-spacing:0.402000px;}
.wsfe{word-spacing:0.414000px;}
.wse2{word-spacing:0.420000px;}
.ws166{word-spacing:0.426000px;}
.ws181{word-spacing:0.432000px;}
.wsb0{word-spacing:0.438000px;}
.wsd7{word-spacing:0.444000px;}
.wsd6{word-spacing:0.450000px;}
.wse7{word-spacing:0.456000px;}
.ws108{word-spacing:0.462000px;}
.wsc8{word-spacing:0.468000px;}
.wsf1{word-spacing:0.474000px;}
.wsfa{word-spacing:0.480000px;}
.wsee{word-spacing:0.486000px;}
.wsec{word-spacing:0.492000px;}
.wsf6{word-spacing:0.498000px;}
.wsf3{word-spacing:0.504000px;}
.wsc6{word-spacing:0.510000px;}
.ws107{word-spacing:0.516000px;}
.wsef{word-spacing:0.534000px;}
.ws179{word-spacing:0.540000px;}
.wsf8{word-spacing:0.546000px;}
.wsfb{word-spacing:0.570000px;}
.wsce{word-spacing:0.582000px;}
.wse9{word-spacing:0.588000px;}
.ws169{word-spacing:0.594000px;}
.wsf5{word-spacing:0.600000px;}
.wsf9{word-spacing:0.606000px;}
.ws101{word-spacing:0.618000px;}
.wsab{word-spacing:0.630000px;}
.ws104{word-spacing:0.636000px;}
.ws168{word-spacing:0.648000px;}
.wsf2{word-spacing:0.660000px;}
.ws185{word-spacing:0.666000px;}
.ws17c{word-spacing:0.684000px;}
.ws16b{word-spacing:0.696000px;}
.ws16a{word-spacing:0.702000px;}
.wse3{word-spacing:0.708000px;}
.wse6{word-spacing:0.720000px;}
.ws164{word-spacing:0.738000px;}
.ws16c{word-spacing:0.750000px;}
.wse0{word-spacing:0.756000px;}
.wse5{word-spacing:0.762000px;}
.ws102{word-spacing:0.786000px;}
.wsf0{word-spacing:0.798000px;}
.wseb{word-spacing:0.816000px;}
.wse4{word-spacing:0.822000px;}
.wsed{word-spacing:0.828000px;}
.wse8{word-spacing:0.834000px;}
.wsea{word-spacing:0.846000px;}
.ws100{word-spacing:0.864000px;}
.ws163{word-spacing:0.888000px;}
.ws186{word-spacing:0.900000px;}
.wscb{word-spacing:0.912000px;}
.ws118{word-spacing:0.936000px;}
.wsfc{word-spacing:0.978000px;}
.wsff{word-spacing:0.984000px;}
.ws188{word-spacing:1.014000px;}
.ws189{word-spacing:1.020000px;}
.ws187{word-spacing:1.026000px;}
.ws114{word-spacing:1.044000px;}
.ws184{word-spacing:1.158000px;}
.ws1cd{word-spacing:7.401507px;}
.ws16{word-spacing:7.727903px;}
.ws2c{word-spacing:34.569168px;}
.ws77{word-spacing:34.588368px;}
.ws1df{word-spacing:46.780215px;}
.ws1e0{word-spacing:46.785015px;}
.ws1a8{word-spacing:46.847414px;}
.ws19d{word-spacing:46.852214px;}
.ws18a{word-spacing:46.909814px;}
.ws18f{word-spacing:46.914614px;}
.ws148{word-spacing:233.157085px;}
.ws150{word-spacing:591.136611px;}
.ws151{word-spacing:649.105486px;}
._38{margin-left:-25.612800px;}
._c{margin-left:-24.496800px;}
._39{margin-left:-20.740541px;}
._7{margin-left:-17.769378px;}
._8{margin-left:-16.689391px;}
._15{margin-left:-2.287228px;}
._0{margin-left:-1.108786px;}
._a{width:1.359600px;}
._3{width:9.431882px;}
._2{width:10.886264px;}
._5{width:11.930100px;}
._4{width:14.044800px;}
._9{width:15.186000px;}
._b{width:16.739931px;}
._3a{width:20.097349px;}
._e{width:21.110136px;}
._1{width:25.444800px;}
._d{width:48.642000px;}
._22{width:204.319046px;}
._2d{width:219.232460px;}
._24{width:220.994038px;}
._2c{width:230.512319px;}
._33{width:231.539506px;}
._2e{width:243.284959px;}
._23{width:246.112124px;}
._1f{width:248.012900px;}
._1e{width:292.594743px;}
._20{width:334.224622px;}
._12{width:362.232272px;}
._14{width:374.894514px;}
._36{width:403.996550px;}
._13{width:421.079536px;}
._10{width:426.714666px;}
._30{width:430.405820px;}
._25{width:443.452057px;}
._17{width:447.292009px;}
._31{width:457.381483px;}
._1d{width:472.232497px;}
._29{width:483.061162px;}
._2f{width:501.656129px;}
._27{width:512.331196px;}
._32{width:547.236359px;}
._2a{width:548.762740px;}
._37{width:580.682341px;}
._19{width:592.110999px;}
._21{width:604.624442px;}
._34{width:613.677129px;}
._f{width:628.868939px;}
._28{width:631.153710px;}
._2b{width:636.064049px;}
._16{width:658.254172px;}
._26{width:662.593317px;}
._35{width:730.162073px;}
._11{width:735.662804px;}
._1a{width:771.859152px;}
._18{width:792.882889px;}
._1b{width:806.370720px;}
._1c{width:1528.627292px;}
._6{width:1554.018975px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.995400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:71.999400px;}
.fs4{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:54.000000px;}
.y169{bottom:114.718987px;}
.y221{bottom:119.650819px;}
.y4e{bottom:124.451558px;}
.y117{bottom:124.498200px;}
.y19e{bottom:124.498590px;}
.y11c{bottom:124.498650px;}
.y273{bottom:124.499100px;}
.y1cf{bottom:124.499250px;}
.y25b{bottom:124.500000px;}
.y2c4{bottom:124.500253px;}
.y288{bottom:124.500600px;}
.yf1{bottom:124.501650px;}
.yd8{bottom:125.100150px;}
.y371{bottom:131.561194px;}
.y7e{bottom:136.663950px;}
.y2c3{bottom:138.787275px;}
.y4d{bottom:140.951352px;}
.y1db{bottom:141.507750px;}
.y168{bottom:141.675450px;}
.y220{bottom:142.866929px;}
.y249{bottom:143.971650px;}
.y272{bottom:143.972100px;}
.y116{bottom:143.972700px;}
.y11b{bottom:143.973150px;}
.y1ce{bottom:143.973750px;}
.y25a{bottom:143.974500px;}
.yf0{bottom:143.974650px;}
.y287{bottom:143.975100px;}
.yd7{bottom:144.573150px;}
.y370{bottom:145.847016px;}
.y167{bottom:147.033000px;}
.y19d{bottom:147.034309px;}
.y2a{bottom:147.633000px;}
.y291{bottom:152.986200px;}
.y350{bottom:153.331322px;}
.y2fa{bottom:154.861303px;}
.y21e{bottom:155.111700px;}
.y7d{bottom:156.138450px;}
.y21f{bottom:157.152750px;}
.y21d{bottom:157.153256px;}
.y4c{bottom:157.451146px;}
.y2c2{bottom:158.260631px;}
.y166{bottom:159.703800px;}
.y36f{bottom:160.048838px;}
.y1da{bottom:160.980750px;}
.y271{bottom:163.530600px;}
.y115{bottom:163.531200px;}
.y11a{bottom:163.531650px;}
.y1cd{bottom:163.532250px;}
.y259{bottom:163.533000px;}
.yef{bottom:163.533150px;}
.y286{bottom:163.533600px;}
.yd6{bottom:164.131650px;}
.y165{bottom:165.061350px;}
.y19c{bottom:165.742075px;}
.y34f{bottom:167.617143px;}
.y29{bottom:168.637500px;}
.y2f9{bottom:169.063125px;}
.y248{bottom:169.484125px;}
.y319{bottom:170.593106px;}
.y21c{bottom:171.355079px;}
.y2c1{bottom:172.462454px;}
.y4b{bottom:173.950939px;}
.y7c{bottom:175.612950px;}
.y164{bottom:177.732150px;}
.y36e{bottom:179.607394px;}
.y1d9{bottom:180.455250px;}
.y290{bottom:181.474200px;}
.y119{bottom:183.004650px;}
.y114{bottom:183.005700px;}
.y142{bottom:183.006150px;}
.y1cc{bottom:183.006750px;}
.y258{bottom:183.007500px;}
.yee{bottom:183.007650px;}
.y285{bottom:183.008100px;}
.y2f8{bottom:183.348947px;}
.yd5{bottom:183.606150px;}
.y19b{bottom:184.536240px;}
.y318{bottom:184.794929px;}
.y21b{bottom:185.640900px;}
.y34e{bottom:187.091700px;}
.y270{bottom:188.958175px;}
.y28{bottom:189.642000px;}
.y4a{bottom:190.450733px;}
.y247{bottom:190.488150px;}
.y2c0{bottom:192.021009px;}
.y36d{bottom:193.809216px;}
.y7b{bottom:195.085950px;}
.y163{bottom:195.676125px;}
.y358{bottom:199.081950px;}
.y1d8{bottom:200.013750px;}
.y34d{bottom:201.292322px;}
.y113{bottom:202.478700px;}
.y111{bottom:202.479150px;}
.y1cb{bottom:202.479750px;}
.y257{bottom:202.480500px;}
.y284{bottom:202.481100px;}
.yed{bottom:202.482150px;}
.y2f7{bottom:202.823503px;}
.yd4{bottom:203.080650px;}
.y19a{bottom:203.245206px;}
.y317{bottom:204.354684px;}
.y2bf{bottom:206.222832px;}
.y49{bottom:206.950527px;}
.y118{bottom:208.516500px;}
.y112{bottom:209.196750px;}
.y26f{bottom:209.962200px;}
.y27{bottom:210.646500px;}
.y36c{bottom:213.367771px;}
.y162{bottom:213.704700px;}
.y7a{bottom:214.644450px;}
.y2f6{bottom:217.110525px;}
.y316{bottom:218.555307px;}
.y141{bottom:219.486600px;}
.y1d7{bottom:219.488250px;}
.y2be{bottom:220.509853px;}
.y34c{bottom:220.852078px;}
.y110{bottom:222.037650px;}
.y1ca{bottom:222.038250px;}
.y256{bottom:222.039000px;}
.y283{bottom:222.039600px;}
.yec{bottom:222.040650px;}
.y10e{bottom:222.042000px;}
.y140{bottom:222.042150px;}
.yd3{bottom:222.639150px;}
.y48{bottom:223.450321px;}
.y199{bottom:225.525328px;}
.y36b{bottom:227.569594px;}
.y10f{bottom:228.670800px;}
.y26{bottom:231.651000px;}
.y161{bottom:231.733274px;}
.y246{bottom:232.077750px;}
.y315{bottom:232.842328px;}
.y79{bottom:234.118950px;}
.y34b{bottom:235.052700px;}
.y2f5{bottom:236.583881px;}
.y28f{bottom:238.535400px;}
.y1d6{bottom:238.962750px;}
.y198{bottom:239.725950px;}
.y47{bottom:239.950114px;}
.y2bd{bottom:239.983210px;}
.y1c9{bottom:241.512750px;}
.y255{bottom:241.513500px;}
.y282{bottom:241.514100px;}
.y10d{bottom:241.515000px;}
.yeb{bottom:241.515150px;}
.y13f{bottom:241.516650px;}
.y36a{bottom:241.856615px;}
.yd2{bottom:242.112150px;}
.y160{bottom:249.675450px;}
.y2f4{bottom:250.870903px;}
.y26e{bottom:251.549850px;}
.y245{bottom:251.550750px;}
.y314{bottom:252.315685px;}
.y25{bottom:252.655500px;}
.y78{bottom:253.593450px;}
.y2bc{bottom:254.270231px;}
.y34a{bottom:254.612456px;}
.y15f{bottom:255.033000px;}
.y369{bottom:256.058438px;}
.y46{bottom:256.449908px;}
.y1d5{bottom:258.521250px;}
.y1c8{bottom:260.987250px;}
.y254{bottom:260.988000px;}
.yea{bottom:260.988150px;}
.y281{bottom:260.988600px;}
.y10c{bottom:260.989500px;}
.y13e{bottom:260.991150px;}
.yd1{bottom:261.586650px;}
.y2f3{bottom:265.071525px;}
.y313{bottom:266.602706px;}
.y15e{bottom:267.704461px;}
.y2bb{bottom:268.472054px;}
.y348{bottom:268.814278px;}
.y349{bottom:269.239073px;}
.y26d{bottom:271.022850px;}
.y244{bottom:271.025250px;}
.y196{bottom:272.211000px;}
.y45{bottom:272.949702px;}
.y77{bottom:273.151950px;}
.y24{bottom:273.660000px;}
.y197{bottom:274.677150px;}
.y195{bottom:274.677750px;}
.y368{bottom:275.616993px;}
.y1d4{bottom:277.994250px;}
.y1c7{bottom:280.460250px;}
.y253{bottom:280.461000px;}
.y280{bottom:280.461600px;}
.ye9{bottom:280.462650px;}
.y10b{bottom:280.464000px;}
.y13d{bottom:280.464150px;}
.y312{bottom:280.804529px;}
.yd0{bottom:281.145150px;}
.y28e{bottom:282.076500px;}
.y2f2{bottom:284.546082px;}
.y15d{bottom:285.733036px;}
.y2ba{bottom:288.030609px;}
.y347{bottom:288.372834px;}
.y44{bottom:289.449496px;}
.y367{bottom:289.818816px;}
.y26c{bottom:290.581350px;}
.y243{bottom:290.583750px;}
.y76{bottom:292.626450px;}
.y194{bottom:294.152250px;}
.y23{bottom:294.664500px;}
.y1d3{bottom:297.468750px;}
.y2f1{bottom:298.831903px;}
.y1c6{bottom:300.018750px;}
.y27f{bottom:300.020100px;}
.y252{bottom:300.021000px;}
.ye8{bottom:300.021150px;}
.y10a{bottom:300.022500px;}
.y13c{bottom:300.022650px;}
.y311{bottom:300.363084px;}
.ycf{bottom:300.619650px;}
.y28d{bottom:301.549500px;}
.y2b9{bottom:302.232432px;}
.y346{bottom:302.574656px;}
.y366{bottom:304.104637px;}
.y43{bottom:305.949289px;}
.y26b{bottom:310.055850px;}
.y242{bottom:310.058250px;}
.y75{bottom:312.099450px;}
.y193{bottom:313.710750px;}
.y15c{bottom:313.795885px;}
.y310{bottom:314.564907px;}
.y22{bottom:315.669000px;}
.y345{bottom:316.860478px;}
.y1d2{bottom:316.943250px;}
.y2f0{bottom:318.306460px;}
.y251{bottom:319.494000px;}
.y27e{bottom:319.494600px;}
.ye7{bottom:319.495650px;}
.y109{bottom:319.497000px;}
.y13b{bottom:319.497150px;}
.yce{bottom:320.094150px;}
.y2b8{bottom:321.790987px;}
.y1c5{bottom:325.530600px;}
.y28c{bottom:327.061350px;}
.y30f{bottom:328.850728px;}
.y26a{bottom:329.530350px;}
.y241{bottom:329.531250px;}
.y42{bottom:331.460970px;}
.y74{bottom:331.657950px;}
.y15b{bottom:332.588850px;}
.y159{bottom:332.589319px;}
.y2ef{bottom:332.593481px;}
.y192{bottom:333.185250px;}
.y2b7{bottom:335.992810px;}
.y344{bottom:336.335034px;}
.y1d1{bottom:336.501750px;}
.y21{bottom:336.673500px;}
.y365{bottom:337.865015px;}
.y15a{bottom:337.946400px;}
.y250{bottom:338.968500px;}
.ye6{bottom:338.968650px;}
.y27d{bottom:338.969100px;}
.y108{bottom:338.970000px;}
.y13a{bottom:338.971650px;}
.ycd{bottom:339.567150px;}
.y30e{bottom:343.052550px;}
.y2ee{bottom:346.794104px;}
.y41{bottom:347.960764px;}
.y269{bottom:349.088850px;}
.y240{bottom:349.089750px;}
.y190{bottom:350.192100px;}
.y2b6{bottom:350.278631px;}
.y343{bottom:350.620856px;}
.y73{bottom:351.132450px;}
.y158{bottom:351.298285px;}
.y364{bottom:352.066838px;}
.y191{bottom:352.658250px;}
.y18f{bottom:352.659450px;}
.y1d0{bottom:355.974750px;}
.y20{bottom:357.678000px;}
.y24f{bottom:358.527000px;}
.ye5{bottom:358.527150px;}
.y27c{bottom:358.527600px;}
.y107{bottom:358.528500px;}
.y139{bottom:358.530150px;}
.ycc{bottom:359.125650px;}
.y30d{bottom:362.611106px;}
.y40{bottom:364.460558px;}
.y341{bottom:364.822678px;}
.y342{bottom:365.247473px;}
.y2ed{bottom:366.353859px;}
.y268{bottom:368.561850px;}
.y1c4{bottom:368.562450px;}
.y23f{bottom:368.564250px;}
.y2b5{bottom:369.753188px;}
.y157{bottom:370.091250px;}
.y155{bottom:370.091719px;}
.y72{bottom:370.606950px;}
.y363{bottom:371.540194px;}
.y18e{bottom:372.133950px;}
.y156{bottom:375.448800px;}
.y30c{bottom:376.812928px;}
.y24e{bottom:378.001500px;}
.ye4{bottom:378.001650px;}
.y27b{bottom:378.002100px;}
.y106{bottom:378.003000px;}
.y138{bottom:378.003150px;}
.ycb{bottom:378.600150px;}
.y1f{bottom:378.682500px;}
.y28b{bottom:379.616700px;}
.y2ec{bottom:380.554482px;}
.y3f{bottom:380.960352px;}
.y2b4{bottom:384.039009px;}
.y340{bottom:384.297235px;}
.y362{bottom:385.827216px;}
.y267{bottom:388.036350px;}
.y1c3{bottom:388.036950px;}
.y23e{bottom:388.038750px;}
.y154{bottom:388.800685px;}
.y71{bottom:390.165450px;}
.y30b{bottom:391.099950px;}
.y18d{bottom:391.692450px;}
.y3e{bottom:397.460145px;}
.y24d{bottom:397.474500px;}
.y27a{bottom:397.475100px;}
.ye3{bottom:397.476150px;}
.y105{bottom:397.477500px;}
.y137{bottom:397.477650px;}
.yca{bottom:398.074650px;}
.y2b3{bottom:398.240832px;}
.y33f{bottom:398.583056px;}
.y28a{bottom:399.089700px;}
.y1e{bottom:399.687000px;}
.y2eb{bottom:400.114237px;}
.y361{bottom:400.368634px;}
.y266{bottom:407.510850px;}
.y1c2{bottom:407.511450px;}
.y23d{bottom:407.511750px;}
.y153{bottom:407.593650px;}
.y151{bottom:407.594119px;}
.y70{bottom:409.639950px;}
.y30a{bottom:410.573306px;}
.y18c{bottom:411.166950px;}
.y203{bottom:411.251287px;}
.y33e{bottom:412.870078px;}
.y152{bottom:412.951050px;}
.y3d{bottom:413.959939px;}
.y2ea{bottom:414.314860px;}
.y24c{bottom:417.033000px;}
.y279{bottom:417.033600px;}
.ye2{bottom:417.034650px;}
.y104{bottom:417.036000px;}
.y136{bottom:417.036150px;}
.yc9{bottom:417.633150px;}
.y2b2{bottom:417.715388px;}
.ya7{bottom:418.057613px;}
.y360{bottom:419.587594px;}
.y1d{bottom:420.691500px;}
.y289{bottom:424.601550px;}
.y309{bottom:424.860328px;}
.y150{bottom:426.303085px;}
.y265{bottom:427.069350px;}
.y1c1{bottom:427.069950px;}
.y23c{bottom:427.071750px;}
.y6f{bottom:429.112950px;}
.y18b{bottom:430.641450px;}
.y2b1{bottom:432.001210px;}
.y33d{bottom:432.343434px;}
.y2e9{bottom:433.874615px;}
.ya6{bottom:434.555007px;}
.y278{bottom:436.508100px;}
.ye1{bottom:436.509150px;}
.y103{bottom:436.510500px;}
.y135{bottom:436.510650px;}
.yc8{bottom:437.107650px;}
.y202{bottom:438.207750px;}
.y308{bottom:439.062150px;}
.y3c{bottom:439.471620px;}
.y1c{bottom:441.696000px;}
.y24b{bottom:442.460425px;}
.y201{bottom:443.565300px;}
.y357{bottom:444.333684px;}
.y14f{bottom:445.096050px;}
.y14d{bottom:445.096369px;}
.y1c0{bottom:446.542950px;}
.y264{bottom:446.543850px;}
.y23b{bottom:446.544750px;}
.y2e8{bottom:448.076438px;}
.y6e{bottom:448.587450px;}
.y18a{bottom:450.199950px;}
.y14e{bottom:450.453450px;}
.ya5{bottom:451.052400px;}
.y2b0{bottom:451.475766px;}
.y33c{bottom:451.817991px;}
.y306{bottom:453.347972px;}
.y307{bottom:453.688767px;}
.ye0{bottom:455.982150px;}
.y277{bottom:455.982600px;}
.y102{bottom:455.983500px;}
.y134{bottom:455.985150px;}
.y200{bottom:456.236100px;}
.yc7{bottom:456.580650px;}
.y356{bottom:458.620706px;}
.y1ff{bottom:461.508600px;}
.y2e7{bottom:462.362259px;}
.y1b{bottom:462.700500px;}
.y24a{bottom:463.464450px;}
.y14c{bottom:463.805335px;}
.y3b{bottom:464.983301px;}
.y2af{bottom:465.761588px;}
.y263{bottom:466.016850px;}
.y1bf{bottom:466.017450px;}
.y23a{bottom:466.019250px;}
.y33b{bottom:466.103812px;}
.ya4{bottom:467.549794px;}
.y6d{bottom:468.145950px;}
.y189{bottom:469.672950px;}
.y305{bottom:472.822528px;}
.y1fe{bottom:474.179400px;}
.ydf{bottom:475.540650px;}
.y276{bottom:475.541100px;}
.y101{bottom:475.542000px;}
.y133{bottom:475.543650px;}
.yc6{bottom:476.139150px;}
.y1fd{bottom:479.536950px;}
.y2ae{bottom:479.963410px;}
.y2e6{bottom:481.836816px;}
.y14b{bottom:482.598300px;}
.y149{bottom:482.599412px;}
.y1a{bottom:483.619500px;}
.ya3{bottom:484.047188px;}
.y262{bottom:485.575350px;}
.y1be{bottom:485.575950px;}
.y239{bottom:485.577750px;}
.y33a{bottom:485.578369px;}
.y304{bottom:487.108350px;}
.y6c{bottom:487.620450px;}
.y14a{bottom:487.870800px;}
.y188{bottom:489.147450px;}
.y3a{bottom:490.494982px;}
.y1fc{bottom:492.207750px;}
.y275{bottom:495.014100px;}
.yde{bottom:495.015150px;}
.y100{bottom:495.016500px;}
.y132{bottom:495.016650px;}
.yc5{bottom:495.613650px;}
.y2e5{bottom:496.122637px;}
.y1fb{bottom:497.565300px;}
.y2ad{bottom:499.521966px;}
.y339{bottom:499.864190px;}
.ya2{bottom:500.544582px;}
.y148{bottom:501.307179px;}
.y303{bottom:501.310172px;}
.y19{bottom:504.624000px;}
.y261{bottom:505.049850px;}
.y1bd{bottom:505.050450px;}
.y238{bottom:505.052250px;}
.y355{bottom:506.582906px;}
.y6b{bottom:507.093450px;}
.y187{bottom:508.705950px;}
.y2e4{bottom:510.324459px;}
.y2ac{bottom:513.723788px;}
.y337{bottom:514.066013px;}
.y338{bottom:514.321610px;}
.ydd{bottom:514.489650px;}
.yff{bottom:514.491000px;}
.y131{bottom:514.491150px;}
.yc4{bottom:515.088150px;}
.y35f{bottom:515.597194px;}
.y39{bottom:516.006664px;}
.ya1{bottom:517.041976px;}
.y1fa{bottom:520.359243px;}
.y274{bottom:520.525950px;}
.y302{bottom:520.868728px;}
.y20f{bottom:520.952850px;}
.y147{bottom:523.587300px;}
.y260{bottom:524.524350px;}
.y1bc{bottom:524.524950px;}
.y237{bottom:524.525250px;}
.y18{bottom:525.628500px;}
.y6a{bottom:526.651950px;}
.y186{bottom:528.180450px;}
.y2e3{bottom:529.797816px;}
.y38{bottom:532.506457px;}
.y2ab{bottom:533.283544px;}
.ya0{bottom:533.540569px;}
.y336{bottom:533.624568px;}
.ydc{bottom:533.962650px;}
.yfe{bottom:533.964000px;}
.y130{bottom:533.965650px;}
.yc3{bottom:534.646650px;}
.y301{bottom:535.070550px;}
.y1f9{bottom:539.067009px;}
.y20e{bottom:540.427350px;}
.y25f{bottom:544.082850px;}
.y1bb{bottom:544.083450px;}
.y35d{bottom:544.084837px;}
.y235{bottom:544.085250px;}
.y35e{bottom:544.340434px;}
.y236{bottom:544.850250px;}
.y69{bottom:546.126450px;}
.y17{bottom:546.633000px;}
.y2aa{bottom:547.484166px;}
.y185{bottom:547.653450px;}
.y335{bottom:547.826391px;}
.y2e2{bottom:549.357572px;}
.y300{bottom:549.697167px;}
.y9f{bottom:550.037963px;}
.ydb{bottom:553.521150px;}
.yfd{bottom:553.522500px;}
.y12f{bottom:553.524150px;}
.yc2{bottom:554.119650px;}
.y354{bottom:554.545107px;}
.y1f8{bottom:557.861174px;}
.y37{bottom:558.018138px;}
.y146{bottom:558.454050px;}
.y20d{bottom:559.985850px;}
.y25e{bottom:563.555850px;}
.y1ba{bottom:563.556450px;}
.y233{bottom:563.558250px;}
.y2e1{bottom:563.559394px;}
.y234{bottom:564.323250px;}
.y68{bottom:565.600950px;}
.y2a9{bottom:566.958723px;}
.y334{bottom:567.300947px;}
.y2ff{bottom:568.830928px;}
.yfc{bottom:572.997000px;}
.y12e{bottom:572.998650px;}
.y184{bottom:573.165925px;}
.yc1{bottom:573.594150px;}
.y36{bottom:574.517932px;}
.y9e{bottom:575.549644px;}
.y1f7{bottom:576.568940px;}
.y35c{bottom:577.845215px;}
.y145{bottom:578.012550px;}
.yda{bottom:579.033975px;}
.y20c{bottom:579.460350px;}
.y16{bottom:579.628200px;}
.y2a6{bottom:581.244544px;}
.y2a7{bottom:581.500141px;}
.y2a8{bottom:581.585340px;}
.y333{bottom:581.586769px;}
.y1b9{bottom:583.030950px;}
.y232{bottom:583.032750px;}
.y2e0{bottom:583.117950px;}
.y67{bottom:585.159450px;}
.y25d{bottom:589.068325px;}
.y35{bottom:591.017726px;}
.y9d{bottom:592.047038px;}
.yfb{bottom:592.471500px;}
.y12d{bottom:592.471650px;}
.yc0{bottom:593.068650px;}
.y183{bottom:594.169950px;}
.y1f6{bottom:595.363106px;}
.y332{bottom:595.873790px;}
.y2df{bottom:597.319772px;}
.y2fe{bottom:597.744567px;}
.y20b{bottom:598.933350px;}
.y2a5{bottom:600.719101px;}
.y1b8{bottom:602.589450px;}
.y231{bottom:602.591250px;}
.y144{bottom:603.525225px;}
.y66{bottom:604.633950px;}
.yd9{bottom:605.990550px;}
.y34{bottom:607.517520px;}
.y9c{bottom:608.544432px;}
.y25c{bottom:610.072350px;}
.y2de{bottom:611.605593px;}
.yfa{bottom:612.030000px;}
.y12c{bottom:612.030150px;}
.ybf{bottom:612.627150px;}
.y1f5{bottom:614.072072px;}
.y2a4{bottom:615.004922px;}
.y331{bottom:615.347147px;}
.y2fd{bottom:616.793129px;}
.y20a{bottom:618.491850px;}
.y1b7{bottom:622.063950px;}
.y230{bottom:622.065750px;}
.y33{bottom:624.017313px;}
.y65{bottom:624.106950px;}
.y9b{bottom:625.041826px;}
.y35b{bottom:625.807416px;}
.y2a3{bottom:629.291943px;}
.y143{bottom:630.481800px;}
.y2dd{bottom:631.080150px;}
.yf9{bottom:631.504500px;}
.y12b{bottom:631.504650px;}
.ybe{bottom:632.101650px;}
.y1f4{bottom:632.865037px;}
.y330{bottom:634.821703px;}
.y209{bottom:637.966350px;}
.y182{bottom:639.411600px;}
.y15{bottom:639.951750px;}
.y376{bottom:640.094437px;}
.y32{bottom:640.517107px;}
.y1b6{bottom:641.536950px;}
.y22f{bottom:641.538750px;}
.y9a{bottom:641.539219px;}
.y64{bottom:643.665450px;}
.y2dc{bottom:645.365971px;}
.y2a2{bottom:648.765300px;}
.y2a0{bottom:648.766772px;}
.y32f{bottom:649.107525px;}
.yf8{bottom:650.977500px;}
.y12a{bottom:650.979150px;}
.y1f3{bottom:651.574003px;}
.ybd{bottom:651.574650px;}
.y2a1{bottom:654.122700px;}
.y14{bottom:654.999562px;}
.y208{bottom:657.440850px;}
.y99{bottom:658.036613px;}
.y181{bottom:658.886100px;}
.y2db{bottom:659.567794px;}
.y22e{bottom:661.013250px;}
.y29f{bottom:662.967394px;}
.y63{bottom:663.139950px;}
.y32e{bottom:663.309347px;}
.y2fc{bottom:664.840528px;}
.y31{bottom:665.092800px;}
.y1b5{bottom:667.048800px;}
.y13{bottom:669.963375px;}
.y1f2{bottom:670.366968px;}
.yf7{bottom:670.536000px;}
.y129{bottom:670.537650px;}
.ybc{bottom:671.133150px;}
.y35a{bottom:673.854815px;}
.y98{bottom:674.619206px;}
.y207{bottom:676.999350px;}
.y180{bottom:678.360600px;}
.y2da{bottom:679.041151px;}
.y22d{bottom:680.571750px;}
.y29e{bottom:682.527150px;}
.y62{bottom:682.614450px;}
.y32d{bottom:682.867903px;}
.y375{bottom:688.055438px;}
.y1f1{bottom:689.075934px;}
.yf6{bottom:690.010500px;}
.y128{bottom:690.010650px;}
.ybb{bottom:690.607650px;}
.y97{bottom:691.117800px;}
.y2d9{bottom:693.328172px;}
.y206{bottom:696.472350px;}
.y29d{bottom:696.727772px;}
.y32b{bottom:697.069725px;}
.y32c{bottom:697.495720px;}
.y17f{bottom:697.919100px;}
.y12{bottom:699.987000px;}
.y22c{bottom:700.046250px;}
.y61{bottom:702.087450px;}
.y95{bottom:707.615193px;}
.y1f0{bottom:707.870099px;}
.y96{bottom:707.954789px;}
.yf5{bottom:709.485000px;}
.y127{bottom:709.485150px;}
.y1b4{bottom:710.080500px;}
.yba{bottom:710.082150px;}
.y329{bottom:711.356747px;}
.y32a{bottom:711.696342px;}
.y2d8{bottom:712.802728px;}
.y11{bottom:714.950813px;}
.y29c{bottom:716.287528px;}
.y17e{bottom:717.392100px;}
.y17c{bottom:717.393600px;}
.y22b{bottom:719.519250px;}
.y60{bottom:721.647450px;}
.y374{bottom:721.815816px;}
.y205{bottom:721.984825px;}
.y17d{bottom:724.025100px;}
.y94{bottom:724.112587px;}
.y1ef{bottom:726.577865px;}
.y2d7{bottom:727.088550px;}
.yf4{bottom:728.958000px;}
.y126{bottom:728.959650px;}
.y1b3{bottom:729.639000px;}
.yb9{bottom:729.640650px;}
.y10{bottom:729.998624px;}
.y29b{bottom:730.488150px;}
.y328{bottom:730.830103px;}
.y353{bottom:732.361284px;}
.y17b{bottom:736.866600px;}
.y22a{bottom:739.079250px;}
.y93{bottom:740.609981px;}
.y5f{bottom:741.120450px;}
.y2d6{bottom:741.290372px;}
.y204{bottom:742.988850px;}
.yf{bottom:744.962437px;}
.y1ee{bottom:745.372030px;}
.y352{bottom:746.563106px;}
.yf3{bottom:748.516500px;}
.y125{bottom:748.518150px;}
.y1b2{bottom:749.113500px;}
.yb8{bottom:749.115150px;}
.y327{bottom:750.304660px;}
.y29a{bottom:750.727500px;}
.y30{bottom:751.999950px;}
.y359{bottom:755.577394px;}
.y17a{bottom:756.425100px;}
.y178{bottom:756.426150px;}
.y92{bottom:757.107375px;}
.y229{bottom:758.552250px;}
.ye{bottom:760.010249px;}
.y5e{bottom:760.594950px;}
.y2d5{bottom:760.848928px;}
.y179{bottom:763.058250px;}
.y1ed{bottom:764.080997px;}
.y325{bottom:764.590481px;}
.y326{bottom:764.846078px;}
.y124{bottom:767.992650px;}
.y1b1{bottom:768.588000px;}
.yb7{bottom:768.588150px;}
.y2f{bottom:769.264950px;}
.y373{bottom:769.863215px;}
.y91{bottom:773.604768px;}
.yf2{bottom:774.028200px;}
.yd{bottom:774.974062px;}
.y2d4{bottom:775.050750px;}
.y177{bottom:775.899150px;}
.y175{bottom:775.900200px;}
.y21a{bottom:777.005119px;}
.y228{bottom:778.026750px;}
.y5d{bottom:780.153450px;}
.y176{bottom:782.532150px;}
.y1ec{bottom:782.873962px;}
.y324{bottom:784.065038px;}
.y2e{bottom:786.529950px;}
.y123{bottom:787.465650px;}
.y1b0{bottom:788.061000px;}
.yb6{bottom:788.062650px;}
.y2fb{bottom:789.337772px;}
.yc{bottom:789.937875px;}
.y90{bottom:790.102162px;}
.y2d3{bottom:794.609306px;}
.y174{bottom:795.373200px;}
.y227{bottom:797.585250px;}
.y5c{bottom:799.627950px;}
.y219{bottom:800.221229px;}
.y1eb{bottom:801.582928px;}
.y323{bottom:803.623593px;}
.y2d{bottom:803.704950px;}
.yb{bottom:804.985687px;}
.y8f{bottom:806.600756px;}
.y122{bottom:807.024150px;}
.y1af{bottom:807.621000px;}
.yb5{bottom:807.621150px;}
.y2d2{bottom:808.811128px;}
.y217{bottom:812.466000px;}
.y218{bottom:814.507050px;}
.y216{bottom:814.507556px;}
.y172{bottom:814.847700px;}
.y226{bottom:817.059750px;}
.y321{bottom:817.825416px;}
.y322{bottom:818.081012px;}
.y5b{bottom:819.100950px;}
.ya{bottom:819.949500px;}
.y1ea{bottom:820.375893px;}
.y2c{bottom:820.969950px;}
.y173{bottom:821.565300px;}
.y8e{bottom:823.098150px;}
.y121{bottom:826.498650px;}
.y1ae{bottom:827.094000px;}
.yb4{bottom:827.095650px;}
.y215{bottom:828.709379px;}
.y299{bottom:833.133150px;}
.y171{bottom:834.406200px;}
.y16f{bottom:834.406800px;}
.y225{bottom:836.532750px;}
.y320{bottom:837.298772px;}
.y5a{bottom:838.659450px;}
.y1e9{bottom:839.084859px;}
.y8d{bottom:839.595544px;}
.y213{bottom:840.954300px;}
.y170{bottom:841.039350px;}
.y2d1{bottom:842.571506px;}
.y214{bottom:842.995200px;}
.y212{bottom:842.995706px;}
.y120{bottom:845.973150px;}
.y1ad{bottom:846.568500px;}
.yb3{bottom:846.568650px;}
.y8{bottom:846.992700px;}
.y31f{bottom:851.585794px;}
.y9{bottom:852.944850px;}
.y16e{bottom:853.881300px;}
.y224{bottom:856.091250px;}
.y8c{bottom:856.092937px;}
.y2d0{bottom:856.858528px;}
.y211{bottom:857.197529px;}
.y1e8{bottom:857.793825px;}
.y59{bottom:858.133950px;}
.y298{bottom:861.621150px;}
.y6{bottom:863.489700px;}
.y11f{bottom:865.531650px;}
.y1ac{bottom:866.127000px;}
.yb2{bottom:866.127150px;}
.y7{bottom:869.442450px;}
.y2cf{bottom:871.059150px;}
.y210{bottom:871.483350px;}
.y8b{bottom:872.590331px;}
.y16d{bottom:873.355800px;}
.y1e7{bottom:876.586790px;}
.y58{bottom:877.608450px;}
.y223{bottom:881.518675px;}
.y11e{bottom:885.004650px;}
.y31e{bottom:885.346172px;}
.y1ab{bottom:885.601500px;}
.yb1{bottom:885.601650px;}
.y8a{bottom:889.087725px;}
.y297{bottom:890.109150px;}
.y2ce{bottom:890.618906px;}
.y16c{bottom:892.914300px;}
.y1e6{bottom:895.295756px;}
.y57{bottom:897.081450px;}
.y31c{bottom:899.547994px;}
.y31d{bottom:899.802391px;}
.y5{bottom:901.019850px;}
.y222{bottom:902.522700px;}
.y2cd{bottom:904.820728px;}
.y1aa{bottom:905.074500px;}
.yb0{bottom:905.076150px;}
.y89{bottom:905.585119px;}
.y11d{bottom:910.516500px;}
.y16b{bottom:912.387300px;}
.y1e5{bottom:914.088721px;}
.y56{bottom:916.641450px;}
.y296{bottom:918.597150px;}
.y2cc{bottom:919.106550px;}
.y351{bottom:919.362146px;}
.y88{bottom:922.083712px;}
.y1a9{bottom:924.633000px;}
.y1a7{bottom:924.634050px;}
.yaf{bottom:924.634650px;}
.y1a8{bottom:931.266000px;}
.y1e4{bottom:932.797688px;}
.y31b{bottom:933.308372px;}
.y4{bottom:934.688850px;}
.y55{bottom:936.114450px;}
.y16a{bottom:937.899150px;}
.y87{bottom:938.581106px;}
.y1a6{bottom:944.107050px;}
.y1a4{bottom:944.108100px;}
.yae{bottom:944.109150px;}
.y295{bottom:947.085150px;}
.y1a5{bottom:950.740050px;}
.y1e3{bottom:951.591853px;}
.y2cb{bottom:952.866928px;}
.y54{bottom:955.588950px;}
.y1a3{bottom:963.581100px;}
.y1a1{bottom:963.581550px;}
.yad{bottom:963.582150px;}
.y86{bottom:964.092787px;}
.y2c9{bottom:967.068750px;}
.y2ca{bottom:967.324347px;}
.y3{bottom:968.438850px;}
.y1a2{bottom:970.299150px;}
.y1e2{bottom:970.299619px;}
.y53{bottom:975.147450px;}
.y294{bottom:975.573150px;}
.y19f{bottom:980.588850px;}
.y85{bottom:980.590181px;}
.y31a{bottom:981.355772px;}
.y1a0{bottom:983.140050px;}
.yac{bottom:983.140650px;}
.y2c8{bottom:986.542107px;}
.y1e1{bottom:989.093784px;}
.y52{bottom:994.621950px;}
.y84{bottom:997.087575px;}
.y2c7{bottom:1000.829128px;}
.y2{bottom:1002.188850px;}
.yab{bottom:1002.615150px;}
.y293{bottom:1004.061150px;}
.y1e0{bottom:1007.801550px;}
.y83{bottom:1013.584969px;}
.y51{bottom:1014.094950px;}
.y2c6{bottom:1015.116150px;}
.yaa{bottom:1022.089650px;}
.y1df{bottom:1026.595200px;}
.y1dd{bottom:1026.596406px;}
.y372{bottom:1029.316772px;}
.y82{bottom:1030.082362px;}
.y1de{bottom:1031.952750px;}
.y292{bottom:1032.633150px;}
.y50{bottom:1033.653450px;}
.y2c5{bottom:1034.589506px;}
.y1{bottom:1035.949500px;}
.ya9{bottom:1041.562650px;}
.y81{bottom:1046.579756px;}
.y1dc{bottom:1048.791329px;}
.y4f{bottom:1059.080250px;}
.ya8{bottom:1061.121150px;}
.y80{bottom:1063.077150px;}
.y7f{bottom:1118.692800px;}
.h10{height:24.796125px;}
.h13{height:24.828120px;}
.h4{height:27.932275px;}
.hf{height:29.996550px;}
.h11{height:36.755773px;}
.h1{height:37.199535px;}
.h6{height:37.247534px;}
.hb{height:39.119511px;}
.ha{height:40.559493px;}
.h5{height:41.718229px;}
.h3{height:41.904000px;}
.h8{height:44.175000px;}
.h9{height:45.000000px;}
.he{height:55.140000px;}
.hd{height:55.799535px;}
.hc{height:55.871534px;}
.h7{height:70.905000px;}
.h12{height:73.491547px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:54.000000px;}
.x38{left:61.738500px;}
.xe{left:71.433000px;}
.x11{left:99.155436px;}
.x39{left:258.519600px;}
.x1{left:300.018750px;}
.x3d{left:305.716500px;}
.x1e{left:307.757400px;}
.x48{left:312.776193px;}
.x14{left:313.795200px;}
.xf{left:317.961750px;}
.x43{left:319.322700px;}
.x15{left:325.955850px;}
.x3e{left:328.251900px;}
.x44{left:344.237989px;}
.x29{left:350.617200px;}
.x52{left:353.508241px;}
.x51{left:355.548215px;}
.x55{left:358.865192px;}
.x3a{left:364.733850px;}
.x22{left:368.475450px;}
.x4b{left:375.703163px;}
.x23{left:376.979400px;}
.x1d{left:379.615650px;}
.x1c{left:384.888150px;}
.xc{left:388.119600px;}
.x2{left:391.861350px;}
.x3f{left:399.684900px;}
.x4a{left:402.234832px;}
.x3{left:405.722700px;}
.x40{left:422.135400px;}
.x47{left:424.347198px;}
.x53{left:428.341705px;}
.x1a{left:438.633000px;}
.x4c{left:443.309118px;}
.x1b{left:445.861350px;}
.x30{left:454.195200px;}
.x49{left:462.528078px;}
.x18{left:476.475450px;}
.x4{left:498.840900px;}
.x45{left:501.732150px;}
.x46{left:512.192100px;}
.x10{left:513.807750px;}
.x31{left:520.696050px;}
.x1f{left:525.628200px;}
.x32{left:527.329050px;}
.x5{left:529.455000px;}
.x20{left:530.985750px;}
.x19{left:532.516500px;}
.x4e{left:558.877274px;}
.x2a{left:588.217200px;}
.x37{left:599.697600px;}
.x4f{left:603.522716px;}
.x6{left:605.225100px;}
.x2b{left:610.582650px;}
.x2c{left:614.579400px;}
.x50{left:616.022959px;}
.x7{left:619.086600px;}
.x54{left:631.840180px;}
.x33{left:633.798300px;}
.x27{left:661.181100px;}
.x3b{left:686.607750px;}
.x41{left:690.516750px;}
.x28{left:694.686600px;}
.x34{left:703.785750px;}
.x4d{left:705.399042px;}
.x3c{left:709.058250px;}
.x8{left:717.732150px;}
.x42{left:720.960750px;}
.x9{left:737.121150px;}
.x12{left:745.284900px;}
.x13{left:755.489700px;}
.x16{left:762.037650px;}
.x2f{left:800.730600px;}
.x24{left:802.091250px;}
.x35{left:805.237650px;}
.x17{left:807.533850px;}
.x25{left:809.234550px;}
.x26{left:817.738500px;}
.x2d{left:826.157400px;}
.x36{left:827.347950px;}
.xa{left:832.450350px;}
.x2e{left:834.661350px;}
.xb{left:851.839350px;}
.x21{left:853.114950px;}
@media print{
.v3{vertical-align:-2.720000pt;}
.v1{vertical-align:-1.207452pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:32.654022pt;}
.ls5{letter-spacing:-1.123200pt;}
.ls8{letter-spacing:-1.067200pt;}
.lsb{letter-spacing:-1.066653pt;}
.ls9{letter-spacing:-1.013333pt;}
.ls44{letter-spacing:-0.960000pt;}
.ls2e{letter-spacing:-0.906667pt;}
.ls28{letter-spacing:-0.899452pt;}
.ls1e{letter-spacing:-0.746667pt;}
.ls1d{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.213331pt;}
.ls6{letter-spacing:-0.211200pt;}
.ls17{letter-spacing:-0.211198pt;}
.ls3d{letter-spacing:-0.190548pt;}
.ls7{letter-spacing:-0.188775pt;}
.ls2f{letter-spacing:-0.188423pt;}
.ls27{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.400000pt;}
.ls13{letter-spacing:0.908789pt;}
.ls14{letter-spacing:0.913055pt;}
.ls42{letter-spacing:1.002667pt;}
.ls16{letter-spacing:1.211718pt;}
.ls22{letter-spacing:1.610667pt;}
.ls26{letter-spacing:1.914667pt;}
.ls4d{letter-spacing:2.517333pt;}
.ls4f{letter-spacing:3.933817pt;}
.ls53{letter-spacing:4.232480pt;}
.ls4e{letter-spacing:4.236747pt;}
.ls3{letter-spacing:7.807902pt;}
.ls51{letter-spacing:8.900155pt;}
.ls2{letter-spacing:8.917222pt;}
.ls52{letter-spacing:8.930022pt;}
.ls3c{letter-spacing:9.245751pt;}
.ls37{letter-spacing:9.510281pt;}
.ls30{letter-spacing:9.787611pt;}
.ls38{letter-spacing:9.813211pt;}
.ls39{letter-spacing:9.826011pt;}
.ls31{letter-spacing:9.851610pt;}
.ls3a{letter-spacing:9.855877pt;}
.ls3b{letter-spacing:9.919876pt;}
.ls23{letter-spacing:10.362667pt;}
.ls15{letter-spacing:10.585468pt;}
.ls3e{letter-spacing:10.704000pt;}
.ls24{letter-spacing:10.725333pt;}
.ls25{letter-spacing:10.730667pt;}
.ls3f{letter-spacing:10.768000pt;}
.ls49{letter-spacing:10.789333pt;}
.ls2c{letter-spacing:10.965333pt;}
.ls32{letter-spacing:10.970667pt;}
.ls45{letter-spacing:11.029333pt;}
.ls46{letter-spacing:11.082667pt;}
.ls34{letter-spacing:11.093333pt;}
.ls40{letter-spacing:11.162667pt;}
.ls48{letter-spacing:11.232000pt;}
.ls2d{letter-spacing:11.269333pt;}
.ls2a{letter-spacing:11.333333pt;}
.ls4c{letter-spacing:11.349333pt;}
.ls4a{letter-spacing:11.392000pt;}
.ls33{letter-spacing:11.397333pt;}
.ls36{letter-spacing:11.434667pt;}
.ls1c{letter-spacing:11.488000pt;}
.ls47{letter-spacing:11.493333pt;}
.lsd{letter-spacing:11.498667pt;}
.lsf{letter-spacing:11.504000pt;}
.ls29{letter-spacing:11.541333pt;}
.ls21{letter-spacing:11.546667pt;}
.lse{letter-spacing:11.557333pt;}
.ls18{letter-spacing:11.562667pt;}
.ls12{letter-spacing:11.621333pt;}
.ls4b{letter-spacing:11.626667pt;}
.ls2b{letter-spacing:11.637333pt;}
.ls1a{letter-spacing:11.685333pt;}
.lsc{letter-spacing:11.802667pt;}
.ls11{letter-spacing:11.808000pt;}
.ls20{letter-spacing:11.845333pt;}
.ls1f{letter-spacing:11.850667pt;}
.ls10{letter-spacing:11.861333pt;}
.ls19{letter-spacing:11.866667pt;}
.ls35{letter-spacing:11.898667pt;}
.ls1b{letter-spacing:11.989333pt;}
.ls41{letter-spacing:12.192000pt;}
.ls50{letter-spacing:13.610497pt;}
.ls0{letter-spacing:18.474436pt;}
.ls1{letter-spacing:20.735741pt;}
.ws1e3{word-spacing:-31.786269pt;}
.ws135{word-spacing:-26.453333pt;}
.ws2e{word-spacing:-23.346908pt;}
.ws182{word-spacing:-17.772652pt;}
.ws13c{word-spacing:-17.587311pt;}
.ws10e{word-spacing:-15.450667pt;}
.ws111{word-spacing:-15.418667pt;}
.wsd9{word-spacing:-15.392000pt;}
.ws10d{word-spacing:-15.146667pt;}
.wsda{word-spacing:-15.088000pt;}
.wsf4{word-spacing:-14.565333pt;}
.wsf7{word-spacing:-14.560000pt;}
.ws130{word-spacing:-14.149333pt;}
.wse1{word-spacing:-13.477333pt;}
.ws103{word-spacing:-13.402667pt;}
.ws119{word-spacing:-13.002667pt;}
.ws14e{word-spacing:-11.989183pt;}
.ws19{word-spacing:-11.775853pt;}
.ws10a{word-spacing:-11.728000pt;}
.ws34{word-spacing:-9.599880pt;}
.ws156{word-spacing:-4.006367pt;}
.wsdd{word-spacing:-3.999967pt;}
.ws12e{word-spacing:-3.993567pt;}
.wsc5{word-spacing:-3.961567pt;}
.ws17d{word-spacing:-3.948767pt;}
.ws11b{word-spacing:-3.929567pt;}
.ws160{word-spacing:-3.923167pt;}
.ws13a{word-spacing:-3.846368pt;}
.ws112{word-spacing:-3.769569pt;}
.ws183{word-spacing:-3.763169pt;}
.ws141{word-spacing:-3.756769pt;}
.ws139{word-spacing:-3.692769pt;}
.ws180{word-spacing:-3.628770pt;}
.ws1d7{word-spacing:-3.345025pt;}
.ws18e{word-spacing:-3.182894pt;}
.wsa{word-spacing:-3.174360pt;}
.ws1be{word-spacing:-3.165827pt;}
.ws1e2{word-spacing:-3.148761pt;}
.ws1b0{word-spacing:-3.140227pt;}
.ws1d8{word-spacing:-3.123161pt;}
.ws1e4{word-spacing:-3.118894pt;}
.ws19a{word-spacing:-3.110361pt;}
.ws13e{word-spacing:-3.089028pt;}
.ws1b5{word-spacing:-3.084761pt;}
.ws1d0{word-spacing:-3.080495pt;}
.ws1e8{word-spacing:-3.071962pt;}
.ws1c5{word-spacing:-3.063428pt;}
.ws18c{word-spacing:-3.046362pt;}
.ws1c0{word-spacing:-3.042095pt;}
.ws1da{word-spacing:-3.037829pt;}
.ws190{word-spacing:-3.025029pt;}
.ws5{word-spacing:-3.019200pt;}
.ws1db{word-spacing:-3.016496pt;}
.ws1bc{word-spacing:-3.012229pt;}
.ws1ca{word-spacing:-2.999429pt;}
.ws1a3{word-spacing:-2.995163pt;}
.ws1ab{word-spacing:-2.990896pt;}
.ws1b2{word-spacing:-2.986629pt;}
.ws1d2{word-spacing:-2.982363pt;}
.ws1d1{word-spacing:-2.978096pt;}
.wsd{word-spacing:-2.973829pt;}
.ws18{word-spacing:-2.969563pt;}
.ws13{word-spacing:-2.965296pt;}
.ws1c6{word-spacing:-2.961030pt;}
.ws1e6{word-spacing:-2.956763pt;}
.ws1b7{word-spacing:-2.952496pt;}
.ws1a5{word-spacing:-2.948230pt;}
.ws12c{word-spacing:-2.943963pt;}
.ws1e7{word-spacing:-2.939697pt;}
.ws9{word-spacing:-2.937600pt;}
.ws15f{word-spacing:-2.935430pt;}
.ws146{word-spacing:-2.931163pt;}
.ws1cf{word-spacing:-2.926897pt;}
.ws1ba{word-spacing:-2.918364pt;}
.ws11{word-spacing:-2.914097pt;}
.ws1d4{word-spacing:-2.909830pt;}
.ws6{word-spacing:-2.908800pt;}
.ws1cb{word-spacing:-2.905564pt;}
.ws1de{word-spacing:-2.901297pt;}
.ws158{word-spacing:-2.897030pt;}
.ws18b{word-spacing:-2.892764pt;}
.ws18d{word-spacing:-2.888497pt;}
.ws1b4{word-spacing:-2.884231pt;}
.wsf{word-spacing:-2.879964pt;}
.ws196{word-spacing:-2.875697pt;}
.ws1bd{word-spacing:-2.871431pt;}
.ws12{word-spacing:-2.867164pt;}
.wse{word-spacing:-2.862898pt;}
.ws145{word-spacing:-2.858631pt;}
.ws1a0{word-spacing:-2.854364pt;}
.ws1dc{word-spacing:-2.850098pt;}
.ws1a1{word-spacing:-2.845831pt;}
.ws1ad{word-spacing:-2.841564pt;}
.ws1c7{word-spacing:-2.828765pt;}
.wsc{word-spacing:-2.824498pt;}
.ws1d9{word-spacing:-2.820231pt;}
.ws8{word-spacing:-2.817600pt;}
.ws140{word-spacing:-2.815965pt;}
.ws1aa{word-spacing:-2.811698pt;}
.ws1dd{word-spacing:-2.807432pt;}
.ws7{word-spacing:-2.803200pt;}
.ws19f{word-spacing:-2.803165pt;}
.ws15b{word-spacing:-2.798898pt;}
.ws1d3{word-spacing:-2.794632pt;}
.ws193{word-spacing:-2.786099pt;}
.ws1a2{word-spacing:-2.781832pt;}
.ws2b{word-spacing:-2.777565pt;}
.ws4{word-spacing:-2.774400pt;}
.ws1b1{word-spacing:-2.769032pt;}
.ws1c2{word-spacing:-2.764765pt;}
.ws1a6{word-spacing:-2.760499pt;}
.ws199{word-spacing:-2.756232pt;}
.ws1e1{word-spacing:-2.751966pt;}
.ws15e{word-spacing:-2.747699pt;}
.ws1b3{word-spacing:-2.743432pt;}
.ws1a7{word-spacing:-2.739166pt;}
.ws1e9{word-spacing:-2.734899pt;}
.ws13f{word-spacing:-2.730633pt;}
.ws19c{word-spacing:-2.726366pt;}
.ws19e{word-spacing:-2.722099pt;}
.ws1b8{word-spacing:-2.713566pt;}
.ws1b6{word-spacing:-2.709299pt;}
.ws14b{word-spacing:-2.705033pt;}
.ws1d5{word-spacing:-2.700766pt;}
.ws155{word-spacing:-2.687966pt;}
.ws1c9{word-spacing:-2.683700pt;}
.ws192{word-spacing:-2.675167pt;}
.ws194{word-spacing:-2.670900pt;}
.ws1e5{word-spacing:-2.666633pt;}
.ws17{word-spacing:-2.662367pt;}
.ws1b9{word-spacing:-2.653833pt;}
.ws1ed{word-spacing:-2.649567pt;}
.ws12a{word-spacing:-2.645300pt;}
.ws3{word-spacing:-2.640000pt;}
.ws153{word-spacing:-2.636767pt;}
.ws197{word-spacing:-2.632500pt;}
.ws12d{word-spacing:-2.628234pt;}
.wsb{word-spacing:-2.623967pt;}
.ws126{word-spacing:-2.619701pt;}
.ws1ce{word-spacing:-2.615434pt;}
.ws122{word-spacing:-2.611167pt;}
.ws14a{word-spacing:-2.606901pt;}
.ws14f{word-spacing:-2.602634pt;}
.ws1af{word-spacing:-2.598368pt;}
.ws2d{word-spacing:-2.594101pt;}
.ws195{word-spacing:-2.589834pt;}
.ws198{word-spacing:-2.585568pt;}
.ws1bb{word-spacing:-2.581301pt;}
.ws154{word-spacing:-2.577034pt;}
.ws15a{word-spacing:-2.572768pt;}
.ws14d{word-spacing:-2.568501pt;}
.ws1cc{word-spacing:-2.564235pt;}
.ws1c8{word-spacing:-2.559968pt;}
.ws191{word-spacing:-2.555701pt;}
.ws1ac{word-spacing:-2.551435pt;}
.ws123{word-spacing:-2.547168pt;}
.ws1ea{word-spacing:-2.542902pt;}
.ws14c{word-spacing:-2.538635pt;}
.ws124{word-spacing:-2.534368pt;}
.ws11d{word-spacing:-2.530102pt;}
.ws10{word-spacing:-2.525835pt;}
.ws1ae{word-spacing:-2.517302pt;}
.ws1bf{word-spacing:-2.513035pt;}
.ws2{word-spacing:-2.505600pt;}
.ws11f{word-spacing:-2.504502pt;}
.ws15d{word-spacing:-2.500235pt;}
.ws1eb{word-spacing:-2.495969pt;}
.ws1{word-spacing:-2.486400pt;}
.ws12b{word-spacing:-2.483169pt;}
.ws152{word-spacing:-2.478902pt;}
.ws129{word-spacing:-2.474636pt;}
.ws1a9{word-spacing:-2.470369pt;}
.ws19b{word-spacing:-2.461836pt;}
.ws159{word-spacing:-2.457569pt;}
.ws1c3{word-spacing:-2.453303pt;}
.ws1a4{word-spacing:-2.444769pt;}
.ws14{word-spacing:-2.440503pt;}
.ws1ec{word-spacing:-2.423436pt;}
.ws121{word-spacing:-2.414903pt;}
.ws15{word-spacing:-2.397837pt;}
.ws15c{word-spacing:-2.385037pt;}
.ws1c1{word-spacing:-2.367970pt;}
.ws1c4{word-spacing:-2.359437pt;}
.ws0{word-spacing:-2.355171pt;}
.ws125{word-spacing:-2.342371pt;}
.ws128{word-spacing:-2.282638pt;}
.ws127{word-spacing:-2.278372pt;}
.ws1d6{word-spacing:-2.269838pt;}
.ws147{word-spacing:-2.210106pt;}
.ws1d{word-spacing:-2.209067pt;}
.ws21{word-spacing:-2.188800pt;}
.ws25{word-spacing:-2.178667pt;}
.ws120{word-spacing:-2.175973pt;}
.ws22{word-spacing:-2.173600pt;}
.ws1b{word-spacing:-2.168533pt;}
.ws149{word-spacing:-2.146107pt;}
.ws1f{word-spacing:-2.138133pt;}
.ws23{word-spacing:-2.133067pt;}
.ws11e{word-spacing:-2.094907pt;}
.ws24{word-spacing:-2.077333pt;}
.ws2a{word-spacing:-2.062133pt;}
.ws27{word-spacing:-2.041867pt;}
.ws20{word-spacing:-1.950667pt;}
.ws1a{word-spacing:-1.920267pt;}
.ws28{word-spacing:-1.869600pt;}
.ws1c{word-spacing:-1.824000pt;}
.ws26{word-spacing:-1.768267pt;}
.ws29{word-spacing:-1.626400pt;}
.ws1e{word-spacing:-1.449067pt;}
.wsb7{word-spacing:-0.986667pt;}
.ws46{word-spacing:-0.951455pt;}
.ws3f{word-spacing:-0.942922pt;}
.ws144{word-spacing:-0.858667pt;}
.wsb6{word-spacing:-0.853333pt;}
.ws86{word-spacing:-0.823456pt;}
.ws42{word-spacing:-0.819190pt;}
.ws3d{word-spacing:-0.810657pt;}
.wsa2{word-spacing:-0.805333pt;}
.wsa3{word-spacing:-0.778667pt;}
.ws65{word-spacing:-0.773333pt;}
.ws39{word-spacing:-0.767990pt;}
.ws33{word-spacing:-0.759457pt;}
.wsc1{word-spacing:-0.757333pt;}
.ws88{word-spacing:-0.746657pt;}
.ws37{word-spacing:-0.725324pt;}
.ws44{word-spacing:-0.721058pt;}
.ws7e{word-spacing:-0.716791pt;}
.ws82{word-spacing:-0.712524pt;}
.ws115{word-spacing:-0.704000pt;}
.ws83{word-spacing:-0.699725pt;}
.ws3b{word-spacing:-0.682658pt;}
.ws134{word-spacing:-0.666667pt;}
.ws49{word-spacing:-0.665592pt;}
.ws91{word-spacing:-0.661325pt;}
.ws7d{word-spacing:-0.657058pt;}
.ws171{word-spacing:-0.656000pt;}
.ws80{word-spacing:-0.652792pt;}
.ws5b{word-spacing:-0.650667pt;}
.ws32{word-spacing:-0.648525pt;}
.ws9d{word-spacing:-0.634667pt;}
.ws4b{word-spacing:-0.618659pt;}
.ws4a{word-spacing:-0.614392pt;}
.ws3e{word-spacing:-0.610126pt;}
.ws30{word-spacing:-0.605859pt;}
.ws40{word-spacing:-0.601592pt;}
.ws43{word-spacing:-0.597326pt;}
.ws36{word-spacing:-0.580259pt;}
.ws90{word-spacing:-0.575993pt;}
.ws3c{word-spacing:-0.567460pt;}
.ws5a{word-spacing:-0.565333pt;}
.ws4d{word-spacing:-0.563193pt;}
.ws7b{word-spacing:-0.558926pt;}
.ws9c{word-spacing:-0.554667pt;}
.ws2f{word-spacing:-0.554660pt;}
.ws132{word-spacing:-0.549333pt;}
.ws85{word-spacing:-0.546127pt;}
.ws31{word-spacing:-0.537593pt;}
.ws47{word-spacing:-0.529060pt;}
.ws35{word-spacing:-0.511994pt;}
.ws10b{word-spacing:-0.506667pt;}
.ws48{word-spacing:-0.503460pt;}
.ws138{word-spacing:-0.485333pt;}
.ws79{word-spacing:-0.477861pt;}
.ws131{word-spacing:-0.474667pt;}
.ws8e{word-spacing:-0.473594pt;}
.wsbe{word-spacing:-0.469333pt;}
.ws38{word-spacing:-0.469327pt;}
.ws4c{word-spacing:-0.460794pt;}
.ws63{word-spacing:-0.458667pt;}
.ws6a{word-spacing:-0.453333pt;}
.ws92{word-spacing:-0.452261pt;}
.ws113{word-spacing:-0.448000pt;}
.ws89{word-spacing:-0.447994pt;}
.ws81{word-spacing:-0.443728pt;}
.wsb2{word-spacing:-0.442667pt;}
.ws7a{word-spacing:-0.439461pt;}
.ws78{word-spacing:-0.435195pt;}
.ws7c{word-spacing:-0.422395pt;}
.ws167{word-spacing:-0.421333pt;}
.ws41{word-spacing:-0.418128pt;}
.ws133{word-spacing:-0.416000pt;}
.wsde{word-spacing:-0.410667pt;}
.ws87{word-spacing:-0.409595pt;}
.ws8d{word-spacing:-0.405328pt;}
.wsb3{word-spacing:-0.394667pt;}
.ws8f{word-spacing:-0.392528pt;}
.ws10f{word-spacing:-0.389333pt;}
.ws6e{word-spacing:-0.384000pt;}
.ws7f{word-spacing:-0.383995pt;}
.ws8a{word-spacing:-0.379729pt;}
.ws137{word-spacing:-0.378667pt;}
.ws13b{word-spacing:-0.368000pt;}
.wsbc{word-spacing:-0.362667pt;}
.ws178{word-spacing:-0.357333pt;}
.ws5f{word-spacing:-0.352000pt;}
.ws8c{word-spacing:-0.349862pt;}
.ws6f{word-spacing:-0.346667pt;}
.ws68{word-spacing:-0.341333pt;}
.ws3a{word-spacing:-0.337062pt;}
.ws51{word-spacing:-0.336000pt;}
.ws8b{word-spacing:-0.332796pt;}
.ws5e{word-spacing:-0.325333pt;}
.ws58{word-spacing:-0.320000pt;}
.wsa7{word-spacing:-0.314667pt;}
.ws74{word-spacing:-0.309333pt;}
.ws50{word-spacing:-0.304000pt;}
.ws110{word-spacing:-0.298667pt;}
.ws57{word-spacing:-0.293333pt;}
.wsc9{word-spacing:-0.288000pt;}
.ws11c{word-spacing:-0.282667pt;}
.ws142{word-spacing:-0.277333pt;}
.ws84{word-spacing:-0.273063pt;}
.ws52{word-spacing:-0.272000pt;}
.ws9f{word-spacing:-0.266667pt;}
.ws66{word-spacing:-0.261333pt;}
.ws5d{word-spacing:-0.256000pt;}
.ws56{word-spacing:-0.250667pt;}
.ws4f{word-spacing:-0.245333pt;}
.ws143{word-spacing:-0.240000pt;}
.ws53{word-spacing:-0.234667pt;}
.ws55{word-spacing:-0.229333pt;}
.ws62{word-spacing:-0.224000pt;}
.ws99{word-spacing:-0.218667pt;}
.wsa6{word-spacing:-0.213333pt;}
.ws6b{word-spacing:-0.208000pt;}
.ws54{word-spacing:-0.202667pt;}
.ws17e{word-spacing:-0.197333pt;}
.wsa5{word-spacing:-0.192000pt;}
.wsc4{word-spacing:-0.186667pt;}
.wsdc{word-spacing:-0.181333pt;}
.ws45{word-spacing:-0.179198pt;}
.ws93{word-spacing:-0.176000pt;}
.ws69{word-spacing:-0.170667pt;}
.ws6c{word-spacing:-0.165333pt;}
.ws76{word-spacing:-0.160000pt;}
.ws60{word-spacing:-0.154667pt;}
.ws9e{word-spacing:-0.149333pt;}
.ws94{word-spacing:-0.144000pt;}
.ws170{word-spacing:-0.138667pt;}
.ws172{word-spacing:-0.133333pt;}
.ws136{word-spacing:-0.128000pt;}
.ws157{word-spacing:-0.117333pt;}
.ws72{word-spacing:-0.112000pt;}
.wsbf{word-spacing:-0.106667pt;}
.ws5c{word-spacing:-0.101333pt;}
.wsad{word-spacing:-0.096000pt;}
.ws16e{word-spacing:-0.090667pt;}
.wsb8{word-spacing:-0.085333pt;}
.wsa1{word-spacing:-0.080000pt;}
.ws75{word-spacing:-0.074667pt;}
.ws117{word-spacing:-0.069333pt;}
.wsb9{word-spacing:-0.064000pt;}
.wsdf{word-spacing:-0.058667pt;}
.ws71{word-spacing:-0.053333pt;}
.ws61{word-spacing:-0.048000pt;}
.ws96{word-spacing:-0.042667pt;}
.wsbb{word-spacing:-0.037333pt;}
.wsaf{word-spacing:-0.032000pt;}
.wsba{word-spacing:-0.026667pt;}
.ws73{word-spacing:-0.021333pt;}
.ws70{word-spacing:-0.016000pt;}
.wsd0{word-spacing:-0.010667pt;}
.wsa4{word-spacing:-0.005333pt;}
.ws4e{word-spacing:0.000000pt;}
.ws64{word-spacing:0.005333pt;}
.wsbd{word-spacing:0.010667pt;}
.ws109{word-spacing:0.016000pt;}
.wsb5{word-spacing:0.021333pt;}
.ws12f{word-spacing:0.026667pt;}
.wsd4{word-spacing:0.032000pt;}
.ws116{word-spacing:0.037333pt;}
.ws98{word-spacing:0.042667pt;}
.wsdb{word-spacing:0.048000pt;}
.ws97{word-spacing:0.053333pt;}
.ws95{word-spacing:0.058667pt;}
.ws175{word-spacing:0.064000pt;}
.ws59{word-spacing:0.069333pt;}
.ws16f{word-spacing:0.074667pt;}
.ws16d{word-spacing:0.080000pt;}
.ws162{word-spacing:0.085333pt;}
.ws67{word-spacing:0.090667pt;}
.wsc2{word-spacing:0.096000pt;}
.wsa0{word-spacing:0.101333pt;}
.wsd2{word-spacing:0.106667pt;}
.ws13d{word-spacing:0.112000pt;}
.wsb1{word-spacing:0.117333pt;}
.ws9a{word-spacing:0.122667pt;}
.ws6d{word-spacing:0.128000pt;}
.wsd8{word-spacing:0.133333pt;}
.ws9b{word-spacing:0.138667pt;}
.wsc0{word-spacing:0.144000pt;}
.ws161{word-spacing:0.149333pt;}
.wsc3{word-spacing:0.154667pt;}
.ws11a{word-spacing:0.160000pt;}
.wsaa{word-spacing:0.165333pt;}
.wsa9{word-spacing:0.170667pt;}
.wsae{word-spacing:0.176000pt;}
.ws173{word-spacing:0.181333pt;}
.wsd5{word-spacing:0.186667pt;}
.ws10c{word-spacing:0.192000pt;}
.wsd1{word-spacing:0.202667pt;}
.ws17b{word-spacing:0.208000pt;}
.wscd{word-spacing:0.218667pt;}
.ws17f{word-spacing:0.224000pt;}
.wsd3{word-spacing:0.240000pt;}
.wsac{word-spacing:0.245333pt;}
.ws176{word-spacing:0.250667pt;}
.wsb4{word-spacing:0.256000pt;}
.ws174{word-spacing:0.261333pt;}
.wscc{word-spacing:0.272000pt;}
.wscf{word-spacing:0.282667pt;}
.ws17a{word-spacing:0.293333pt;}
.wsca{word-spacing:0.298667pt;}
.ws165{word-spacing:0.304000pt;}
.wsc7{word-spacing:0.309333pt;}
.wsfd{word-spacing:0.325333pt;}
.ws105{word-spacing:0.336000pt;}
.ws177{word-spacing:0.341333pt;}
.wsa8{word-spacing:0.346667pt;}
.ws106{word-spacing:0.357333pt;}
.wsfe{word-spacing:0.368000pt;}
.wse2{word-spacing:0.373333pt;}
.ws166{word-spacing:0.378667pt;}
.ws181{word-spacing:0.384000pt;}
.wsb0{word-spacing:0.389333pt;}
.wsd7{word-spacing:0.394667pt;}
.wsd6{word-spacing:0.400000pt;}
.wse7{word-spacing:0.405333pt;}
.ws108{word-spacing:0.410667pt;}
.wsc8{word-spacing:0.416000pt;}
.wsf1{word-spacing:0.421333pt;}
.wsfa{word-spacing:0.426667pt;}
.wsee{word-spacing:0.432000pt;}
.wsec{word-spacing:0.437333pt;}
.wsf6{word-spacing:0.442667pt;}
.wsf3{word-spacing:0.448000pt;}
.wsc6{word-spacing:0.453333pt;}
.ws107{word-spacing:0.458667pt;}
.wsef{word-spacing:0.474667pt;}
.ws179{word-spacing:0.480000pt;}
.wsf8{word-spacing:0.485333pt;}
.wsfb{word-spacing:0.506667pt;}
.wsce{word-spacing:0.517333pt;}
.wse9{word-spacing:0.522667pt;}
.ws169{word-spacing:0.528000pt;}
.wsf5{word-spacing:0.533333pt;}
.wsf9{word-spacing:0.538667pt;}
.ws101{word-spacing:0.549333pt;}
.wsab{word-spacing:0.560000pt;}
.ws104{word-spacing:0.565333pt;}
.ws168{word-spacing:0.576000pt;}
.wsf2{word-spacing:0.586667pt;}
.ws185{word-spacing:0.592000pt;}
.ws17c{word-spacing:0.608000pt;}
.ws16b{word-spacing:0.618667pt;}
.ws16a{word-spacing:0.624000pt;}
.wse3{word-spacing:0.629333pt;}
.wse6{word-spacing:0.640000pt;}
.ws164{word-spacing:0.656000pt;}
.ws16c{word-spacing:0.666667pt;}
.wse0{word-spacing:0.672000pt;}
.wse5{word-spacing:0.677333pt;}
.ws102{word-spacing:0.698667pt;}
.wsf0{word-spacing:0.709333pt;}
.wseb{word-spacing:0.725333pt;}
.wse4{word-spacing:0.730667pt;}
.wsed{word-spacing:0.736000pt;}
.wse8{word-spacing:0.741333pt;}
.wsea{word-spacing:0.752000pt;}
.ws100{word-spacing:0.768000pt;}
.ws163{word-spacing:0.789333pt;}
.ws186{word-spacing:0.800000pt;}
.wscb{word-spacing:0.810667pt;}
.ws118{word-spacing:0.832000pt;}
.wsfc{word-spacing:0.869333pt;}
.wsff{word-spacing:0.874667pt;}
.ws188{word-spacing:0.901333pt;}
.ws189{word-spacing:0.906667pt;}
.ws187{word-spacing:0.912000pt;}
.ws114{word-spacing:0.928000pt;}
.ws184{word-spacing:1.029333pt;}
.ws1cd{word-spacing:6.579118pt;}
.ws16{word-spacing:6.869247pt;}
.ws2c{word-spacing:30.728149pt;}
.ws77{word-spacing:30.745216pt;}
.ws1df{word-spacing:41.582414pt;}
.ws1e0{word-spacing:41.586680pt;}
.ws1a8{word-spacing:41.642146pt;}
.ws19d{word-spacing:41.646413pt;}
.ws18a{word-spacing:41.697612pt;}
.ws18f{word-spacing:41.701879pt;}
.ws148{word-spacing:207.250743pt;}
.ws150{word-spacing:525.454765pt;}
.ws151{word-spacing:576.982654pt;}
._38{margin-left:-22.766933pt;}
._c{margin-left:-21.774933pt;}
._39{margin-left:-18.436036pt;}
._7{margin-left:-15.795003pt;}
._8{margin-left:-14.835015pt;}
._15{margin-left:-2.033091pt;}
._0{margin-left:-0.985588pt;}
._a{width:1.208533pt;}
._3{width:8.383895pt;}
._2{width:9.676679pt;}
._5{width:10.604533pt;}
._4{width:12.484267pt;}
._9{width:13.498667pt;}
._b{width:14.879938pt;}
._3a{width:17.864310pt;}
._e{width:18.764565pt;}
._1{width:22.617600pt;}
._d{width:43.237333pt;}
._22{width:181.616930pt;}
._2d{width:194.873297pt;}
._24{width:196.439144pt;}
._2c{width:204.899839pt;}
._33{width:205.812894pt;}
._2e{width:216.253297pt;}
._23{width:218.766332pt;}
._1f{width:220.455911pt;}
._1e{width:260.084216pt;}
._20{width:297.088553pt;}
._12{width:321.984242pt;}
._14{width:333.239568pt;}
._36{width:359.108044pt;}
._13{width:374.292921pt;}
._10{width:379.301925pt;}
._30{width:382.582951pt;}
._25{width:394.179606pt;}
._17{width:397.592897pt;}
._31{width:406.561318pt;}
._1d{width:419.762220pt;}
._29{width:429.387699pt;}
._2f{width:445.916559pt;}
._27{width:455.405507pt;}
._32{width:486.432320pt;}
._2a{width:487.789103pt;}
._37{width:516.162081pt;}
._19{width:526.320888pt;}
._21{width:537.443949pt;}
._34{width:545.490781pt;}
._f{width:558.994612pt;}
._28{width:561.025520pt;}
._2b{width:565.390266pt;}
._16{width:585.114819pt;}
._26{width:588.971838pt;}
._35{width:649.032954pt;}
._11{width:653.922493pt;}
._1a{width:686.097024pt;}
._18{width:704.784790pt;}
._1b{width:716.773974pt;}
._1c{width:1358.779815pt;}
._6{width:1381.350200pt;}
.fs9{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.551467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:63.999467pt;}
.fs4{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:48.000000pt;}
.y169{bottom:101.972433pt;}
.y221{bottom:106.356283pt;}
.y4e{bottom:110.623607pt;}
.y117{bottom:110.665067pt;}
.y19e{bottom:110.665414pt;}
.y11c{bottom:110.665467pt;}
.y273{bottom:110.665867pt;}
.y1cf{bottom:110.666000pt;}
.y25b{bottom:110.666667pt;}
.y2c4{bottom:110.666892pt;}
.y288{bottom:110.667200pt;}
.yf1{bottom:110.668133pt;}
.yd8{bottom:111.200133pt;}
.y371{bottom:116.943284pt;}
.y7e{bottom:121.479067pt;}
.y2c3{bottom:123.366466pt;}
.y4d{bottom:125.290091pt;}
.y1db{bottom:125.784667pt;}
.y168{bottom:125.933733pt;}
.y220{bottom:126.992825pt;}
.y249{bottom:127.974800pt;}
.y272{bottom:127.975200pt;}
.y116{bottom:127.975733pt;}
.y11b{bottom:127.976133pt;}
.y1ce{bottom:127.976667pt;}
.y25a{bottom:127.977333pt;}
.yf0{bottom:127.977467pt;}
.y287{bottom:127.977867pt;}
.yd7{bottom:128.509467pt;}
.y370{bottom:129.641792pt;}
.y167{bottom:130.696000pt;}
.y19d{bottom:130.697163pt;}
.y2a{bottom:131.229333pt;}
.y291{bottom:135.987733pt;}
.y350{bottom:136.294508pt;}
.y2fa{bottom:137.654491pt;}
.y21e{bottom:137.877067pt;}
.y7d{bottom:138.789733pt;}
.y21f{bottom:139.691333pt;}
.y21d{bottom:139.691783pt;}
.y4c{bottom:139.956574pt;}
.y2c2{bottom:140.676117pt;}
.y166{bottom:141.958933pt;}
.y36f{bottom:142.265634pt;}
.y1da{bottom:143.094000pt;}
.y271{bottom:145.360533pt;}
.y115{bottom:145.361067pt;}
.y11a{bottom:145.361467pt;}
.y1cd{bottom:145.362000pt;}
.y259{bottom:145.362667pt;}
.yef{bottom:145.362800pt;}
.y286{bottom:145.363200pt;}
.yd6{bottom:145.894800pt;}
.y165{bottom:146.721200pt;}
.y19c{bottom:147.326289pt;}
.y34f{bottom:148.993016pt;}
.y29{bottom:149.900000pt;}
.y2f9{bottom:150.278334pt;}
.y248{bottom:150.652556pt;}
.y319{bottom:151.638317pt;}
.y21c{bottom:152.315625pt;}
.y2c1{bottom:153.299959pt;}
.y4b{bottom:154.623057pt;}
.y7c{bottom:156.100400pt;}
.y164{bottom:157.984133pt;}
.y36e{bottom:159.651016pt;}
.y1d9{bottom:160.404667pt;}
.y290{bottom:161.310400pt;}
.y119{bottom:162.670800pt;}
.y114{bottom:162.671733pt;}
.y142{bottom:162.672133pt;}
.y1cc{bottom:162.672667pt;}
.y258{bottom:162.673333pt;}
.yee{bottom:162.673467pt;}
.y285{bottom:162.673867pt;}
.y2f8{bottom:162.976842pt;}
.yd5{bottom:163.205467pt;}
.y19b{bottom:164.032213pt;}
.y318{bottom:164.262159pt;}
.y21b{bottom:165.014133pt;}
.y34e{bottom:166.303733pt;}
.y270{bottom:167.962822pt;}
.y28{bottom:168.570667pt;}
.y4a{bottom:169.289541pt;}
.y247{bottom:169.322800pt;}
.y2c0{bottom:170.685342pt;}
.y36d{bottom:172.274859pt;}
.y7b{bottom:173.409733pt;}
.y163{bottom:173.934333pt;}
.y358{bottom:176.961733pt;}
.y1d8{bottom:177.790000pt;}
.y34d{bottom:178.926509pt;}
.y113{bottom:179.981067pt;}
.y111{bottom:179.981467pt;}
.y1cb{bottom:179.982000pt;}
.y257{bottom:179.982667pt;}
.y284{bottom:179.983200pt;}
.yed{bottom:179.984133pt;}
.y2f7{bottom:180.287558pt;}
.yd4{bottom:180.516133pt;}
.y19a{bottom:180.662405pt;}
.y317{bottom:181.648608pt;}
.y2bf{bottom:183.309184pt;}
.y49{bottom:183.956024pt;}
.y118{bottom:185.348000pt;}
.y112{bottom:185.952667pt;}
.y26f{bottom:186.633067pt;}
.y27{bottom:187.241333pt;}
.y36c{bottom:189.660241pt;}
.y162{bottom:189.959733pt;}
.y7a{bottom:190.795067pt;}
.y2f6{bottom:192.987133pt;}
.y316{bottom:194.271384pt;}
.y141{bottom:195.099200pt;}
.y1d7{bottom:195.100667pt;}
.y2be{bottom:196.008758pt;}
.y34c{bottom:196.312958pt;}
.y110{bottom:197.366800pt;}
.y1ca{bottom:197.367333pt;}
.y256{bottom:197.368000pt;}
.y283{bottom:197.368533pt;}
.yec{bottom:197.369467pt;}
.y10e{bottom:197.370667pt;}
.y140{bottom:197.370800pt;}
.yd3{bottom:197.901467pt;}
.y48{bottom:198.622507pt;}
.y199{bottom:200.466958pt;}
.y36b{bottom:202.284084pt;}
.y10f{bottom:203.262933pt;}
.y26{bottom:205.912000pt;}
.y161{bottom:205.985133pt;}
.y246{bottom:206.291333pt;}
.y315{bottom:206.970958pt;}
.y79{bottom:208.105733pt;}
.y34b{bottom:208.935734pt;}
.y2f5{bottom:210.296783pt;}
.y28f{bottom:212.031467pt;}
.y1d6{bottom:212.411333pt;}
.y198{bottom:213.089733pt;}
.y47{bottom:213.288991pt;}
.y2bd{bottom:213.318409pt;}
.y1c9{bottom:214.678000pt;}
.y255{bottom:214.678667pt;}
.y282{bottom:214.679200pt;}
.y10d{bottom:214.680000pt;}
.yeb{bottom:214.680133pt;}
.y13f{bottom:214.681467pt;}
.y36a{bottom:214.983658pt;}
.yd2{bottom:215.210800pt;}
.y160{bottom:221.933733pt;}
.y2f4{bottom:222.996358pt;}
.y26e{bottom:223.599867pt;}
.y245{bottom:223.600667pt;}
.y314{bottom:224.280609pt;}
.y25{bottom:224.582667pt;}
.y78{bottom:225.416400pt;}
.y2bc{bottom:226.017983pt;}
.y34a{bottom:226.322183pt;}
.y15f{bottom:226.696000pt;}
.y369{bottom:227.607500pt;}
.y46{bottom:227.955474pt;}
.y1d5{bottom:229.796667pt;}
.y1c8{bottom:231.988667pt;}
.y254{bottom:231.989333pt;}
.yea{bottom:231.989467pt;}
.y281{bottom:231.989867pt;}
.y10c{bottom:231.990667pt;}
.y13e{bottom:231.992133pt;}
.yd1{bottom:232.521467pt;}
.y2f3{bottom:235.619134pt;}
.y313{bottom:236.980183pt;}
.y15e{bottom:237.959521pt;}
.y2bb{bottom:238.641826pt;}
.y348{bottom:238.946025pt;}
.y349{bottom:239.323621pt;}
.y26d{bottom:240.909200pt;}
.y244{bottom:240.911333pt;}
.y196{bottom:241.965333pt;}
.y45{bottom:242.621957pt;}
.y77{bottom:242.801733pt;}
.y24{bottom:243.253333pt;}
.y197{bottom:244.157467pt;}
.y195{bottom:244.158000pt;}
.y368{bottom:244.992883pt;}
.y1d4{bottom:247.106000pt;}
.y1c7{bottom:249.298000pt;}
.y253{bottom:249.298667pt;}
.y280{bottom:249.299200pt;}
.ye9{bottom:249.300133pt;}
.y10b{bottom:249.301333pt;}
.y13d{bottom:249.301467pt;}
.y312{bottom:249.604025pt;}
.yd0{bottom:249.906800pt;}
.y28e{bottom:250.734667pt;}
.y2f2{bottom:252.929850pt;}
.y15d{bottom:253.984921pt;}
.y2ba{bottom:256.027208pt;}
.y347{bottom:256.331408pt;}
.y44{bottom:257.288441pt;}
.y367{bottom:257.616725pt;}
.y26c{bottom:258.294533pt;}
.y243{bottom:258.296667pt;}
.y76{bottom:260.112400pt;}
.y194{bottom:261.468667pt;}
.y23{bottom:261.924000pt;}
.y1d3{bottom:264.416667pt;}
.y2f1{bottom:265.628358pt;}
.y1c6{bottom:266.683333pt;}
.y27f{bottom:266.684533pt;}
.y252{bottom:266.685333pt;}
.ye8{bottom:266.685467pt;}
.y10a{bottom:266.686667pt;}
.y13c{bottom:266.686800pt;}
.y311{bottom:266.989408pt;}
.ycf{bottom:267.217467pt;}
.y28d{bottom:268.044000pt;}
.y2b9{bottom:268.651050pt;}
.y346{bottom:268.955250pt;}
.y366{bottom:270.315233pt;}
.y43{bottom:271.954924pt;}
.y26b{bottom:275.605200pt;}
.y242{bottom:275.607333pt;}
.y75{bottom:277.421733pt;}
.y193{bottom:278.854000pt;}
.y15c{bottom:278.929675pt;}
.y310{bottom:279.613250pt;}
.y22{bottom:280.594667pt;}
.y345{bottom:281.653758pt;}
.y1d2{bottom:281.727333pt;}
.y2f0{bottom:282.939075pt;}
.y251{bottom:283.994667pt;}
.y27e{bottom:283.995200pt;}
.ye7{bottom:283.996133pt;}
.y109{bottom:283.997333pt;}
.y13b{bottom:283.997467pt;}
.yce{bottom:284.528133pt;}
.y2b8{bottom:286.036433pt;}
.y1c5{bottom:289.360533pt;}
.y28c{bottom:290.721200pt;}
.y30f{bottom:292.311758pt;}
.y26a{bottom:292.915867pt;}
.y241{bottom:292.916667pt;}
.y42{bottom:294.631974pt;}
.y74{bottom:294.807067pt;}
.y15b{bottom:295.634533pt;}
.y159{bottom:295.634950pt;}
.y2ef{bottom:295.638650pt;}
.y192{bottom:296.164667pt;}
.y2b7{bottom:298.660275pt;}
.y344{bottom:298.964475pt;}
.y1d1{bottom:299.112667pt;}
.y21{bottom:299.265333pt;}
.y365{bottom:300.324458pt;}
.y15a{bottom:300.396800pt;}
.y250{bottom:301.305333pt;}
.ye6{bottom:301.305467pt;}
.y27d{bottom:301.305867pt;}
.y108{bottom:301.306667pt;}
.y13a{bottom:301.308133pt;}
.ycd{bottom:301.837467pt;}
.y30e{bottom:304.935600pt;}
.y2ee{bottom:308.261425pt;}
.y41{bottom:309.298457pt;}
.y269{bottom:310.301200pt;}
.y240{bottom:310.302000pt;}
.y190{bottom:311.281867pt;}
.y2b6{bottom:311.358783pt;}
.y343{bottom:311.662983pt;}
.y73{bottom:312.117733pt;}
.y158{bottom:312.265142pt;}
.y364{bottom:312.948300pt;}
.y191{bottom:313.474000pt;}
.y18f{bottom:313.475067pt;}
.y1d0{bottom:316.422000pt;}
.y20{bottom:317.936000pt;}
.y24f{bottom:318.690667pt;}
.ye5{bottom:318.690800pt;}
.y27c{bottom:318.691200pt;}
.y107{bottom:318.692000pt;}
.y139{bottom:318.693467pt;}
.ycc{bottom:319.222800pt;}
.y30d{bottom:322.320983pt;}
.y40{bottom:323.964940pt;}
.y341{bottom:324.286825pt;}
.y342{bottom:324.664420pt;}
.y2ed{bottom:325.647875pt;}
.y268{bottom:327.610533pt;}
.y1c4{bottom:327.611067pt;}
.y23f{bottom:327.612667pt;}
.y2b5{bottom:328.669500pt;}
.y157{bottom:328.970000pt;}
.y155{bottom:328.970417pt;}
.y72{bottom:329.428400pt;}
.y363{bottom:330.257951pt;}
.y18e{bottom:330.785733pt;}
.y156{bottom:333.732267pt;}
.y30c{bottom:334.944825pt;}
.y24e{bottom:336.001333pt;}
.ye4{bottom:336.001467pt;}
.y27b{bottom:336.001867pt;}
.y106{bottom:336.002667pt;}
.y138{bottom:336.002800pt;}
.ycb{bottom:336.533467pt;}
.y1f{bottom:336.606667pt;}
.y28b{bottom:337.437067pt;}
.y2ec{bottom:338.270650pt;}
.y3f{bottom:338.631424pt;}
.y2b4{bottom:341.368008pt;}
.y340{bottom:341.597542pt;}
.y362{bottom:342.957525pt;}
.y267{bottom:344.921200pt;}
.y1c3{bottom:344.921733pt;}
.y23e{bottom:344.923333pt;}
.y154{bottom:345.600609pt;}
.y71{bottom:346.813733pt;}
.y30b{bottom:347.644400pt;}
.y18d{bottom:348.171067pt;}
.y3e{bottom:353.297907pt;}
.y24d{bottom:353.310667pt;}
.y27a{bottom:353.311200pt;}
.ye3{bottom:353.312133pt;}
.y105{bottom:353.313333pt;}
.y137{bottom:353.313467pt;}
.yca{bottom:353.844133pt;}
.y2b3{bottom:353.991850pt;}
.y33f{bottom:354.296050pt;}
.y28a{bottom:354.746400pt;}
.y1e{bottom:355.277333pt;}
.y2eb{bottom:355.657100pt;}
.y361{bottom:355.883230pt;}
.y266{bottom:362.231867pt;}
.y1c2{bottom:362.232400pt;}
.y23d{bottom:362.232667pt;}
.y153{bottom:362.305467pt;}
.y151{bottom:362.305883pt;}
.y70{bottom:364.124400pt;}
.y30a{bottom:364.954050pt;}
.y18c{bottom:365.481733pt;}
.y203{bottom:365.556700pt;}
.y33e{bottom:366.995625pt;}
.y152{bottom:367.067600pt;}
.y3d{bottom:367.964390pt;}
.y2ea{bottom:368.279875pt;}
.y24c{bottom:370.696000pt;}
.y279{bottom:370.696533pt;}
.ye2{bottom:370.697467pt;}
.y104{bottom:370.698667pt;}
.y136{bottom:370.698800pt;}
.yc9{bottom:371.229467pt;}
.y2b2{bottom:371.302567pt;}
.ya7{bottom:371.606767pt;}
.y360{bottom:372.966750pt;}
.y1d{bottom:373.948000pt;}
.y289{bottom:377.423600pt;}
.y309{bottom:377.653625pt;}
.y150{bottom:378.936075pt;}
.y265{bottom:379.617200pt;}
.y1c1{bottom:379.617733pt;}
.y23c{bottom:379.619333pt;}
.y6f{bottom:381.433733pt;}
.y18b{bottom:382.792400pt;}
.y2b1{bottom:384.001075pt;}
.y33d{bottom:384.305275pt;}
.y2e9{bottom:385.666325pt;}
.ya6{bottom:386.271117pt;}
.y278{bottom:388.007200pt;}
.ye1{bottom:388.008133pt;}
.y103{bottom:388.009333pt;}
.y135{bottom:388.009467pt;}
.yc8{bottom:388.540133pt;}
.y202{bottom:389.518000pt;}
.y308{bottom:390.277467pt;}
.y3c{bottom:390.641440pt;}
.y1c{bottom:392.618667pt;}
.y24b{bottom:393.298156pt;}
.y201{bottom:394.280267pt;}
.y357{bottom:394.963275pt;}
.y14f{bottom:395.640933pt;}
.y14d{bottom:395.641217pt;}
.y1c0{bottom:396.927067pt;}
.y264{bottom:396.927867pt;}
.y23b{bottom:396.928667pt;}
.y2e8{bottom:398.290167pt;}
.y6e{bottom:398.744400pt;}
.y18a{bottom:400.177733pt;}
.y14e{bottom:400.403067pt;}
.ya5{bottom:400.935467pt;}
.y2b0{bottom:401.311792pt;}
.y33c{bottom:401.615992pt;}
.y306{bottom:402.975975pt;}
.y307{bottom:403.278904pt;}
.ye0{bottom:405.317467pt;}
.y277{bottom:405.317867pt;}
.y102{bottom:405.318667pt;}
.y134{bottom:405.320133pt;}
.y200{bottom:405.543200pt;}
.yc7{bottom:405.849467pt;}
.y356{bottom:407.662850pt;}
.y1ff{bottom:410.229867pt;}
.y2e7{bottom:410.988675pt;}
.y1b{bottom:411.289333pt;}
.y24a{bottom:411.968400pt;}
.y14c{bottom:412.271409pt;}
.y3b{bottom:413.318490pt;}
.y2af{bottom:414.010300pt;}
.y263{bottom:414.237200pt;}
.y1bf{bottom:414.237733pt;}
.y23a{bottom:414.239333pt;}
.y33b{bottom:414.314500pt;}
.ya4{bottom:415.599817pt;}
.y6d{bottom:416.129733pt;}
.y189{bottom:417.487067pt;}
.y305{bottom:420.286692pt;}
.y1fe{bottom:421.492800pt;}
.ydf{bottom:422.702800pt;}
.y276{bottom:422.703200pt;}
.y101{bottom:422.704000pt;}
.y133{bottom:422.705467pt;}
.yc6{bottom:423.234800pt;}
.y1fd{bottom:426.255067pt;}
.y2ae{bottom:426.634142pt;}
.y2e6{bottom:428.299392pt;}
.y14b{bottom:428.976267pt;}
.y149{bottom:428.977255pt;}
.y1a{bottom:429.884000pt;}
.ya3{bottom:430.264167pt;}
.y262{bottom:431.622533pt;}
.y1be{bottom:431.623067pt;}
.y239{bottom:431.624667pt;}
.y33a{bottom:431.625217pt;}
.y304{bottom:432.985200pt;}
.y6c{bottom:433.440400pt;}
.y14a{bottom:433.662933pt;}
.y188{bottom:434.797733pt;}
.y3a{bottom:435.995540pt;}
.y1fc{bottom:437.518000pt;}
.y275{bottom:440.012533pt;}
.yde{bottom:440.013467pt;}
.y100{bottom:440.014667pt;}
.y132{bottom:440.014800pt;}
.yc5{bottom:440.545467pt;}
.y2e5{bottom:440.997900pt;}
.y1fb{bottom:442.280267pt;}
.y2ad{bottom:444.019525pt;}
.y339{bottom:444.323725pt;}
.ya2{bottom:444.928517pt;}
.y148{bottom:445.606381pt;}
.y303{bottom:445.609042pt;}
.y19{bottom:448.554667pt;}
.y261{bottom:448.933200pt;}
.y1bd{bottom:448.933733pt;}
.y238{bottom:448.935333pt;}
.y355{bottom:450.295917pt;}
.y6b{bottom:450.749733pt;}
.y187{bottom:452.183067pt;}
.y2e4{bottom:453.621742pt;}
.y2ac{bottom:456.643367pt;}
.y337{bottom:456.947567pt;}
.y338{bottom:457.174764pt;}
.ydd{bottom:457.324133pt;}
.yff{bottom:457.325333pt;}
.y131{bottom:457.325467pt;}
.yc4{bottom:457.856133pt;}
.y35f{bottom:458.308617pt;}
.y39{bottom:458.672590pt;}
.ya1{bottom:459.592867pt;}
.y1fa{bottom:462.541549pt;}
.y274{bottom:462.689733pt;}
.y302{bottom:462.994425pt;}
.y20f{bottom:463.069200pt;}
.y147{bottom:465.410933pt;}
.y260{bottom:466.243867pt;}
.y1bc{bottom:466.244400pt;}
.y237{bottom:466.244667pt;}
.y18{bottom:467.225333pt;}
.y6a{bottom:468.135067pt;}
.y186{bottom:469.493733pt;}
.y2e3{bottom:470.931392pt;}
.y38{bottom:473.339073pt;}
.y2ab{bottom:474.029816pt;}
.ya0{bottom:474.258284pt;}
.y336{bottom:474.332950pt;}
.ydc{bottom:474.633467pt;}
.yfe{bottom:474.634667pt;}
.y130{bottom:474.636133pt;}
.yc3{bottom:475.241467pt;}
.y301{bottom:475.618267pt;}
.y1f9{bottom:479.170675pt;}
.y20e{bottom:480.379867pt;}
.y25f{bottom:483.629200pt;}
.y1bb{bottom:483.629733pt;}
.y35d{bottom:483.630967pt;}
.y235{bottom:483.631333pt;}
.y35e{bottom:483.858164pt;}
.y236{bottom:484.311333pt;}
.y69{bottom:485.445733pt;}
.y17{bottom:485.896000pt;}
.y2aa{bottom:486.652592pt;}
.y185{bottom:486.803067pt;}
.y335{bottom:486.956792pt;}
.y2e2{bottom:488.317841pt;}
.y300{bottom:488.619704pt;}
.y9f{bottom:488.922634pt;}
.ydb{bottom:492.018800pt;}
.yfd{bottom:492.020000pt;}
.y12f{bottom:492.021467pt;}
.yc2{bottom:492.550800pt;}
.y354{bottom:492.928984pt;}
.y1f8{bottom:495.876599pt;}
.y37{bottom:496.016123pt;}
.y146{bottom:496.403600pt;}
.y20d{bottom:497.765200pt;}
.y25e{bottom:500.938533pt;}
.y1ba{bottom:500.939067pt;}
.y233{bottom:500.940667pt;}
.y2e1{bottom:500.941684pt;}
.y234{bottom:501.620667pt;}
.y68{bottom:502.756400pt;}
.y2a9{bottom:503.963309pt;}
.y334{bottom:504.267509pt;}
.y2ff{bottom:505.627492pt;}
.yfc{bottom:509.330667pt;}
.y12e{bottom:509.332133pt;}
.y184{bottom:509.480822pt;}
.yc1{bottom:509.861467pt;}
.y36{bottom:510.682606pt;}
.y9e{bottom:511.599684pt;}
.y1f7{bottom:512.505725pt;}
.y35c{bottom:513.640192pt;}
.y145{bottom:513.788933pt;}
.yda{bottom:514.696866pt;}
.y20c{bottom:515.075867pt;}
.y16{bottom:515.225067pt;}
.y2a6{bottom:516.661817pt;}
.y2a7{bottom:516.889014pt;}
.y2a8{bottom:516.964746pt;}
.y333{bottom:516.966017pt;}
.y1b9{bottom:518.249733pt;}
.y232{bottom:518.251333pt;}
.y2e0{bottom:518.327066pt;}
.y67{bottom:520.141733pt;}
.y25d{bottom:523.616289pt;}
.y35{bottom:525.349090pt;}
.y9d{bottom:526.264034pt;}
.yfb{bottom:526.641333pt;}
.y12d{bottom:526.641467pt;}
.yc0{bottom:527.172133pt;}
.y183{bottom:528.151067pt;}
.y1f6{bottom:529.211649pt;}
.y332{bottom:529.665591pt;}
.y2df{bottom:530.950908pt;}
.y2fe{bottom:531.328504pt;}
.y20b{bottom:532.385200pt;}
.y2a5{bottom:533.972534pt;}
.y1b8{bottom:535.635067pt;}
.y231{bottom:535.636667pt;}
.y144{bottom:536.466866pt;}
.y66{bottom:537.452400pt;}
.yd9{bottom:538.658267pt;}
.y34{bottom:540.015573pt;}
.y9c{bottom:540.928384pt;}
.y25c{bottom:542.286533pt;}
.y2de{bottom:543.649416pt;}
.yfa{bottom:544.026667pt;}
.y12c{bottom:544.026800pt;}
.ybf{bottom:544.557467pt;}
.y1f5{bottom:545.841841pt;}
.y2a4{bottom:546.671042pt;}
.y331{bottom:546.975242pt;}
.y2fd{bottom:548.260559pt;}
.y20a{bottom:549.770533pt;}
.y1b7{bottom:552.945733pt;}
.y230{bottom:552.947333pt;}
.y33{bottom:554.682056pt;}
.y65{bottom:554.761733pt;}
.y9b{bottom:555.592734pt;}
.y35b{bottom:556.273259pt;}
.y2a3{bottom:559.370616pt;}
.y143{bottom:560.428267pt;}
.y2dd{bottom:560.960133pt;}
.yf9{bottom:561.337333pt;}
.y12b{bottom:561.337467pt;}
.ybe{bottom:561.868133pt;}
.y1f4{bottom:562.546699pt;}
.y330{bottom:564.285958pt;}
.y209{bottom:567.081200pt;}
.y182{bottom:568.365867pt;}
.y15{bottom:568.846000pt;}
.y376{bottom:568.972833pt;}
.y32{bottom:569.348540pt;}
.y1b6{bottom:570.255067pt;}
.y22f{bottom:570.256667pt;}
.y9a{bottom:570.257084pt;}
.y64{bottom:572.147067pt;}
.y2dc{bottom:573.658641pt;}
.y2a2{bottom:576.680267pt;}
.y2a0{bottom:576.681575pt;}
.y32f{bottom:576.984466pt;}
.yf8{bottom:578.646667pt;}
.y12a{bottom:578.648133pt;}
.y1f3{bottom:579.176891pt;}
.ybd{bottom:579.177467pt;}
.y2a1{bottom:581.442400pt;}
.y14{bottom:582.221833pt;}
.y208{bottom:584.391867pt;}
.y99{bottom:584.921434pt;}
.y181{bottom:585.676533pt;}
.y2db{bottom:586.282483pt;}
.y22e{bottom:587.567333pt;}
.y29f{bottom:589.304350pt;}
.y63{bottom:589.457733pt;}
.y32e{bottom:589.608309pt;}
.y2fc{bottom:590.969358pt;}
.y31{bottom:591.193600pt;}
.y1b5{bottom:592.932267pt;}
.y13{bottom:595.523000pt;}
.y1f2{bottom:595.881749pt;}
.yf7{bottom:596.032000pt;}
.y129{bottom:596.033467pt;}
.ybc{bottom:596.562800pt;}
.y35a{bottom:598.982058pt;}
.y98{bottom:599.661516pt;}
.y207{bottom:601.777200pt;}
.y180{bottom:602.987200pt;}
.y2da{bottom:603.592134pt;}
.y22d{bottom:604.952667pt;}
.y29e{bottom:606.690800pt;}
.y62{bottom:606.768400pt;}
.y32d{bottom:606.993691pt;}
.y375{bottom:611.604834pt;}
.y1f1{bottom:612.511941pt;}
.yf6{bottom:613.342667pt;}
.y128{bottom:613.342800pt;}
.ybb{bottom:613.873467pt;}
.y97{bottom:614.326933pt;}
.y2d9{bottom:616.291708pt;}
.y206{bottom:619.086533pt;}
.y29d{bottom:619.313575pt;}
.y32b{bottom:619.617533pt;}
.y32c{bottom:619.996195pt;}
.y17f{bottom:620.372533pt;}
.y12{bottom:622.210666pt;}
.y22c{bottom:622.263333pt;}
.y61{bottom:624.077733pt;}
.y95{bottom:628.991283pt;}
.y1f0{bottom:629.217866pt;}
.y96{bottom:629.293146pt;}
.yf5{bottom:630.653333pt;}
.y127{bottom:630.653467pt;}
.y1b4{bottom:631.182667pt;}
.yba{bottom:631.184133pt;}
.y329{bottom:632.317108pt;}
.y32a{bottom:632.618971pt;}
.y2d8{bottom:633.602425pt;}
.y11{bottom:635.511833pt;}
.y29c{bottom:636.700024pt;}
.y17e{bottom:637.681867pt;}
.y17c{bottom:637.683200pt;}
.y22b{bottom:639.572667pt;}
.y60{bottom:641.464400pt;}
.y374{bottom:641.614059pt;}
.y205{bottom:641.764289pt;}
.y17d{bottom:643.577867pt;}
.y94{bottom:643.655633pt;}
.y1ef{bottom:645.846991pt;}
.y2d7{bottom:646.300933pt;}
.yf4{bottom:647.962667pt;}
.y126{bottom:647.964133pt;}
.y1b3{bottom:648.568000pt;}
.yb9{bottom:648.569467pt;}
.y10{bottom:648.887666pt;}
.y29b{bottom:649.322800pt;}
.y328{bottom:649.626758pt;}
.y353{bottom:650.987808pt;}
.y17b{bottom:654.992533pt;}
.y22a{bottom:656.959333pt;}
.y93{bottom:658.319983pt;}
.y5f{bottom:658.773733pt;}
.y2d6{bottom:658.924775pt;}
.y204{bottom:660.434533pt;}
.yf{bottom:662.188833pt;}
.y1ee{bottom:662.552916pt;}
.y352{bottom:663.611650pt;}
.yf3{bottom:665.348000pt;}
.y125{bottom:665.349467pt;}
.y1b2{bottom:665.878667pt;}
.yb8{bottom:665.880133pt;}
.y327{bottom:666.937475pt;}
.y29a{bottom:667.313333pt;}
.y30{bottom:668.444400pt;}
.y359{bottom:671.624350pt;}
.y17a{bottom:672.377867pt;}
.y178{bottom:672.378800pt;}
.y92{bottom:672.984333pt;}
.y229{bottom:674.268667pt;}
.ye{bottom:675.564666pt;}
.y5e{bottom:676.084400pt;}
.y2d5{bottom:676.310158pt;}
.y179{bottom:678.274000pt;}
.y1ed{bottom:679.183108pt;}
.y325{bottom:679.635983pt;}
.y326{bottom:679.863180pt;}
.y124{bottom:682.660133pt;}
.y1b1{bottom:683.189333pt;}
.yb7{bottom:683.189467pt;}
.y2f{bottom:683.791067pt;}
.y373{bottom:684.322858pt;}
.y91{bottom:687.648683pt;}
.yf2{bottom:688.025067pt;}
.yd{bottom:688.865833pt;}
.y2d4{bottom:688.934000pt;}
.y177{bottom:689.688133pt;}
.y175{bottom:689.689067pt;}
.y21a{bottom:690.671217pt;}
.y228{bottom:691.579333pt;}
.y5d{bottom:693.469733pt;}
.y176{bottom:695.584133pt;}
.y1ec{bottom:695.887966pt;}
.y324{bottom:696.946700pt;}
.y2e{bottom:699.137733pt;}
.y123{bottom:699.969467pt;}
.y1b0{bottom:700.498667pt;}
.yb6{bottom:700.500133pt;}
.y2fb{bottom:701.633575pt;}
.yc{bottom:702.167000pt;}
.y90{bottom:702.313033pt;}
.y2d3{bottom:706.319383pt;}
.y174{bottom:706.998400pt;}
.y227{bottom:708.964667pt;}
.y5c{bottom:710.780400pt;}
.y219{bottom:711.307759pt;}
.y1eb{bottom:712.518158pt;}
.y323{bottom:714.332083pt;}
.y2d{bottom:714.404400pt;}
.yb{bottom:715.542833pt;}
.y8f{bottom:716.978450pt;}
.y122{bottom:717.354800pt;}
.y1af{bottom:717.885333pt;}
.yb5{bottom:717.885467pt;}
.y2d2{bottom:718.943225pt;}
.y217{bottom:722.192000pt;}
.y218{bottom:724.006267pt;}
.y216{bottom:724.006717pt;}
.y172{bottom:724.309067pt;}
.y226{bottom:726.275333pt;}
.y321{bottom:726.955925pt;}
.y322{bottom:727.183122pt;}
.y5b{bottom:728.089733pt;}
.ya{bottom:728.844000pt;}
.y1ea{bottom:729.223016pt;}
.y2c{bottom:729.751067pt;}
.y173{bottom:730.280267pt;}
.y8e{bottom:731.642800pt;}
.y121{bottom:734.665467pt;}
.y1ae{bottom:735.194667pt;}
.yb4{bottom:735.196133pt;}
.y215{bottom:736.630559pt;}
.y299{bottom:740.562800pt;}
.y171{bottom:741.694400pt;}
.y16f{bottom:741.694933pt;}
.y225{bottom:743.584667pt;}
.y320{bottom:744.265575pt;}
.y5a{bottom:745.475067pt;}
.y1e9{bottom:745.853208pt;}
.y8d{bottom:746.307150pt;}
.y213{bottom:747.514933pt;}
.y170{bottom:747.590533pt;}
.y2d1{bottom:748.952450pt;}
.y214{bottom:749.329067pt;}
.y212{bottom:749.329517pt;}
.y120{bottom:751.976133pt;}
.y1ad{bottom:752.505333pt;}
.yb3{bottom:752.505467pt;}
.y8{bottom:752.882400pt;}
.y31f{bottom:756.965150pt;}
.y9{bottom:758.173200pt;}
.y16e{bottom:759.005600pt;}
.y224{bottom:760.970000pt;}
.y8c{bottom:760.971500pt;}
.y2d0{bottom:761.652025pt;}
.y211{bottom:761.953359pt;}
.y1e8{bottom:762.483400pt;}
.y59{bottom:762.785733pt;}
.y298{bottom:765.885467pt;}
.y6{bottom:767.546400pt;}
.y11f{bottom:769.361467pt;}
.y1ac{bottom:769.890667pt;}
.yb2{bottom:769.890800pt;}
.y7{bottom:772.837733pt;}
.y2cf{bottom:774.274800pt;}
.y210{bottom:774.651867pt;}
.y8b{bottom:775.635850pt;}
.y16d{bottom:776.316267pt;}
.y1e7{bottom:779.188258pt;}
.y58{bottom:780.096400pt;}
.y223{bottom:783.572156pt;}
.y11e{bottom:786.670800pt;}
.y31e{bottom:786.974375pt;}
.y1ab{bottom:787.201333pt;}
.yb1{bottom:787.201467pt;}
.y8a{bottom:790.300200pt;}
.y297{bottom:791.208133pt;}
.y2ce{bottom:791.661250pt;}
.y16c{bottom:793.701600pt;}
.y1e6{bottom:795.818450pt;}
.y57{bottom:797.405733pt;}
.y31c{bottom:799.598217pt;}
.y31d{bottom:799.824348pt;}
.y5{bottom:800.906533pt;}
.y222{bottom:802.242400pt;}
.y2cd{bottom:804.285092pt;}
.y1aa{bottom:804.510667pt;}
.yb0{bottom:804.512133pt;}
.y89{bottom:804.964550pt;}
.y11d{bottom:809.348000pt;}
.y16b{bottom:811.010933pt;}
.y1e5{bottom:812.523308pt;}
.y56{bottom:814.792400pt;}
.y296{bottom:816.530800pt;}
.y2cc{bottom:816.983600pt;}
.y351{bottom:817.210797pt;}
.y88{bottom:819.629967pt;}
.y1a9{bottom:821.896000pt;}
.y1a7{bottom:821.896933pt;}
.yaf{bottom:821.897467pt;}
.y1a8{bottom:827.792000pt;}
.y1e4{bottom:829.153500pt;}
.y31b{bottom:829.607442pt;}
.y4{bottom:830.834533pt;}
.y55{bottom:832.101733pt;}
.y16a{bottom:833.688133pt;}
.y87{bottom:834.294317pt;}
.y1a6{bottom:839.206267pt;}
.y1a4{bottom:839.207200pt;}
.yae{bottom:839.208133pt;}
.y295{bottom:841.853467pt;}
.y1a5{bottom:845.102267pt;}
.y1e3{bottom:845.859425pt;}
.y2cb{bottom:846.992825pt;}
.y54{bottom:849.412400pt;}
.y1a3{bottom:856.516533pt;}
.y1a1{bottom:856.516933pt;}
.yad{bottom:856.517467pt;}
.y86{bottom:856.971367pt;}
.y2c9{bottom:859.616667pt;}
.y2ca{bottom:859.843864pt;}
.y3{bottom:860.834533pt;}
.y1a2{bottom:862.488133pt;}
.y1e2{bottom:862.488550pt;}
.y53{bottom:866.797733pt;}
.y294{bottom:867.176133pt;}
.y19f{bottom:871.634533pt;}
.y85{bottom:871.635717pt;}
.y31a{bottom:872.316241pt;}
.y1a0{bottom:873.902267pt;}
.yac{bottom:873.902800pt;}
.y2c8{bottom:876.926317pt;}
.y1e1{bottom:879.194475pt;}
.y52{bottom:884.108400pt;}
.y84{bottom:886.300067pt;}
.y2c7{bottom:889.625892pt;}
.y2{bottom:890.834533pt;}
.yab{bottom:891.213467pt;}
.y293{bottom:892.498800pt;}
.y1e0{bottom:895.823600pt;}
.y83{bottom:900.964417pt;}
.y51{bottom:901.417733pt;}
.y2c6{bottom:902.325466pt;}
.yaa{bottom:908.524133pt;}
.y1df{bottom:912.529067pt;}
.y1dd{bottom:912.530139pt;}
.y372{bottom:914.948242pt;}
.y82{bottom:915.628767pt;}
.y1de{bottom:917.291333pt;}
.y292{bottom:917.896133pt;}
.y50{bottom:918.803067pt;}
.y2c5{bottom:919.635117pt;}
.y1{bottom:920.844000pt;}
.ya9{bottom:925.833467pt;}
.y81{bottom:930.293117pt;}
.y1dc{bottom:932.258959pt;}
.y4f{bottom:941.404667pt;}
.ya8{bottom:943.218800pt;}
.y80{bottom:944.957467pt;}
.y7f{bottom:994.393600pt;}
.h10{height:22.041000pt;}
.h13{height:22.069440pt;}
.h4{height:24.828689pt;}
.hf{height:26.663600pt;}
.h11{height:32.671798pt;}
.h1{height:33.066253pt;}
.h6{height:33.108919pt;}
.hb{height:34.772899pt;}
.ha{height:36.052883pt;}
.h5{height:37.082870pt;}
.h3{height:37.248000pt;}
.h8{height:39.266667pt;}
.h9{height:40.000000pt;}
.he{height:49.013333pt;}
.hd{height:49.599587pt;}
.hc{height:49.663586pt;}
.h7{height:63.026667pt;}
.h12{height:65.325820pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:48.000000pt;}
.x38{left:54.878667pt;}
.xe{left:63.496000pt;}
.x11{left:88.138165pt;}
.x39{left:229.795200pt;}
.x1{left:266.683333pt;}
.x3d{left:271.748000pt;}
.x1e{left:273.562133pt;}
.x48{left:278.023282pt;}
.x14{left:278.929067pt;}
.xf{left:282.632667pt;}
.x43{left:283.842400pt;}
.x15{left:289.738533pt;}
.x3e{left:291.779467pt;}
.x44{left:305.989323pt;}
.x29{left:311.659733pt;}
.x52{left:314.229547pt;}
.x51{left:316.042858pt;}
.x55{left:318.991282pt;}
.x3a{left:324.207867pt;}
.x22{left:327.533733pt;}
.x4b{left:333.958367pt;}
.x23{left:335.092800pt;}
.x1d{left:337.436133pt;}
.x1c{left:342.122800pt;}
.xc{left:344.995200pt;}
.x2{left:348.321200pt;}
.x3f{left:355.275467pt;}
.x4a{left:357.542073pt;}
.x3{left:360.642400pt;}
.x40{left:375.231467pt;}
.x47{left:377.197509pt;}
.x53{left:380.748183pt;}
.x1a{left:389.896000pt;}
.x4c{left:394.052550pt;}
.x1b{left:396.321200pt;}
.x30{left:403.729067pt;}
.x49{left:411.136069pt;}
.x18{left:423.533733pt;}
.x4{left:443.414133pt;}
.x45{left:445.984133pt;}
.x46{left:455.281867pt;}
.x10{left:456.718000pt;}
.x31{left:462.840933pt;}
.x1f{left:467.225067pt;}
.x32{left:468.736933pt;}
.x5{left:470.626667pt;}
.x20{left:471.987333pt;}
.x19{left:473.348000pt;}
.x4e{left:496.779799pt;}
.x2a{left:522.859733pt;}
.x37{left:533.064533pt;}
.x4f{left:536.464636pt;}
.x6{left:537.977867pt;}
.x2b{left:542.740133pt;}
.x2c{left:546.292800pt;}
.x50{left:547.575964pt;}
.x7{left:550.299200pt;}
.x54{left:561.635715pt;}
.x33{left:563.376267pt;}
.x27{left:587.716533pt;}
.x3b{left:610.318000pt;}
.x41{left:613.792667pt;}
.x28{left:617.499200pt;}
.x34{left:625.587333pt;}
.x4d{left:627.021371pt;}
.x3c{left:630.274000pt;}
.x8{left:637.984133pt;}
.x42{left:640.854000pt;}
.x9{left:655.218800pt;}
.x12{left:662.475467pt;}
.x13{left:671.546400pt;}
.x16{left:677.366800pt;}
.x2f{left:711.760533pt;}
.x24{left:712.970000pt;}
.x35{left:715.766800pt;}
.x17{left:717.807867pt;}
.x25{left:719.319600pt;}
.x26{left:726.878667pt;}
.x2d{left:734.362133pt;}
.x36{left:735.420400pt;}
.xa{left:739.955867pt;}
.x2e{left:741.921200pt;}
.xb{left:757.190533pt;}
.x21{left:758.324400pt;}
}




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