
    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_202b078b64a4e32a95f32b68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a2e798cc96aa820f069094eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_be43dc63e9bf6feb3b819ca6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.068000;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_c4332239e3c573cc097da7a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.076000;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_39ed4c0613db28d9c22fbd64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943000;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_cb63e55fd92e1da9d389a930.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.996000;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_65045979b3fbb5ff0c1336a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.871094;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_972094ed156dd0ba3e4b6411.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.780762;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_ceca9462908f52d4b47d164f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987305;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_dafe581ee43ba49504331296.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.681641;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_db09e66c7b397be6a3950fb4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978000;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_a0130561625873a536049180.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.681000;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_d5e6d8fe12fc216b0b5ccb20.woff2')format("woff");}.fff{font-family:fff;line-height:0.980469;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_82db151137e5347b5a5e2fd8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938000;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_5555e7ff18fc64606e45fb36.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m2{transform:matrix(0.214252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214252,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.663568px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:17.284353px;}
.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;}
}
.ws5{word-spacing:-95.641200px;}
.ws4{word-spacing:-47.820600px;}
.ws1{word-spacing:-45.011177px;}
.ws47{word-spacing:-38.029123px;}
.wse{word-spacing:-37.329373px;}
.wsf{word-spacing:-37.180650px;}
.wsc{word-spacing:-32.727300px;}
.ws57{word-spacing:-29.887800px;}
.ws87{word-spacing:-27.098204px;}
.ws12a{word-spacing:-26.574568px;}
.ws10e{word-spacing:-26.050931px;}
.ws14f{word-spacing:-25.985476px;}
.ws145{word-spacing:-25.200021px;}
.ws114{word-spacing:-25.134566px;}
.ws60{word-spacing:-25.003657px;}
.wsb9{word-spacing:-24.545475px;}
.ws14b{word-spacing:-24.283657px;}
.ws8e{word-spacing:-23.760020px;}
.ws123{word-spacing:-23.236383px;}
.wsfe{word-spacing:-23.105474px;}
.ws7e{word-spacing:-22.909110px;}
.wsb3{word-spacing:-22.647292px;}
.ws2{word-spacing:-22.416000px;}
.ws167{word-spacing:-22.385473px;}
.ws148{word-spacing:-22.123655px;}
.ws157{word-spacing:-22.058200px;}
.ws109{word-spacing:-21.992746px;}
.ws55{word-spacing:-21.927291px;}
.ws9e{word-spacing:-21.796382px;}
.ws4e{word-spacing:-21.730927px;}
.ws49{word-spacing:-21.665473px;}
.wsf2{word-spacing:-21.600018px;}
.ws159{word-spacing:-21.534563px;}
.ws34{word-spacing:-21.519300px;}
.wscd{word-spacing:-21.338200px;}
.ws12f{word-spacing:-20.945472px;}
.ws142{word-spacing:-20.749108px;}
.ws31{word-spacing:-20.683654px;}
.wsca{word-spacing:-20.552744px;}
.wsd0{word-spacing:-20.421835px;}
.ws115{word-spacing:-20.225471px;}
.wsf6{word-spacing:-20.094562px;}
.ws10c{word-spacing:-19.963653px;}
.ws44{word-spacing:-19.898198px;}
.ws54{word-spacing:-19.767289px;}
.wsb0{word-spacing:-19.570925px;}
.ws8{word-spacing:-19.374562px;}
.ws33{word-spacing:-19.047289px;}
.ws10{word-spacing:-18.981834px;}
.wsa1{word-spacing:-18.785470px;}
.wsf5{word-spacing:-18.720016px;}
.wsbc{word-spacing:-18.654561px;}
.wsbe{word-spacing:-18.523652px;}
.ws7{word-spacing:-18.458197px;}
.ws39{word-spacing:-18.392743px;}
.ws40{word-spacing:-17.934560px;}
.wsde{word-spacing:-17.869106px;}
.ws13d{word-spacing:-17.672742px;}
.ws2a{word-spacing:-17.607287px;}
.ws43{word-spacing:-17.541833px;}
.ws3b{word-spacing:-17.410924px;}
.ws9{word-spacing:-17.018196px;}
.ws25{word-spacing:-16.625468px;}
.ws27{word-spacing:-16.572225px;}
.ws26{word-spacing:-16.568460px;}
.ws28{word-spacing:-16.568278px;}
.ws29{word-spacing:-16.560014px;}
.ws6{word-spacing:-16.504103px;}
.ws111{word-spacing:-16.494559px;}
.wsa{word-spacing:-16.429105px;}
.wsb{word-spacing:-16.363650px;}
.wsef{word-spacing:-16.232741px;}
.ws32{word-spacing:-16.036377px;}
.wsc6{word-spacing:-15.709104px;}
.ws3f{word-spacing:-15.512740px;}
.ws22{word-spacing:-15.447381px;}
.ws24{word-spacing:-15.447286px;}
.ws21{word-spacing:-15.443384px;}
.ws23{word-spacing:-15.440560px;}
.ws20{word-spacing:-15.439801px;}
.ws13c{word-spacing:-15.120013px;}
.ws41{word-spacing:-15.054558px;}
.ws51{word-spacing:-15.003676px;}
.ws52{word-spacing:-14.943900px;}
.ws3c{word-spacing:-14.792740px;}
.wsd3{word-spacing:-14.727285px;}
.ws30{word-spacing:-14.596376px;}
.ws3a{word-spacing:-14.400012px;}
.ws2c{word-spacing:-14.267203px;}
.ws2b{word-spacing:-14.205371px;}
.ws2d{word-spacing:-14.203648px;}
.ws11{word-spacing:-14.138194px;}
.ws42{word-spacing:-14.007284px;}
.ws35{word-spacing:-13.745466px;}
.ws3e{word-spacing:-13.614557px;}
.ws36{word-spacing:-12.632738px;}
.ws2f{word-spacing:-12.370919px;}
.ws3d{word-spacing:-12.305465px;}
.ws1f{word-spacing:-12.169503px;}
.ws59{word-spacing:-12.043646px;}
.ws3{word-spacing:-11.955150px;}
.ws2e{word-spacing:-11.716373px;}
.wsd{word-spacing:-11.585464px;}
.wsd9{word-spacing:-11.454555px;}
.ws1c{word-spacing:-10.825425px;}
.ws103{word-spacing:-10.472736px;}
.ws99{word-spacing:-10.276372px;}
.ws38{word-spacing:-10.145463px;}
.ws37{word-spacing:-9.360008px;}
.wsc1{word-spacing:-7.265461px;}
.ws46{word-spacing:-4.058185px;}
.wsd6{word-spacing:-3.600003px;}
.ws86{word-spacing:-1.469033px;}
.wsa3{word-spacing:-1.463033px;}
.ws129{word-spacing:-0.956303px;}
.ws137{word-spacing:-0.720001px;}
.ws10d{word-spacing:-0.423395px;}
.ws14e{word-spacing:-0.380329px;}
.ws0{word-spacing:0.000000px;}
.ws144{word-spacing:0.390967px;}
.ws5f{word-spacing:0.590088px;}
.ws84{word-spacing:0.652789px;}
.wsb8{word-spacing:1.086967px;}
.ws113{word-spacing:1.316034px;}
.ws14a{word-spacing:1.338941px;}
.ws8d{word-spacing:1.866967px;}
.ws122{word-spacing:2.424967px;}
.wsfd{word-spacing:2.570062px;}
.ws7d{word-spacing:2.710789px;}
.wsb2{word-spacing:2.982967px;}
.ws166{word-spacing:3.245846px;}
.ws147{word-spacing:3.516967px;}
.ws156{word-spacing:3.600941px;}
.ws108{word-spacing:3.636970px;}
.ws9d{word-spacing:3.852967px;}
.ws6d{word-spacing:3.954428px;}
.ws15b{word-spacing:3.954941px;}
.ws82{word-spacing:3.954967px;}
.wse1{word-spacing:3.954970px;}
.ws73{word-spacing:3.954971px;}
.ws11b{word-spacing:3.955514px;}
.ws77{word-spacing:3.955517px;}
.ws89{word-spacing:3.956059px;}
.ws6b{word-spacing:3.956062px;}
.ws4d{word-spacing:3.956068px;}
.ws5c{word-spacing:3.956088px;}
.wse6{word-spacing:3.956605px;}
.wsab{word-spacing:3.957151px;}
.ws75{word-spacing:3.957154px;}
.ws160{word-spacing:3.957671px;}
.ws94{word-spacing:3.957697px;}
.ws80{word-spacing:3.957698px;}
.ws71{word-spacing:3.958245px;}
.ws116{word-spacing:3.958757px;}
.ws105{word-spacing:3.958790px;}
.ws79{word-spacing:3.959336px;}
.ws48{word-spacing:3.959345px;}
.ws117{word-spacing:3.959879px;}
.ws6f{word-spacing:3.959881px;}
.wsf1{word-spacing:4.044967px;}
.ws158{word-spacing:4.086941px;}
.wscc{word-spacing:4.248967px;}
.ws12e{word-spacing:4.650967px;}
.ws67{word-spacing:4.743155px;}
.ws141{word-spacing:4.854967px;}
.ws100{word-spacing:5.067151px;}
.wsc9{word-spacing:5.103152px;}
.wscf{word-spacing:5.204059px;}
.ws10b{word-spacing:5.676967px;}
.wsae{word-spacing:5.738034px;}
.wsaf{word-spacing:6.042967px;}
.ws139{word-spacing:6.232244px;}
.wsee{word-spacing:6.642967px;}
.ws154{word-spacing:6.848579px;}
.wsa0{word-spacing:6.858967px;}
.wsf4{word-spacing:6.915697px;}
.wsbb{word-spacing:6.966967px;}
.wsbd{word-spacing:7.134967px;}
.ws53{word-spacing:7.383155px;}
.wseb{word-spacing:7.992967px;}
.ws13{word-spacing:8.286830px;}
.ws152{word-spacing:9.006941px;}
.wsc3{word-spacing:9.012967px;}
.wse0{word-spacing:9.054967px;}
.ws110{word-spacing:9.126967px;}
.wsdd{word-spacing:9.258967px;}
.wsc5{word-spacing:9.930967px;}
.wsd2{word-spacing:10.944967px;}
.ws146{word-spacing:11.211151px;}
.ws13b{word-spacing:11.312034px;}
.wsdb{word-spacing:11.508967px;}
.wsd4{word-spacing:11.910967px;}
.ws16{word-spacing:12.220452px;}
.ws14{word-spacing:12.482693px;}
.ws1e{word-spacing:12.535141px;}
.ws19{word-spacing:13.059624px;}
.ws58{word-spacing:13.604088px;}
.ws15{word-spacing:14.003693px;}
.wsd8{word-spacing:14.199697px;}
.ws102{word-spacing:15.163516px;}
.ws98{word-spacing:15.378967px;}
.wsc8{word-spacing:18.065470px;}
.wsc0{word-spacing:18.375697px;}
.ws45{word-spacing:21.564458px;}
.wsd5{word-spacing:22.086967px;}
.ws136{word-spacing:24.888967px;}
.ws12{word-spacing:25.075677px;}
.ws1d{word-spacing:29.498771px;}
.wsb1{word-spacing:41.783257px;}
.ws133{word-spacing:41.783503px;}
.wsda{word-spacing:41.783717px;}
.ws155{word-spacing:41.783744px;}
.wscb{word-spacing:41.783930px;}
.wsf8{word-spacing:41.784016px;}
.wse9{word-spacing:41.784149px;}
.ws106{word-spacing:41.784266px;}
.ws4f{word-spacing:41.784298px;}
.wsb6{word-spacing:41.784320px;}
.ws14c{word-spacing:41.784370px;}
.wsea{word-spacing:41.784415px;}
.ws7f{word-spacing:41.784455px;}
.wsfc{word-spacing:41.784560px;}
.ws13e{word-spacing:41.784636px;}
.ws95{word-spacing:41.784748px;}
.ws143{word-spacing:41.785379px;}
.ws7a{word-spacing:41.785385px;}
.wsb5{word-spacing:41.785490px;}
.wsed{word-spacing:41.785571px;}
.ws13a{word-spacing:41.785619px;}
.ws149{word-spacing:41.785662px;}
.ws13f{word-spacing:41.785699px;}
.wsd1{word-spacing:41.785715px;}
.wse4{word-spacing:41.785738px;}
.wsb7{word-spacing:41.785832px;}
.ws14d{word-spacing:41.785885px;}
.wsa8{word-spacing:41.785896px;}
.ws8a{word-spacing:41.785928px;}
.ws72{word-spacing:41.785999px;}
.wsf9{word-spacing:41.786072px;}
.wsb4{word-spacing:41.786442px;}
.ws153{word-spacing:41.786448px;}
.ws6c{word-spacing:41.786507px;}
.wsdf{word-spacing:41.786527px;}
.ws93{word-spacing:41.786640px;}
.ws65{word-spacing:41.786676px;}
.ws81{word-spacing:41.786794px;}
.ws90{word-spacing:41.786863px;}
.ws107{word-spacing:41.787018px;}
.ws104{word-spacing:41.787194px;}
.ws76{word-spacing:41.787239px;}
.ws66{word-spacing:41.787289px;}
.ws74{word-spacing:41.787298px;}
.ws101{word-spacing:41.787526px;}
.ws140{word-spacing:41.787553px;}
.ws15a{word-spacing:41.787660px;}
.ws121{word-spacing:41.787772px;}
.wsc2{word-spacing:41.787852px;}
.ws85{word-spacing:41.787932px;}
.ws70{word-spacing:41.787960px;}
.ws6e{word-spacing:41.788350px;}
.wsac{word-spacing:41.788398px;}
.ws78{word-spacing:41.788468px;}
.ws10a{word-spacing:41.788530px;}
.ws12b{word-spacing:41.788627px;}
.wse2{word-spacing:41.788654px;}
.wsff{word-spacing:41.788813px;}
.ws150{word-spacing:41.788943px;}
.ws9c{word-spacing:41.788948px;}
.wsa7{word-spacing:41.788991px;}
.ws12c{word-spacing:41.839067px;}
.ws91{word-spacing:41.839672px;}
.ws4c{word-spacing:41.840504px;}
.ws7b{word-spacing:41.841082px;}
.ws8b{word-spacing:41.842385px;}
.ws125{word-spacing:41.842417px;}
.ws5d{word-spacing:41.842807px;}
.ws63{word-spacing:41.842856px;}
.ws10f{word-spacing:41.842974px;}
.ws124{word-spacing:41.843123px;}
.ws135{word-spacing:41.843279px;}
.ws112{word-spacing:41.843472px;}
.wsfa{word-spacing:41.843678px;}
.wsad{word-spacing:41.843732px;}
.wsce{word-spacing:41.843978px;}
.ws8c{word-spacing:41.844192px;}
.ws5b{word-spacing:41.844325px;}
.ws50{word-spacing:41.844404px;}
.ws119{word-spacing:41.844587px;}
.ws83{word-spacing:41.844726px;}
.wsa5{word-spacing:41.844743px;}
.wsa6{word-spacing:41.844923px;}
.ws8f{word-spacing:41.844956px;}
.ws162{word-spacing:41.845067px;}
.ws9f{word-spacing:41.845123px;}
.ws56{word-spacing:41.845148px;}
.ws4a{word-spacing:41.845288px;}
.ws12d{word-spacing:41.845307px;}
.wsdc{word-spacing:41.845394px;}
.ws88{word-spacing:41.845416px;}
.ws4b{word-spacing:41.845434px;}
.ws161{word-spacing:41.845555px;}
.wsbf{word-spacing:41.845619px;}
.wsba{word-spacing:41.846046px;}
.ws127{word-spacing:41.846260px;}
.ws138{word-spacing:41.846345px;}
.ws126{word-spacing:41.846608px;}
.ws61{word-spacing:41.846671px;}
.wsa4{word-spacing:41.846714px;}
.ws6a{word-spacing:41.846747px;}
.wsaa{word-spacing:41.846764px;}
.ws64{word-spacing:41.846942px;}
.ws97{word-spacing:41.847191px;}
.ws9a{word-spacing:41.847248px;}
.wsd7{word-spacing:41.847484px;}
.wsc4{word-spacing:41.847804px;}
.wsa2{word-spacing:41.847938px;}
.wsf0{word-spacing:41.848152px;}
.ws164{word-spacing:41.848457px;}
.ws9b{word-spacing:41.848675px;}
.wsf3{word-spacing:41.848782px;}
.ws134{word-spacing:41.962830px;}
.wse5{word-spacing:43.579006px;}
.ws15f{word-spacing:43.582211px;}
.ws132{word-spacing:43.696322px;}
.wsc7{word-spacing:43.704967px;}
.ws163{word-spacing:44.174046px;}
.wse3{word-spacing:45.432049px;}
.ws15e{word-spacing:45.435254px;}
.ws1b{word-spacing:46.654709px;}
.ws1a{word-spacing:46.882973px;}
.ws131{word-spacing:47.103532px;}
.ws151{word-spacing:51.288197px;}
.ws15d{word-spacing:52.488775px;}
.ws11a{word-spacing:53.500417px;}
.ws165{word-spacing:54.571270px;}
.ws128{word-spacing:54.577270px;}
.wse8{word-spacing:59.640948px;}
.ws7c{word-spacing:61.208376px;}
.wsec{word-spacing:71.374493px;}
.ws5e{word-spacing:71.431729px;}
.ws96{word-spacing:71.436113px;}
.wsfb{word-spacing:73.345420px;}
.wsa9{word-spacing:86.796923px;}
.ws92{word-spacing:87.274890px;}
.wse7{word-spacing:142.899199px;}
.ws18{word-spacing:284.281796px;}
.ws69{word-spacing:302.406948px;}
.ws17{word-spacing:352.517016px;}
.ws68{word-spacing:385.665199px;}
.wsf7{word-spacing:407.859673px;}
.ws11f{word-spacing:670.984007px;}
.ws120{word-spacing:700.896759px;}
.ws11c{word-spacing:707.900401px;}
.ws130{word-spacing:709.014668px;}
.ws11e{word-spacing:717.784046px;}
.ws5a{word-spacing:754.506948px;}
.ws11d{word-spacing:764.387721px;}
.ws62{word-spacing:1360.152847px;}
.ws118{word-spacing:1425.219199px;}
.ws15c{word-spacing:1606.392668px;}
._5{margin-left:-14.537462px;}
._4{margin-left:-11.644312px;}
._8{margin-left:-8.990273px;}
._3a{margin-left:-7.985461px;}
._6{margin-left:-6.121037px;}
._9{margin-left:-4.581822px;}
._2{margin-left:-3.377297px;}
._0{margin-left:-2.002525px;}
._b{width:1.190502px;}
._1{width:2.262312px;}
._a{width:3.915059px;}
._7{width:5.547190px;}
._f{width:11.678347px;}
._11{width:13.326171px;}
._c{width:15.355489px;}
._67{width:18.339607px;}
._7e{width:20.434154px;}
._e{width:70.130922px;}
._23{width:71.613172px;}
._1c{width:72.728520px;}
._55{width:75.226520px;}
._c2{width:76.830387px;}
._46{width:77.946012px;}
._49{width:79.052738px;}
._39{width:80.288414px;}
._5d{width:82.396621px;}
._2d{width:83.982012px;}
._3d{width:85.695050px;}
._26{width:87.633544px;}
._74{width:88.946858px;}
._21{width:90.442486px;}
._3c{width:91.590710px;}
._91{width:92.843072px;}
._19{width:94.024603px;}
._38{width:95.672414px;}
._1f{width:97.111531px;}
._18{width:98.229426px;}
._c3{width:99.630076px;}
._b4{width:101.421179px;}
._8f{width:103.511216px;}
._36{width:104.605316px;}
._3f{width:105.819640px;}
._b1{width:107.271654px;}
._bb{width:108.885148px;}
._35{width:110.299866px;}
._1d{width:112.857817px;}
._9d{width:114.386334px;}
._65{width:116.266056px;}
._1a{width:117.282241px;}
._2a{width:118.957717px;}
._56{width:120.207172px;}
._84{width:121.322009px;}
._28{width:122.335014px;}
._b2{width:124.029699px;}
._4f{width:125.325304px;}
._bc{width:126.817828px;}
._51{width:128.255996px;}
._a8{width:129.943234px;}
._3e{width:132.137517px;}
._80{width:136.524554px;}
._7f{width:138.399633px;}
._64{width:140.342382px;}
._7c{width:141.776930px;}
._a9{width:143.943275px;}
._60{width:145.022856px;}
._79{width:146.929146px;}
._6e{width:148.447510px;}
._a2{width:150.633364px;}
._29{width:155.190184px;}
._4e{width:156.202450px;}
._a3{width:159.121499px;}
._5e{width:161.398176px;}
._37{width:162.990819px;}
._a7{width:165.148620px;}
._57{width:171.732012px;}
._5a{width:173.635981px;}
._1b{width:176.079503px;}
._42{width:179.819526px;}
._50{width:181.708666px;}
._33{width:185.180507px;}
._9c{width:187.221275px;}
._8e{width:188.942414px;}
._34{width:193.180385px;}
._5c{width:211.916414px;}
._5b{width:220.894203px;}
._b0{width:224.420414px;}
._14{width:228.510647px;}
._aa{width:230.941944px;}
._7a{width:233.720578px;}
._13{width:234.794289px;}
._88{width:242.519740px;}
._89{width:245.831356px;}
._77{width:252.179854px;}
._16{width:255.909557px;}
._8c{width:270.077740px;}
._8d{width:273.389356px;}
._af{width:281.605901px;}
._24{width:284.615792px;}
._b6{width:286.478170px;}
._a4{width:289.123409px;}
._59{width:296.232447px;}
._87{width:313.537981px;}
._7d{width:316.476094px;}
._17{width:324.990728px;}
._99{width:333.549697px;}
._8b{width:341.095981px;}
._8a{width:344.407597px;}
._15{width:355.335094px;}
._2e{width:386.685468px;}
._97{width:388.646414px;}
._72{width:389.981068px;}
._96{width:419.218221px;}
._93{width:443.070263px;}
._47{width:452.407270px;}
._9f{width:453.688105px;}
._94{width:455.244818px;}
._95{width:462.483711px;}
._71{width:480.010946px;}
._40{width:509.276414px;}
._1e{width:515.934076px;}
._25{width:532.382414px;}
._92{width:537.324887px;}
._a5{width:539.002504px;}
._70{width:544.618797px;}
._45{width:559.263505px;}
._2b{width:564.594634px;}
._62{width:584.757460px;}
._63{width:587.717242px;}
._6c{width:599.480820px;}
._44{width:604.548619px;}
._48{width:606.468081px;}
._6d{width:633.686942px;}
._98{width:639.930450px;}
._ad{width:646.137483px;}
._a0{width:656.296660px;}
._4b{width:661.463820px;}
._bf{width:664.866486px;}
._ac{width:699.091555px;}
._a6{width:700.479003px;}
._9a{width:705.578414px;}
._82{width:709.277176px;}
._76{width:721.512869px;}
._ab{width:739.819860px;}
._2f{width:767.919626px;}
._b7{width:812.035643px;}
._73{width:820.189477px;}
._52{width:839.146750px;}
._43{width:857.459719px;}
._be{width:864.463904px;}
._4c{width:881.849458px;}
._66{width:893.737373px;}
._a1{width:902.013003px;}
._22{width:904.710438px;}
._2c{width:910.184414px;}
._75{width:918.392034px;}
._61{width:919.736184px;}
._6b{width:934.683800px;}
._6a{width:980.166122px;}
._31{width:990.334357px;}
._69{width:1005.931591px;}
._81{width:1031.418375px;}
._9e{width:1042.282436px;}
._20{width:1068.458414px;}
._bd{width:1083.508754px;}
._53{width:1105.481517px;}
._4a{width:1161.290299px;}
._30{width:1218.116365px;}
._b8{width:1252.518759px;}
._32{width:1259.714414px;}
._b9{width:1314.935654px;}
._4d{width:1330.274414px;}
._86{width:1333.055586px;}
._85{width:1334.275530px;}
._d{width:1391.543623px;}
._83{width:1397.107871px;}
._c0{width:1426.195281px;}
._c1{width:1494.437861px;}
._ba{width:1597.857003px;}
._54{width:1674.500414px;}
._3{width:1686.360169px;}
._9b{width:1768.835226px;}
._b5{width:1772.369226px;}
._ae{width:1773.743226px;}
._c4{width:1776.299226px;}
._58{width:1778.063226px;}
._b3{width:1780.097226px;}
._78{width:1781.597226px;}
._68{width:1782.977226px;}
._90{width:1785.527226px;}
._6f{width:1789.325226px;}
._7b{width:1790.684414px;}
._5f{width:1792.205226px;}
._3b{width:1802.939226px;}
._27{width:1806.929226px;}
._10{width:1808.303226px;}
._41{width:1810.859226px;}
._12{width:1814.657226px;}
.fc8{color:rgb(10,146,141);}
.fc6{color:rgb(10,146,141);}
.fc7{color:rgb(16,106,175);}
.fc4{color:rgb(16,106,175);}
.fc3{color:rgb(161,49,87);}
.fc2{color:rgb(79,117,144);}
.fc1{color:rgb(148,130,147);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.820600px;}
.fs11{font-size:47.900111px;}
.fs10{font-size:52.448290px;}
.fsf{font-size:53.847360px;}
.fs5{font-size:54.122294px;}
.fs12{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:65.454600px;}
.fsb{font-size:65.753400px;}
.fs0{font-size:72.000000px;}
.fse{font-size:86.077200px;}
.fs8{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fsd{font-size:148.722600px;}
.fs7{font-size:179.327400px;}
.fsa{font-size:191.282400px;}
.fs6{font-size:735.243000px;}
.y0{bottom:0.000000px;}
.y72{bottom:21.979640px;}
.y60{bottom:35.224224px;}
.y71{bottom:35.441480px;}
.y70{bottom:48.903320px;}
.y80{bottom:56.452500px;}
.y6f{bottom:62.365160px;}
.y5f{bottom:63.962852px;}
.y5{bottom:66.525004px;}
.y68{bottom:78.025580px;}
.y5e{bottom:80.249298px;}
.y6e{bottom:81.596537px;}
.y67{bottom:91.487420px;}
.y6d{bottom:95.058377px;}
.y5d{bottom:96.535706px;}
.y4{bottom:97.125005px;}
.y66{bottom:104.949260px;}
.y6c{bottom:108.520217px;}
.y65{bottom:118.411100px;}
.y3a2{bottom:125.454000px;}
.y6b{bottom:125.828465px;}
.y4a{bottom:127.560000px;}
.y5c{bottom:138.459726px;}
.y20{bottom:139.264499px;}
.y6a{bottom:139.290305px;}
.y3a1{bottom:143.659500px;}
.y49{bottom:147.883500px;}
.y69{bottom:152.752145px;}
.y2b{bottom:154.567500px;}
.y5b{bottom:154.662026px;}
.y3a0{bottom:161.865000px;}
.y48{bottom:168.207000px;}
.y5a{bottom:170.263314px;}
.y64{bottom:175.829725px;}
.y39f{bottom:180.265500px;}
.y59{bottom:188.472849px;}
.y47{bottom:188.530500px;}
.y63{bottom:189.291565px;}
.y33a{bottom:190.011000px;}
.y17{bottom:196.933500px;}
.y39e{bottom:198.471000px;}
.y58{bottom:204.627065px;}
.y339{bottom:208.218000px;}
.y46{bottom:208.854000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y39d{bottom:216.796500px;}
.y57{bottom:220.913505px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y62{bottom:225.831036px;}
.y45{bottom:229.179000px;}
.y338{bottom:230.128500px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y39c{bottom:235.002000px;}
.y56{bottom:237.199917px;}
.y61{bottom:239.292876px;}
.y44{bottom:249.502500px;}
.y337{bottom:251.902500px;}
.y39b{bottom:253.327500px;}
.y55{bottom:253.486357px;}
.y130{bottom:257.710500px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y172{bottom:266.193000px;}
.ya4{bottom:266.257500px;}
.y43{bottom:269.826000px;}
.y54{bottom:271.573824px;}
.y39a{bottom:271.653000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y1f8{bottom:273.132000px;}
.y336{bottom:273.397500px;}
.y12f{bottom:275.916000px;}
.y2a{bottom:277.383000px;}
.y73{bottom:280.801380px;}
.y171{bottom:284.398500px;}
.yc8{bottom:285.040500px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y23b{bottom:285.559500px;}
.y195{bottom:286.132500px;}
.ya3{bottom:286.581000px;}
.y2d6{bottom:287.433000px;}
.y399{bottom:289.978500px;}
.y42{bottom:290.149500px;}
.y1f7{bottom:291.532500px;}
.y335{bottom:295.153500px;}
.y2b5{bottom:295.519500px;}
.y12e{bottom:297.828000px;}
.y25d{bottom:299.773500px;}
.yc7{bottom:303.366000px;}
.y23a{bottom:303.492000px;}
.y194{bottom:304.338000px;}
.y2d5{bottom:305.757000px;}
.y170{bottom:306.310500px;}
.y398{bottom:308.377500px;}
.y1f6{bottom:309.933000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y2b4{bottom:313.725000px;}
.y334{bottom:316.911000px;}
.y25c{bottom:318.099000px;}
.y12d{bottom:319.602000px;}
.y10d{bottom:321.361500px;}
.y239{bottom:321.892500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y29{bottom:325.204500px;}
.yc6{bottom:325.396500px;}
.y193{bottom:326.250000px;}
.ya2{bottom:327.228000px;}
.y2d4{bottom:327.789000px;}
.y16f{bottom:328.083000px;}
.y397{bottom:331.903500px;}
.y1f5{bottom:331.963500px;}
.y2b3{bottom:335.637000px;}
.y217{bottom:337.020000px;}
.yeb{bottom:338.284500px;}
.y27b{bottom:338.571000px;}
.y1d6{bottom:339.226500px;}
.y10c{bottom:339.687000px;}
.y25b{bottom:340.129500px;}
.y333{bottom:340.161000px;}
.y12c{bottom:341.358000px;}
.y315{bottom:343.318500px;}
.y238{bottom:343.803000px;}
.yc5{bottom:347.170500px;}
.ya1{bottom:347.551500px;}
.y192{bottom:348.022500px;}
.ye{bottom:348.133500px;}
.y2f5{bottom:348.982500px;}
.y2d3{bottom:349.561500px;}
.y16e{bottom:349.840500px;}
.y396{bottom:353.661000px;}
.y1f4{bottom:354.952500px;}
.y216{bottom:355.420500px;}
.yea{bottom:356.610000px;}
.y27a{bottom:356.970000px;}
.y2b2{bottom:357.411000px;}
.y1d5{bottom:357.432000px;}
.y374{bottom:358.896000px;}
.y357{bottom:359.511000px;}
.y332{bottom:360.486000px;}
.y10b{bottom:361.599000px;}
.y25a{bottom:361.903500px;}
.y1b5{bottom:362.250000px;}
.y12b{bottom:363.115500px;}
.y314{bottom:363.643500px;}
.y237{bottom:366.793500px;}
.y2f4{bottom:367.189500px;}
.ya0{bottom:367.876500px;}
.yc4{bottom:368.926500px;}
.y191{bottom:369.780000px;}
.y2d2{bottom:371.319000px;}
.y28{bottom:373.024500px;}
.y16d{bottom:373.092000px;}
.y215{bottom:373.819500px;}
.y14d{bottom:374.247000px;}
.ye9{bottom:375.009000px;}
.y1f3{bottom:375.277500px;}
.y395{bottom:375.417000px;}
.y373{bottom:377.101500px;}
.y356{bottom:377.716500px;}
.y2b1{bottom:378.906000px;}
.y279{bottom:379.077000px;}
.y1d4{bottom:379.344000px;}
.y1b4{bottom:380.649000px;}
.y10a{bottom:383.371500px;}
.y259{bottom:383.398500px;}
.y313{bottom:383.967000px;}
.y2f3{bottom:385.395000px;}
.y295{bottom:385.842000px;}
.y12a{bottom:386.365500px;}
.yd{bottom:386.785499px;}
.y236{bottom:387.117000px;}
.yc3{bottom:390.684000px;}
.y14c{bottom:392.571000px;}
.y190{bottom:393.030000px;}
.y16c{bottom:393.415500px;}
.y2d1{bottom:394.570500px;}
.y214{bottom:395.731500px;}
.ye8{bottom:396.921000px;}
.y394{bottom:397.174500px;}
.y372{bottom:399.013500px;}
.y355{bottom:399.748500px;}
.y331{bottom:400.072500px;}
.y2b0{bottom:400.678500px;}
.y278{bottom:400.849500px;}
.y1d3{bottom:402.333000px;}
.y1b3{bottom:402.756000px;}
.y2f2{bottom:403.600500px;}
.y294{bottom:404.167500px;}
.y258{bottom:404.893500px;}
.y109{bottom:405.129000px;}
.y129{bottom:406.690500px;}
.yc{bottom:408.044999px;}
.y9f{bottom:408.523500px;}
.yc2{bottom:413.934000px;}
.y14b{bottom:414.483000px;}
.y1f2{bottom:414.847500px;}
.y2d0{bottom:414.894000px;}
.y213{bottom:417.505500px;}
.y330{bottom:418.396500px;}
.y393{bottom:418.930500px;}
.ye7{bottom:419.910000px;}
.y371{bottom:420.786000px;}
.y354{bottom:421.521000px;}
.y2f1{bottom:421.926000px;}
.y2af{bottom:422.173500px;}
.y277{bottom:422.607000px;}
.y1d2{bottom:422.656500px;}
.y312{bottom:423.553500px;}
.y1b2{bottom:424.528500px;}
.y293{bottom:426.079500px;}
.y235{bottom:426.543000px;}
.y257{bottom:426.649500px;}
.y108{bottom:428.379000px;}
.y9e{bottom:428.847000px;}
.y18f{bottom:432.633000px;}
.y16b{bottom:433.002000px;}
.y1f1{bottom:433.171500px;}
.yc1{bottom:434.259000px;}
.y14a{bottom:437.472000px;}
.y212{bottom:439.261500px;}
.y2f0{bottom:440.131500px;}
.ye6{bottom:440.235000px;}
.y32f{bottom:440.308500px;}
.y392{bottom:440.688000px;}
.y311{bottom:441.877500px;}
.y370{bottom:442.281000px;}
.y353{bottom:443.016000px;}
.y2ae{bottom:443.668500px;}
.y234{bottom:444.475500px;}
.y276{bottom:445.857000px;}
.y1b1{bottom:446.286000px;}
.y128{bottom:446.292000px;}
.y27{bottom:446.401500px;}
.y292{bottom:447.852000px;}
.y256{bottom:448.407000px;}
.y9d{bottom:449.170500px;}
.y18e{bottom:451.033500px;}
.y16a{bottom:451.327500px;}
.y1f0{bottom:451.572000px;}
.y2cf{bottom:454.497000px;}
.y2ef{bottom:458.337000px;}
.y310{bottom:460.203000px;}
.y1d1{bottom:461.964000px;}
.y32e{bottom:462.082500px;}
.y391{bottom:462.444000px;}
.y211{bottom:462.513000px;}
.y233{bottom:462.876000px;}
.y36f{bottom:464.038500px;}
.y127{bottom:464.692500px;}
.y352{bottom:464.773500px;}
.y2ad{bottom:465.424500px;}
.y107{bottom:467.965500px;}
.y9c{bottom:469.495500px;}
.y1b0{bottom:469.536000px;}
.y291{bottom:469.609500px;}
.y169{bottom:469.651500px;}
.y255{bottom:471.657000px;}
.y2ce{bottom:472.702500px;}
.y18d{bottom:473.139000px;}
.y1ef{bottom:473.604000px;}
.yc0{bottom:473.844000px;}
.y2ee{bottom:476.542500px;}
.y149{bottom:477.058500px;}
.y30f{bottom:478.233000px;}
.ye5{bottom:479.542500px;}
.y1d0{bottom:480.169500px;}
.y210{bottom:482.836500px;}
.y32d{bottom:483.577500px;}
.y232{bottom:484.786500px;}
.y275{bottom:485.460000px;}
.y390{bottom:485.695500px;}
.y36e{bottom:485.794500px;}
.y106{bottom:486.291000px;}
.y351{bottom:486.529500px;}
.y126{bottom:486.799500px;}
.y2ac{bottom:487.182000px;}
.y168{bottom:487.977000px;}
.y1af{bottom:489.859500px;}
.y2cd{bottom:490.908000px;}
.y254{bottom:491.982000px;}
.ybf{bottom:492.244500px;}
.y290{bottom:492.859500px;}
.y2ed{bottom:494.748000px;}
.y18c{bottom:494.913000px;}
.y148{bottom:495.264000px;}
.y1ee{bottom:495.376500px;}
.y30e{bottom:496.167000px;}
.ye4{bottom:497.868000px;}
.y1cf{bottom:502.081500px;}
.y274{bottom:503.785500px;}
.y32c{bottom:505.333500px;}
.y231{bottom:507.777000px;}
.y105{bottom:508.203000px;}
.y125{bottom:508.572000px;}
.y36d{bottom:509.046000px;}
.y350{bottom:509.781000px;}
.y167{bottom:510.009000px;}
.y9b{bottom:510.142500px;}
.y2ab{bottom:510.433500px;}
.y253{bottom:512.305500px;}
.y2cc{bottom:513.013500px;}
.ybe{bottom:514.350000px;}
.ye3{bottom:516.267000px;}
.y18b{bottom:516.669000px;}
.y1ed{bottom:517.132500px;}
.y147{bottom:517.176000px;}
.y2ec{bottom:518.154000px;}
.y30d{bottom:518.272500px;}
.yb{bottom:520.864502px;}
.y7f{bottom:522.060000px;}
.y20f{bottom:522.423000px;}
.y1ce{bottom:523.855500px;}
.y273{bottom:525.816000px;}
.y32b{bottom:527.091000px;}
.y38f{bottom:527.838000px;}
.y230{bottom:528.100500px;}
.y36c{bottom:529.369500px;}
.y104{bottom:529.975500px;}
.y34f{bottom:530.104500px;}
.y124{bottom:530.328000px;}
.y9a{bottom:530.466000px;}
.y2aa{bottom:530.757000px;}
.y166{bottom:531.504000px;}
.y1ae{bottom:531.675000px;}
.y28f{bottom:532.168500px;}
.y2cb{bottom:534.787500px;}
.ybd{bottom:536.124000px;}
.ye2{bottom:538.299000px;}
.ya{bottom:538.864499px;}
.y146{bottom:538.950000px;}
.y2eb{bottom:539.911500px;}
.y18a{bottom:539.920500px;}
.y1ec{bottom:540.384000px;}
.y20e{bottom:540.628500px;}
.y30c{bottom:541.261500px;}
.y7e{bottom:542.383500px;}
.y1cd{bottom:545.611500px;}
.y38e{bottom:546.043500px;}
.y272{bottom:547.590000px;}
.y22f{bottom:548.424000px;}
.y32a{bottom:550.341000px;}
.y28e{bottom:550.494000px;}
.y99{bottom:550.789500px;}
.y103{bottom:551.733000px;}
.y252{bottom:551.892000px;}
.y1ad{bottom:551.998500px;}
.y123{bottom:553.579500px;}
.y165{bottom:554.493000px;}
.y2ca{bottom:556.282500px;}
.y9{bottom:556.864499px;}
.ybc{bottom:557.880000px;}
.y189{bottom:560.244000px;}
.y145{bottom:560.706000px;}
.y1eb{bottom:560.707500px;}
.ye1{bottom:561.288000px;}
.y30b{bottom:561.585000px;}
.y2ea{bottom:561.667500px;}
.y20d{bottom:562.540500px;}
.y7d{bottom:562.708500px;}
.y38d{bottom:564.249000px;}
.y1cc{bottom:568.863000px;}
.y36b{bottom:568.972500px;}
.y271{bottom:569.346000px;}
.y34e{bottom:569.707500px;}
.y251{bottom:570.097500px;}
.y329{bottom:570.666000px;}
.y98{bottom:571.114500px;}
.y28d{bottom:572.406000px;}
.y2a9{bottom:572.571000px;}
.y102{bottom:574.984500px;}
.y2c9{bottom:578.055000px;}
.ybb{bottom:581.131500px;}
.y38c{bottom:582.454500px;}
.y7c{bottom:583.032000px;}
.y2e9{bottom:583.425000px;}
.y144{bottom:583.957500px;}
.y20c{bottom:585.529500px;}
.y36a{bottom:587.371500px;}
.y34d{bottom:587.913000px;}
.y22e{bottom:587.956500px;}
.y250{bottom:588.303000px;}
.y1cb{bottom:589.186500px;}
.y41{bottom:591.355500px;}
.y1ac{bottom:591.601500px;}
.y270{bottom:592.597500px;}
.y122{bottom:593.149500px;}
.y164{bottom:594.096000px;}
.y28c{bottom:594.178500px;}
.y2a8{bottom:594.343500px;}
.y2c8{bottom:599.550000px;}
.y188{bottom:599.847000px;}
.y1ea{bottom:600.310500px;}
.y38b{bottom:600.660000px;}
.ye0{bottom:600.874500px;}
.y30a{bottom:601.155000px;}
.yba{bottom:601.455000px;}
.y7b{bottom:603.355500px;}
.y2e8{bottom:605.181000px;}
.y20b{bottom:605.853000px;}
.y22d{bottom:605.889000px;}
.y24f{bottom:606.508500px;}
.y369{bottom:609.478500px;}
.y34c{bottom:609.825000px;}
.y1ab{bottom:609.927000px;}
.y328{bottom:610.236000px;}
.y121{bottom:611.475000px;}
.y40{bottom:611.679000px;}
.y97{bottom:611.761500px;}
.y163{bottom:612.421500px;}
.y101{bottom:614.554500px;}
.y28b{bottom:615.934500px;}
.y2a7{bottom:616.101000px;}
.y187{bottom:618.247500px;}
.y1e9{bottom:618.516000px;}
.y38a{bottom:618.865500px;}
.ydf{bottom:619.200000px;}
.y309{bottom:619.480500px;}
.y2c7{bottom:621.045000px;}
.yb9{bottom:621.778500px;}
.y143{bottom:623.560500px;}
.y7a{bottom:623.679000px;}
.y22c{bottom:624.288000px;}
.y20a{bottom:626.176500px;}
.y24e{bottom:628.420500px;}
.y2e7{bottom:628.432500px;}
.y1ca{bottom:628.495500px;}
.y327{bottom:628.560000px;}
.y368{bottom:631.251000px;}
.y34b{bottom:631.597500px;}
.y1aa{bottom:631.837500px;}
.y3f{bottom:632.002500px;}
.y96{bottom:632.085000px;}
.y100{bottom:632.953500px;}
.y120{bottom:633.387000px;}
.y26f{bottom:634.395000px;}
.y162{bottom:634.452000px;}
.y186{bottom:636.646500px;}
.y389{bottom:637.072500px;}
.y308{bottom:637.686000px;}
.y28a{bottom:639.186000px;}
.y2a6{bottom:639.352500px;}
.y1e8{bottom:640.428000px;}
.yde{bottom:641.232000px;}
.y142{bottom:641.766000px;}
.yb8{bottom:642.103500px;}
.y2c6{bottom:642.801000px;}
.y79{bottom:644.002500px;}
.y8{bottom:645.510000px;}
.y22b{bottom:646.395000px;}
.y1c9{bottom:646.894500px;}
.y2e6{bottom:648.756000px;}
.y24d{bottom:649.915500px;}
.y326{bottom:650.472000px;}
.y95{bottom:652.408500px;}
.y367{bottom:652.746000px;}
.y307{bottom:652.833000px;}
.y34a{bottom:653.092500px;}
.y1a9{bottom:653.611500px;}
.yff{bottom:655.060500px;}
.y11f{bottom:655.159500px;}
.y388{bottom:655.278000px;}
.y161{bottom:656.226000px;}
.y185{bottom:658.753500px;}
.yb7{bottom:662.427000px;}
.ydd{bottom:663.004500px;}
.y1e7{bottom:663.417000px;}
.y141{bottom:663.678000px;}
.y78{bottom:664.327500px;}
.y2c5{bottom:664.558500px;}
.y1c8{bottom:665.100000px;}
.y209{bottom:665.485500px;}
.y7{bottom:666.771000px;}
.y22a{bottom:668.167500px;}
.y306{bottom:670.765500px;}
.y325{bottom:672.246000px;}
.y94{bottom:672.733500px;}
.y24c{bottom:672.904500px;}
.y387{bottom:673.483500px;}
.y26e{bottom:673.998000px;}
.y366{bottom:674.503500px;}
.y349{bottom:674.850000px;}
.y1a8{bottom:675.106500px;}
.yfe{bottom:676.833000px;}
.y11e{bottom:676.917000px;}
.y160{bottom:677.982000px;}
.y289{bottom:678.495000px;}
.y2a5{bottom:678.922500px;}
.y184{bottom:680.526000px;}
.yb6{bottom:682.750500px;}
.y208{bottom:683.691000px;}
.y1e6{bottom:683.742000px;}
.y77{bottom:684.651000px;}
.ydc{bottom:684.777000px;}
.y140{bottom:686.667000px;}
.y1c7{bottom:687.012000px;}
.y2c4{bottom:687.810000px;}
.y2e5{bottom:688.359000px;}
.y229{bottom:689.925000px;}
.y386{bottom:691.689000px;}
.y26d{bottom:692.323500px;}
.y305{bottom:692.871000px;}
.y3e{bottom:692.974500px;}
.y93{bottom:693.057000px;}
.y24b{bottom:693.228000px;}
.y324{bottom:693.741000px;}
.y365{bottom:696.259500px;}
.y348{bottom:696.606000px;}
.y288{bottom:696.819000px;}
.y1a7{bottom:696.862500px;}
.y2a4{bottom:697.248000px;}
.yfd{bottom:698.590500px;}
.y15f{bottom:699.739500px;}
.y11d{bottom:700.167000px;}
.y183{bottom:702.282000px;}
.y76{bottom:704.974500px;}
.y207{bottom:705.603000px;}
.ydb{bottom:706.272000px;}
.y2e4{bottom:706.564500px;}
.y385{bottom:709.894500px;}
.y1c6{bottom:710.002500px;}
.y228{bottom:711.681000px;}
.y3d{bottom:713.298000px;}
.y92{bottom:713.380500px;}
.y24a{bottom:713.553000px;}
.y26c{bottom:714.355500px;}
.y304{bottom:714.645000px;}
.y323{bottom:715.497000px;}
.y4f{bottom:717.984000px;}
.y1a6{bottom:718.620000px;}
.y287{bottom:718.731000px;}
.y2a3{bottom:719.278500px;}
.y364{bottom:719.511000px;}
.y347{bottom:719.857500px;}
.y15e{bottom:720.063000px;}
.yfc{bottom:721.840500px;}
.y1e5{bottom:723.312000px;}
.yb5{bottom:724.531500px;}
.y2e3{bottom:724.890000px;}
.y75{bottom:725.298000px;}
.y182{bottom:725.533500px;}
.y13f{bottom:726.253500px;}
.y6{bottom:726.298500px;}
.y206{bottom:727.375500px;}
.y2c3{bottom:727.411500px;}
.yda{bottom:727.767000px;}
.y384{bottom:728.100000px;}
.y227{bottom:732.004500px;}
.y3c{bottom:733.621500px;}
.y26b{bottom:736.128000px;}
.y303{bottom:736.401000px;}
.y322{bottom:737.254500px;}
.y11c{bottom:739.753500px;}
.y363{bottom:739.834500px;}
.y2e2{bottom:740.035500px;}
.y286{bottom:740.505000px;}
.y2a2{bottom:741.051000px;}
.y1e4{bottom:741.517500px;}
.y1a5{bottom:741.870000px;}
.y15d{bottom:743.313000px;}
.y13e{bottom:744.652500px;}
.yb4{bottom:745.309500px;}
.y74{bottom:745.621500px;}
.y2c2{bottom:745.812000px;}
.y181{bottom:745.857000px;}
.y205{bottom:749.133000px;}
.yd9{bottom:749.524500px;}
.y1c5{bottom:749.604000px;}
.y383{bottom:751.626000px;}
.y3{bottom:752.599495px;}
.y249{bottom:753.138000px;}
.y3b{bottom:753.945000px;}
.y91{bottom:754.027500px;}
.y226{bottom:755.256000px;}
.y26a{bottom:757.900500px;}
.y2e1{bottom:757.969500px;}
.y11b{bottom:758.154000px;}
.y4e{bottom:758.632500px;}
.y346{bottom:759.427500px;}
.y302{bottom:759.652500px;}
.y321{bottom:760.504500px;}
.yfb{bottom:761.443500px;}
.y285{bottom:762.261000px;}
.y2a1{bottom:762.808500px;}
.y13d{bottom:763.053000px;}
.y1e3{bottom:763.429500px;}
.yb3{bottom:763.710000px;}
.y2c1{bottom:764.212500px;}
.y53{bottom:765.946145px;}
.y1c4{bottom:768.004500px;}
.yd8{bottom:771.280500px;}
.y248{bottom:771.345000px;}
.y204{bottom:772.384500px;}
.y382{bottom:773.383500px;}
.y3a{bottom:774.268500px;}
.y225{bottom:775.579500px;}
.y345{bottom:777.633000px;}
.y269{bottom:779.395500px;}
.y362{bottom:779.437500px;}
.yfa{bottom:779.769000px;}
.y301{bottom:779.976000px;}
.y2e0{bottom:780.075000px;}
.y11a{bottom:780.259500px;}
.y1a4{bottom:781.473000px;}
.yb2{bottom:782.110500px;}
.y2c0{bottom:782.611500px;}
.y15c{bottom:782.899500px;}
.y13c{bottom:785.160000px;}
.y1e2{bottom:785.202000px;}
.y180{bottom:785.460000px;}
.y284{bottom:785.512500px;}
.y2a0{bottom:786.060000px;}
.y1c3{bottom:786.405000px;}
.y203{bottom:792.708000px;}
.y247{bottom:793.255500px;}
.yd7{bottom:794.532000px;}
.y39{bottom:794.593500px;}
.y90{bottom:794.676000px;}
.y381{bottom:795.139500px;}
.y224{bottom:795.903000px;}
.y361{bottom:797.643000px;}
.y344{bottom:799.545000px;}
.y1a3{bottom:799.798500px;}
.y320{bottom:800.074500px;}
.yb1{bottom:800.316000px;}
.y2bf{bottom:800.836500px;}
.y268{bottom:800.890500px;}
.y15b{bottom:801.300000px;}
.yf9{bottom:801.801000px;}
.y2df{bottom:801.847500px;}
.y119{bottom:802.033500px;}
.y17f{bottom:803.665500px;}
.y283{bottom:805.836000px;}
.y29f{bottom:806.383500px;}
.y13b{bottom:806.932500px;}
.y1e1{bottom:806.959500px;}
.y1c2{bottom:808.315500px;}
.y8f{bottom:814.999500px;}
.y246{bottom:815.013000px;}
.y380{bottom:816.897000px;}
.y31f{bottom:818.280000px;}
.y2be{bottom:818.769000px;}
.y4d{bottom:819.603000px;}
.y360{bottom:819.748500px;}
.y343{bottom:821.317500px;}
.y1a2{bottom:821.830500px;}
.y300{bottom:822.118500px;}
.yb0{bottom:822.228000px;}
.y267{bottom:822.648000px;}
.y15a{bottom:823.405500px;}
.yf8{bottom:823.573500px;}
.y2de{bottom:823.605000px;}
.y118{bottom:823.789500px;}
.y17e{bottom:825.577500px;}
.y13a{bottom:828.688500px;}
.y1e0{bottom:830.209500px;}
.y1c1{bottom:831.306000px;}
.y202{bottom:832.015500px;}
.yd6{bottom:833.839500px;}
.y8e{bottom:835.323000px;}
.y223{bottom:835.473000px;}
.y245{bottom:838.264500px;}
.y37f{bottom:838.653000px;}
.y31e{bottom:840.192000px;}
.y2ff{bottom:840.324000px;}
.y2bd{bottom:840.876000px;}
.y35f{bottom:841.522500px;}
.y342{bottom:842.812500px;}
.y1a1{bottom:843.603000px;}
.yaf{bottom:843.721500px;}
.y266{bottom:844.404000px;}
.y159{bottom:845.179500px;}
.yf7{bottom:845.329500px;}
.y282{bottom:845.439000px;}
.y29e{bottom:845.986500px;}
.y2dd{bottom:846.856500px;}
.y117{bottom:847.041000px;}
.y17d{bottom:847.351500px;}
.y201{bottom:850.416000px;}
.y1df{bottom:850.533000px;}
.y1c0{bottom:851.629500px;}
.y139{bottom:851.940000px;}
.yd5{bottom:852.045000px;}
.y222{bottom:853.873500px;}
.y38{bottom:855.564000px;}
.y8d{bottom:855.646500px;}
.y2fe{bottom:858.529500px;}
.y37e{bottom:860.410500px;}
.y31d{bottom:861.966000px;}
.y2bc{bottom:862.371000px;}
.y35e{bottom:863.017500px;}
.y281{bottom:863.764500px;}
.y29d{bottom:864.312000px;}
.y4c{bottom:864.435000px;}
.y341{bottom:864.570000px;}
.y1a0{bottom:865.098000px;}
.yae{bottom:866.712000px;}
.y265{bottom:867.655500px;}
.y26{bottom:867.889500px;}
.y158{bottom:868.431000px;}
.yf6{bottom:868.581000px;}
.y200{bottom:868.815000px;}
.y17c{bottom:869.107500px;}
.y138{bottom:872.263500px;}
.y221{bottom:872.274000px;}
.yd4{bottom:873.957000px;}
.y37{bottom:875.887500px;}
.y8c{bottom:875.971500px;}
.y2fd{bottom:876.735000px;}
.y2{bottom:879.369000px;}
.y244{bottom:880.405500px;}
.y31c{bottom:883.461000px;}
.y37d{bottom:883.660500px;}
.y2bb{bottom:884.127000px;}
.y35d{bottom:884.773500px;}
.y280{bottom:885.795000px;}
.y29c{bottom:886.222500px;}
.y340{bottom:886.326000px;}
.y2dc{bottom:886.458000px;}
.y116{bottom:886.611000px;}
.y19f{bottom:886.855500px;}
.y264{bottom:887.979000px;}
.y157{bottom:888.036000px;}
.y1de{bottom:890.136000px;}
.y17b{bottom:890.865000px;}
.y1ff{bottom:890.922000px;}
.y1bf{bottom:891.216000px;}
.y220{bottom:894.186000px;}
.y3ac{bottom:894.616500px;}
.y2fc{bottom:894.940500px;}
.yd3{bottom:895.731000px;}
.y36{bottom:896.212500px;}
.y8b{bottom:896.295000px;}
.y243{bottom:898.611000px;}
.y25{bottom:904.723500px;}
.y2db{bottom:904.783500px;}
.y115{bottom:904.816500px;}
.y31b{bottom:905.217000px;}
.y2ba{bottom:905.883000px;}
.yad{bottom:906.313500px;}
.y156{bottom:906.436500px;}
.y35c{bottom:906.531000px;}
.y27f{bottom:907.569000px;}
.y29b{bottom:907.996500px;}
.y263{bottom:908.302500px;}
.y1dd{bottom:908.341500px;}
.y19e{bottom:908.611500px;}
.y33f{bottom:909.577500px;}
.y1be{bottom:909.615000px;}
.yf5{bottom:910.363500px;}
.y137{bottom:911.850000px;}
.y2fb{bottom:913.147500px;}
.y1fe{bottom:913.911000px;}
.y17a{bottom:914.115000px;}
.y3ab{bottom:914.940000px;}
.y35{bottom:916.536000px;}
.y8a{bottom:916.618500px;}
.y242{bottom:916.818000px;}
.y21f{bottom:917.175000px;}
.yd2{bottom:917.487000px;}
.yac{bottom:924.520500px;}
.y37c{bottom:925.803000px;}
.y2da{bottom:926.695500px;}
.y114{bottom:926.728500px;}
.y31a{bottom:926.974500px;}
.y1bd{bottom:928.015500px;}
.y155{bottom:928.543500px;}
.y2b9{bottom:929.134500px;}
.y27e{bottom:929.325000px;}
.y29a{bottom:929.752500px;}
.y35b{bottom:929.781000px;}
.y33e{bottom:929.901000px;}
.y136{bottom:930.055500px;}
.y1dc{bottom:930.253500px;}
.y2fa{bottom:931.353000px;}
.y19d{bottom:931.863000px;}
.y1fd{bottom:934.234500px;}
.y179{bottom:934.440000px;}
.y241{bottom:935.023500px;}
.y34{bottom:936.859500px;}
.y89{bottom:936.942000px;}
.y21e{bottom:937.498500px;}
.yd1{bottom:940.738500px;}
.y37b{bottom:944.008500px;}
.yab{bottom:946.431000px;}
.y262{bottom:947.889000px;}
.y2d9{bottom:948.469500px;}
.y113{bottom:948.501000px;}
.y2f9{bottom:949.558500px;}
.y1bc{bottom:949.927500px;}
.yf4{bottom:949.933500px;}
.y35a{bottom:950.106000px;}
.y319{bottom:950.224500px;}
.y154{bottom:951.532500px;}
.y135{bottom:951.967500px;}
.y27d{bottom:952.576500px;}
.y299{bottom:953.004000px;}
.y240{bottom:953.229000px;}
.y1db{bottom:953.242500px;}
.y3aa{bottom:954.526500px;}
.y1fc{bottom:954.558000px;}
.y33{bottom:957.183000px;}
.y88{bottom:957.265500px;}
.y21d{bottom:957.822000px;}
.yd0{bottom:961.062000px;}
.y24{bottom:965.424000px;}
.y261{bottom:966.214500px;}
.y1{bottom:966.726000px;}
.y37a{bottom:967.414500px;}
.y2f8{bottom:967.764000px;}
.yaa{bottom:968.205000px;}
.yf3{bottom:968.257500px;}
.y33d{bottom:969.504000px;}
.y2d8{bottom:970.225500px;}
.y112{bottom:970.258500px;}
.y23f{bottom:971.434500px;}
.y19c{bottom:971.466000px;}
.y1bb{bottom:971.700000px;}
.y3a9{bottom:972.732000px;}
.y27c{bottom:972.900000px;}
.y298{bottom:973.327500px;}
.y1da{bottom:973.567500px;}
.y178{bottom:974.041500px;}
.y134{bottom:974.956500px;}
.y32{bottom:977.506500px;}
.y2f7{bottom:985.969500px;}
.yf2{bottom:986.658000px;}
.y33c{bottom:987.829500px;}
.y260{bottom:988.246500px;}
.y379{bottom:989.172000px;}
.y23e{bottom:989.640000px;}
.ya9{bottom:989.700000px;}
.y359{bottom:989.707500px;}
.y318{bottom:989.827500px;}
.y19b{bottom:989.865000px;}
.y153{bottom:991.119000px;}
.y2b8{bottom:992.325000px;}
.y177{bottom:992.367000px;}
.y1ba{bottom:993.457500px;}
.y2d7{bottom:993.477000px;}
.y111{bottom:993.510000px;}
.y1fb{bottom:994.161000px;}
.y3a8{bottom:994.762500px;}
.y21c{bottom:997.425000px;}
.y31{bottom:997.831500px;}
.y87{bottom:997.914000px;}
.ycf{bottom:1000.371000px;}
.y23d{bottom:1007.845500px;}
.y358{bottom:1008.033000px;}
.y317{bottom:1008.153000px;}
.yf1{bottom:1008.570000px;}
.y152{bottom:1009.324500px;}
.y2f6{bottom:1009.495500px;}
.y33b{bottom:1009.741500px;}
.y25f{bottom:1010.019000px;}
.y378{bottom:1010.928000px;}
.ya8{bottom:1011.195000px;}
.y19a{bottom:1011.972000px;}
.y1fa{bottom:1012.486500px;}
.y297{bottom:1012.636500px;}
.y1d9{bottom:1012.875000px;}
.y176{bottom:1014.399000px;}
.y133{bottom:1014.559500px;}
.y21b{bottom:1015.825500px;}
.y3a7{bottom:1016.536500px;}
.y1b9{bottom:1016.709000px;}
.y30{bottom:1018.155000px;}
.y86{bottom:1018.237500px;}
.yce{bottom:1018.770000px;}
.y316{bottom:1030.065000px;}
.yf0{bottom:1030.342500px;}
.y1f9{bottom:1030.887000px;}
.y296{bottom:1030.962000px;}
.y1d8{bottom:1031.080500px;}
.y151{bottom:1031.236500px;}
.y23c{bottom:1031.253000px;}
.y25e{bottom:1031.514000px;}
.y377{bottom:1032.685500px;}
.y132{bottom:1032.885000px;}
.ya7{bottom:1032.951000px;}
.y110{bottom:1033.080000px;}
.y199{bottom:1033.744500px;}
.y2b7{bottom:1034.139000px;}
.y21a{bottom:1034.224500px;}
.ycd{bottom:1037.170500px;}
.y175{bottom:1037.388000px;}
.y3a6{bottom:1038.292500px;}
.y2f{bottom:1038.478500px;}
.y85{bottom:1038.561000px;}
.y131{bottom:1051.285500px;}
.y10f{bottom:1051.404000px;}
.yef{bottom:1051.837500px;}
.y1d7{bottom:1052.992500px;}
.y150{bottom:1053.009000px;}
.y376{bottom:1054.441500px;}
.ya6{bottom:1054.708500px;}
.ycc{bottom:1055.376000px;}
.y219{bottom:1056.136500px;}
.y1b8{bottom:1056.279000px;}
.y198{bottom:1056.996000px;}
.y2b6{bottom:1057.128000px;}
.y84{bottom:1058.884500px;}
.y3a5{bottom:1061.544000px;}
.y10e{bottom:1073.316000px;}
.yee{bottom:1073.332500px;}
.ycb{bottom:1073.701500px;}
.y1b7{bottom:1074.678000px;}
.y14f{bottom:1074.766500px;}
.y375{bottom:1076.199000px;}
.y197{bottom:1076.602500px;}
.y174{bottom:1076.991000px;}
.ya5{bottom:1077.960000px;}
.y218{bottom:1079.125500px;}
.y83{bottom:1079.208000px;}
.y52{bottom:1081.083000px;}
.y196{bottom:1095.001500px;}
.yed{bottom:1095.090000px;}
.y173{bottom:1095.196500px;}
.yca{bottom:1095.613500px;}
.y14e{bottom:1096.522500px;}
.y1b6{bottom:1096.785000px;}
.y2e{bottom:1099.450500px;}
.y82{bottom:1099.533000px;}
.y51{bottom:1101.406500px;}
.y3a4{bottom:1103.686500px;}
.yec{bottom:1116.846000px;}
.yc9{bottom:1117.108500px;}
.y2d{bottom:1119.774000px;}
.y4b{bottom:1121.866500px;}
.y3a3{bottom:1121.892000px;}
.y81{bottom:1138.222500px;}
.y2c{bottom:1140.097500px;}
.y23{bottom:1150.594892px;}
.y22{bottom:1164.117347px;}
.y21{bottom:1177.647921px;}
.y50{bottom:1193.145000px;}
.h7{height:32.130000px;}
.h19{height:33.188603px;}
.h15{height:37.309279px;}
.h9{height:38.426829px;}
.h17{height:38.549493px;}
.h16{height:38.593542px;}
.hd{height:40.695331px;}
.h18{height:41.003472px;}
.h1d{height:43.576412px;}
.h6{height:45.900000px;}
.h10{height:47.716403px;}
.h3{height:48.195000px;}
.h12{height:48.436404px;}
.h1a{height:52.887317px;}
.h1c{height:53.149135px;}
.h2{height:55.080000px;}
.h1b{height:55.701865px;}
.hf{height:55.956143px;}
.h13{height:73.251697px;}
.hc{height:76.304064px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h11{height:126.562933px;}
.hb{height:152.607617px;}
.he{height:162.781322px;}
.h14{height:311.308792px;}
.ha{height:597.017316px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:626.017215px;}
.w2{width:637.794021px;}
.w4{width:892.266882px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:5.112212px;}
.x7{left:85.039500px;}
.xb{left:98.587057px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x8{left:133.938000px;}
.xd{left:139.020000px;}
.xe{left:155.197500px;}
.x4{left:203.484001px;}
.x5{left:220.082257px;}
.x13{left:336.459000px;}
.x11{left:347.757000px;}
.x16{left:354.391500px;}
.x18{left:364.030500px;}
.x15{left:368.514000px;}
.xc{left:385.340738px;}
.x9{left:417.351000px;}
.x3{left:454.959000px;}
.x6{left:552.756000px;}
.x14{left:566.871000px;}
.x12{left:635.851500px;}
.xf{left:650.965500px;}
.x10{left:680.011500px;}
.x19{left:686.094000px;}
.x17{left:699.946500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.145394pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:15.363869pt;}
.ws5{word-spacing:-85.014400pt;}
.ws4{word-spacing:-42.507200pt;}
.ws1{word-spacing:-40.009935pt;}
.ws47{word-spacing:-33.803665pt;}
.wse{word-spacing:-33.181665pt;}
.wsf{word-spacing:-33.049467pt;}
.wsc{word-spacing:-29.090933pt;}
.ws57{word-spacing:-26.566933pt;}
.ws87{word-spacing:-24.087293pt;}
.ws12a{word-spacing:-23.621838pt;}
.ws10e{word-spacing:-23.156383pt;}
.ws14f{word-spacing:-23.098201pt;}
.ws145{word-spacing:-22.400019pt;}
.ws114{word-spacing:-22.341837pt;}
.ws60{word-spacing:-22.225473pt;}
.wsb9{word-spacing:-21.818200pt;}
.ws14b{word-spacing:-21.585473pt;}
.ws8e{word-spacing:-21.120018pt;}
.ws123{word-spacing:-20.654563pt;}
.wsfe{word-spacing:-20.538199pt;}
.ws7e{word-spacing:-20.363653pt;}
.wsb3{word-spacing:-20.130926pt;}
.ws2{word-spacing:-19.925333pt;}
.ws167{word-spacing:-19.898198pt;}
.ws148{word-spacing:-19.665471pt;}
.ws157{word-spacing:-19.607289pt;}
.ws109{word-spacing:-19.549107pt;}
.ws55{word-spacing:-19.490925pt;}
.ws9e{word-spacing:-19.374562pt;}
.ws4e{word-spacing:-19.316380pt;}
.ws49{word-spacing:-19.258198pt;}
.wsf2{word-spacing:-19.200016pt;}
.ws159{word-spacing:-19.141834pt;}
.ws34{word-spacing:-19.128267pt;}
.wscd{word-spacing:-18.967289pt;}
.ws12f{word-spacing:-18.618197pt;}
.ws142{word-spacing:-18.443652pt;}
.ws31{word-spacing:-18.385470pt;}
.wsca{word-spacing:-18.269106pt;}
.wsd0{word-spacing:-18.152742pt;}
.ws115{word-spacing:-17.978197pt;}
.wsf6{word-spacing:-17.861833pt;}
.ws10c{word-spacing:-17.745469pt;}
.ws44{word-spacing:-17.687287pt;}
.ws54{word-spacing:-17.570924pt;}
.wsb0{word-spacing:-17.396378pt;}
.ws8{word-spacing:-17.221833pt;}
.ws33{word-spacing:-16.930923pt;}
.ws10{word-spacing:-16.872741pt;}
.wsa1{word-spacing:-16.698196pt;}
.wsf5{word-spacing:-16.640014pt;}
.wsbc{word-spacing:-16.581832pt;}
.wsbe{word-spacing:-16.465468pt;}
.ws7{word-spacing:-16.407286pt;}
.ws39{word-spacing:-16.349105pt;}
.ws40{word-spacing:-15.941831pt;}
.wsde{word-spacing:-15.883650pt;}
.ws13d{word-spacing:-15.709104pt;}
.ws2a{word-spacing:-15.650922pt;}
.ws43{word-spacing:-15.592740pt;}
.ws3b{word-spacing:-15.476377pt;}
.ws9{word-spacing:-15.127285pt;}
.ws25{word-spacing:-14.778194pt;}
.ws27{word-spacing:-14.730867pt;}
.ws26{word-spacing:-14.727520pt;}
.ws28{word-spacing:-14.727358pt;}
.ws29{word-spacing:-14.720012pt;}
.ws6{word-spacing:-14.670314pt;}
.ws111{word-spacing:-14.661830pt;}
.wsa{word-spacing:-14.603649pt;}
.wsb{word-spacing:-14.545467pt;}
.wsef{word-spacing:-14.429103pt;}
.ws32{word-spacing:-14.254557pt;}
.wsc6{word-spacing:-13.963648pt;}
.ws3f{word-spacing:-13.789102pt;}
.ws22{word-spacing:-13.731005pt;}
.ws24{word-spacing:-13.730921pt;}
.ws21{word-spacing:-13.727453pt;}
.ws23{word-spacing:-13.724942pt;}
.ws20{word-spacing:-13.724267pt;}
.ws13c{word-spacing:-13.440011pt;}
.ws41{word-spacing:-13.381829pt;}
.ws51{word-spacing:-13.336601pt;}
.ws52{word-spacing:-13.283467pt;}
.ws3c{word-spacing:-13.149102pt;}
.wsd3{word-spacing:-13.090920pt;}
.ws30{word-spacing:-12.974556pt;}
.ws3a{word-spacing:-12.800011pt;}
.ws2c{word-spacing:-12.681958pt;}
.ws2b{word-spacing:-12.626997pt;}
.ws2d{word-spacing:-12.625465pt;}
.ws11{word-spacing:-12.567283pt;}
.ws42{word-spacing:-12.450919pt;}
.ws35{word-spacing:-12.218192pt;}
.ws3e{word-spacing:-12.101828pt;}
.ws36{word-spacing:-11.229100pt;}
.ws2f{word-spacing:-10.996373pt;}
.ws3d{word-spacing:-10.938191pt;}
.ws1f{word-spacing:-10.817336pt;}
.ws59{word-spacing:-10.705463pt;}
.ws3{word-spacing:-10.626800pt;}
.ws2e{word-spacing:-10.414554pt;}
.wsd{word-spacing:-10.298190pt;}
.wsd9{word-spacing:-10.181827pt;}
.ws1c{word-spacing:-9.622600pt;}
.ws103{word-spacing:-9.309099pt;}
.ws99{word-spacing:-9.134553pt;}
.ws38{word-spacing:-9.018189pt;}
.ws37{word-spacing:-8.320007pt;}
.wsc1{word-spacing:-6.458187pt;}
.ws46{word-spacing:-3.607276pt;}
.wsd6{word-spacing:-3.200003pt;}
.ws86{word-spacing:-1.305807pt;}
.wsa3{word-spacing:-1.300474pt;}
.ws129{word-spacing:-0.850047pt;}
.ws137{word-spacing:-0.640001pt;}
.ws10d{word-spacing:-0.376351pt;}
.ws14e{word-spacing:-0.338070pt;}
.ws0{word-spacing:0.000000pt;}
.ws144{word-spacing:0.347526pt;}
.ws5f{word-spacing:0.524523pt;}
.ws84{word-spacing:0.580257pt;}
.wsb8{word-spacing:0.966193pt;}
.ws113{word-spacing:1.169808pt;}
.ws14a{word-spacing:1.190170pt;}
.ws8d{word-spacing:1.659526pt;}
.ws122{word-spacing:2.155526pt;}
.wsfd{word-spacing:2.284500pt;}
.ws7d{word-spacing:2.409590pt;}
.wsb2{word-spacing:2.651526pt;}
.ws166{word-spacing:2.885197pt;}
.ws147{word-spacing:3.126193pt;}
.ws156{word-spacing:3.200836pt;}
.ws108{word-spacing:3.232862pt;}
.ws9d{word-spacing:3.424860pt;}
.ws6d{word-spacing:3.515047pt;}
.ws15b{word-spacing:3.515503pt;}
.ws82{word-spacing:3.515526pt;}
.wse1{word-spacing:3.515529pt;}
.ws73{word-spacing:3.515530pt;}
.ws11b{word-spacing:3.516012pt;}
.ws77{word-spacing:3.516015pt;}
.ws89{word-spacing:3.516497pt;}
.ws6b{word-spacing:3.516499pt;}
.ws4d{word-spacing:3.516505pt;}
.ws5c{word-spacing:3.516523pt;}
.wse6{word-spacing:3.516982pt;}
.wsab{word-spacing:3.517468pt;}
.ws75{word-spacing:3.517470pt;}
.ws160{word-spacing:3.517930pt;}
.ws94{word-spacing:3.517953pt;}
.ws80{word-spacing:3.517954pt;}
.ws71{word-spacing:3.518440pt;}
.ws116{word-spacing:3.518895pt;}
.ws105{word-spacing:3.518924pt;}
.ws79{word-spacing:3.519410pt;}
.ws48{word-spacing:3.519418pt;}
.ws117{word-spacing:3.519893pt;}
.ws6f{word-spacing:3.519894pt;}
.wsf1{word-spacing:3.595526pt;}
.ws158{word-spacing:3.632836pt;}
.wscc{word-spacing:3.776860pt;}
.ws12e{word-spacing:4.134193pt;}
.ws67{word-spacing:4.216138pt;}
.ws141{word-spacing:4.315526pt;}
.ws100{word-spacing:4.504134pt;}
.wsc9{word-spacing:4.536135pt;}
.wscf{word-spacing:4.625830pt;}
.ws10b{word-spacing:5.046193pt;}
.wsae{word-spacing:5.100475pt;}
.wsaf{word-spacing:5.371526pt;}
.ws139{word-spacing:5.539772pt;}
.wsee{word-spacing:5.904860pt;}
.ws154{word-spacing:6.087626pt;}
.wsa0{word-spacing:6.096860pt;}
.wsf4{word-spacing:6.147286pt;}
.wsbb{word-spacing:6.192860pt;}
.wsbd{word-spacing:6.342193pt;}
.ws53{word-spacing:6.562804pt;}
.wseb{word-spacing:7.104860pt;}
.ws13{word-spacing:7.366071pt;}
.ws152{word-spacing:8.006170pt;}
.wsc3{word-spacing:8.011526pt;}
.wse0{word-spacing:8.048860pt;}
.ws110{word-spacing:8.112860pt;}
.wsdd{word-spacing:8.230193pt;}
.wsc5{word-spacing:8.827526pt;}
.wsd2{word-spacing:9.728860pt;}
.ws146{word-spacing:9.965468pt;}
.ws13b{word-spacing:10.055141pt;}
.wsdb{word-spacing:10.230193pt;}
.wsd4{word-spacing:10.587526pt;}
.ws16{word-spacing:10.862624pt;}
.ws14{word-spacing:11.095727pt;}
.ws1e{word-spacing:11.142348pt;}
.ws19{word-spacing:11.608555pt;}
.ws58{word-spacing:12.092523pt;}
.ws15{word-spacing:12.447728pt;}
.wsd8{word-spacing:12.621953pt;}
.ws102{word-spacing:13.478681pt;}
.ws98{word-spacing:13.670193pt;}
.wsc8{word-spacing:16.058195pt;}
.wsc0{word-spacing:16.333953pt;}
.ws45{word-spacing:19.168407pt;}
.wsd5{word-spacing:19.632860pt;}
.ws136{word-spacing:22.123526pt;}
.ws12{word-spacing:22.289491pt;}
.ws1d{word-spacing:26.221130pt;}
.wsb1{word-spacing:37.140673pt;}
.ws133{word-spacing:37.140892pt;}
.wsda{word-spacing:37.141082pt;}
.ws155{word-spacing:37.141106pt;}
.wscb{word-spacing:37.141271pt;}
.wsf8{word-spacing:37.141347pt;}
.wse9{word-spacing:37.141466pt;}
.ws106{word-spacing:37.141570pt;}
.ws4f{word-spacing:37.141598pt;}
.wsb6{word-spacing:37.141618pt;}
.ws14c{word-spacing:37.141662pt;}
.wsea{word-spacing:37.141702pt;}
.ws7f{word-spacing:37.141738pt;}
.wsfc{word-spacing:37.141831pt;}
.ws13e{word-spacing:37.141899pt;}
.ws95{word-spacing:37.141998pt;}
.ws143{word-spacing:37.142559pt;}
.ws7a{word-spacing:37.142564pt;}
.wsb5{word-spacing:37.142658pt;}
.wsed{word-spacing:37.142730pt;}
.ws13a{word-spacing:37.142772pt;}
.ws149{word-spacing:37.142811pt;}
.ws13f{word-spacing:37.142844pt;}
.wsd1{word-spacing:37.142858pt;}
.wse4{word-spacing:37.142878pt;}
.wsb7{word-spacing:37.142962pt;}
.ws14d{word-spacing:37.143009pt;}
.wsa8{word-spacing:37.143019pt;}
.ws8a{word-spacing:37.143047pt;}
.ws72{word-spacing:37.143110pt;}
.wsf9{word-spacing:37.143175pt;}
.wsb4{word-spacing:37.143504pt;}
.ws153{word-spacing:37.143509pt;}
.ws6c{word-spacing:37.143562pt;}
.wsdf{word-spacing:37.143580pt;}
.ws93{word-spacing:37.143680pt;}
.ws65{word-spacing:37.143712pt;}
.ws81{word-spacing:37.143817pt;}
.ws90{word-spacing:37.143878pt;}
.ws107{word-spacing:37.144016pt;}
.ws104{word-spacing:37.144173pt;}
.ws76{word-spacing:37.144212pt;}
.ws66{word-spacing:37.144257pt;}
.ws74{word-spacing:37.144265pt;}
.ws101{word-spacing:37.144467pt;}
.ws140{word-spacing:37.144492pt;}
.ws15a{word-spacing:37.144587pt;}
.ws121{word-spacing:37.144686pt;}
.wsc2{word-spacing:37.144757pt;}
.ws85{word-spacing:37.144829pt;}
.ws70{word-spacing:37.144853pt;}
.ws6e{word-spacing:37.145200pt;}
.wsac{word-spacing:37.145243pt;}
.ws78{word-spacing:37.145305pt;}
.ws10a{word-spacing:37.145360pt;}
.ws12b{word-spacing:37.145446pt;}
.wse2{word-spacing:37.145470pt;}
.wsff{word-spacing:37.145612pt;}
.ws150{word-spacing:37.145727pt;}
.ws9c{word-spacing:37.145731pt;}
.wsa7{word-spacing:37.145770pt;}
.ws12c{word-spacing:37.190282pt;}
.ws91{word-spacing:37.190819pt;}
.ws4c{word-spacing:37.191559pt;}
.ws7b{word-spacing:37.192073pt;}
.ws8b{word-spacing:37.193231pt;}
.ws125{word-spacing:37.193260pt;}
.ws5d{word-spacing:37.193606pt;}
.ws63{word-spacing:37.193650pt;}
.ws10f{word-spacing:37.193755pt;}
.ws124{word-spacing:37.193887pt;}
.ws135{word-spacing:37.194026pt;}
.ws112{word-spacing:37.194197pt;}
.wsfa{word-spacing:37.194381pt;}
.wsad{word-spacing:37.194429pt;}
.wsce{word-spacing:37.194647pt;}
.ws8c{word-spacing:37.194837pt;}
.ws5b{word-spacing:37.194956pt;}
.ws50{word-spacing:37.195026pt;}
.ws119{word-spacing:37.195188pt;}
.ws83{word-spacing:37.195312pt;}
.wsa5{word-spacing:37.195327pt;}
.wsa6{word-spacing:37.195487pt;}
.ws8f{word-spacing:37.195517pt;}
.ws162{word-spacing:37.195615pt;}
.ws9f{word-spacing:37.195665pt;}
.ws56{word-spacing:37.195687pt;}
.ws4a{word-spacing:37.195811pt;}
.ws12d{word-spacing:37.195828pt;}
.wsdc{word-spacing:37.195906pt;}
.ws88{word-spacing:37.195925pt;}
.ws4b{word-spacing:37.195941pt;}
.ws161{word-spacing:37.196049pt;}
.wsbf{word-spacing:37.196106pt;}
.wsba{word-spacing:37.196485pt;}
.ws127{word-spacing:37.196675pt;}
.ws138{word-spacing:37.196751pt;}
.ws126{word-spacing:37.196985pt;}
.ws61{word-spacing:37.197041pt;}
.wsa4{word-spacing:37.197079pt;}
.ws6a{word-spacing:37.197108pt;}
.wsaa{word-spacing:37.197123pt;}
.ws64{word-spacing:37.197282pt;}
.ws97{word-spacing:37.197503pt;}
.ws9a{word-spacing:37.197554pt;}
.wsd7{word-spacing:37.197763pt;}
.wsc4{word-spacing:37.198048pt;}
.wsa2{word-spacing:37.198167pt;}
.wsf0{word-spacing:37.198357pt;}
.ws164{word-spacing:37.198628pt;}
.ws9b{word-spacing:37.198822pt;}
.wsf3{word-spacing:37.198917pt;}
.ws134{word-spacing:37.300293pt;}
.wse5{word-spacing:38.736894pt;}
.ws15f{word-spacing:38.739743pt;}
.ws132{word-spacing:38.841175pt;}
.wsc7{word-spacing:38.848860pt;}
.ws163{word-spacing:39.265819pt;}
.wse3{word-spacing:40.384044pt;}
.ws15e{word-spacing:40.386893pt;}
.ws1b{word-spacing:41.470852pt;}
.ws1a{word-spacing:41.673754pt;}
.ws131{word-spacing:41.869806pt;}
.ws151{word-spacing:45.589508pt;}
.ws15d{word-spacing:46.656689pt;}
.ws11a{word-spacing:47.555926pt;}
.ws165{word-spacing:48.507795pt;}
.ws128{word-spacing:48.513129pt;}
.wse8{word-spacing:53.014176pt;}
.ws7c{word-spacing:54.407445pt;}
.wsec{word-spacing:63.443994pt;}
.ws5e{word-spacing:63.494870pt;}
.ws96{word-spacing:63.498767pt;}
.wsfb{word-spacing:65.195929pt;}
.wsa9{word-spacing:77.152820pt;}
.ws92{word-spacing:77.577680pt;}
.wse7{word-spacing:127.021510pt;}
.ws18{word-spacing:252.694930pt;}
.ws69{word-spacing:268.806176pt;}
.ws17{word-spacing:313.348459pt;}
.ws68{word-spacing:342.813510pt;}
.wsf7{word-spacing:362.541931pt;}
.ws11f{word-spacing:596.430228pt;}
.ws120{word-spacing:623.019341pt;}
.ws11c{word-spacing:629.244801pt;}
.ws130{word-spacing:630.235261pt;}
.ws11e{word-spacing:638.030263pt;}
.ws5a{word-spacing:670.672843pt;}
.ws11d{word-spacing:679.455752pt;}
.ws62{word-spacing:1209.024753pt;}
.ws118{word-spacing:1266.861510pt;}
.ws15c{word-spacing:1427.904594pt;}
._5{margin-left:-12.922189pt;}
._4{margin-left:-10.350499pt;}
._8{margin-left:-7.991354pt;}
._3a{margin-left:-7.098188pt;}
._6{margin-left:-5.440922pt;}
._9{margin-left:-4.072731pt;}
._2{margin-left:-3.002042pt;}
._0{margin-left:-1.780022pt;}
._b{width:1.058224pt;}
._1{width:2.010944pt;}
._a{width:3.480052pt;}
._7{width:4.930835pt;}
._f{width:10.380753pt;}
._11{width:11.845485pt;}
._c{width:13.649323pt;}
._67{width:16.301873pt;}
._7e{width:18.163693pt;}
._e{width:62.338598pt;}
._23{width:63.656153pt;}
._1c{width:64.647573pt;}
._55{width:66.868017pt;}
._c2{width:68.293677pt;}
._46{width:69.285344pt;}
._49{width:70.269101pt;}
._39{width:71.367479pt;}
._5d{width:73.241441pt;}
._2d{width:74.650677pt;}
._3d{width:76.173378pt;}
._26{width:77.896483pt;}
._74{width:79.063874pt;}
._21{width:80.393321pt;}
._3c{width:81.413965pt;}
._91{width:82.527175pt;}
._19{width:83.577425pt;}
._38{width:85.042146pt;}
._1f{width:86.321361pt;}
._18{width:87.315045pt;}
._c3{width:88.560067pt;}
._b4{width:90.152159pt;}
._8f{width:92.009970pt;}
._36{width:92.982503pt;}
._3f{width:94.061902pt;}
._b1{width:95.352581pt;}
._bb{width:96.786798pt;}
._35{width:98.044325pt;}
._1d{width:100.318060pt;}
._9d{width:101.676741pt;}
._65{width:103.347605pt;}
._1a{width:104.250881pt;}
._2a{width:105.740193pt;}
._56{width:106.850819pt;}
._84{width:107.841786pt;}
._28{width:108.742235pt;}
._b2{width:110.248621pt;}
._4f{width:111.400270pt;}
._bc{width:112.726958pt;}
._51{width:114.005330pt;}
._a8{width:115.505097pt;}
._3e{width:117.455571pt;}
._80{width:121.355159pt;}
._7f{width:123.021896pt;}
._64{width:124.748784pt;}
._7c{width:126.023938pt;}
._a9{width:127.949578pt;}
._60{width:128.909206pt;}
._79{width:130.603685pt;}
._6e{width:131.953342pt;}
._a2{width:133.896323pt;}
._29{width:137.946830pt;}
._4e{width:138.846622pt;}
._a3{width:141.441332pt;}
._5e{width:143.465045pt;}
._37{width:144.880728pt;}
._a7{width:146.798774pt;}
._57{width:152.650677pt;}
._5a{width:154.343095pt;}
._1b{width:156.515114pt;}
._42{width:159.839579pt;}
._50{width:161.518814pt;}
._33{width:164.604895pt;}
._9c{width:166.418911pt;}
._8e{width:167.948812pt;}
._34{width:171.715898pt;}
._5c{width:188.370146pt;}
._5b{width:196.350402pt;}
._b0{width:199.484812pt;}
._14{width:203.120575pt;}
._aa{width:205.281728pt;}
._7a{width:207.751625pt;}
._13{width:208.706035pt;}
._88{width:215.573102pt;}
._89{width:218.516761pt;}
._77{width:224.159870pt;}
._16{width:227.475162pt;}
._8c{width:240.069102pt;}
._8d{width:243.012761pt;}
._af{width:250.316356pt;}
._24{width:252.991815pt;}
._b6{width:254.647262pt;}
._a4{width:256.998586pt;}
._59{width:263.317731pt;}
._87{width:278.700427pt;}
._7d{width:281.312084pt;}
._17{width:288.880647pt;}
._99{width:296.488619pt;}
._8b{width:303.196427pt;}
._8a{width:306.140087pt;}
._15{width:315.853417pt;}
._2e{width:343.720416pt;}
._97{width:345.463479pt;}
._72{width:346.649838pt;}
._96{width:372.638418pt;}
._93{width:393.840234pt;}
._47{width:402.139795pt;}
._9f{width:403.278316pt;}
._94{width:404.662061pt;}
._95{width:411.096632pt;}
._71{width:426.676397pt;}
._40{width:452.690146pt;}
._1e{width:458.608068pt;}
._25{width:473.228812pt;}
._92{width:477.622122pt;}
._a5{width:479.113337pt;}
._70{width:484.105598pt;}
._45{width:497.123116pt;}
._2b{width:501.861897pt;}
._62{width:519.784409pt;}
._63{width:522.415326pt;}
._6c{width:532.871840pt;}
._44{width:537.376551pt;}
._48{width:539.082739pt;}
._6d{width:563.277282pt;}
._98{width:568.827067pt;}
._ad{width:574.344429pt;}
._a0{width:583.374809pt;}
._4b{width:587.967840pt;}
._bf{width:590.992432pt;}
._ac{width:621.414716pt;}
._a6{width:622.648002pt;}
._9a{width:627.180812pt;}
._82{width:630.468601pt;}
._76{width:641.344773pt;}
._ab{width:657.617653pt;}
._2f{width:682.595223pt;}
._b7{width:721.809460pt;}
._73{width:729.057313pt;}
._52{width:745.908222pt;}
._43{width:762.186417pt;}
._be{width:768.412359pt;}
._4c{width:783.866185pt;}
._66{width:794.433220pt;}
._a1{width:801.789336pt;}
._22{width:804.187056pt;}
._2c{width:809.052812pt;}
._75{width:816.348475pt;}
._61{width:817.543275pt;}
._6b{width:830.830044pt;}
._6a{width:871.258775pt;}
._31{width:880.297206pt;}
._69{width:894.161414pt;}
._81{width:916.816333pt;}
._9e{width:926.473277pt;}
._20{width:949.740812pt;}
._bd{width:963.118893pt;}
._53{width:982.650237pt;}
._4a{width:1032.258044pt;}
._30{width:1082.770102pt;}
._b8{width:1113.350008pt;}
._32{width:1119.746146pt;}
._b9{width:1168.831692pt;}
._4d{width:1182.466146pt;}
._86{width:1184.938299pt;}
._85{width:1186.022693pt;}
._d{width:1236.927665pt;}
._83{width:1241.873663pt;}
._c0{width:1267.729139pt;}
._c1{width:1328.389210pt;}
._ba{width:1420.317336pt;}
._54{width:1488.444812pt;}
._3{width:1498.986817pt;}
._9b{width:1572.297979pt;}
._b5{width:1575.439312pt;}
._ae{width:1576.660645pt;}
._c4{width:1578.932645pt;}
._58{width:1580.500645pt;}
._b3{width:1582.308645pt;}
._78{width:1583.641979pt;}
._68{width:1584.868645pt;}
._90{width:1587.135312pt;}
._6f{width:1590.511312pt;}
._7b{width:1591.719479pt;}
._5f{width:1593.071312pt;}
._3b{width:1602.612645pt;}
._27{width:1606.159312pt;}
._10{width:1607.380645pt;}
._41{width:1609.652645pt;}
._12{width:1613.028645pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.507200pt;}
.fs11{font-size:42.577877pt;}
.fs10{font-size:46.620702pt;}
.fsf{font-size:47.864320pt;}
.fs5{font-size:48.108706pt;}
.fs12{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.181867pt;}
.fsb{font-size:58.447467pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:76.513067pt;}
.fs8{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fsd{font-size:132.197867pt;}
.fs7{font-size:159.402133pt;}
.fsa{font-size:170.028800pt;}
.fs6{font-size:653.549333pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:19.537458pt;}
.y60{bottom:31.310421pt;}
.y71{bottom:31.503538pt;}
.y70{bottom:43.469618pt;}
.y80{bottom:50.180000pt;}
.y6f{bottom:55.435698pt;}
.y5f{bottom:56.855869pt;}
.y5{bottom:59.133337pt;}
.y68{bottom:69.356071pt;}
.y5e{bottom:71.332709pt;}
.y6e{bottom:72.530255pt;}
.y67{bottom:81.322151pt;}
.y6d{bottom:84.496335pt;}
.y5d{bottom:85.809516pt;}
.y4{bottom:86.333337pt;}
.y66{bottom:93.288231pt;}
.y6c{bottom:96.462415pt;}
.y65{bottom:105.254311pt;}
.y3a2{bottom:111.514667pt;}
.y6b{bottom:111.847525pt;}
.y4a{bottom:113.386667pt;}
.y5c{bottom:123.075312pt;}
.y20{bottom:123.790666pt;}
.y6a{bottom:123.813605pt;}
.y3a1{bottom:127.697333pt;}
.y49{bottom:131.452000pt;}
.y69{bottom:135.779685pt;}
.y2b{bottom:137.393333pt;}
.y5b{bottom:137.477356pt;}
.y3a0{bottom:143.880000pt;}
.y48{bottom:149.517333pt;}
.y5a{bottom:151.345168pt;}
.y64{bottom:156.293088pt;}
.y39f{bottom:160.236000pt;}
.y59{bottom:167.531421pt;}
.y47{bottom:167.582667pt;}
.y63{bottom:168.259168pt;}
.y33a{bottom:168.898667pt;}
.y17{bottom:175.052000pt;}
.y39e{bottom:176.418667pt;}
.y58{bottom:181.890725pt;}
.y339{bottom:185.082667pt;}
.y46{bottom:185.648000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y39d{bottom:192.708000pt;}
.y57{bottom:196.367560pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y62{bottom:200.738698pt;}
.y45{bottom:203.714667pt;}
.y338{bottom:204.558667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y39c{bottom:208.890667pt;}
.y56{bottom:210.844371pt;}
.y61{bottom:212.704778pt;}
.y44{bottom:221.780000pt;}
.y337{bottom:223.913333pt;}
.y39b{bottom:225.180000pt;}
.y55{bottom:225.321206pt;}
.y130{bottom:229.076000pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y172{bottom:236.616000pt;}
.ya4{bottom:236.673333pt;}
.y43{bottom:239.845333pt;}
.y54{bottom:241.398954pt;}
.y39a{bottom:241.469333pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y1f8{bottom:242.784000pt;}
.y336{bottom:243.020000pt;}
.y12f{bottom:245.258667pt;}
.y2a{bottom:246.562667pt;}
.y73{bottom:249.601227pt;}
.y171{bottom:252.798667pt;}
.yc8{bottom:253.369333pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y23b{bottom:253.830667pt;}
.y195{bottom:254.340000pt;}
.ya3{bottom:254.738667pt;}
.y2d6{bottom:255.496000pt;}
.y399{bottom:257.758667pt;}
.y42{bottom:257.910667pt;}
.y1f7{bottom:259.140000pt;}
.y335{bottom:262.358667pt;}
.y2b5{bottom:262.684000pt;}
.y12e{bottom:264.736000pt;}
.y25d{bottom:266.465333pt;}
.yc7{bottom:269.658667pt;}
.y23a{bottom:269.770667pt;}
.y194{bottom:270.522667pt;}
.y2d5{bottom:271.784000pt;}
.y170{bottom:272.276000pt;}
.y398{bottom:274.113333pt;}
.y1f6{bottom:275.496000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y2b4{bottom:278.866667pt;}
.y334{bottom:281.698667pt;}
.y25c{bottom:282.754667pt;}
.y12d{bottom:284.090667pt;}
.y10d{bottom:285.654667pt;}
.y239{bottom:286.126667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y29{bottom:289.070667pt;}
.yc6{bottom:289.241333pt;}
.y193{bottom:290.000000pt;}
.ya2{bottom:290.869333pt;}
.y2d4{bottom:291.368000pt;}
.y16f{bottom:291.629333pt;}
.y397{bottom:295.025333pt;}
.y1f5{bottom:295.078667pt;}
.y2b3{bottom:298.344000pt;}
.y217{bottom:299.573333pt;}
.yeb{bottom:300.697333pt;}
.y27b{bottom:300.952000pt;}
.y1d6{bottom:301.534667pt;}
.y10c{bottom:301.944000pt;}
.y25b{bottom:302.337333pt;}
.y333{bottom:302.365333pt;}
.y12c{bottom:303.429333pt;}
.y315{bottom:305.172000pt;}
.y238{bottom:305.602667pt;}
.yc5{bottom:308.596000pt;}
.ya1{bottom:308.934667pt;}
.y192{bottom:309.353333pt;}
.ye{bottom:309.452000pt;}
.y2f5{bottom:310.206667pt;}
.y2d3{bottom:310.721333pt;}
.y16e{bottom:310.969333pt;}
.y396{bottom:314.365333pt;}
.y1f4{bottom:315.513333pt;}
.y216{bottom:315.929333pt;}
.yea{bottom:316.986667pt;}
.y27a{bottom:317.306667pt;}
.y2b2{bottom:317.698667pt;}
.y1d5{bottom:317.717333pt;}
.y374{bottom:319.018667pt;}
.y357{bottom:319.565333pt;}
.y332{bottom:320.432000pt;}
.y10b{bottom:321.421333pt;}
.y25a{bottom:321.692000pt;}
.y1b5{bottom:322.000000pt;}
.y12b{bottom:322.769333pt;}
.y314{bottom:323.238667pt;}
.y237{bottom:326.038667pt;}
.y2f4{bottom:326.390667pt;}
.ya0{bottom:327.001333pt;}
.yc4{bottom:327.934667pt;}
.y191{bottom:328.693333pt;}
.y2d2{bottom:330.061333pt;}
.y28{bottom:331.577333pt;}
.y16d{bottom:331.637333pt;}
.y215{bottom:332.284000pt;}
.y14d{bottom:332.664000pt;}
.ye9{bottom:333.341333pt;}
.y1f3{bottom:333.580000pt;}
.y395{bottom:333.704000pt;}
.y373{bottom:335.201333pt;}
.y356{bottom:335.748000pt;}
.y2b1{bottom:336.805333pt;}
.y279{bottom:336.957333pt;}
.y1d4{bottom:337.194667pt;}
.y1b4{bottom:338.354667pt;}
.y10a{bottom:340.774667pt;}
.y259{bottom:340.798667pt;}
.y313{bottom:341.304000pt;}
.y2f3{bottom:342.573333pt;}
.y295{bottom:342.970667pt;}
.y12a{bottom:343.436000pt;}
.yd{bottom:343.809333pt;}
.y236{bottom:344.104000pt;}
.yc3{bottom:347.274667pt;}
.y14c{bottom:348.952000pt;}
.y190{bottom:349.360000pt;}
.y16c{bottom:349.702667pt;}
.y2d1{bottom:350.729333pt;}
.y214{bottom:351.761333pt;}
.ye8{bottom:352.818667pt;}
.y394{bottom:353.044000pt;}
.y372{bottom:354.678667pt;}
.y355{bottom:355.332000pt;}
.y331{bottom:355.620000pt;}
.y2b0{bottom:356.158667pt;}
.y278{bottom:356.310667pt;}
.y1d3{bottom:357.629333pt;}
.y1b3{bottom:358.005333pt;}
.y2f2{bottom:358.756000pt;}
.y294{bottom:359.260000pt;}
.y258{bottom:359.905333pt;}
.y109{bottom:360.114667pt;}
.y129{bottom:361.502667pt;}
.yc{bottom:362.706666pt;}
.y9f{bottom:363.132000pt;}
.yc2{bottom:367.941333pt;}
.y14b{bottom:368.429333pt;}
.y1f2{bottom:368.753333pt;}
.y2d0{bottom:368.794667pt;}
.y213{bottom:371.116000pt;}
.y330{bottom:371.908000pt;}
.y393{bottom:372.382667pt;}
.ye7{bottom:373.253333pt;}
.y371{bottom:374.032000pt;}
.y354{bottom:374.685333pt;}
.y2f1{bottom:375.045333pt;}
.y2af{bottom:375.265333pt;}
.y277{bottom:375.650667pt;}
.y1d2{bottom:375.694667pt;}
.y312{bottom:376.492000pt;}
.y1b2{bottom:377.358667pt;}
.y293{bottom:378.737333pt;}
.y235{bottom:379.149333pt;}
.y257{bottom:379.244000pt;}
.y108{bottom:380.781333pt;}
.y9e{bottom:381.197333pt;}
.y18f{bottom:384.562667pt;}
.y16b{bottom:384.890667pt;}
.y1f1{bottom:385.041333pt;}
.yc1{bottom:386.008000pt;}
.y14a{bottom:388.864000pt;}
.y212{bottom:390.454667pt;}
.y2f0{bottom:391.228000pt;}
.ye6{bottom:391.320000pt;}
.y32f{bottom:391.385333pt;}
.y392{bottom:391.722667pt;}
.y311{bottom:392.780000pt;}
.y370{bottom:393.138667pt;}
.y353{bottom:393.792000pt;}
.y2ae{bottom:394.372000pt;}
.y234{bottom:395.089333pt;}
.y276{bottom:396.317333pt;}
.y1b1{bottom:396.698667pt;}
.y128{bottom:396.704000pt;}
.y27{bottom:396.801333pt;}
.y292{bottom:398.090667pt;}
.y256{bottom:398.584000pt;}
.y9d{bottom:399.262667pt;}
.y18e{bottom:400.918667pt;}
.y16a{bottom:401.180000pt;}
.y1f0{bottom:401.397333pt;}
.y2cf{bottom:403.997333pt;}
.y2ef{bottom:407.410667pt;}
.y310{bottom:409.069333pt;}
.y1d1{bottom:410.634667pt;}
.y32e{bottom:410.740000pt;}
.y391{bottom:411.061333pt;}
.y211{bottom:411.122667pt;}
.y233{bottom:411.445333pt;}
.y36f{bottom:412.478667pt;}
.y127{bottom:413.060000pt;}
.y352{bottom:413.132000pt;}
.y2ad{bottom:413.710667pt;}
.y107{bottom:415.969333pt;}
.y9c{bottom:417.329333pt;}
.y1b0{bottom:417.365333pt;}
.y291{bottom:417.430667pt;}
.y169{bottom:417.468000pt;}
.y255{bottom:419.250667pt;}
.y2ce{bottom:420.180000pt;}
.y18d{bottom:420.568000pt;}
.y1ef{bottom:420.981333pt;}
.yc0{bottom:421.194667pt;}
.y2ee{bottom:423.593333pt;}
.y149{bottom:424.052000pt;}
.y30f{bottom:425.096000pt;}
.ye5{bottom:426.260000pt;}
.y1d0{bottom:426.817333pt;}
.y210{bottom:429.188000pt;}
.y32d{bottom:429.846667pt;}
.y232{bottom:430.921333pt;}
.y275{bottom:431.520000pt;}
.y390{bottom:431.729333pt;}
.y36e{bottom:431.817333pt;}
.y106{bottom:432.258667pt;}
.y351{bottom:432.470667pt;}
.y126{bottom:432.710667pt;}
.y2ac{bottom:433.050667pt;}
.y168{bottom:433.757333pt;}
.y1af{bottom:435.430667pt;}
.y2cd{bottom:436.362667pt;}
.y254{bottom:437.317333pt;}
.ybf{bottom:437.550667pt;}
.y290{bottom:438.097333pt;}
.y2ed{bottom:439.776000pt;}
.y18c{bottom:439.922667pt;}
.y148{bottom:440.234667pt;}
.y1ee{bottom:440.334667pt;}
.y30e{bottom:441.037333pt;}
.ye4{bottom:442.549333pt;}
.y1cf{bottom:446.294667pt;}
.y274{bottom:447.809333pt;}
.y32c{bottom:449.185333pt;}
.y231{bottom:451.357333pt;}
.y105{bottom:451.736000pt;}
.y125{bottom:452.064000pt;}
.y36d{bottom:452.485333pt;}
.y350{bottom:453.138667pt;}
.y167{bottom:453.341333pt;}
.y9b{bottom:453.460000pt;}
.y2ab{bottom:453.718667pt;}
.y253{bottom:455.382667pt;}
.y2cc{bottom:456.012000pt;}
.ybe{bottom:457.200000pt;}
.ye3{bottom:458.904000pt;}
.y18b{bottom:459.261333pt;}
.y1ed{bottom:459.673333pt;}
.y147{bottom:459.712000pt;}
.y2ec{bottom:460.581333pt;}
.y30d{bottom:460.686667pt;}
.yb{bottom:462.990669pt;}
.y7f{bottom:464.053333pt;}
.y20f{bottom:464.376000pt;}
.y1ce{bottom:465.649333pt;}
.y273{bottom:467.392000pt;}
.y32b{bottom:468.525333pt;}
.y38f{bottom:469.189333pt;}
.y230{bottom:469.422667pt;}
.y36c{bottom:470.550667pt;}
.y104{bottom:471.089333pt;}
.y34f{bottom:471.204000pt;}
.y124{bottom:471.402667pt;}
.y9a{bottom:471.525333pt;}
.y2aa{bottom:471.784000pt;}
.y166{bottom:472.448000pt;}
.y1ae{bottom:472.600000pt;}
.y28f{bottom:473.038667pt;}
.y2cb{bottom:475.366667pt;}
.ybd{bottom:476.554667pt;}
.ye2{bottom:478.488000pt;}
.ya{bottom:478.990666pt;}
.y146{bottom:479.066667pt;}
.y2eb{bottom:479.921333pt;}
.y18a{bottom:479.929333pt;}
.y1ec{bottom:480.341333pt;}
.y20e{bottom:480.558667pt;}
.y30c{bottom:481.121333pt;}
.y7e{bottom:482.118667pt;}
.y1cd{bottom:484.988000pt;}
.y38e{bottom:485.372000pt;}
.y272{bottom:486.746667pt;}
.y22f{bottom:487.488000pt;}
.y32a{bottom:489.192000pt;}
.y28e{bottom:489.328000pt;}
.y99{bottom:489.590667pt;}
.y103{bottom:490.429333pt;}
.y252{bottom:490.570667pt;}
.y1ad{bottom:490.665333pt;}
.y123{bottom:492.070667pt;}
.y165{bottom:492.882667pt;}
.y2ca{bottom:494.473333pt;}
.y9{bottom:494.990666pt;}
.ybc{bottom:495.893333pt;}
.y189{bottom:497.994667pt;}
.y145{bottom:498.405333pt;}
.y1eb{bottom:498.406667pt;}
.ye1{bottom:498.922667pt;}
.y30b{bottom:499.186667pt;}
.y2ea{bottom:499.260000pt;}
.y20d{bottom:500.036000pt;}
.y7d{bottom:500.185333pt;}
.y38d{bottom:501.554667pt;}
.y1cc{bottom:505.656000pt;}
.y36b{bottom:505.753333pt;}
.y271{bottom:506.085333pt;}
.y34e{bottom:506.406667pt;}
.y251{bottom:506.753333pt;}
.y329{bottom:507.258667pt;}
.y98{bottom:507.657333pt;}
.y28d{bottom:508.805333pt;}
.y2a9{bottom:508.952000pt;}
.y102{bottom:511.097333pt;}
.y2c9{bottom:513.826667pt;}
.ybb{bottom:516.561333pt;}
.y38c{bottom:517.737333pt;}
.y7c{bottom:518.250667pt;}
.y2e9{bottom:518.600000pt;}
.y144{bottom:519.073333pt;}
.y20c{bottom:520.470667pt;}
.y36a{bottom:522.108000pt;}
.y34d{bottom:522.589333pt;}
.y22e{bottom:522.628000pt;}
.y250{bottom:522.936000pt;}
.y1cb{bottom:523.721333pt;}
.y41{bottom:525.649333pt;}
.y1ac{bottom:525.868000pt;}
.y270{bottom:526.753333pt;}
.y122{bottom:527.244000pt;}
.y164{bottom:528.085333pt;}
.y28c{bottom:528.158667pt;}
.y2a8{bottom:528.305333pt;}
.y2c8{bottom:532.933333pt;}
.y188{bottom:533.197333pt;}
.y1ea{bottom:533.609333pt;}
.y38b{bottom:533.920000pt;}
.ye0{bottom:534.110667pt;}
.y30a{bottom:534.360000pt;}
.yba{bottom:534.626667pt;}
.y7b{bottom:536.316000pt;}
.y2e8{bottom:537.938667pt;}
.y20b{bottom:538.536000pt;}
.y22d{bottom:538.568000pt;}
.y24f{bottom:539.118667pt;}
.y369{bottom:541.758667pt;}
.y34c{bottom:542.066667pt;}
.y1ab{bottom:542.157333pt;}
.y328{bottom:542.432000pt;}
.y121{bottom:543.533333pt;}
.y40{bottom:543.714667pt;}
.y97{bottom:543.788000pt;}
.y163{bottom:544.374667pt;}
.y101{bottom:546.270667pt;}
.y28b{bottom:547.497333pt;}
.y2a7{bottom:547.645333pt;}
.y187{bottom:549.553333pt;}
.y1e9{bottom:549.792000pt;}
.y38a{bottom:550.102667pt;}
.ydf{bottom:550.400000pt;}
.y309{bottom:550.649333pt;}
.y2c7{bottom:552.040000pt;}
.yb9{bottom:552.692000pt;}
.y143{bottom:554.276000pt;}
.y7a{bottom:554.381333pt;}
.y22c{bottom:554.922667pt;}
.y20a{bottom:556.601333pt;}
.y24e{bottom:558.596000pt;}
.y2e7{bottom:558.606667pt;}
.y1ca{bottom:558.662667pt;}
.y327{bottom:558.720000pt;}
.y368{bottom:561.112000pt;}
.y34b{bottom:561.420000pt;}
.y1aa{bottom:561.633333pt;}
.y3f{bottom:561.780000pt;}
.y96{bottom:561.853333pt;}
.y100{bottom:562.625333pt;}
.y120{bottom:563.010667pt;}
.y26f{bottom:563.906667pt;}
.y162{bottom:563.957333pt;}
.y186{bottom:565.908000pt;}
.y389{bottom:566.286667pt;}
.y308{bottom:566.832000pt;}
.y28a{bottom:568.165333pt;}
.y2a6{bottom:568.313333pt;}
.y1e8{bottom:569.269333pt;}
.yde{bottom:569.984000pt;}
.y142{bottom:570.458667pt;}
.yb8{bottom:570.758667pt;}
.y2c6{bottom:571.378667pt;}
.y79{bottom:572.446667pt;}
.y8{bottom:573.786667pt;}
.y22b{bottom:574.573333pt;}
.y1c9{bottom:575.017333pt;}
.y2e6{bottom:576.672000pt;}
.y24d{bottom:577.702667pt;}
.y326{bottom:578.197333pt;}
.y95{bottom:579.918667pt;}
.y367{bottom:580.218667pt;}
.y307{bottom:580.296000pt;}
.y34a{bottom:580.526667pt;}
.y1a9{bottom:580.988000pt;}
.yff{bottom:582.276000pt;}
.y11f{bottom:582.364000pt;}
.y388{bottom:582.469333pt;}
.y161{bottom:583.312000pt;}
.y185{bottom:585.558667pt;}
.yb7{bottom:588.824000pt;}
.ydd{bottom:589.337333pt;}
.y1e7{bottom:589.704000pt;}
.y141{bottom:589.936000pt;}
.y78{bottom:590.513333pt;}
.y2c5{bottom:590.718667pt;}
.y1c8{bottom:591.200000pt;}
.y209{bottom:591.542667pt;}
.y7{bottom:592.685334pt;}
.y22a{bottom:593.926667pt;}
.y306{bottom:596.236000pt;}
.y325{bottom:597.552000pt;}
.y94{bottom:597.985333pt;}
.y24c{bottom:598.137333pt;}
.y387{bottom:598.652000pt;}
.y26e{bottom:599.109333pt;}
.y366{bottom:599.558667pt;}
.y349{bottom:599.866667pt;}
.y1a8{bottom:600.094667pt;}
.yfe{bottom:601.629333pt;}
.y11e{bottom:601.704000pt;}
.y160{bottom:602.650667pt;}
.y289{bottom:603.106667pt;}
.y2a5{bottom:603.486667pt;}
.y184{bottom:604.912000pt;}
.yb6{bottom:606.889333pt;}
.y208{bottom:607.725333pt;}
.y1e6{bottom:607.770667pt;}
.y77{bottom:608.578667pt;}
.ydc{bottom:608.690667pt;}
.y140{bottom:610.370667pt;}
.y1c7{bottom:610.677333pt;}
.y2c4{bottom:611.386667pt;}
.y2e5{bottom:611.874667pt;}
.y229{bottom:613.266667pt;}
.y386{bottom:614.834667pt;}
.y26d{bottom:615.398667pt;}
.y305{bottom:615.885333pt;}
.y3e{bottom:615.977333pt;}
.y93{bottom:616.050667pt;}
.y24b{bottom:616.202667pt;}
.y324{bottom:616.658667pt;}
.y365{bottom:618.897333pt;}
.y348{bottom:619.205333pt;}
.y288{bottom:619.394667pt;}
.y1a7{bottom:619.433333pt;}
.y2a4{bottom:619.776000pt;}
.yfd{bottom:620.969333pt;}
.y15f{bottom:621.990667pt;}
.y11d{bottom:622.370667pt;}
.y183{bottom:624.250667pt;}
.y76{bottom:626.644000pt;}
.y207{bottom:627.202667pt;}
.ydb{bottom:627.797333pt;}
.y2e4{bottom:628.057333pt;}
.y385{bottom:631.017333pt;}
.y1c6{bottom:631.113333pt;}
.y228{bottom:632.605333pt;}
.y3d{bottom:634.042667pt;}
.y92{bottom:634.116000pt;}
.y24a{bottom:634.269333pt;}
.y26c{bottom:634.982667pt;}
.y304{bottom:635.240000pt;}
.y323{bottom:635.997333pt;}
.y4f{bottom:638.208000pt;}
.y1a6{bottom:638.773333pt;}
.y287{bottom:638.872000pt;}
.y2a3{bottom:639.358667pt;}
.y364{bottom:639.565333pt;}
.y347{bottom:639.873333pt;}
.y15e{bottom:640.056000pt;}
.yfc{bottom:641.636000pt;}
.y1e5{bottom:642.944000pt;}
.yb5{bottom:644.028000pt;}
.y2e3{bottom:644.346667pt;}
.y75{bottom:644.709333pt;}
.y182{bottom:644.918667pt;}
.y13f{bottom:645.558667pt;}
.y6{bottom:645.598667pt;}
.y206{bottom:646.556000pt;}
.y2c3{bottom:646.588000pt;}
.yda{bottom:646.904000pt;}
.y384{bottom:647.200000pt;}
.y227{bottom:650.670667pt;}
.y3c{bottom:652.108000pt;}
.y26b{bottom:654.336000pt;}
.y303{bottom:654.578667pt;}
.y322{bottom:655.337333pt;}
.y11c{bottom:657.558667pt;}
.y363{bottom:657.630667pt;}
.y2e2{bottom:657.809333pt;}
.y286{bottom:658.226667pt;}
.y2a2{bottom:658.712000pt;}
.y1e4{bottom:659.126667pt;}
.y1a5{bottom:659.440000pt;}
.y15d{bottom:660.722667pt;}
.y13e{bottom:661.913333pt;}
.yb4{bottom:662.497333pt;}
.y74{bottom:662.774667pt;}
.y2c2{bottom:662.944000pt;}
.y181{bottom:662.984000pt;}
.y205{bottom:665.896000pt;}
.yd9{bottom:666.244000pt;}
.y1c5{bottom:666.314667pt;}
.y383{bottom:668.112000pt;}
.y3{bottom:668.977329pt;}
.y249{bottom:669.456000pt;}
.y3b{bottom:670.173333pt;}
.y91{bottom:670.246667pt;}
.y226{bottom:671.338667pt;}
.y26a{bottom:673.689333pt;}
.y2e1{bottom:673.750667pt;}
.y11b{bottom:673.914667pt;}
.y4e{bottom:674.340000pt;}
.y346{bottom:675.046667pt;}
.y302{bottom:675.246667pt;}
.y321{bottom:676.004000pt;}
.yfb{bottom:676.838667pt;}
.y285{bottom:677.565333pt;}
.y2a1{bottom:678.052000pt;}
.y13d{bottom:678.269333pt;}
.y1e3{bottom:678.604000pt;}
.yb3{bottom:678.853333pt;}
.y2c1{bottom:679.300000pt;}
.y53{bottom:680.841018pt;}
.y1c4{bottom:682.670667pt;}
.yd8{bottom:685.582667pt;}
.y248{bottom:685.640000pt;}
.y204{bottom:686.564000pt;}
.y382{bottom:687.452000pt;}
.y3a{bottom:688.238667pt;}
.y225{bottom:689.404000pt;}
.y345{bottom:691.229333pt;}
.y269{bottom:692.796000pt;}
.y362{bottom:692.833333pt;}
.yfa{bottom:693.128000pt;}
.y301{bottom:693.312000pt;}
.y2e0{bottom:693.400000pt;}
.y11a{bottom:693.564000pt;}
.y1a4{bottom:694.642667pt;}
.yb2{bottom:695.209333pt;}
.y2c0{bottom:695.654667pt;}
.y15c{bottom:695.910667pt;}
.y13c{bottom:697.920000pt;}
.y1e2{bottom:697.957333pt;}
.y180{bottom:698.186667pt;}
.y284{bottom:698.233333pt;}
.y2a0{bottom:698.720000pt;}
.y1c3{bottom:699.026667pt;}
.y203{bottom:704.629333pt;}
.y247{bottom:705.116000pt;}
.yd7{bottom:706.250667pt;}
.y39{bottom:706.305333pt;}
.y90{bottom:706.378667pt;}
.y381{bottom:706.790667pt;}
.y224{bottom:707.469333pt;}
.y361{bottom:709.016000pt;}
.y344{bottom:710.706667pt;}
.y1a3{bottom:710.932000pt;}
.y320{bottom:711.177333pt;}
.yb1{bottom:711.392000pt;}
.y2bf{bottom:711.854667pt;}
.y268{bottom:711.902667pt;}
.y15b{bottom:712.266667pt;}
.yf9{bottom:712.712000pt;}
.y2df{bottom:712.753333pt;}
.y119{bottom:712.918667pt;}
.y17f{bottom:714.369333pt;}
.y283{bottom:716.298667pt;}
.y29f{bottom:716.785333pt;}
.y13b{bottom:717.273333pt;}
.y1e1{bottom:717.297333pt;}
.y1c2{bottom:718.502667pt;}
.y8f{bottom:724.444000pt;}
.y246{bottom:724.456000pt;}
.y380{bottom:726.130667pt;}
.y31f{bottom:727.360000pt;}
.y2be{bottom:727.794667pt;}
.y4d{bottom:728.536000pt;}
.y360{bottom:728.665333pt;}
.y343{bottom:730.060000pt;}
.y1a2{bottom:730.516000pt;}
.y300{bottom:730.772000pt;}
.yb0{bottom:730.869333pt;}
.y267{bottom:731.242667pt;}
.y15a{bottom:731.916000pt;}
.yf8{bottom:732.065333pt;}
.y2de{bottom:732.093333pt;}
.y118{bottom:732.257333pt;}
.y17e{bottom:733.846667pt;}
.y13a{bottom:736.612000pt;}
.y1e0{bottom:737.964000pt;}
.y1c1{bottom:738.938667pt;}
.y202{bottom:739.569333pt;}
.yd6{bottom:741.190667pt;}
.y8e{bottom:742.509333pt;}
.y223{bottom:742.642667pt;}
.y245{bottom:745.124000pt;}
.y37f{bottom:745.469333pt;}
.y31e{bottom:746.837333pt;}
.y2ff{bottom:746.954667pt;}
.y2bd{bottom:747.445333pt;}
.y35f{bottom:748.020000pt;}
.y342{bottom:749.166667pt;}
.y1a1{bottom:749.869333pt;}
.yaf{bottom:749.974667pt;}
.y266{bottom:750.581333pt;}
.y159{bottom:751.270667pt;}
.yf7{bottom:751.404000pt;}
.y282{bottom:751.501333pt;}
.y29e{bottom:751.988000pt;}
.y2dd{bottom:752.761333pt;}
.y117{bottom:752.925333pt;}
.y17d{bottom:753.201333pt;}
.y201{bottom:755.925333pt;}
.y1df{bottom:756.029333pt;}
.y1c0{bottom:757.004000pt;}
.y139{bottom:757.280000pt;}
.yd5{bottom:757.373333pt;}
.y222{bottom:758.998667pt;}
.y38{bottom:760.501333pt;}
.y8d{bottom:760.574667pt;}
.y2fe{bottom:763.137333pt;}
.y37e{bottom:764.809333pt;}
.y31d{bottom:766.192000pt;}
.y2bc{bottom:766.552000pt;}
.y35e{bottom:767.126667pt;}
.y281{bottom:767.790667pt;}
.y29d{bottom:768.277333pt;}
.y4c{bottom:768.386667pt;}
.y341{bottom:768.506667pt;}
.y1a0{bottom:768.976000pt;}
.yae{bottom:770.410667pt;}
.y265{bottom:771.249333pt;}
.y26{bottom:771.457333pt;}
.y158{bottom:771.938667pt;}
.yf6{bottom:772.072000pt;}
.y200{bottom:772.280000pt;}
.y17c{bottom:772.540000pt;}
.y138{bottom:775.345333pt;}
.y221{bottom:775.354667pt;}
.yd4{bottom:776.850667pt;}
.y37{bottom:778.566667pt;}
.y8c{bottom:778.641333pt;}
.y2fd{bottom:779.320000pt;}
.y2{bottom:781.661334pt;}
.y244{bottom:782.582667pt;}
.y31c{bottom:785.298667pt;}
.y37d{bottom:785.476000pt;}
.y2bb{bottom:785.890667pt;}
.y35d{bottom:786.465333pt;}
.y280{bottom:787.373333pt;}
.y29c{bottom:787.753333pt;}
.y340{bottom:787.845333pt;}
.y2dc{bottom:787.962667pt;}
.y116{bottom:788.098667pt;}
.y19f{bottom:788.316000pt;}
.y264{bottom:789.314667pt;}
.y157{bottom:789.365333pt;}
.y1de{bottom:791.232000pt;}
.y17b{bottom:791.880000pt;}
.y1ff{bottom:791.930667pt;}
.y1bf{bottom:792.192000pt;}
.y220{bottom:794.832000pt;}
.y3ac{bottom:795.214667pt;}
.y2fc{bottom:795.502667pt;}
.yd3{bottom:796.205333pt;}
.y36{bottom:796.633333pt;}
.y8b{bottom:796.706667pt;}
.y243{bottom:798.765333pt;}
.y25{bottom:804.198667pt;}
.y2db{bottom:804.252000pt;}
.y115{bottom:804.281333pt;}
.y31b{bottom:804.637333pt;}
.y2ba{bottom:805.229333pt;}
.yad{bottom:805.612000pt;}
.y156{bottom:805.721333pt;}
.y35c{bottom:805.805333pt;}
.y27f{bottom:806.728000pt;}
.y29b{bottom:807.108000pt;}
.y263{bottom:807.380000pt;}
.y1dd{bottom:807.414667pt;}
.y19e{bottom:807.654667pt;}
.y33f{bottom:808.513333pt;}
.y1be{bottom:808.546667pt;}
.yf5{bottom:809.212000pt;}
.y137{bottom:810.533333pt;}
.y2fb{bottom:811.686667pt;}
.y1fe{bottom:812.365333pt;}
.y17a{bottom:812.546667pt;}
.y3ab{bottom:813.280000pt;}
.y35{bottom:814.698667pt;}
.y8a{bottom:814.772000pt;}
.y242{bottom:814.949333pt;}
.y21f{bottom:815.266667pt;}
.yd2{bottom:815.544000pt;}
.yac{bottom:821.796000pt;}
.y37c{bottom:822.936000pt;}
.y2da{bottom:823.729333pt;}
.y114{bottom:823.758667pt;}
.y31a{bottom:823.977333pt;}
.y1bd{bottom:824.902667pt;}
.y155{bottom:825.372000pt;}
.y2b9{bottom:825.897333pt;}
.y27e{bottom:826.066667pt;}
.y29a{bottom:826.446667pt;}
.y35b{bottom:826.472000pt;}
.y33e{bottom:826.578667pt;}
.y136{bottom:826.716000pt;}
.y1dc{bottom:826.892000pt;}
.y2fa{bottom:827.869333pt;}
.y19d{bottom:828.322667pt;}
.y1fd{bottom:830.430667pt;}
.y179{bottom:830.613333pt;}
.y241{bottom:831.132000pt;}
.y34{bottom:832.764000pt;}
.y89{bottom:832.837333pt;}
.y21e{bottom:833.332000pt;}
.yd1{bottom:836.212000pt;}
.y37b{bottom:839.118667pt;}
.yab{bottom:841.272000pt;}
.y262{bottom:842.568000pt;}
.y2d9{bottom:843.084000pt;}
.y113{bottom:843.112000pt;}
.y2f9{bottom:844.052000pt;}
.y1bc{bottom:844.380000pt;}
.yf4{bottom:844.385333pt;}
.y35a{bottom:844.538667pt;}
.y319{bottom:844.644000pt;}
.y154{bottom:845.806667pt;}
.y135{bottom:846.193333pt;}
.y27d{bottom:846.734667pt;}
.y299{bottom:847.114667pt;}
.y240{bottom:847.314667pt;}
.y1db{bottom:847.326667pt;}
.y3aa{bottom:848.468000pt;}
.y1fc{bottom:848.496000pt;}
.y33{bottom:850.829333pt;}
.y88{bottom:850.902667pt;}
.y21d{bottom:851.397333pt;}
.yd0{bottom:854.277333pt;}
.y24{bottom:858.154667pt;}
.y261{bottom:858.857333pt;}
.y1{bottom:859.312000pt;}
.y37a{bottom:859.924000pt;}
.y2f8{bottom:860.234667pt;}
.yaa{bottom:860.626667pt;}
.yf3{bottom:860.673333pt;}
.y33d{bottom:861.781333pt;}
.y2d8{bottom:862.422667pt;}
.y112{bottom:862.452000pt;}
.y23f{bottom:863.497333pt;}
.y19c{bottom:863.525333pt;}
.y1bb{bottom:863.733333pt;}
.y3a9{bottom:864.650667pt;}
.y27c{bottom:864.800000pt;}
.y298{bottom:865.180000pt;}
.y1da{bottom:865.393333pt;}
.y178{bottom:865.814667pt;}
.y134{bottom:866.628000pt;}
.y32{bottom:868.894667pt;}
.y2f7{bottom:876.417333pt;}
.yf2{bottom:877.029333pt;}
.y33c{bottom:878.070667pt;}
.y260{bottom:878.441333pt;}
.y379{bottom:879.264000pt;}
.y23e{bottom:879.680000pt;}
.ya9{bottom:879.733333pt;}
.y359{bottom:879.740000pt;}
.y318{bottom:879.846667pt;}
.y19b{bottom:879.880000pt;}
.y153{bottom:880.994667pt;}
.y2b8{bottom:882.066667pt;}
.y177{bottom:882.104000pt;}
.y1ba{bottom:883.073333pt;}
.y2d7{bottom:883.090667pt;}
.y111{bottom:883.120000pt;}
.y1fb{bottom:883.698667pt;}
.y3a8{bottom:884.233333pt;}
.y21c{bottom:886.600000pt;}
.y31{bottom:886.961333pt;}
.y87{bottom:887.034667pt;}
.ycf{bottom:889.218667pt;}
.y23d{bottom:895.862667pt;}
.y358{bottom:896.029333pt;}
.y317{bottom:896.136000pt;}
.yf1{bottom:896.506667pt;}
.y152{bottom:897.177333pt;}
.y2f6{bottom:897.329333pt;}
.y33b{bottom:897.548000pt;}
.y25f{bottom:897.794667pt;}
.y378{bottom:898.602667pt;}
.ya8{bottom:898.840000pt;}
.y19a{bottom:899.530667pt;}
.y1fa{bottom:899.988000pt;}
.y297{bottom:900.121333pt;}
.y1d9{bottom:900.333333pt;}
.y176{bottom:901.688000pt;}
.y133{bottom:901.830667pt;}
.y21b{bottom:902.956000pt;}
.y3a7{bottom:903.588000pt;}
.y1b9{bottom:903.741333pt;}
.y30{bottom:905.026667pt;}
.y86{bottom:905.100000pt;}
.yce{bottom:905.573333pt;}
.y316{bottom:915.613333pt;}
.yf0{bottom:915.860000pt;}
.y1f9{bottom:916.344000pt;}
.y296{bottom:916.410667pt;}
.y1d8{bottom:916.516000pt;}
.y151{bottom:916.654667pt;}
.y23c{bottom:916.669333pt;}
.y25e{bottom:916.901333pt;}
.y377{bottom:917.942667pt;}
.y132{bottom:918.120000pt;}
.ya7{bottom:918.178667pt;}
.y110{bottom:918.293333pt;}
.y199{bottom:918.884000pt;}
.y2b7{bottom:919.234667pt;}
.y21a{bottom:919.310667pt;}
.ycd{bottom:921.929333pt;}
.y175{bottom:922.122667pt;}
.y3a6{bottom:922.926667pt;}
.y2f{bottom:923.092000pt;}
.y85{bottom:923.165333pt;}
.y131{bottom:934.476000pt;}
.y10f{bottom:934.581333pt;}
.yef{bottom:934.966667pt;}
.y1d7{bottom:935.993333pt;}
.y150{bottom:936.008000pt;}
.y376{bottom:937.281333pt;}
.ya6{bottom:937.518667pt;}
.ycc{bottom:938.112000pt;}
.y219{bottom:938.788000pt;}
.y1b8{bottom:938.914667pt;}
.y198{bottom:939.552000pt;}
.y2b6{bottom:939.669333pt;}
.y84{bottom:941.230667pt;}
.y3a5{bottom:943.594667pt;}
.y10e{bottom:954.058667pt;}
.yee{bottom:954.073333pt;}
.ycb{bottom:954.401333pt;}
.y1b7{bottom:955.269333pt;}
.y14f{bottom:955.348000pt;}
.y375{bottom:956.621333pt;}
.y197{bottom:956.980000pt;}
.y174{bottom:957.325333pt;}
.ya5{bottom:958.186667pt;}
.y218{bottom:959.222667pt;}
.y83{bottom:959.296000pt;}
.y52{bottom:960.962667pt;}
.y196{bottom:973.334667pt;}
.yed{bottom:973.413333pt;}
.y173{bottom:973.508000pt;}
.yca{bottom:973.878667pt;}
.y14e{bottom:974.686667pt;}
.y1b6{bottom:974.920000pt;}
.y2e{bottom:977.289333pt;}
.y82{bottom:977.362667pt;}
.y51{bottom:979.028000pt;}
.y3a4{bottom:981.054667pt;}
.yec{bottom:992.752000pt;}
.yc9{bottom:992.985333pt;}
.y2d{bottom:995.354667pt;}
.y4b{bottom:997.214667pt;}
.y3a3{bottom:997.237333pt;}
.y81{bottom:1011.753333pt;}
.y2c{bottom:1013.420000pt;}
.y23{bottom:1022.751015pt;}
.y22{bottom:1034.770975pt;}
.y21{bottom:1046.798152pt;}
.y50{bottom:1060.573333pt;}
.h7{height:28.560000pt;}
.h19{height:29.500980pt;}
.h15{height:33.163804pt;}
.h9{height:34.157181pt;}
.h17{height:34.266216pt;}
.h16{height:34.305370pt;}
.hd{height:36.173627pt;}
.h18{height:36.447531pt;}
.h1d{height:38.734589pt;}
.h6{height:40.800000pt;}
.h10{height:42.414581pt;}
.h3{height:42.840000pt;}
.h12{height:43.054581pt;}
.h1a{height:47.010948pt;}
.h1c{height:47.243676pt;}
.h2{height:48.960000pt;}
.h1b{height:49.512769pt;}
.hf{height:49.738794pt;}
.h13{height:65.112620pt;}
.hc{height:67.825835pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h11{height:112.500385pt;}
.hb{height:135.651215pt;}
.he{height:144.694509pt;}
.h14{height:276.718926pt;}
.ha{height:530.682059pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:556.459746pt;}
.w2{width:566.928019pt;}
.w4{width:793.126117pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:4.544188pt;}
.x7{left:75.590667pt;}
.xb{left:87.632939pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x8{left:119.056000pt;}
.xd{left:123.573333pt;}
.xe{left:137.953333pt;}
.x4{left:180.874667pt;}
.x5{left:195.628673pt;}
.x13{left:299.074667pt;}
.x11{left:309.117333pt;}
.x16{left:315.014667pt;}
.x18{left:323.582667pt;}
.x15{left:327.568000pt;}
.xc{left:342.525101pt;}
.x9{left:370.978667pt;}
.x3{left:404.408000pt;}
.x6{left:491.338667pt;}
.x14{left:503.885333pt;}
.x12{left:565.201333pt;}
.xf{left:578.636000pt;}
.x10{left:604.454667pt;}
.x19{left:609.861333pt;}
.x17{left:622.174667pt;}
}




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