
    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_2112a3253321a394c88c89e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156000;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_2ff3556483d5ffb778537829.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928000;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_7fc3770c1566a7588fba2ba8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_a67740f5253505640bc5ce56.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.996095;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_c67f7af41f81deebbff2e6d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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_870be986b718afdb947931e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.134000;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_6ab5d50cada76b2938b41ab0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_94e9467c325df8f2ebc7f26c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.831000;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_be11ef728358d40c180ab0a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002000;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_2112a3253321a394c88c89e9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.156000;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_828f7dc97db1fa0e125e5a34.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2112a3253321a394c88c89e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.156000;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_7803cbbd0368bc32f3b4ef88.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722656;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v3{vertical-align:-5.985000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.540400px;}
.v2{vertical-align:15.015000px;}
.ls18{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.260000px;}
.ls6{letter-spacing:-0.990000px;}
.lsd{letter-spacing:-0.945000px;}
.ls7{letter-spacing:-0.855000px;}
.lsa{letter-spacing:-0.675000px;}
.ls5{letter-spacing:-0.630000px;}
.ls16{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.228000px;}
.ls14{letter-spacing:-0.192000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.570000px;}
.ls1{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.960000px;}
.ls10{letter-spacing:1.140000px;}
.ls11{letter-spacing:1.260000px;}
.ls8{letter-spacing:1.890000px;}
.lsf{letter-spacing:7.056000px;}
.lse{letter-spacing:11.403000px;}
.ls2{letter-spacing:18.648000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-22.644000px;}
.ws43{word-spacing:-13.344000px;}
.ws101{word-spacing:-13.104000px;}
.ws102{word-spacing:-11.904000px;}
.wsdf{word-spacing:-10.464000px;}
.ws2{word-spacing:-9.990000px;}
.ws44{word-spacing:-9.315000px;}
.ws92{word-spacing:-5.824170px;}
.wsa4{word-spacing:-5.796000px;}
.ws6b{word-spacing:-4.788000px;}
.wsdc{word-spacing:-3.843000px;}
.ws99{word-spacing:-3.591000px;}
.wsf{word-spacing:-3.465000px;}
.ws4b{word-spacing:-3.402000px;}
.ws5e{word-spacing:-3.339000px;}
.wsb9{word-spacing:-3.213000px;}
.wsbb{word-spacing:-3.087000px;}
.ws2f{word-spacing:-3.024000px;}
.wsf9{word-spacing:-2.898000px;}
.wsed{word-spacing:-2.709000px;}
.ws87{word-spacing:-2.646000px;}
.ws6f{word-spacing:-2.583000px;}
.wsa8{word-spacing:-2.520000px;}
.ws1d{word-spacing:-2.457000px;}
.ws11e{word-spacing:-2.304000px;}
.ws4d{word-spacing:-2.268000px;}
.ws9e{word-spacing:-2.142000px;}
.ws34{word-spacing:-2.079000px;}
.ws76{word-spacing:-2.016000px;}
.ws24{word-spacing:-1.953000px;}
.ws6a{word-spacing:-1.701000px;}
.wsbd{word-spacing:-1.575000px;}
.ws118{word-spacing:-1.536000px;}
.ws6{word-spacing:-1.386000px;}
.ws68{word-spacing:-1.323000px;}
.wse3{word-spacing:-1.260000px;}
.ws117{word-spacing:-1.200000px;}
.ws5{word-spacing:-1.134000px;}
.ws4c{word-spacing:-1.071000px;}
.wsbc{word-spacing:-1.008000px;}
.ws81{word-spacing:-0.945000px;}
.wsdd{word-spacing:-0.882000px;}
.wsc1{word-spacing:-0.855000px;}
.wsae{word-spacing:-0.819000px;}
.ws7c{word-spacing:-0.756000px;}
.ws116{word-spacing:-0.720000px;}
.ws78{word-spacing:-0.693000px;}
.ws9{word-spacing:-0.630000px;}
.ws70{word-spacing:-0.567000px;}
.ws89{word-spacing:-0.504000px;}
.ws46{word-spacing:-0.450000px;}
.ws12a{word-spacing:-0.384000px;}
.wsa0{word-spacing:-0.378000px;}
.wsc0{word-spacing:-0.228000px;}
.wse8{word-spacing:-0.126000px;}
.wsd7{word-spacing:-0.063000px;}
.ws2d{word-spacing:-0.057000px;}
.ws1{word-spacing:0.000000px;}
.ws4e{word-spacing:0.063000px;}
.ws11{word-spacing:0.126000px;}
.wse1{word-spacing:0.192000px;}
.ws12b{word-spacing:0.240000px;}
.ws1b{word-spacing:0.252000px;}
.wse0{word-spacing:0.270000px;}
.wse7{word-spacing:0.315000px;}
.wsd8{word-spacing:0.378000px;}
.ws129{word-spacing:0.432000px;}
.wsad{word-spacing:0.441000px;}
.ws80{word-spacing:0.480000px;}
.ws109{word-spacing:0.540000px;}
.wsce{word-spacing:0.567000px;}
.ws10b{word-spacing:0.576000px;}
.ws9a{word-spacing:0.630000px;}
.ws45{word-spacing:0.675000px;}
.ws6c{word-spacing:0.756000px;}
.wsfb{word-spacing:0.819000px;}
.ws2b{word-spacing:0.855000px;}
.wsa5{word-spacing:0.882000px;}
.ws77{word-spacing:0.945000px;}
.ws127{word-spacing:1.104000px;}
.ws88{word-spacing:1.134000px;}
.ws64{word-spacing:1.197000px;}
.wsb8{word-spacing:1.260000px;}
.ws35{word-spacing:1.386000px;}
.ws103{word-spacing:1.449000px;}
.ws2e{word-spacing:1.512000px;}
.ws15{word-spacing:1.575000px;}
.wsb2{word-spacing:1.638000px;}
.ws33{word-spacing:1.701000px;}
.ws55{word-spacing:1.764000px;}
.ws11b{word-spacing:1.824000px;}
.ws3d{word-spacing:1.827000px;}
.ws62{word-spacing:1.890000px;}
.ws110{word-spacing:2.064000px;}
.wsf8{word-spacing:2.142000px;}
.ws26{word-spacing:2.205000px;}
.ws11f{word-spacing:2.208000px;}
.wsea{word-spacing:2.268000px;}
.wsf7{word-spacing:2.331000px;}
.ws79{word-spacing:2.394000px;}
.ws120{word-spacing:2.448000px;}
.ws75{word-spacing:2.457000px;}
.wsca{word-spacing:2.520000px;}
.ws128{word-spacing:2.592000px;}
.ws6e{word-spacing:2.646000px;}
.ws119{word-spacing:2.688000px;}
.ws8b{word-spacing:2.709000px;}
.wsc{word-spacing:2.772000px;}
.ws49{word-spacing:2.835000px;}
.ws12{word-spacing:2.898000px;}
.wsde{word-spacing:2.961000px;}
.ws22{word-spacing:3.024000px;}
.wsa3{word-spacing:3.087000px;}
.ws29{word-spacing:3.528000px;}
.ws4a{word-spacing:3.591000px;}
.ws10c{word-spacing:3.648000px;}
.ws28{word-spacing:3.780000px;}
.ws8a{word-spacing:3.969000px;}
.ws7a{word-spacing:4.032000px;}
.wsaf{word-spacing:4.095000px;}
.ws1c{word-spacing:4.221000px;}
.wsdb{word-spacing:4.284000px;}
.wse2{word-spacing:4.347000px;}
.ws7b{word-spacing:4.410000px;}
.ws122{word-spacing:4.416000px;}
.wsfa{word-spacing:4.473000px;}
.ws10a{word-spacing:4.512000px;}
.wscb{word-spacing:4.536000px;}
.ws11a{word-spacing:4.608000px;}
.ws72{word-spacing:4.662000px;}
.ws4f{word-spacing:4.725000px;}
.ws106{word-spacing:4.851000px;}
.ws10{word-spacing:4.914000px;}
.ws59{word-spacing:4.977000px;}
.ws23{word-spacing:5.040000px;}
.wsba{word-spacing:5.103000px;}
.wscd{word-spacing:5.229000px;}
.ws51{word-spacing:5.292000px;}
.ws56{word-spacing:5.355000px;}
.wsb0{word-spacing:5.607000px;}
.ws73{word-spacing:5.670000px;}
.wsb3{word-spacing:5.859000px;}
.wsb6{word-spacing:5.985000px;}
.ws93{word-spacing:6.111000px;}
.wsd{word-spacing:6.174000px;}
.ws47{word-spacing:6.237000px;}
.ws10e{word-spacing:6.240000px;}
.ws36{word-spacing:6.300000px;}
.ws11d{word-spacing:6.336000px;}
.ws40{word-spacing:6.363000px;}
.ws42{word-spacing:6.426000px;}
.ws112{word-spacing:6.480000px;}
.ws50{word-spacing:6.489000px;}
.ws111{word-spacing:6.528000px;}
.ws9d{word-spacing:6.552000px;}
.ws12c{word-spacing:6.672000px;}
.ws2a{word-spacing:6.678000px;}
.ws18{word-spacing:6.741000px;}
.ws5b{word-spacing:6.993000px;}
.ws69{word-spacing:7.056000px;}
.ws124{word-spacing:7.104000px;}
.ws57{word-spacing:7.119000px;}
.ws21{word-spacing:7.182000px;}
.ws1e{word-spacing:7.308000px;}
.wsa7{word-spacing:7.371000px;}
.wsd4{word-spacing:7.434000px;}
.ws3b{word-spacing:7.560000px;}
.ws85{word-spacing:7.623000px;}
.wsc8{word-spacing:7.686000px;}
.ws8c{word-spacing:7.749000px;}
.ws63{word-spacing:7.812000px;}
.ws107{word-spacing:7.875000px;}
.wsef{word-spacing:7.938000px;}
.ws5c{word-spacing:8.001000px;}
.ws48{word-spacing:8.127000px;}
.ws54{word-spacing:8.190000px;}
.ws31{word-spacing:8.253000px;}
.wsab{word-spacing:8.316000px;}
.ws52{word-spacing:8.442000px;}
.ws14{word-spacing:8.505000px;}
.ws4{word-spacing:8.568000px;}
.wsd2{word-spacing:8.694000px;}
.ws6d{word-spacing:8.757000px;}
.ws37{word-spacing:8.820000px;}
.ws94{word-spacing:8.883000px;}
.ws19{word-spacing:8.946000px;}
.ws13{word-spacing:9.009000px;}
.ws115{word-spacing:9.120000px;}
.ws39{word-spacing:9.135000px;}
.ws100{word-spacing:9.198000px;}
.ws114{word-spacing:9.216000px;}
.ws30{word-spacing:9.324000px;}
.wsbf{word-spacing:9.513000px;}
.ws27{word-spacing:9.576000px;}
.ws65{word-spacing:9.639000px;}
.wsd9{word-spacing:9.702000px;}
.ws32{word-spacing:9.828000px;}
.ws10f{word-spacing:9.840000px;}
.ws3a{word-spacing:9.891000px;}
.ws7{word-spacing:9.954000px;}
.wsb{word-spacing:10.143000px;}
.wse4{word-spacing:10.269000px;}
.ws11c{word-spacing:10.272000px;}
.ws9b{word-spacing:10.395000px;}
.ws86{word-spacing:10.521000px;}
.ws3c{word-spacing:10.773000px;}
.wsd3{word-spacing:10.962000px;}
.ws121{word-spacing:11.232000px;}
.wse6{word-spacing:11.277000px;}
.ws123{word-spacing:11.280000px;}
.wsbe{word-spacing:11.403000px;}
.ws98{word-spacing:11.466000px;}
.wseb{word-spacing:11.529000px;}
.ws60{word-spacing:11.718000px;}
.wsee{word-spacing:11.844000px;}
.ws8{word-spacing:11.970000px;}
.ws17{word-spacing:12.033000px;}
.ws1f{word-spacing:12.096000px;}
.ws3e{word-spacing:12.159000px;}
.wsc7{word-spacing:12.222000px;}
.ws58{word-spacing:12.348000px;}
.wsc2{word-spacing:12.411000px;}
.ws9f{word-spacing:12.474000px;}
.ws16{word-spacing:12.663000px;}
.ws83{word-spacing:12.726000px;}
.ws108{word-spacing:12.915000px;}
.ws7e{word-spacing:13.041000px;}
.ws96{word-spacing:13.104000px;}
.wsb7{word-spacing:13.167000px;}
.ws38{word-spacing:13.230000px;}
.ws8d{word-spacing:13.356000px;}
.ws105{word-spacing:13.482000px;}
.ws3f{word-spacing:13.608000px;}
.wsb4{word-spacing:13.860000px;}
.ws5a{word-spacing:14.049000px;}
.wscc{word-spacing:14.112000px;}
.ws25{word-spacing:14.175000px;}
.wsd6{word-spacing:14.553000px;}
.wsc9{word-spacing:15.120000px;}
.wsfe{word-spacing:15.246000px;}
.wse{word-spacing:15.309000px;}
.ws82{word-spacing:15.435000px;}
.wsc6{word-spacing:15.498000px;}
.ws10d{word-spacing:15.552000px;}
.wsaa{word-spacing:15.624000px;}
.wsb1{word-spacing:15.813000px;}
.ws104{word-spacing:15.939000px;}
.wsb5{word-spacing:16.128000px;}
.ws97{word-spacing:16.254000px;}
.wsff{word-spacing:16.380000px;}
.wsd0{word-spacing:16.443000px;}
.wsc5{word-spacing:16.884000px;}
.ws113{word-spacing:16.896000px;}
.wsa9{word-spacing:17.199000px;}
.ws1a{word-spacing:17.388000px;}
.ws53{word-spacing:17.514000px;}
.ws5d{word-spacing:17.577000px;}
.wsa{word-spacing:18.018000px;}
.ws84{word-spacing:18.144000px;}
.wsd5{word-spacing:18.396000px;}
.ws61{word-spacing:18.459000px;}
.wsf6{word-spacing:18.711000px;}
.ws8e{word-spacing:19.341000px;}
.wsa1{word-spacing:19.530000px;}
.ws3{word-spacing:19.845000px;}
.ws5f{word-spacing:19.908000px;}
.wsd1{word-spacing:20.160000px;}
.wsac{word-spacing:20.223000px;}
.wsc4{word-spacing:20.349000px;}
.wsda{word-spacing:20.664000px;}
.ws126{word-spacing:20.880000px;}
.ws9c{word-spacing:21.042000px;}
.ws71{word-spacing:21.105000px;}
.wsf2{word-spacing:21.168000px;}
.wsa2{word-spacing:22.176000px;}
.wsf4{word-spacing:22.239000px;}
.wsec{word-spacing:22.302000px;}
.wsc3{word-spacing:22.554000px;}
.ws67{word-spacing:22.806000px;}
.wse9{word-spacing:23.688000px;}
.wsf1{word-spacing:23.751000px;}
.ws74{word-spacing:24.570000px;}
.ws90{word-spacing:25.452000px;}
.wsfd{word-spacing:25.767000px;}
.ws41{word-spacing:26.019000px;}
.wsf0{word-spacing:26.460000px;}
.wsf3{word-spacing:26.964000px;}
.wsfc{word-spacing:27.216000px;}
.ws125{word-spacing:27.408000px;}
.ws7d{word-spacing:28.098000px;}
.ws20{word-spacing:28.602000px;}
.ws66{word-spacing:29.169000px;}
.wse5{word-spacing:31.122000px;}
.ws8f{word-spacing:33.831000px;}
.ws95{word-spacing:34.398000px;}
.wsa6{word-spacing:34.650000px;}
.ws91{word-spacing:35.469000px;}
.wsf5{word-spacing:36.225000px;}
.ws7f{word-spacing:38.745000px;}
.ws2c{word-spacing:133.804800px;}
.wscf{word-spacing:2008.002600px;}
._9{margin-left:-34.883400px;}
._7{margin-left:-12.654000px;}
._8{margin-left:-11.184000px;}
._4{margin-left:-7.548000px;}
._0{margin-left:-6.099600px;}
._2{margin-left:-5.079600px;}
._3{margin-left:-3.774000px;}
._1{margin-left:-2.097600px;}
._6{margin-left:-1.020300px;}
._5{width:1.191300px;}
._b{width:8.976000px;}
._a{width:16.752000px;}
._c{width:27.600000px;}
.fc4{color:rgb(167,165,166);}
.fc5{color:transparent;}
.fc2{color:rgb(99,95,59);}
.fc1{color:rgb(191,37,25);}
.fc7{color:rgb(35,31,32);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:26.235000px;}
.fs1{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs8{font-size:78.000000px;}
.fs9{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y121{bottom:76.945650px;}
.y36c{bottom:77.313900px;}
.y1a4{bottom:77.475300px;}
.y2{bottom:77.688750px;}
.ydf{bottom:92.699250px;}
.yd1{bottom:92.708100px;}
.y120{bottom:92.734350px;}
.y30a{bottom:93.102300px;}
.y235{bottom:93.419850px;}
.y36{bottom:93.435450px;}
.y20{bottom:93.466950px;}
.y278{bottom:93.520500px;}
.y41e{bottom:93.522750px;}
.y2fa{bottom:93.527550px;}
.yc2{bottom:93.538350px;}
.y3a4{bottom:93.543150px;}
.y451{bottom:93.544500px;}
.y296{bottom:93.557700px;}
.y46c{bottom:93.568500px;}
.y3d4{bottom:93.599250px;}
.y1c8{bottom:93.613800px;}
.y403{bottom:93.621600px;}
.y1dc{bottom:93.640950px;}
.y2b3{bottom:93.651000px;}
.y4e{bottom:93.680250px;}
.y1f0{bottom:93.735450px;}
.y2eb{bottom:93.877350px;}
.y3a3{bottom:107.965500px;}
.y450{bottom:108.376500px;}
.y41d{bottom:108.534750px;}
.y46b{bottom:108.580500px;}
.y11f{bottom:110.190600px;}
.y234{bottom:110.861850px;}
.y277{bottom:111.033750px;}
.y1c7{bottom:111.041550px;}
.yc1{bottom:111.065850px;}
.y2ea{bottom:111.347850px;}
.y4d{bottom:111.393000px;}
.yd0{bottom:111.938850px;}
.yde{bottom:112.245000px;}
.y309{bottom:112.537800px;}
.y2f9{bottom:112.789800px;}
.y35{bottom:112.807950px;}
.y1f{bottom:112.823700px;}
.y1db{bottom:112.855950px;}
.y3d3{bottom:112.877250px;}
.y295{bottom:112.914450px;}
.y2b2{bottom:112.929000px;}
.y1ef{bottom:112.950450px;}
.y402{bottom:112.994100px;}
.y3a2{bottom:122.401500px;}
.y44f{bottom:123.209850px;}
.y41c{bottom:123.546750px;}
.y46a{bottom:123.592500px;}
.y11e{bottom:127.646850px;}
.y233{bottom:128.303850px;}
.y1c6{bottom:128.469300px;}
.y276{bottom:128.547000px;}
.yc0{bottom:128.593350px;}
.y2e9{bottom:128.818350px;}
.y4c{bottom:129.105750px;}
.ycf{bottom:131.169600px;}
.ydd{bottom:131.790750px;}
.y308{bottom:131.973300px;}
.y2f8{bottom:132.052050px;}
.y1da{bottom:132.070950px;}
.y3d2{bottom:132.155250px;}
.y1ee{bottom:132.165450px;}
.y34{bottom:132.180450px;}
.y1e{bottom:132.196200px;}
.y2b1{bottom:132.207000px;}
.y294{bottom:132.271200px;}
.y401{bottom:132.366600px;}
.y3a1{bottom:136.837500px;}
.y44e{bottom:138.048300px;}
.y41b{bottom:138.558750px;}
.y469{bottom:138.604500px;}
.y11d{bottom:145.103100px;}
.y232{bottom:145.745850px;}
.y1c5{bottom:145.897050px;}
.y275{bottom:146.060250px;}
.ybf{bottom:146.120850px;}
.y2e8{bottom:146.288850px;}
.y4b{bottom:146.818500px;}
.yce{bottom:150.400350px;}
.y3a0{bottom:151.269000px;}
.y1d9{bottom:151.285950px;}
.y2f7{bottom:151.314300px;}
.ydc{bottom:151.336500px;}
.y1ed{bottom:151.380450px;}
.y307{bottom:151.408800px;}
.y3d1{bottom:151.433250px;}
.y2b0{bottom:151.485000px;}
.y33{bottom:151.537200px;}
.y1d{bottom:151.552950px;}
.y293{bottom:151.627950px;}
.y400{bottom:151.739100px;}
.y44d{bottom:152.880300px;}
.y41a{bottom:153.570750px;}
.y468{bottom:153.616500px;}
.y11c{bottom:162.559350px;}
.y231{bottom:163.187850px;}
.y1c4{bottom:163.324800px;}
.y274{bottom:163.573500px;}
.ybe{bottom:163.648350px;}
.y2e7{bottom:163.759350px;}
.y4a{bottom:164.531250px;}
.y39f{bottom:165.691350px;}
.y44c{bottom:167.712300px;}
.y419{bottom:168.577650px;}
.y467{bottom:168.628500px;}
.ycd{bottom:169.631100px;}
.y1d8{bottom:170.500950px;}
.y2f6{bottom:170.576550px;}
.y1ec{bottom:170.595450px;}
.y3d0{bottom:170.711250px;}
.y2af{bottom:170.763000px;}
.y306{bottom:170.844300px;}
.ydb{bottom:170.882250px;}
.y32{bottom:170.909700px;}
.y1c{bottom:170.925450px;}
.y292{bottom:170.984700px;}
.y3ff{bottom:171.111600px;}
.y11b{bottom:180.015600px;}
.y39e{bottom:180.127350px;}
.y230{bottom:180.629850px;}
.y1c3{bottom:180.752550px;}
.y273{bottom:181.086750px;}
.ybd{bottom:181.175850px;}
.y2e6{bottom:181.229850px;}
.y49{bottom:182.244000px;}
.y44b{bottom:182.544300px;}
.y418{bottom:183.584550px;}
.y466{bottom:183.640500px;}
.ycc{bottom:188.861850px;}
.y1d7{bottom:189.715950px;}
.y1eb{bottom:189.810450px;}
.y2f5{bottom:189.838800px;}
.y3cf{bottom:189.989250px;}
.y2ae{bottom:190.041000px;}
.y31{bottom:190.266450px;}
.y305{bottom:190.279800px;}
.y1b{bottom:190.297950px;}
.y291{bottom:190.341450px;}
.yda{bottom:190.428000px;}
.y3fe{bottom:190.484100px;}
.y39d{bottom:194.563350px;}
.y44a{bottom:197.376300px;}
.y11a{bottom:197.471850px;}
.y22f{bottom:198.071850px;}
.y1c2{bottom:198.180300px;}
.y417{bottom:198.591450px;}
.y272{bottom:198.600000px;}
.y465{bottom:198.656550px;}
.y2e5{bottom:198.700350px;}
.ybc{bottom:198.703350px;}
.y48{bottom:199.956750px;}
.ycb{bottom:208.092600px;}
.y1d6{bottom:208.930950px;}
.y39c{bottom:208.994850px;}
.y1ea{bottom:209.025450px;}
.y2f4{bottom:209.101050px;}
.y3ce{bottom:209.267250px;}
.y2ad{bottom:209.319000px;}
.y30{bottom:209.638950px;}
.y1a{bottom:209.670450px;}
.y290{bottom:209.698200px;}
.y304{bottom:209.715300px;}
.y3fd{bottom:209.856600px;}
.yd9{bottom:209.973750px;}
.y449{bottom:212.212350px;}
.y416{bottom:213.598350px;}
.y464{bottom:213.681150px;}
.y119{bottom:214.928100px;}
.y22e{bottom:215.513850px;}
.y1c1{bottom:215.608050px;}
.y271{bottom:216.113250px;}
.y2e4{bottom:216.170850px;}
.ybb{bottom:216.230850px;}
.y47{bottom:217.669500px;}
.y39b{bottom:223.426350px;}
.y2b6{bottom:226.043550px;}
.y448{bottom:227.044350px;}
.yca{bottom:227.323350px;}
.y1d5{bottom:228.145950px;}
.y1e9{bottom:228.240450px;}
.y2f3{bottom:228.363300px;}
.y3cd{bottom:228.545250px;}
.y415{bottom:228.589800px;}
.y2ac{bottom:228.597000px;}
.y463{bottom:228.693150px;}
.y2f{bottom:229.011450px;}
.y19{bottom:229.042950px;}
.y28f{bottom:229.054950px;}
.y303{bottom:229.150800px;}
.y3fc{bottom:229.229100px;}
.yd8{bottom:229.519500px;}
.y118{bottom:232.384350px;}
.y22d{bottom:232.955850px;}
.y1c0{bottom:233.035800px;}
.y270{bottom:233.626500px;}
.y2e3{bottom:233.641350px;}
.yba{bottom:233.758350px;}
.y46{bottom:235.382250px;}
.y39a{bottom:237.853050px;}
.y447{bottom:241.876350px;}
.y414{bottom:243.601800px;}
.y462{bottom:243.705150px;}
.yc9{bottom:246.554100px;}
.y1d4{bottom:247.360950px;}
.y1e8{bottom:247.455450px;}
.y2f2{bottom:247.625550px;}
.y3cc{bottom:247.823250px;}
.y2ab{bottom:247.875000px;}
.y2e{bottom:248.368200px;}
.y18{bottom:248.399700px;}
.y28e{bottom:248.411700px;}
.y302{bottom:248.586300px;}
.y3fb{bottom:248.601600px;}
.yd7{bottom:249.065250px;}
.y117{bottom:249.840600px;}
.y22c{bottom:250.397850px;}
.y1bf{bottom:250.463550px;}
.y2e2{bottom:251.111850px;}
.y26f{bottom:251.139750px;}
.yb9{bottom:251.285850px;}
.y399{bottom:252.289050px;}
.y45{bottom:253.095000px;}
.y446{bottom:256.710900px;}
.y413{bottom:258.613800px;}
.y461{bottom:258.733950px;}
.yc8{bottom:265.784850px;}
.y1d3{bottom:266.575950px;}
.y1e7{bottom:266.670450px;}
.y398{bottom:266.706900px;}
.y2f1{bottom:266.887800px;}
.y3cb{bottom:267.101250px;}
.y2aa{bottom:267.153000px;}
.y116{bottom:267.296850px;}
.y2d{bottom:267.740700px;}
.y28d{bottom:267.768450px;}
.y17{bottom:267.772200px;}
.y22b{bottom:267.839850px;}
.y1be{bottom:267.891300px;}
.y3fa{bottom:267.974100px;}
.y301{bottom:268.021800px;}
.y2e1{bottom:268.582350px;}
.yd6{bottom:268.611000px;}
.y26e{bottom:268.653000px;}
.yb8{bottom:268.813350px;}
.y44{bottom:270.807750px;}
.y445{bottom:271.542900px;}
.y412{bottom:273.625800px;}
.y460{bottom:273.745950px;}
.y397{bottom:281.142900px;}
.y115{bottom:284.753100px;}
.yc7{bottom:285.015600px;}
.y22a{bottom:285.281850px;}
.y1bd{bottom:285.319050px;}
.y1d2{bottom:285.790950px;}
.y1e6{bottom:285.885450px;}
.y2e0{bottom:286.052850px;}
.y2f0{bottom:286.150050px;}
.y26d{bottom:286.166250px;}
.yb7{bottom:286.340850px;}
.y444{bottom:286.377600px;}
.y3ca{bottom:286.379250px;}
.y2a9{bottom:286.431000px;}
.y2c{bottom:287.097450px;}
.y28c{bottom:287.125200px;}
.y16{bottom:287.144700px;}
.y3f9{bottom:287.346600px;}
.y300{bottom:287.457300px;}
.yd5{bottom:288.156750px;}
.y43{bottom:288.520500px;}
.y411{bottom:288.622500px;}
.y45f{bottom:288.757950px;}
.y396{bottom:295.578900px;}
.y443{bottom:301.209600px;}
.y114{bottom:302.209350px;}
.y229{bottom:302.723850px;}
.y1bc{bottom:302.746800px;}
.y2df{bottom:303.523350px;}
.y410{bottom:303.634500px;}
.y26c{bottom:303.679500px;}
.y45e{bottom:303.769950px;}
.yb6{bottom:303.868350px;}
.yc6{bottom:304.246350px;}
.y1d1{bottom:305.005950px;}
.y1e5{bottom:305.100450px;}
.y2ef{bottom:305.412300px;}
.y3c9{bottom:305.657250px;}
.y2a8{bottom:305.709000px;}
.y42{bottom:306.233250px;}
.y2b{bottom:306.469950px;}
.y28b{bottom:306.481950px;}
.y15{bottom:306.517200px;}
.y3f8{bottom:306.719100px;}
.y2ff{bottom:306.892800px;}
.yd4{bottom:307.702500px;}
.y395{bottom:310.014900px;}
.y442{bottom:316.048200px;}
.y40f{bottom:318.646500px;}
.y45d{bottom:318.794550px;}
.y113{bottom:319.665600px;}
.y228{bottom:320.165850px;}
.y1bb{bottom:320.174550px;}
.y2de{bottom:320.993850px;}
.y26b{bottom:321.192750px;}
.yb5{bottom:321.395850px;}
.yc5{bottom:323.477100px;}
.y41{bottom:323.946000px;}
.y1d0{bottom:324.220950px;}
.y1e4{bottom:324.315450px;}
.y394{bottom:324.432750px;}
.y3c8{bottom:324.935250px;}
.y2a7{bottom:324.987000px;}
.y28a{bottom:325.838700px;}
.y2a{bottom:325.842450px;}
.y14{bottom:325.889700px;}
.y2fe{bottom:326.328300px;}
.y2ee{bottom:328.932750px;}
.y3f7{bottom:330.350700px;}
.y441{bottom:330.880200px;}
.yd3{bottom:331.505100px;}
.y40e{bottom:333.653400px;}
.y45c{bottom:333.806550px;}
.y112{bottom:337.121850px;}
.y1ba{bottom:337.602300px;}
.y227{bottom:337.607850px;}
.y2dd{bottom:338.464350px;}
.y393{bottom:338.868750px;}
.yb4{bottom:338.923350px;}
.y40{bottom:341.658750px;}
.yc4{bottom:342.707850px;}
.y26a{bottom:342.948150px;}
.y1cf{bottom:343.435950px;}
.y1e3{bottom:343.530450px;}
.y3c7{bottom:344.213250px;}
.y2a6{bottom:344.265000px;}
.y289{bottom:345.195450px;}
.y29{bottom:345.214950px;}
.y13{bottom:345.262200px;}
.y440{bottom:345.712200px;}
.y2fd{bottom:345.763800px;}
.y259{bottom:348.326100px;}
.y40d{bottom:348.650100px;}
.y45b{bottom:348.818550px;}
.y392{bottom:353.304750px;}
.y2ed{bottom:354.489750px;}
.y111{bottom:354.578100px;}
.y1b9{bottom:355.030050px;}
.y226{bottom:355.049850px;}
.y2dc{bottom:355.934850px;}
.yb3{bottom:356.450550px;}
.yd2{bottom:357.335100px;}
.y3f{bottom:359.371500px;}
.y43f{bottom:360.544200px;}
.yc3{bottom:361.938600px;}
.y1ce{bottom:362.650950px;}
.y1e2{bottom:362.745450px;}
.y3c6{bottom:363.491250px;}
.y2a5{bottom:363.543000px;}
.y40c{bottom:363.662100px;}
.y45a{bottom:363.834750px;}
.y288{bottom:364.552200px;}
.y28{bottom:364.571700px;}
.y12{bottom:364.618950px;}
.y269{bottom:364.963650px;}
.y2fc{bottom:365.199300px;}
.y391{bottom:367.740750px;}
.y110{bottom:372.034350px;}
.y1b8{bottom:372.457800px;}
.y225{bottom:372.491850px;}
.y2db{bottom:373.405350px;}
.yb2{bottom:373.969350px;}
.y43e{bottom:375.376200px;}
.y3e{bottom:377.084250px;}
.y40b{bottom:378.674100px;}
.y459{bottom:378.859350px;}
.y3f6{bottom:379.713750px;}
.y2ec{bottom:380.046750px;}
.y1cd{bottom:381.865950px;}
.y1e1{bottom:381.960450px;}
.y3c5{bottom:382.769250px;}
.y2a4{bottom:382.821000px;}
.y287{bottom:383.908950px;}
.y27{bottom:383.944200px;}
.y11{bottom:383.991450px;}
.y2fb{bottom:384.634800px;}
.y390{bottom:386.424150px;}
.y268{bottom:386.979150px;}
.y10f{bottom:389.490600px;}
.y1b7{bottom:389.885550px;}
.y224{bottom:389.933850px;}
.y43d{bottom:390.214650px;}
.y2da{bottom:390.875850px;}
.yb1{bottom:391.496850px;}
.y40a{bottom:393.680850px;}
.y458{bottom:393.871350px;}
.y3d{bottom:394.797000px;}
.y3f5{bottom:399.086250px;}
.y1cc{bottom:401.080950px;}
.y1e0{bottom:401.175450px;}
.y3c4{bottom:402.047250px;}
.y2a3{bottom:402.099000px;}
.y286{bottom:403.265700px;}
.y26{bottom:403.300950px;}
.y10{bottom:403.363950px;}
.y43c{bottom:405.046650px;}
.y10e{bottom:406.946850px;}
.y1b6{bottom:407.313300px;}
.y223{bottom:407.375850px;}
.y2d9{bottom:408.346350px;}
.y409{bottom:408.687750px;}
.y457{bottom:408.883350px;}
.yb0{bottom:409.024350px;}
.y1a3{bottom:410.127900px;}
.y183{bottom:410.348400px;}
.y165{bottom:410.357400px;}
.y3c{bottom:412.509750px;}
.y339{bottom:414.331350px;}
.y358{bottom:414.489750px;}
.y36b{bottom:414.582750px;}
.ye1{bottom:417.357600px;}
.y3f4{bottom:418.458750px;}
.y43b{bottom:419.878650px;}
.y1cb{bottom:420.295950px;}
.y1df{bottom:420.390450px;}
.y3c3{bottom:421.325250px;}
.y2a2{bottom:421.377000px;}
.y285{bottom:422.622450px;}
.y25{bottom:422.673450px;}
.yf{bottom:422.736450px;}
.y408{bottom:423.674250px;}
.y456{bottom:423.899550px;}
.y10d{bottom:424.403100px;}
.y1b5{bottom:424.741050px;}
.y222{bottom:424.817850px;}
.y2d8{bottom:425.816850px;}
.yaf{bottom:426.551850px;}
.y164{bottom:427.842150px;}
.y267{bottom:428.103450px;}
.y1a2{bottom:429.768150px;}
.y182{bottom:429.941400px;}
.y3b{bottom:430.222500px;}
.y338{bottom:431.630850px;}
.y30c{bottom:433.791150px;}
.y357{bottom:433.988250px;}
.y38f{bottom:434.221350px;}
.y36a{bottom:434.317500px;}
.y43a{bottom:434.710650px;}
.y3f3{bottom:437.831250px;}
.y407{bottom:438.686250px;}
.y455{bottom:438.915750px;}
.y1ca{bottom:439.510950px;}
.y1de{bottom:439.605450px;}
.y3c2{bottom:440.603250px;}
.y2a1{bottom:440.655000px;}
.y10c{bottom:441.859350px;}
.y284{bottom:441.979200px;}
.y24{bottom:442.045950px;}
.ye{bottom:442.108950px;}
.y1b4{bottom:442.168800px;}
.y221{bottom:442.259850px;}
.y2d7{bottom:443.287350px;}
.yae{bottom:444.079350px;}
.y163{bottom:445.326900px;}
.y266{bottom:445.616700px;}
.y3a{bottom:447.935250px;}
.y337{bottom:448.930350px;}
.y1a1{bottom:449.408400px;}
.y181{bottom:449.534400px;}
.y439{bottom:449.542650px;}
.y38e{bottom:451.649100px;}
.y356{bottom:453.486750px;}
.y406{bottom:453.698250px;}
.y454{bottom:453.940500px;}
.y369{bottom:454.052250px;}
.y122{bottom:456.039900px;}
.y3f2{bottom:457.203750px;}
.y1c9{bottom:458.725950px;}
.y1dd{bottom:458.820450px;}
.y10b{bottom:459.315600px;}
.y1b3{bottom:459.596550px;}
.y220{bottom:459.701850px;}
.y3c1{bottom:459.881250px;}
.y2a0{bottom:459.933000px;}
.y2d6{bottom:460.757850px;}
.y283{bottom:461.335950px;}
.y23{bottom:461.402700px;}
.yd{bottom:461.481450px;}
.yad{bottom:461.606850px;}
.y162{bottom:462.811650px;}
.y265{bottom:463.129950px;}
.y39{bottom:465.648000px;}
.y336{bottom:466.229850px;}
.y438{bottom:468.627900px;}
.y405{bottom:468.710250px;}
.y453{bottom:468.952500px;}
.y1a0{bottom:469.048650px;}
.y38d{bottom:469.076850px;}
.y180{bottom:469.127400px;}
.y355{bottom:472.985250px;}
.y368{bottom:473.787000px;}
.y3f1{bottom:476.576250px;}
.y10a{bottom:476.771850px;}
.y21f{bottom:477.143850px;}
.y2d5{bottom:478.228350px;}
.yac{bottom:479.134350px;}
.y3c0{bottom:479.159250px;}
.y29f{bottom:479.211000px;}
.y161{bottom:480.296400px;}
.y264{bottom:480.643200px;}
.y282{bottom:480.692700px;}
.y22{bottom:480.775200px;}
.yc{bottom:480.838200px;}
.y38{bottom:483.360750px;}
.y335{bottom:483.529350px;}
.y404{bottom:483.722250px;}
.y452{bottom:483.964500px;}
.y38c{bottom:486.504600px;}
.y19f{bottom:488.688900px;}
.y17f{bottom:488.720400px;}
.y354{bottom:492.483750px;}
.y367{bottom:493.521750px;}
.y109{bottom:494.228100px;}
.y21e{bottom:494.585850px;}
.y2d4{bottom:495.698850px;}
.y3f0{bottom:495.948750px;}
.yab{bottom:496.661850px;}
.y160{bottom:497.781150px;}
.y263{bottom:498.156450px;}
.y3bf{bottom:498.437250px;}
.y29e{bottom:498.489000px;}
.y281{bottom:500.049450px;}
.y21{bottom:500.131950px;}
.yb{bottom:500.203050px;}
.y334{bottom:500.828850px;}
.y37{bottom:501.073500px;}
.y38b{bottom:503.932350px;}
.y17e{bottom:508.313400px;}
.y19e{bottom:508.329150px;}
.y1f3{bottom:509.697900px;}
.y108{bottom:511.684350px;}
.y353{bottom:511.982250px;}
.y21d{bottom:512.027850px;}
.y2d3{bottom:513.169350px;}
.y366{bottom:513.256500px;}
.yaa{bottom:514.189350px;}
.y15f{bottom:515.265900px;}
.y3ef{bottom:515.321250px;}
.y262{bottom:515.669700px;}
.y437{bottom:516.156000px;}
.y3be{bottom:517.715250px;}
.y29d{bottom:517.767000px;}
.y333{bottom:518.128350px;}
.y280{bottom:519.406200px;}
.y38a{bottom:521.360100px;}
.y19d{bottom:527.969400px;}
.y107{bottom:529.140600px;}
.y1ab{bottom:529.290300px;}
.y21c{bottom:529.469850px;}
.y1b2{bottom:529.545150px;}
.y2d2{bottom:530.639850px;}
.y352{bottom:531.480750px;}
.ya9{bottom:531.716850px;}
.y17d{bottom:532.171650px;}
.y15e{bottom:532.750650px;}
.y365{bottom:532.961250px;}
.y261{bottom:533.182950px;}
.y46e{bottom:534.674100px;}
.y3ee{bottom:534.693750px;}
.y332{bottom:535.427850px;}
.y436{bottom:535.497000px;}
.y3bd{bottom:536.993250px;}
.y29c{bottom:537.045000px;}
.y27f{bottom:538.762950px;}
.y389{bottom:538.787850px;}
.y1aa{bottom:543.534300px;}
.y1b1{bottom:543.798900px;}
.y106{bottom:546.596850px;}
.y21b{bottom:546.911850px;}
.y19c{bottom:547.609650px;}
.y2d1{bottom:548.110350px;}
.ya8{bottom:549.244350px;}
.y15d{bottom:550.235400px;}
.y260{bottom:550.696200px;}
.y351{bottom:550.979250px;}
.y364{bottom:552.696000px;}
.y331{bottom:552.727350px;}
.y3ed{bottom:554.066250px;}
.y435{bottom:554.822250px;}
.y388{bottom:556.215600px;}
.y3bc{bottom:556.271250px;}
.y29b{bottom:556.323000px;}
.y1a9{bottom:557.778300px;}
.y1b0{bottom:558.052650px;}
.y17c{bottom:558.064650px;}
.y27e{bottom:558.119700px;}
.y105{bottom:564.053100px;}
.y21a{bottom:564.353850px;}
.y2d0{bottom:565.580850px;}
.ya7{bottom:566.771850px;}
.y19b{bottom:567.249900px;}
.y15c{bottom:567.720150px;}
.y25f{bottom:568.209450px;}
.y330{bottom:570.026850px;}
.y350{bottom:570.477750px;}
.y240{bottom:571.832400px;}
.y258{bottom:571.863900px;}
.y1a8{bottom:572.022300px;}
.y1af{bottom:572.306400px;}
.y363{bottom:572.430750px;}
.y3ec{bottom:573.438750px;}
.y387{bottom:573.643350px;}
.y434{bottom:574.163250px;}
.y3bb{bottom:575.549250px;}
.y29a{bottom:575.601000px;}
.y27d{bottom:577.476450px;}
.y104{bottom:581.509350px;}
.y219{bottom:581.795850px;}
.y2cf{bottom:583.051350px;}
.ya6{bottom:584.299350px;}
.y15b{bottom:585.204900px;}
.y25e{bottom:585.722700px;}
.y1a7{bottom:586.272300px;}
.y1ae{bottom:586.556400px;}
.y19a{bottom:586.890150px;}
.y32f{bottom:587.326350px;}
.y34f{bottom:589.976250px;}
.y386{bottom:591.071100px;}
.y257{bottom:591.299400px;}
.y23f{bottom:591.315150px;}
.y362{bottom:592.165500px;}
.y3eb{bottom:592.811250px;}
.y433{bottom:593.504250px;}
.y3ba{bottom:594.827250px;}
.y27c{bottom:596.833200px;}
.y103{bottom:598.965600px;}
.y299{bottom:599.143950px;}
.y218{bottom:599.237850px;}
.y2ce{bottom:600.521850px;}
.y1a6{bottom:600.528300px;}
.y1ad{bottom:600.802650px;}
.ya5{bottom:601.826850px;}
.y15a{bottom:602.689650px;}
.y25d{bottom:603.235950px;}
.y32e{bottom:604.625850px;}
.y63{bottom:605.769000px;}
.y88{bottom:605.911050px;}
.y75{bottom:605.935050px;}
.y199{bottom:606.530400px;}
.y17b{bottom:607.490400px;}
.y385{bottom:608.498850px;}
.y34e{bottom:609.474750px;}
.y256{bottom:610.734900px;}
.y23e{bottom:610.797900px;}
.y361{bottom:611.900250px;}
.y3ea{bottom:612.183750px;}
.y432{bottom:612.845250px;}
.y3b9{bottom:614.105250px;}
.y1a5{bottom:614.772300px;}
.y1ac{bottom:615.056400px;}
.y27b{bottom:616.189950px;}
.y102{bottom:616.421850px;}
.y217{bottom:616.679850px;}
.y2cd{bottom:617.992350px;}
.ya4{bottom:619.354350px;}
.y159{bottom:620.174400px;}
.y25c{bottom:620.749200px;}
.y32d{bottom:621.925350px;}
.y298{bottom:624.721950px;}
.y384{bottom:625.926600px;}
.y198{bottom:626.170650px;}
.y87{bottom:626.331300px;}
.y62{bottom:626.377500px;}
.y74{bottom:626.510550px;}
.y17a{bottom:627.083400px;}
.y34d{bottom:628.973250px;}
.y255{bottom:630.170400px;}
.y23d{bottom:630.280650px;}
.y3e9{bottom:631.556250px;}
.y360{bottom:631.635000px;}
.y431{bottom:632.170500px;}
.y3b8{bottom:633.383250px;}
.y101{bottom:633.878100px;}
.y216{bottom:634.121850px;}
.y2cc{bottom:635.462850px;}
.y27a{bottom:635.546700px;}
.ya3{bottom:636.881850px;}
.y158{bottom:637.662600px;}
.y25b{bottom:638.262450px;}
.y32c{bottom:639.224850px;}
.y383{bottom:643.354350px;}
.y197{bottom:645.810900px;}
.y179{bottom:646.676400px;}
.y86{bottom:646.751550px;}
.y61{bottom:646.986000px;}
.y73{bottom:647.086050px;}
.y34c{bottom:648.471750px;}
.y254{bottom:649.605900px;}
.y23c{bottom:649.763400px;}
.y297{bottom:650.299950px;}
.y3e8{bottom:650.928750px;}
.y100{bottom:651.334350px;}
.y35f{bottom:651.369750px;}
.y430{bottom:651.511500px;}
.y215{bottom:651.563850px;}
.y3b7{bottom:652.661250px;}
.y2cb{bottom:652.933350px;}
.ya2{bottom:654.409350px;}
.y279{bottom:654.903450px;}
.y157{bottom:655.150800px;}
.y25a{bottom:655.773900px;}
.y32b{bottom:656.524350px;}
.y382{bottom:660.782100px;}
.y196{bottom:665.451150px;}
.y178{bottom:666.269400px;}
.y85{bottom:667.171800px;}
.y60{bottom:667.594500px;}
.y72{bottom:667.661550px;}
.y34b{bottom:667.970250px;}
.yff{bottom:668.790600px;}
.y214{bottom:669.005850px;}
.y253{bottom:669.041400px;}
.y23b{bottom:669.246150px;}
.y3e7{bottom:670.301250px;}
.y2ca{bottom:670.403850px;}
.y42f{bottom:670.852500px;}
.y35e{bottom:671.104500px;}
.ya1{bottom:671.936850px;}
.y3b6{bottom:671.939250px;}
.y156{bottom:672.639150px;}
.y32a{bottom:673.823850px;}
.y381{bottom:678.209850px;}
.y195{bottom:685.091400px;}
.y177{bottom:685.862400px;}
.yfe{bottom:686.246850px;}
.y213{bottom:686.447850px;}
.y34a{bottom:687.468750px;}
.y2c9{bottom:687.874350px;}
.y5f{bottom:688.203000px;}
.y71{bottom:688.237050px;}
.y252{bottom:688.476900px;}
.y23a{bottom:688.728900px;}
.ya0{bottom:689.464350px;}
.y3e6{bottom:689.673750px;}
.y155{bottom:690.173250px;}
.y42e{bottom:690.193500px;}
.y35d{bottom:690.839250px;}
.y329{bottom:691.123350px;}
.y3b5{bottom:691.217250px;}
.y380{bottom:695.637600px;}
.y84{bottom:700.386600px;}
.y212{bottom:703.889850px;}
.y194{bottom:704.731650px;}
.y2c8{bottom:705.344850px;}
.y176{bottom:705.455400px;}
.y1f1{bottom:706.524600px;}
.y349{bottom:706.967250px;}
.y9f{bottom:706.991850px;}
.y154{bottom:707.658000px;}
.y251{bottom:707.912400px;}
.y239{bottom:708.211650px;}
.y328{bottom:708.422850px;}
.y5e{bottom:708.811500px;}
.y70{bottom:708.812550px;}
.y3e5{bottom:709.046250px;}
.y42d{bottom:709.518750px;}
.y3b4{bottom:710.495250px;}
.y35c{bottom:710.574000px;}
.y2b4{bottom:711.198450px;}
.y37f{bottom:713.065350px;}
.y211{bottom:721.331850px;}
.y83{bottom:721.556100px;}
.y2c7{bottom:722.815350px;}
.y193{bottom:724.371900px;}
.y9e{bottom:724.519350px;}
.y175{bottom:725.048400px;}
.y153{bottom:725.142750px;}
.y327{bottom:725.722350px;}
.y348{bottom:726.465750px;}
.y250{bottom:727.347900px;}
.y238{bottom:727.694400px;}
.y3e4{bottom:728.418750px;}
.y42c{bottom:728.859750px;}
.y6f{bottom:729.388050px;}
.y5d{bottom:729.420000px;}
.y3b3{bottom:729.773250px;}
.y35b{bottom:730.308750px;}
.y37e{bottom:730.493100px;}
.y210{bottom:738.773850px;}
.y2c6{bottom:740.285850px;}
.y9d{bottom:742.046850px;}
.y152{bottom:742.627500px;}
.y82{bottom:742.725600px;}
.y326{bottom:743.021850px;}
.y192{bottom:744.012150px;}
.y174{bottom:744.641400px;}
.y347{bottom:745.964250px;}
.y24f{bottom:746.783400px;}
.y237{bottom:747.177150px;}
.y3e3{bottom:747.791250px;}
.y37d{bottom:747.920850px;}
.y42b{bottom:748.200750px;}
.y3b2{bottom:749.051250px;}
.yfd{bottom:749.716650px;}
.y6e{bottom:749.963550px;}
.y5c{bottom:750.028500px;}
.y35a{bottom:750.043500px;}
.y131{bottom:750.153750px;}
.y140{bottom:750.169500px;}
.y20f{bottom:756.215850px;}
.y2c5{bottom:757.756350px;}
.y9c{bottom:759.574350px;}
.y151{bottom:760.112250px;}
.y325{bottom:760.321350px;}
.y191{bottom:763.652400px;}
.y81{bottom:763.895100px;}
.yfc{bottom:763.970400px;}
.y173{bottom:764.234400px;}
.y37c{bottom:765.348600px;}
.y346{bottom:765.462750px;}
.ya{bottom:766.060650px;}
.y24e{bottom:766.218900px;}
.y236{bottom:766.659900px;}
.y3e2{bottom:767.163750px;}
.y42a{bottom:767.541750px;}
.y3b1{bottom:768.329250px;}
.y130{bottom:769.353000px;}
.y13f{bottom:769.368750px;}
.y359{bottom:769.778250px;}
.y5b{bottom:770.637000px;}
.y20e{bottom:773.657850px;}
.y2c4{bottom:775.226850px;}
.y9b{bottom:777.101850px;}
.y150{bottom:777.597000px;}
.y324{bottom:777.620850px;}
.yfb{bottom:778.224150px;}
.y37b{bottom:782.776350px;}
.y190{bottom:783.292650px;}
.y172{bottom:783.827400px;}
.y345{bottom:784.961250px;}
.y80{bottom:785.064600px;}
.y24d{bottom:785.654400px;}
.y3e1{bottom:786.536250px;}
.y429{bottom:786.882750px;}
.y3b0{bottom:787.607250px;}
.y12f{bottom:788.552250px;}
.y13e{bottom:788.568000px;}
.y20d{bottom:791.099850px;}
.y5a{bottom:791.245500px;}
.yfa{bottom:792.477900px;}
.y2c3{bottom:792.697350px;}
.y9{bottom:792.812550px;}
.y9a{bottom:794.629350px;}
.y323{bottom:794.920350px;}
.y14f{bottom:795.081750px;}
.y30b{bottom:795.562800px;}
.ye0{bottom:796.057950px;}
.y37a{bottom:800.204100px;}
.y18f{bottom:802.932900px;}
.y6d{bottom:803.103600px;}
.y171{bottom:803.420400px;}
.y344{bottom:804.459750px;}
.y24c{bottom:805.089900px;}
.y3e0{bottom:805.908750px;}
.y428{bottom:806.208000px;}
.y7f{bottom:806.234100px;}
.yf9{bottom:806.731650px;}
.y3af{bottom:806.885250px;}
.y12e{bottom:807.751500px;}
.y13d{bottom:807.767250px;}
.y2c2{bottom:810.167850px;}
.y59{bottom:811.854000px;}
.y322{bottom:812.219850px;}
.y14e{bottom:812.566500px;}
.y20c{bottom:812.793600px;}
.y99{bottom:816.400650px;}
.y379{bottom:817.631850px;}
.yf8{bottom:820.985400px;}
.y18e{bottom:822.573150px;}
.y6c{bottom:822.939600px;}
.y170{bottom:823.013400px;}
.y343{bottom:823.958250px;}
.y24b{bottom:824.525400px;}
.y3df{bottom:825.281250px;}
.y427{bottom:825.549000px;}
.y3ae{bottom:826.163250px;}
.y12d{bottom:826.950750px;}
.y13c{bottom:826.966500px;}
.y7e{bottom:827.403600px;}
.y2c1{bottom:827.638350px;}
.y201{bottom:828.069300px;}
.y321{bottom:829.519350px;}
.y14d{bottom:830.051250px;}
.y58{bottom:832.462500px;}
.y20b{bottom:834.731100px;}
.y378{bottom:835.059600px;}
.yf7{bottom:835.239150px;}
.y98{bottom:838.435650px;}
.y8{bottom:840.591450px;}
.y18d{bottom:842.213400px;}
.y200{bottom:842.323050px;}
.y16f{bottom:842.606400px;}
.y6b{bottom:842.775600px;}
.y342{bottom:843.456750px;}
.y24a{bottom:843.960900px;}
.y3de{bottom:844.653750px;}
.y426{bottom:844.890000px;}
.y2c0{bottom:845.108850px;}
.y3ad{bottom:845.441250px;}
.y12c{bottom:846.150000px;}
.y13b{bottom:846.165750px;}
.y320{bottom:846.818850px;}
.y14c{bottom:847.536000px;}
.y7d{bottom:848.573100px;}
.yf6{bottom:849.492900px;}
.y377{bottom:852.487350px;}
.y57{bottom:853.071000px;}
.y1ff{bottom:856.576800px;}
.y20a{bottom:856.668600px;}
.y18c{bottom:861.853650px;}
.y16e{bottom:862.199400px;}
.y2bf{bottom:862.579350px;}
.y6a{bottom:862.611600px;}
.y341{bottom:862.955250px;}
.y249{bottom:863.396400px;}
.yf5{bottom:863.746650px;}
.y3dd{bottom:864.026250px;}
.y31f{bottom:864.118350px;}
.y425{bottom:864.215250px;}
.y3ac{bottom:864.719250px;}
.y14b{bottom:865.020750px;}
.y12b{bottom:865.349250px;}
.y13a{bottom:865.365000px;}
.y316{bottom:867.983700px;}
.y7c{bottom:869.742600px;}
.y376{bottom:869.915100px;}
.y1fe{bottom:870.830550px;}
.y7{bottom:872.083950px;}
.y56{bottom:873.679500px;}
.y46d{bottom:877.413150px;}
.yf4{bottom:878.000400px;}
.y97{bottom:879.593850px;}
.y2be{bottom:880.049850px;}
.y31e{bottom:881.417850px;}
.y18b{bottom:881.493900px;}
.y16d{bottom:881.792400px;}
.y315{bottom:882.237450px;}
.y69{bottom:882.447600px;}
.y340{bottom:882.453750px;}
.y14a{bottom:882.505500px;}
.y248{bottom:882.831900px;}
.y3dc{bottom:883.398750px;}
.y424{bottom:883.556250px;}
.y3ab{bottom:883.997250px;}
.y12a{bottom:884.548500px;}
.y139{bottom:884.564250px;}
.y1fd{bottom:885.076800px;}
.y375{bottom:887.342850px;}
.y7b{bottom:890.912100px;}
.yf3{bottom:892.254150px;}
.y55{bottom:894.288000px;}
.y314{bottom:896.491200px;}
.y96{bottom:897.121350px;}
.y2bd{bottom:897.520350px;}
.y209{bottom:897.719850px;}
.y31d{bottom:898.717350px;}
.y1fc{bottom:899.330550px;}
.y149{bottom:899.990250px;}
.y18a{bottom:901.134150px;}
.y16c{bottom:901.385400px;}
.y33f{bottom:901.952250px;}
.y247{bottom:902.267400px;}
.y3db{bottom:902.771250px;}
.y423{bottom:902.897250px;}
.y3aa{bottom:903.275250px;}
.y6{bottom:903.576450px;}
.y129{bottom:903.747750px;}
.y138{bottom:903.763500px;}
.y374{bottom:904.770600px;}
.yf2{bottom:906.507900px;}
.y313{bottom:910.744950px;}
.y7a{bottom:912.081600px;}
.y1fb{bottom:913.584300px;}
.y95{bottom:914.648850px;}
.y54{bottom:914.896500px;}
.y2bc{bottom:914.990850px;}
.y68{bottom:915.050100px;}
.y208{bottom:915.161850px;}
.y31c{bottom:916.016850px;}
.y148{bottom:917.475000px;}
.y1f2{bottom:920.645850px;}
.yf1{bottom:920.761650px;}
.y189{bottom:920.774400px;}
.y16b{bottom:920.978400px;}
.y33e{bottom:921.450750px;}
.y246{bottom:921.702900px;}
.y3da{bottom:922.143750px;}
.y422{bottom:922.238250px;}
.y3a9{bottom:922.553250px;}
.y128{bottom:922.947000px;}
.y137{bottom:922.962750px;}
.y312{bottom:924.998700px;}
.y373{bottom:926.454000px;}
.y94{bottom:932.176350px;}
.y2bb{bottom:932.461350px;}
.y207{bottom:932.603850px;}
.y79{bottom:933.251100px;}
.y31b{bottom:933.316350px;}
.yf0{bottom:935.015400px;}
.y53{bottom:935.505000px;}
.y67{bottom:935.625600px;}
.y1fa{bottom:936.374250px;}
.y147{bottom:939.207600px;}
.y311{bottom:939.252450px;}
.y188{bottom:940.414650px;}
.y16a{bottom:940.571400px;}
.y33d{bottom:940.949250px;}
.y245{bottom:941.138400px;}
.y3d9{bottom:941.516250px;}
.y421{bottom:941.579250px;}
.y3a8{bottom:941.831250px;}
.y127{bottom:942.146250px;}
.y136{bottom:942.162000px;}
.y5{bottom:947.847300px;}
.y93{bottom:949.703850px;}
.y2ba{bottom:949.931850px;}
.y206{bottom:950.045850px;}
.y31a{bottom:950.615850px;}
.y1f9{bottom:950.618250px;}
.y310{bottom:953.506200px;}
.y78{bottom:954.420600px;}
.y52{bottom:956.113500px;}
.y66{bottom:956.201100px;}
.y187{bottom:960.054900px;}
.y169{bottom:960.164400px;}
.y33c{bottom:960.447750px;}
.y244{bottom:960.573900px;}
.y3d8{bottom:960.888750px;}
.y420{bottom:960.920250px;}
.y3a7{bottom:961.109250px;}
.y146{bottom:961.203600px;}
.y126{bottom:961.345500px;}
.y135{bottom:961.361250px;}
.yef{bottom:962.099400px;}
.y1f8{bottom:964.862250px;}
.y92{bottom:967.231350px;}
.y2b9{bottom:967.402350px;}
.y205{bottom:967.487850px;}
.y372{bottom:967.530600px;}
.y30f{bottom:967.759950px;}
.y319{bottom:967.915350px;}
.y77{bottom:975.590100px;}
.yee{bottom:976.343400px;}
.y51{bottom:976.722000px;}
.y65{bottom:976.776600px;}
.y1f7{bottom:979.106250px;}
.y4{bottom:979.339800px;}
.y186{bottom:979.695150px;}
.y168{bottom:979.757400px;}
.y33b{bottom:979.946250px;}
.y243{bottom:980.009400px;}
.y3d7{bottom:980.261250px;}
.y3a6{bottom:980.387250px;}
.y125{bottom:980.544750px;}
.y134{bottom:980.560500px;}
.y30e{bottom:982.013700px;}
.y91{bottom:984.758850px;}
.y2b8{bottom:984.872850px;}
.y204{bottom:984.929850px;}
.y371{bottom:984.958350px;}
.y318{bottom:985.214850px;}
.yed{bottom:990.587400px;}
.y1f6{bottom:993.350250px;}
.y30d{bottom:996.267450px;}
.y76{bottom:996.759600px;}
.y50{bottom:997.330500px;}
.y64{bottom:997.352100px;}
.y185{bottom:999.335400px;}
.y167{bottom:999.350400px;}
.y33a{bottom:999.444750px;}
.y242{bottom:999.444900px;}
.y41f{bottom:999.602250px;}
.y3d6{bottom:999.633750px;}
.y3a5{bottom:999.665250px;}
.y124{bottom:999.744000px;}
.y133{bottom:999.759750px;}
.y90{bottom:1002.286350px;}
.y145{bottom:1002.329250px;}
.y2b7{bottom:1002.343350px;}
.y203{bottom:1002.371850px;}
.y370{bottom:1002.386100px;}
.y317{bottom:1002.514350px;}
.yec{bottom:1004.831400px;}
.y1f5{bottom:1007.594250px;}
.y3{bottom:1010.832300px;}
.y4f{bottom:1017.931800px;}
.y241{bottom:1018.880400px;}
.y123{bottom:1018.943250px;}
.y166{bottom:1018.943400px;}
.y132{bottom:1018.959000px;}
.y184{bottom:1018.975650px;}
.y3d5{bottom:1019.006250px;}
.yeb{bottom:1019.075400px;}
.y1{bottom:1019.178750px;}
.y202{bottom:1019.813850px;}
.y144{bottom:1019.814000px;}
.y1f4{bottom:1021.838250px;}
.y2b5{bottom:1024.885500px;}
.yea{bottom:1033.319400px;}
.ye9{bottom:1047.563400px;}
.ye8{bottom:1061.807400px;}
.ye7{bottom:1076.051400px;}
.y36e{bottom:1090.277400px;}
.ye6{bottom:1090.295400px;}
.y36d{bottom:1104.521400px;}
.ye5{bottom:1104.539400px;}
.y36f{bottom:1104.794250px;}
.y8b{bottom:1118.783250px;}
.ye4{bottom:1118.783400px;}
.y8e{bottom:1119.047850px;}
.y143{bottom:1119.048000px;}
.y8a{bottom:1133.027250px;}
.ye3{bottom:1133.027400px;}
.y8d{bottom:1133.301600px;}
.y142{bottom:1133.301750px;}
.y89{bottom:1147.271250px;}
.ye2{bottom:1147.271400px;}
.y8c{bottom:1147.555350px;}
.y141{bottom:1147.555500px;}
.y8f{bottom:1250.929050px;}
.h3{height:33.165000px;}
.he{height:34.020000px;}
.h13{height:34.350195px;}
.h18{height:35.328000px;}
.hd{height:36.672000px;}
.h1b{height:36.864000px;}
.h19{height:39.798000px;}
.hf{height:41.130000px;}
.h16{height:41.256000px;}
.hc{height:41.838000px;}
.h14{height:41.952000px;}
.h1a{height:43.488000px;}
.h17{height:43.872000px;}
.h6{height:48.384000px;}
.h9{height:48.642000px;}
.hb{height:49.896000px;}
.h10{height:50.706000px;}
.h7{height:52.098000px;}
.ha{height:53.523000px;}
.h2{height:56.340000px;}
.h8{height:57.078000px;}
.h12{height:61.908000px;}
.h11{height:70.668000px;}
.h5{height:77.928000px;}
.h4{height:95.778000px;}
.h15{height:228.664500px;}
.h0{height:1275.591000px;}
.h1{height:1275.750000px;}
.w2{width:22.996500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x10{left:8.415150px;}
.x1{left:28.278150px;}
.x2{left:85.039350px;}
.x4{left:97.795350px;}
.x12{left:110.551200px;}
.xd{left:114.805200px;}
.x3{left:125.433150px;}
.xc{left:342.283500px;}
.x6{left:355.040100px;}
.xe{left:359.292900px;}
.x13{left:367.795200px;}
.x5{left:372.050100px;}
.xa{left:599.527650px;}
.x7{left:612.283500px;}
.xb{left:616.537650px;}
.x11{left:625.036350px;}
.xf{left:884.397000px;}
.x8{left:887.175600px;}
.x9{left:892.812150px;}
@media print{
.v3{vertical-align:-5.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.258133pt;}
.v2{vertical-align:13.346667pt;}
.ls18{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.120000pt;}
.ls6{letter-spacing:-0.880000pt;}
.lsd{letter-spacing:-0.840000pt;}
.ls7{letter-spacing:-0.760000pt;}
.lsa{letter-spacing:-0.600000pt;}
.ls5{letter-spacing:-0.560000pt;}
.ls16{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.202667pt;}
.ls14{letter-spacing:-0.170667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.506667pt;}
.ls1{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.853333pt;}
.ls10{letter-spacing:1.013333pt;}
.ls11{letter-spacing:1.120000pt;}
.ls8{letter-spacing:1.680000pt;}
.lsf{letter-spacing:6.272000pt;}
.lse{letter-spacing:10.136000pt;}
.ls2{letter-spacing:16.576000pt;}
.ws0{word-spacing:-20.128000pt;}
.ws43{word-spacing:-11.861333pt;}
.ws101{word-spacing:-11.648000pt;}
.ws102{word-spacing:-10.581333pt;}
.wsdf{word-spacing:-9.301333pt;}
.ws2{word-spacing:-8.880000pt;}
.ws44{word-spacing:-8.280000pt;}
.ws92{word-spacing:-5.177040pt;}
.wsa4{word-spacing:-5.152000pt;}
.ws6b{word-spacing:-4.256000pt;}
.wsdc{word-spacing:-3.416000pt;}
.ws99{word-spacing:-3.192000pt;}
.wsf{word-spacing:-3.080000pt;}
.ws4b{word-spacing:-3.024000pt;}
.ws5e{word-spacing:-2.968000pt;}
.wsb9{word-spacing:-2.856000pt;}
.wsbb{word-spacing:-2.744000pt;}
.ws2f{word-spacing:-2.688000pt;}
.wsf9{word-spacing:-2.576000pt;}
.wsed{word-spacing:-2.408000pt;}
.ws87{word-spacing:-2.352000pt;}
.ws6f{word-spacing:-2.296000pt;}
.wsa8{word-spacing:-2.240000pt;}
.ws1d{word-spacing:-2.184000pt;}
.ws11e{word-spacing:-2.048000pt;}
.ws4d{word-spacing:-2.016000pt;}
.ws9e{word-spacing:-1.904000pt;}
.ws34{word-spacing:-1.848000pt;}
.ws76{word-spacing:-1.792000pt;}
.ws24{word-spacing:-1.736000pt;}
.ws6a{word-spacing:-1.512000pt;}
.wsbd{word-spacing:-1.400000pt;}
.ws118{word-spacing:-1.365333pt;}
.ws6{word-spacing:-1.232000pt;}
.ws68{word-spacing:-1.176000pt;}
.wse3{word-spacing:-1.120000pt;}
.ws117{word-spacing:-1.066667pt;}
.ws5{word-spacing:-1.008000pt;}
.ws4c{word-spacing:-0.952000pt;}
.wsbc{word-spacing:-0.896000pt;}
.ws81{word-spacing:-0.840000pt;}
.wsdd{word-spacing:-0.784000pt;}
.wsc1{word-spacing:-0.760000pt;}
.wsae{word-spacing:-0.728000pt;}
.ws7c{word-spacing:-0.672000pt;}
.ws116{word-spacing:-0.640000pt;}
.ws78{word-spacing:-0.616000pt;}
.ws9{word-spacing:-0.560000pt;}
.ws70{word-spacing:-0.504000pt;}
.ws89{word-spacing:-0.448000pt;}
.ws46{word-spacing:-0.400000pt;}
.ws12a{word-spacing:-0.341333pt;}
.wsa0{word-spacing:-0.336000pt;}
.wsc0{word-spacing:-0.202667pt;}
.wse8{word-spacing:-0.112000pt;}
.wsd7{word-spacing:-0.056000pt;}
.ws2d{word-spacing:-0.050667pt;}
.ws1{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.056000pt;}
.ws11{word-spacing:0.112000pt;}
.wse1{word-spacing:0.170667pt;}
.ws12b{word-spacing:0.213333pt;}
.ws1b{word-spacing:0.224000pt;}
.wse0{word-spacing:0.240000pt;}
.wse7{word-spacing:0.280000pt;}
.wsd8{word-spacing:0.336000pt;}
.ws129{word-spacing:0.384000pt;}
.wsad{word-spacing:0.392000pt;}
.ws80{word-spacing:0.426667pt;}
.ws109{word-spacing:0.480000pt;}
.wsce{word-spacing:0.504000pt;}
.ws10b{word-spacing:0.512000pt;}
.ws9a{word-spacing:0.560000pt;}
.ws45{word-spacing:0.600000pt;}
.ws6c{word-spacing:0.672000pt;}
.wsfb{word-spacing:0.728000pt;}
.ws2b{word-spacing:0.760000pt;}
.wsa5{word-spacing:0.784000pt;}
.ws77{word-spacing:0.840000pt;}
.ws127{word-spacing:0.981333pt;}
.ws88{word-spacing:1.008000pt;}
.ws64{word-spacing:1.064000pt;}
.wsb8{word-spacing:1.120000pt;}
.ws35{word-spacing:1.232000pt;}
.ws103{word-spacing:1.288000pt;}
.ws2e{word-spacing:1.344000pt;}
.ws15{word-spacing:1.400000pt;}
.wsb2{word-spacing:1.456000pt;}
.ws33{word-spacing:1.512000pt;}
.ws55{word-spacing:1.568000pt;}
.ws11b{word-spacing:1.621333pt;}
.ws3d{word-spacing:1.624000pt;}
.ws62{word-spacing:1.680000pt;}
.ws110{word-spacing:1.834667pt;}
.wsf8{word-spacing:1.904000pt;}
.ws26{word-spacing:1.960000pt;}
.ws11f{word-spacing:1.962667pt;}
.wsea{word-spacing:2.016000pt;}
.wsf7{word-spacing:2.072000pt;}
.ws79{word-spacing:2.128000pt;}
.ws120{word-spacing:2.176000pt;}
.ws75{word-spacing:2.184000pt;}
.wsca{word-spacing:2.240000pt;}
.ws128{word-spacing:2.304000pt;}
.ws6e{word-spacing:2.352000pt;}
.ws119{word-spacing:2.389333pt;}
.ws8b{word-spacing:2.408000pt;}
.wsc{word-spacing:2.464000pt;}
.ws49{word-spacing:2.520000pt;}
.ws12{word-spacing:2.576000pt;}
.wsde{word-spacing:2.632000pt;}
.ws22{word-spacing:2.688000pt;}
.wsa3{word-spacing:2.744000pt;}
.ws29{word-spacing:3.136000pt;}
.ws4a{word-spacing:3.192000pt;}
.ws10c{word-spacing:3.242667pt;}
.ws28{word-spacing:3.360000pt;}
.ws8a{word-spacing:3.528000pt;}
.ws7a{word-spacing:3.584000pt;}
.wsaf{word-spacing:3.640000pt;}
.ws1c{word-spacing:3.752000pt;}
.wsdb{word-spacing:3.808000pt;}
.wse2{word-spacing:3.864000pt;}
.ws7b{word-spacing:3.920000pt;}
.ws122{word-spacing:3.925333pt;}
.wsfa{word-spacing:3.976000pt;}
.ws10a{word-spacing:4.010667pt;}
.wscb{word-spacing:4.032000pt;}
.ws11a{word-spacing:4.096000pt;}
.ws72{word-spacing:4.144000pt;}
.ws4f{word-spacing:4.200000pt;}
.ws106{word-spacing:4.312000pt;}
.ws10{word-spacing:4.368000pt;}
.ws59{word-spacing:4.424000pt;}
.ws23{word-spacing:4.480000pt;}
.wsba{word-spacing:4.536000pt;}
.wscd{word-spacing:4.648000pt;}
.ws51{word-spacing:4.704000pt;}
.ws56{word-spacing:4.760000pt;}
.wsb0{word-spacing:4.984000pt;}
.ws73{word-spacing:5.040000pt;}
.wsb3{word-spacing:5.208000pt;}
.wsb6{word-spacing:5.320000pt;}
.ws93{word-spacing:5.432000pt;}
.wsd{word-spacing:5.488000pt;}
.ws47{word-spacing:5.544000pt;}
.ws10e{word-spacing:5.546667pt;}
.ws36{word-spacing:5.600000pt;}
.ws11d{word-spacing:5.632000pt;}
.ws40{word-spacing:5.656000pt;}
.ws42{word-spacing:5.712000pt;}
.ws112{word-spacing:5.760000pt;}
.ws50{word-spacing:5.768000pt;}
.ws111{word-spacing:5.802667pt;}
.ws9d{word-spacing:5.824000pt;}
.ws12c{word-spacing:5.930667pt;}
.ws2a{word-spacing:5.936000pt;}
.ws18{word-spacing:5.992000pt;}
.ws5b{word-spacing:6.216000pt;}
.ws69{word-spacing:6.272000pt;}
.ws124{word-spacing:6.314667pt;}
.ws57{word-spacing:6.328000pt;}
.ws21{word-spacing:6.384000pt;}
.ws1e{word-spacing:6.496000pt;}
.wsa7{word-spacing:6.552000pt;}
.wsd4{word-spacing:6.608000pt;}
.ws3b{word-spacing:6.720000pt;}
.ws85{word-spacing:6.776000pt;}
.wsc8{word-spacing:6.832000pt;}
.ws8c{word-spacing:6.888000pt;}
.ws63{word-spacing:6.944000pt;}
.ws107{word-spacing:7.000000pt;}
.wsef{word-spacing:7.056000pt;}
.ws5c{word-spacing:7.112000pt;}
.ws48{word-spacing:7.224000pt;}
.ws54{word-spacing:7.280000pt;}
.ws31{word-spacing:7.336000pt;}
.wsab{word-spacing:7.392000pt;}
.ws52{word-spacing:7.504000pt;}
.ws14{word-spacing:7.560000pt;}
.ws4{word-spacing:7.616000pt;}
.wsd2{word-spacing:7.728000pt;}
.ws6d{word-spacing:7.784000pt;}
.ws37{word-spacing:7.840000pt;}
.ws94{word-spacing:7.896000pt;}
.ws19{word-spacing:7.952000pt;}
.ws13{word-spacing:8.008000pt;}
.ws115{word-spacing:8.106667pt;}
.ws39{word-spacing:8.120000pt;}
.ws100{word-spacing:8.176000pt;}
.ws114{word-spacing:8.192000pt;}
.ws30{word-spacing:8.288000pt;}
.wsbf{word-spacing:8.456000pt;}
.ws27{word-spacing:8.512000pt;}
.ws65{word-spacing:8.568000pt;}
.wsd9{word-spacing:8.624000pt;}
.ws32{word-spacing:8.736000pt;}
.ws10f{word-spacing:8.746667pt;}
.ws3a{word-spacing:8.792000pt;}
.ws7{word-spacing:8.848000pt;}
.wsb{word-spacing:9.016000pt;}
.wse4{word-spacing:9.128000pt;}
.ws11c{word-spacing:9.130667pt;}
.ws9b{word-spacing:9.240000pt;}
.ws86{word-spacing:9.352000pt;}
.ws3c{word-spacing:9.576000pt;}
.wsd3{word-spacing:9.744000pt;}
.ws121{word-spacing:9.984000pt;}
.wse6{word-spacing:10.024000pt;}
.ws123{word-spacing:10.026667pt;}
.wsbe{word-spacing:10.136000pt;}
.ws98{word-spacing:10.192000pt;}
.wseb{word-spacing:10.248000pt;}
.ws60{word-spacing:10.416000pt;}
.wsee{word-spacing:10.528000pt;}
.ws8{word-spacing:10.640000pt;}
.ws17{word-spacing:10.696000pt;}
.ws1f{word-spacing:10.752000pt;}
.ws3e{word-spacing:10.808000pt;}
.wsc7{word-spacing:10.864000pt;}
.ws58{word-spacing:10.976000pt;}
.wsc2{word-spacing:11.032000pt;}
.ws9f{word-spacing:11.088000pt;}
.ws16{word-spacing:11.256000pt;}
.ws83{word-spacing:11.312000pt;}
.ws108{word-spacing:11.480000pt;}
.ws7e{word-spacing:11.592000pt;}
.ws96{word-spacing:11.648000pt;}
.wsb7{word-spacing:11.704000pt;}
.ws38{word-spacing:11.760000pt;}
.ws8d{word-spacing:11.872000pt;}
.ws105{word-spacing:11.984000pt;}
.ws3f{word-spacing:12.096000pt;}
.wsb4{word-spacing:12.320000pt;}
.ws5a{word-spacing:12.488000pt;}
.wscc{word-spacing:12.544000pt;}
.ws25{word-spacing:12.600000pt;}
.wsd6{word-spacing:12.936000pt;}
.wsc9{word-spacing:13.440000pt;}
.wsfe{word-spacing:13.552000pt;}
.wse{word-spacing:13.608000pt;}
.ws82{word-spacing:13.720000pt;}
.wsc6{word-spacing:13.776000pt;}
.ws10d{word-spacing:13.824000pt;}
.wsaa{word-spacing:13.888000pt;}
.wsb1{word-spacing:14.056000pt;}
.ws104{word-spacing:14.168000pt;}
.wsb5{word-spacing:14.336000pt;}
.ws97{word-spacing:14.448000pt;}
.wsff{word-spacing:14.560000pt;}
.wsd0{word-spacing:14.616000pt;}
.wsc5{word-spacing:15.008000pt;}
.ws113{word-spacing:15.018667pt;}
.wsa9{word-spacing:15.288000pt;}
.ws1a{word-spacing:15.456000pt;}
.ws53{word-spacing:15.568000pt;}
.ws5d{word-spacing:15.624000pt;}
.wsa{word-spacing:16.016000pt;}
.ws84{word-spacing:16.128000pt;}
.wsd5{word-spacing:16.352000pt;}
.ws61{word-spacing:16.408000pt;}
.wsf6{word-spacing:16.632000pt;}
.ws8e{word-spacing:17.192000pt;}
.wsa1{word-spacing:17.360000pt;}
.ws3{word-spacing:17.640000pt;}
.ws5f{word-spacing:17.696000pt;}
.wsd1{word-spacing:17.920000pt;}
.wsac{word-spacing:17.976000pt;}
.wsc4{word-spacing:18.088000pt;}
.wsda{word-spacing:18.368000pt;}
.ws126{word-spacing:18.560000pt;}
.ws9c{word-spacing:18.704000pt;}
.ws71{word-spacing:18.760000pt;}
.wsf2{word-spacing:18.816000pt;}
.wsa2{word-spacing:19.712000pt;}
.wsf4{word-spacing:19.768000pt;}
.wsec{word-spacing:19.824000pt;}
.wsc3{word-spacing:20.048000pt;}
.ws67{word-spacing:20.272000pt;}
.wse9{word-spacing:21.056000pt;}
.wsf1{word-spacing:21.112000pt;}
.ws74{word-spacing:21.840000pt;}
.ws90{word-spacing:22.624000pt;}
.wsfd{word-spacing:22.904000pt;}
.ws41{word-spacing:23.128000pt;}
.wsf0{word-spacing:23.520000pt;}
.wsf3{word-spacing:23.968000pt;}
.wsfc{word-spacing:24.192000pt;}
.ws125{word-spacing:24.362667pt;}
.ws7d{word-spacing:24.976000pt;}
.ws20{word-spacing:25.424000pt;}
.ws66{word-spacing:25.928000pt;}
.wse5{word-spacing:27.664000pt;}
.ws8f{word-spacing:30.072000pt;}
.ws95{word-spacing:30.576000pt;}
.wsa6{word-spacing:30.800000pt;}
.ws91{word-spacing:31.528000pt;}
.wsf5{word-spacing:32.200000pt;}
.ws7f{word-spacing:34.440000pt;}
.ws2c{word-spacing:118.937600pt;}
.wscf{word-spacing:1784.891200pt;}
._9{margin-left:-31.007467pt;}
._7{margin-left:-11.248000pt;}
._8{margin-left:-9.941333pt;}
._4{margin-left:-6.709333pt;}
._0{margin-left:-5.421867pt;}
._2{margin-left:-4.515200pt;}
._3{margin-left:-3.354667pt;}
._1{margin-left:-1.864533pt;}
._6{margin-left:-0.906933pt;}
._5{width:1.058933pt;}
._b{width:7.978667pt;}
._a{width:14.890667pt;}
._c{width:24.533333pt;}
.fsa{font-size:23.320000pt;}
.fs1{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs8{font-size:69.333333pt;}
.fs9{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:68.396133pt;}
.y36c{bottom:68.723467pt;}
.y1a4{bottom:68.866933pt;}
.y2{bottom:69.056667pt;}
.ydf{bottom:82.399333pt;}
.yd1{bottom:82.407200pt;}
.y120{bottom:82.430533pt;}
.y30a{bottom:82.757600pt;}
.y235{bottom:83.039867pt;}
.y36{bottom:83.053733pt;}
.y20{bottom:83.081733pt;}
.y278{bottom:83.129333pt;}
.y41e{bottom:83.131333pt;}
.y2fa{bottom:83.135600pt;}
.yc2{bottom:83.145200pt;}
.y3a4{bottom:83.149467pt;}
.y451{bottom:83.150667pt;}
.y296{bottom:83.162400pt;}
.y46c{bottom:83.172000pt;}
.y3d4{bottom:83.199333pt;}
.y1c8{bottom:83.212267pt;}
.y403{bottom:83.219200pt;}
.y1dc{bottom:83.236400pt;}
.y2b3{bottom:83.245333pt;}
.y4e{bottom:83.271333pt;}
.y1f0{bottom:83.320400pt;}
.y2eb{bottom:83.446533pt;}
.y3a3{bottom:95.969333pt;}
.y450{bottom:96.334667pt;}
.y41d{bottom:96.475333pt;}
.y46b{bottom:96.516000pt;}
.y11f{bottom:97.947200pt;}
.y234{bottom:98.543867pt;}
.y277{bottom:98.696667pt;}
.y1c7{bottom:98.703600pt;}
.yc1{bottom:98.725200pt;}
.y2ea{bottom:98.975867pt;}
.y4d{bottom:99.016000pt;}
.yd0{bottom:99.501200pt;}
.yde{bottom:99.773333pt;}
.y309{bottom:100.033600pt;}
.y2f9{bottom:100.257600pt;}
.y35{bottom:100.273733pt;}
.y1f{bottom:100.287733pt;}
.y1db{bottom:100.316400pt;}
.y3d3{bottom:100.335333pt;}
.y295{bottom:100.368400pt;}
.y2b2{bottom:100.381333pt;}
.y1ef{bottom:100.400400pt;}
.y402{bottom:100.439200pt;}
.y3a2{bottom:108.801333pt;}
.y44f{bottom:109.519867pt;}
.y41c{bottom:109.819333pt;}
.y46a{bottom:109.860000pt;}
.y11e{bottom:113.463867pt;}
.y233{bottom:114.047867pt;}
.y1c6{bottom:114.194933pt;}
.y276{bottom:114.264000pt;}
.yc0{bottom:114.305200pt;}
.y2e9{bottom:114.505200pt;}
.y4c{bottom:114.760667pt;}
.ycf{bottom:116.595200pt;}
.ydd{bottom:117.147333pt;}
.y308{bottom:117.309600pt;}
.y2f8{bottom:117.379600pt;}
.y1da{bottom:117.396400pt;}
.y3d2{bottom:117.471333pt;}
.y1ee{bottom:117.480400pt;}
.y34{bottom:117.493733pt;}
.y1e{bottom:117.507733pt;}
.y2b1{bottom:117.517333pt;}
.y294{bottom:117.574400pt;}
.y401{bottom:117.659200pt;}
.y3a1{bottom:121.633333pt;}
.y44e{bottom:122.709600pt;}
.y41b{bottom:123.163333pt;}
.y469{bottom:123.204000pt;}
.y11d{bottom:128.980533pt;}
.y232{bottom:129.551867pt;}
.y1c5{bottom:129.686267pt;}
.y275{bottom:129.831333pt;}
.ybf{bottom:129.885200pt;}
.y2e8{bottom:130.034533pt;}
.y4b{bottom:130.505333pt;}
.yce{bottom:133.689200pt;}
.y3a0{bottom:134.461333pt;}
.y1d9{bottom:134.476400pt;}
.y2f7{bottom:134.501600pt;}
.ydc{bottom:134.521333pt;}
.y1ed{bottom:134.560400pt;}
.y307{bottom:134.585600pt;}
.y3d1{bottom:134.607333pt;}
.y2b0{bottom:134.653333pt;}
.y33{bottom:134.699733pt;}
.y1d{bottom:134.713733pt;}
.y293{bottom:134.780400pt;}
.y400{bottom:134.879200pt;}
.y44d{bottom:135.893600pt;}
.y41a{bottom:136.507333pt;}
.y468{bottom:136.548000pt;}
.y11c{bottom:144.497200pt;}
.y231{bottom:145.055867pt;}
.y1c4{bottom:145.177600pt;}
.y274{bottom:145.398667pt;}
.ybe{bottom:145.465200pt;}
.y2e7{bottom:145.563867pt;}
.y4a{bottom:146.250000pt;}
.y39f{bottom:147.281200pt;}
.y44c{bottom:149.077600pt;}
.y419{bottom:149.846800pt;}
.y467{bottom:149.892000pt;}
.ycd{bottom:150.783200pt;}
.y1d8{bottom:151.556400pt;}
.y2f6{bottom:151.623600pt;}
.y1ec{bottom:151.640400pt;}
.y3d0{bottom:151.743333pt;}
.y2af{bottom:151.789333pt;}
.y306{bottom:151.861600pt;}
.ydb{bottom:151.895333pt;}
.y32{bottom:151.919733pt;}
.y1c{bottom:151.933733pt;}
.y292{bottom:151.986400pt;}
.y3ff{bottom:152.099200pt;}
.y11b{bottom:160.013867pt;}
.y39e{bottom:160.113200pt;}
.y230{bottom:160.559867pt;}
.y1c3{bottom:160.668933pt;}
.y273{bottom:160.966000pt;}
.ybd{bottom:161.045200pt;}
.y2e6{bottom:161.093200pt;}
.y49{bottom:161.994667pt;}
.y44b{bottom:162.261600pt;}
.y418{bottom:163.186267pt;}
.y466{bottom:163.236000pt;}
.ycc{bottom:167.877200pt;}
.y1d7{bottom:168.636400pt;}
.y1eb{bottom:168.720400pt;}
.y2f5{bottom:168.745600pt;}
.y3cf{bottom:168.879333pt;}
.y2ae{bottom:168.925333pt;}
.y31{bottom:169.125733pt;}
.y305{bottom:169.137600pt;}
.y1b{bottom:169.153733pt;}
.y291{bottom:169.192400pt;}
.yda{bottom:169.269333pt;}
.y3fe{bottom:169.319200pt;}
.y39d{bottom:172.945200pt;}
.y44a{bottom:175.445600pt;}
.y11a{bottom:175.530533pt;}
.y22f{bottom:176.063867pt;}
.y1c2{bottom:176.160267pt;}
.y417{bottom:176.525733pt;}
.y272{bottom:176.533333pt;}
.y465{bottom:176.583600pt;}
.y2e5{bottom:176.622533pt;}
.ybc{bottom:176.625200pt;}
.y48{bottom:177.739333pt;}
.ycb{bottom:184.971200pt;}
.y1d6{bottom:185.716400pt;}
.y39c{bottom:185.773200pt;}
.y1ea{bottom:185.800400pt;}
.y2f4{bottom:185.867600pt;}
.y3ce{bottom:186.015333pt;}
.y2ad{bottom:186.061333pt;}
.y30{bottom:186.345733pt;}
.y1a{bottom:186.373733pt;}
.y290{bottom:186.398400pt;}
.y304{bottom:186.413600pt;}
.y3fd{bottom:186.539200pt;}
.yd9{bottom:186.643333pt;}
.y449{bottom:188.633200pt;}
.y416{bottom:189.865200pt;}
.y464{bottom:189.938800pt;}
.y119{bottom:191.047200pt;}
.y22e{bottom:191.567867pt;}
.y1c1{bottom:191.651600pt;}
.y271{bottom:192.100667pt;}
.y2e4{bottom:192.151867pt;}
.ybb{bottom:192.205200pt;}
.y47{bottom:193.484000pt;}
.y39b{bottom:198.601200pt;}
.y2b6{bottom:200.927600pt;}
.y448{bottom:201.817200pt;}
.yca{bottom:202.065200pt;}
.y1d5{bottom:202.796400pt;}
.y1e9{bottom:202.880400pt;}
.y2f3{bottom:202.989600pt;}
.y3cd{bottom:203.151333pt;}
.y415{bottom:203.190933pt;}
.y2ac{bottom:203.197333pt;}
.y463{bottom:203.282800pt;}
.y2f{bottom:203.565733pt;}
.y19{bottom:203.593733pt;}
.y28f{bottom:203.604400pt;}
.y303{bottom:203.689600pt;}
.y3fc{bottom:203.759200pt;}
.yd8{bottom:204.017333pt;}
.y118{bottom:206.563867pt;}
.y22d{bottom:207.071867pt;}
.y1c0{bottom:207.142933pt;}
.y270{bottom:207.668000pt;}
.y2e3{bottom:207.681200pt;}
.yba{bottom:207.785200pt;}
.y46{bottom:209.228667pt;}
.y39a{bottom:211.424933pt;}
.y447{bottom:215.001200pt;}
.y414{bottom:216.534933pt;}
.y462{bottom:216.626800pt;}
.yc9{bottom:219.159200pt;}
.y1d4{bottom:219.876400pt;}
.y1e8{bottom:219.960400pt;}
.y2f2{bottom:220.111600pt;}
.y3cc{bottom:220.287333pt;}
.y2ab{bottom:220.333333pt;}
.y2e{bottom:220.771733pt;}
.y18{bottom:220.799733pt;}
.y28e{bottom:220.810400pt;}
.y302{bottom:220.965600pt;}
.y3fb{bottom:220.979200pt;}
.yd7{bottom:221.391333pt;}
.y117{bottom:222.080533pt;}
.y22c{bottom:222.575867pt;}
.y1bf{bottom:222.634267pt;}
.y2e2{bottom:223.210533pt;}
.y26f{bottom:223.235333pt;}
.yb9{bottom:223.365200pt;}
.y399{bottom:224.256933pt;}
.y45{bottom:224.973333pt;}
.y446{bottom:228.187467pt;}
.y413{bottom:229.878933pt;}
.y461{bottom:229.985733pt;}
.yc8{bottom:236.253200pt;}
.y1d3{bottom:236.956400pt;}
.y1e7{bottom:237.040400pt;}
.y398{bottom:237.072800pt;}
.y2f1{bottom:237.233600pt;}
.y3cb{bottom:237.423333pt;}
.y2aa{bottom:237.469333pt;}
.y116{bottom:237.597200pt;}
.y2d{bottom:237.991733pt;}
.y28d{bottom:238.016400pt;}
.y17{bottom:238.019733pt;}
.y22b{bottom:238.079867pt;}
.y1be{bottom:238.125600pt;}
.y3fa{bottom:238.199200pt;}
.y301{bottom:238.241600pt;}
.y2e1{bottom:238.739867pt;}
.yd6{bottom:238.765333pt;}
.y26e{bottom:238.802667pt;}
.yb8{bottom:238.945200pt;}
.y44{bottom:240.718000pt;}
.y445{bottom:241.371467pt;}
.y412{bottom:243.222933pt;}
.y460{bottom:243.329733pt;}
.y397{bottom:249.904800pt;}
.y115{bottom:253.113867pt;}
.yc7{bottom:253.347200pt;}
.y22a{bottom:253.583867pt;}
.y1bd{bottom:253.616933pt;}
.y1d2{bottom:254.036400pt;}
.y1e6{bottom:254.120400pt;}
.y2e0{bottom:254.269200pt;}
.y2f0{bottom:254.355600pt;}
.y26d{bottom:254.370000pt;}
.yb7{bottom:254.525200pt;}
.y444{bottom:254.557867pt;}
.y3ca{bottom:254.559333pt;}
.y2a9{bottom:254.605333pt;}
.y2c{bottom:255.197733pt;}
.y28c{bottom:255.222400pt;}
.y16{bottom:255.239733pt;}
.y3f9{bottom:255.419200pt;}
.y300{bottom:255.517600pt;}
.yd5{bottom:256.139333pt;}
.y43{bottom:256.462667pt;}
.y411{bottom:256.553333pt;}
.y45f{bottom:256.673733pt;}
.y396{bottom:262.736800pt;}
.y443{bottom:267.741867pt;}
.y114{bottom:268.630533pt;}
.y229{bottom:269.087867pt;}
.y1bc{bottom:269.108267pt;}
.y2df{bottom:269.798533pt;}
.y410{bottom:269.897333pt;}
.y26c{bottom:269.937333pt;}
.y45e{bottom:270.017733pt;}
.yb6{bottom:270.105200pt;}
.yc6{bottom:270.441200pt;}
.y1d1{bottom:271.116400pt;}
.y1e5{bottom:271.200400pt;}
.y2ef{bottom:271.477600pt;}
.y3c9{bottom:271.695333pt;}
.y2a8{bottom:271.741333pt;}
.y42{bottom:272.207333pt;}
.y2b{bottom:272.417733pt;}
.y28b{bottom:272.428400pt;}
.y15{bottom:272.459733pt;}
.y3f8{bottom:272.639200pt;}
.y2ff{bottom:272.793600pt;}
.yd4{bottom:273.513333pt;}
.y395{bottom:275.568800pt;}
.y442{bottom:280.931733pt;}
.y40f{bottom:283.241333pt;}
.y45d{bottom:283.372933pt;}
.y113{bottom:284.147200pt;}
.y228{bottom:284.591867pt;}
.y1bb{bottom:284.599600pt;}
.y2de{bottom:285.327867pt;}
.y26b{bottom:285.504667pt;}
.yb5{bottom:285.685200pt;}
.yc5{bottom:287.535200pt;}
.y41{bottom:287.952000pt;}
.y1d0{bottom:288.196400pt;}
.y1e4{bottom:288.280400pt;}
.y394{bottom:288.384667pt;}
.y3c8{bottom:288.831333pt;}
.y2a7{bottom:288.877333pt;}
.y28a{bottom:289.634400pt;}
.y2a{bottom:289.637733pt;}
.y14{bottom:289.679733pt;}
.y2fe{bottom:290.069600pt;}
.y2ee{bottom:292.384667pt;}
.y3f7{bottom:293.645067pt;}
.y441{bottom:294.115733pt;}
.yd3{bottom:294.671200pt;}
.y40e{bottom:296.580800pt;}
.y45c{bottom:296.716933pt;}
.y112{bottom:299.663867pt;}
.y1ba{bottom:300.090933pt;}
.y227{bottom:300.095867pt;}
.y2dd{bottom:300.857200pt;}
.y393{bottom:301.216667pt;}
.yb4{bottom:301.265200pt;}
.y40{bottom:303.696667pt;}
.yc4{bottom:304.629200pt;}
.y26a{bottom:304.842800pt;}
.y1cf{bottom:305.276400pt;}
.y1e3{bottom:305.360400pt;}
.y3c7{bottom:305.967333pt;}
.y2a6{bottom:306.013333pt;}
.y289{bottom:306.840400pt;}
.y29{bottom:306.857733pt;}
.y13{bottom:306.899733pt;}
.y440{bottom:307.299733pt;}
.y2fd{bottom:307.345600pt;}
.y259{bottom:309.623200pt;}
.y40d{bottom:309.911200pt;}
.y45b{bottom:310.060933pt;}
.y392{bottom:314.048667pt;}
.y2ed{bottom:315.102000pt;}
.y111{bottom:315.180533pt;}
.y1b9{bottom:315.582267pt;}
.y226{bottom:315.599867pt;}
.y2dc{bottom:316.386533pt;}
.yb3{bottom:316.844933pt;}
.yd2{bottom:317.631200pt;}
.y3f{bottom:319.441333pt;}
.y43f{bottom:320.483733pt;}
.yc3{bottom:321.723200pt;}
.y1ce{bottom:322.356400pt;}
.y1e2{bottom:322.440400pt;}
.y3c6{bottom:323.103333pt;}
.y2a5{bottom:323.149333pt;}
.y40c{bottom:323.255200pt;}
.y45a{bottom:323.408667pt;}
.y288{bottom:324.046400pt;}
.y28{bottom:324.063733pt;}
.y12{bottom:324.105733pt;}
.y269{bottom:324.412133pt;}
.y2fc{bottom:324.621600pt;}
.y391{bottom:326.880667pt;}
.y110{bottom:330.697200pt;}
.y1b8{bottom:331.073600pt;}
.y225{bottom:331.103867pt;}
.y2db{bottom:331.915867pt;}
.yb2{bottom:332.417200pt;}
.y43e{bottom:333.667733pt;}
.y3e{bottom:335.186000pt;}
.y40b{bottom:336.599200pt;}
.y459{bottom:336.763867pt;}
.y3f6{bottom:337.523333pt;}
.y2ec{bottom:337.819333pt;}
.y1cd{bottom:339.436400pt;}
.y1e1{bottom:339.520400pt;}
.y3c5{bottom:340.239333pt;}
.y2a4{bottom:340.285333pt;}
.y287{bottom:341.252400pt;}
.y27{bottom:341.283733pt;}
.y11{bottom:341.325733pt;}
.y2fb{bottom:341.897600pt;}
.y390{bottom:343.488133pt;}
.y268{bottom:343.981467pt;}
.y10f{bottom:346.213867pt;}
.y1b7{bottom:346.564933pt;}
.y224{bottom:346.607867pt;}
.y43d{bottom:346.857467pt;}
.y2da{bottom:347.445200pt;}
.yb1{bottom:347.997200pt;}
.y40a{bottom:349.938533pt;}
.y458{bottom:350.107867pt;}
.y3d{bottom:350.930667pt;}
.y3f5{bottom:354.743333pt;}
.y1cc{bottom:356.516400pt;}
.y1e0{bottom:356.600400pt;}
.y3c4{bottom:357.375333pt;}
.y2a3{bottom:357.421333pt;}
.y286{bottom:358.458400pt;}
.y26{bottom:358.489733pt;}
.y10{bottom:358.545733pt;}
.y43c{bottom:360.041467pt;}
.y10e{bottom:361.730533pt;}
.y1b6{bottom:362.056267pt;}
.y223{bottom:362.111867pt;}
.y2d9{bottom:362.974533pt;}
.y409{bottom:363.278000pt;}
.y457{bottom:363.451867pt;}
.yb0{bottom:363.577200pt;}
.y1a3{bottom:364.558133pt;}
.y183{bottom:364.754133pt;}
.y165{bottom:364.762133pt;}
.y3c{bottom:366.675333pt;}
.y339{bottom:368.294533pt;}
.y358{bottom:368.435333pt;}
.y36b{bottom:368.518000pt;}
.ye1{bottom:370.984533pt;}
.y3f4{bottom:371.963333pt;}
.y43b{bottom:373.225467pt;}
.y1cb{bottom:373.596400pt;}
.y1df{bottom:373.680400pt;}
.y3c3{bottom:374.511333pt;}
.y2a2{bottom:374.557333pt;}
.y285{bottom:375.664400pt;}
.y25{bottom:375.709733pt;}
.yf{bottom:375.765733pt;}
.y408{bottom:376.599333pt;}
.y456{bottom:376.799600pt;}
.y10d{bottom:377.247200pt;}
.y1b5{bottom:377.547600pt;}
.y222{bottom:377.615867pt;}
.y2d8{bottom:378.503867pt;}
.yaf{bottom:379.157200pt;}
.y164{bottom:380.304133pt;}
.y267{bottom:380.536400pt;}
.y1a2{bottom:382.016133pt;}
.y182{bottom:382.170133pt;}
.y3b{bottom:382.420000pt;}
.y338{bottom:383.671867pt;}
.y30c{bottom:385.592133pt;}
.y357{bottom:385.767333pt;}
.y38f{bottom:385.974533pt;}
.y36a{bottom:386.060000pt;}
.y43a{bottom:386.409467pt;}
.y3f3{bottom:389.183333pt;}
.y407{bottom:389.943333pt;}
.y455{bottom:390.147333pt;}
.y1ca{bottom:390.676400pt;}
.y1de{bottom:390.760400pt;}
.y3c2{bottom:391.647333pt;}
.y2a1{bottom:391.693333pt;}
.y10c{bottom:392.763867pt;}
.y284{bottom:392.870400pt;}
.y24{bottom:392.929733pt;}
.ye{bottom:392.985733pt;}
.y1b4{bottom:393.038933pt;}
.y221{bottom:393.119867pt;}
.y2d7{bottom:394.033200pt;}
.yae{bottom:394.737200pt;}
.y163{bottom:395.846133pt;}
.y266{bottom:396.103733pt;}
.y3a{bottom:398.164667pt;}
.y337{bottom:399.049200pt;}
.y1a1{bottom:399.474133pt;}
.y181{bottom:399.586133pt;}
.y439{bottom:399.593467pt;}
.y38e{bottom:401.465867pt;}
.y356{bottom:403.099333pt;}
.y406{bottom:403.287333pt;}
.y454{bottom:403.502667pt;}
.y369{bottom:403.602000pt;}
.y122{bottom:405.368800pt;}
.y3f2{bottom:406.403333pt;}
.y1c9{bottom:407.756400pt;}
.y1dd{bottom:407.840400pt;}
.y10b{bottom:408.280533pt;}
.y1b3{bottom:408.530267pt;}
.y220{bottom:408.623867pt;}
.y3c1{bottom:408.783333pt;}
.y2a0{bottom:408.829333pt;}
.y2d6{bottom:409.562533pt;}
.y283{bottom:410.076400pt;}
.y23{bottom:410.135733pt;}
.yd{bottom:410.205733pt;}
.yad{bottom:410.317200pt;}
.y162{bottom:411.388133pt;}
.y265{bottom:411.671067pt;}
.y39{bottom:413.909333pt;}
.y336{bottom:414.426533pt;}
.y438{bottom:416.558133pt;}
.y405{bottom:416.631333pt;}
.y453{bottom:416.846667pt;}
.y1a0{bottom:416.932133pt;}
.y38d{bottom:416.957200pt;}
.y180{bottom:417.002133pt;}
.y355{bottom:420.431333pt;}
.y368{bottom:421.144000pt;}
.y3f1{bottom:423.623333pt;}
.y10a{bottom:423.797200pt;}
.y21f{bottom:424.127867pt;}
.y2d5{bottom:425.091867pt;}
.yac{bottom:425.897200pt;}
.y3c0{bottom:425.919333pt;}
.y29f{bottom:425.965333pt;}
.y161{bottom:426.930133pt;}
.y264{bottom:427.238400pt;}
.y282{bottom:427.282400pt;}
.y22{bottom:427.355733pt;}
.yc{bottom:427.411733pt;}
.y38{bottom:429.654000pt;}
.y335{bottom:429.803867pt;}
.y404{bottom:429.975333pt;}
.y452{bottom:430.190667pt;}
.y38c{bottom:432.448533pt;}
.y19f{bottom:434.390133pt;}
.y17f{bottom:434.418133pt;}
.y354{bottom:437.763333pt;}
.y367{bottom:438.686000pt;}
.y109{bottom:439.313867pt;}
.y21e{bottom:439.631867pt;}
.y2d4{bottom:440.621200pt;}
.y3f0{bottom:440.843333pt;}
.yab{bottom:441.477200pt;}
.y160{bottom:442.472133pt;}
.y263{bottom:442.805733pt;}
.y3bf{bottom:443.055333pt;}
.y29e{bottom:443.101333pt;}
.y281{bottom:444.488400pt;}
.y21{bottom:444.561733pt;}
.yb{bottom:444.624933pt;}
.y334{bottom:445.181200pt;}
.y37{bottom:445.398667pt;}
.y38b{bottom:447.939867pt;}
.y17e{bottom:451.834133pt;}
.y19e{bottom:451.848133pt;}
.y1f3{bottom:453.064800pt;}
.y108{bottom:454.830533pt;}
.y353{bottom:455.095333pt;}
.y21d{bottom:455.135867pt;}
.y2d3{bottom:456.150533pt;}
.y366{bottom:456.228000pt;}
.yaa{bottom:457.057200pt;}
.y15f{bottom:458.014133pt;}
.y3ef{bottom:458.063333pt;}
.y262{bottom:458.373067pt;}
.y437{bottom:458.805333pt;}
.y3be{bottom:460.191333pt;}
.y29d{bottom:460.237333pt;}
.y333{bottom:460.558533pt;}
.y280{bottom:461.694400pt;}
.y38a{bottom:463.431200pt;}
.y19d{bottom:469.306133pt;}
.y107{bottom:470.347200pt;}
.y1ab{bottom:470.480267pt;}
.y21c{bottom:470.639867pt;}
.y1b2{bottom:470.706800pt;}
.y2d2{bottom:471.679867pt;}
.y352{bottom:472.427333pt;}
.ya9{bottom:472.637200pt;}
.y17d{bottom:473.041467pt;}
.y15e{bottom:473.556133pt;}
.y365{bottom:473.743333pt;}
.y261{bottom:473.940400pt;}
.y46e{bottom:475.265867pt;}
.y3ee{bottom:475.283333pt;}
.y332{bottom:475.935867pt;}
.y436{bottom:475.997333pt;}
.y3bd{bottom:477.327333pt;}
.y29c{bottom:477.373333pt;}
.y27f{bottom:478.900400pt;}
.y389{bottom:478.922533pt;}
.y1aa{bottom:483.141600pt;}
.y1b1{bottom:483.376800pt;}
.y106{bottom:485.863867pt;}
.y21b{bottom:486.143867pt;}
.y19c{bottom:486.764133pt;}
.y2d1{bottom:487.209200pt;}
.ya8{bottom:488.217200pt;}
.y15d{bottom:489.098133pt;}
.y260{bottom:489.507733pt;}
.y351{bottom:489.759333pt;}
.y364{bottom:491.285333pt;}
.y331{bottom:491.313200pt;}
.y3ed{bottom:492.503333pt;}
.y435{bottom:493.175333pt;}
.y388{bottom:494.413867pt;}
.y3bc{bottom:494.463333pt;}
.y29b{bottom:494.509333pt;}
.y1a9{bottom:495.802933pt;}
.y1b0{bottom:496.046800pt;}
.y17c{bottom:496.057467pt;}
.y27e{bottom:496.106400pt;}
.y105{bottom:501.380533pt;}
.y21a{bottom:501.647867pt;}
.y2d0{bottom:502.738533pt;}
.ya7{bottom:503.797200pt;}
.y19b{bottom:504.222133pt;}
.y15c{bottom:504.640133pt;}
.y25f{bottom:505.075067pt;}
.y330{bottom:506.690533pt;}
.y350{bottom:507.091333pt;}
.y240{bottom:508.295467pt;}
.y258{bottom:508.323467pt;}
.y1a8{bottom:508.464267pt;}
.y1af{bottom:508.716800pt;}
.y363{bottom:508.827333pt;}
.y3ec{bottom:509.723333pt;}
.y387{bottom:509.905200pt;}
.y434{bottom:510.367333pt;}
.y3bb{bottom:511.599333pt;}
.y29a{bottom:511.645333pt;}
.y27d{bottom:513.312400pt;}
.y104{bottom:516.897200pt;}
.y219{bottom:517.151867pt;}
.y2cf{bottom:518.267867pt;}
.ya6{bottom:519.377200pt;}
.y15b{bottom:520.182133pt;}
.y25e{bottom:520.642400pt;}
.y1a7{bottom:521.130933pt;}
.y1ae{bottom:521.383467pt;}
.y19a{bottom:521.680133pt;}
.y32f{bottom:522.067867pt;}
.y34f{bottom:524.423333pt;}
.y386{bottom:525.396533pt;}
.y257{bottom:525.599467pt;}
.y23f{bottom:525.613467pt;}
.y362{bottom:526.369333pt;}
.y3eb{bottom:526.943333pt;}
.y433{bottom:527.559333pt;}
.y3ba{bottom:528.735333pt;}
.y27c{bottom:530.518400pt;}
.y103{bottom:532.413867pt;}
.y299{bottom:532.572400pt;}
.y218{bottom:532.655867pt;}
.y2ce{bottom:533.797200pt;}
.y1a6{bottom:533.802933pt;}
.y1ad{bottom:534.046800pt;}
.ya5{bottom:534.957200pt;}
.y15a{bottom:535.724133pt;}
.y25d{bottom:536.209733pt;}
.y32e{bottom:537.445200pt;}
.y63{bottom:538.461333pt;}
.y88{bottom:538.587600pt;}
.y75{bottom:538.608933pt;}
.y199{bottom:539.138133pt;}
.y17b{bottom:539.991467pt;}
.y385{bottom:540.887867pt;}
.y34e{bottom:541.755333pt;}
.y256{bottom:542.875467pt;}
.y23e{bottom:542.931467pt;}
.y361{bottom:543.911333pt;}
.y3ea{bottom:544.163333pt;}
.y432{bottom:544.751333pt;}
.y3b9{bottom:545.871333pt;}
.y1a5{bottom:546.464267pt;}
.y1ac{bottom:546.716800pt;}
.y27b{bottom:547.724400pt;}
.y102{bottom:547.930533pt;}
.y217{bottom:548.159867pt;}
.y2cd{bottom:549.326533pt;}
.ya4{bottom:550.537200pt;}
.y159{bottom:551.266133pt;}
.y25c{bottom:551.777067pt;}
.y32d{bottom:552.822533pt;}
.y298{bottom:555.308400pt;}
.y384{bottom:556.379200pt;}
.y198{bottom:556.596133pt;}
.y87{bottom:556.738933pt;}
.y62{bottom:556.780000pt;}
.y74{bottom:556.898267pt;}
.y17a{bottom:557.407467pt;}
.y34d{bottom:559.087333pt;}
.y255{bottom:560.151467pt;}
.y23d{bottom:560.249467pt;}
.y3e9{bottom:561.383333pt;}
.y360{bottom:561.453333pt;}
.y431{bottom:561.929333pt;}
.y3b8{bottom:563.007333pt;}
.y101{bottom:563.447200pt;}
.y216{bottom:563.663867pt;}
.y2cc{bottom:564.855867pt;}
.y27a{bottom:564.930400pt;}
.ya3{bottom:566.117200pt;}
.y158{bottom:566.811200pt;}
.y25b{bottom:567.344400pt;}
.y32c{bottom:568.199867pt;}
.y383{bottom:571.870533pt;}
.y197{bottom:574.054133pt;}
.y179{bottom:574.823467pt;}
.y86{bottom:574.890267pt;}
.y61{bottom:575.098667pt;}
.y73{bottom:575.187600pt;}
.y34c{bottom:576.419333pt;}
.y254{bottom:577.427467pt;}
.y23c{bottom:577.567467pt;}
.y297{bottom:578.044400pt;}
.y3e8{bottom:578.603333pt;}
.y100{bottom:578.963867pt;}
.y35f{bottom:578.995333pt;}
.y430{bottom:579.121333pt;}
.y215{bottom:579.167867pt;}
.y3b7{bottom:580.143333pt;}
.y2cb{bottom:580.385200pt;}
.ya2{bottom:581.697200pt;}
.y279{bottom:582.136400pt;}
.y157{bottom:582.356267pt;}
.y25a{bottom:582.910133pt;}
.y32b{bottom:583.577200pt;}
.y382{bottom:587.361867pt;}
.y196{bottom:591.512133pt;}
.y178{bottom:592.239467pt;}
.y85{bottom:593.041600pt;}
.y60{bottom:593.417333pt;}
.y72{bottom:593.476933pt;}
.y34b{bottom:593.751333pt;}
.yff{bottom:594.480533pt;}
.y214{bottom:594.671867pt;}
.y253{bottom:594.703467pt;}
.y23b{bottom:594.885467pt;}
.y3e7{bottom:595.823333pt;}
.y2ca{bottom:595.914533pt;}
.y42f{bottom:596.313333pt;}
.y35e{bottom:596.537333pt;}
.ya1{bottom:597.277200pt;}
.y3b6{bottom:597.279333pt;}
.y156{bottom:597.901467pt;}
.y32a{bottom:598.954533pt;}
.y381{bottom:602.853200pt;}
.y195{bottom:608.970133pt;}
.y177{bottom:609.655467pt;}
.yfe{bottom:609.997200pt;}
.y213{bottom:610.175867pt;}
.y34a{bottom:611.083333pt;}
.y2c9{bottom:611.443867pt;}
.y5f{bottom:611.736000pt;}
.y71{bottom:611.766267pt;}
.y252{bottom:611.979467pt;}
.y23a{bottom:612.203467pt;}
.ya0{bottom:612.857200pt;}
.y3e6{bottom:613.043333pt;}
.y155{bottom:613.487333pt;}
.y42e{bottom:613.505333pt;}
.y35d{bottom:614.079333pt;}
.y329{bottom:614.331867pt;}
.y3b5{bottom:614.415333pt;}
.y380{bottom:618.344533pt;}
.y84{bottom:622.565867pt;}
.y212{bottom:625.679867pt;}
.y194{bottom:626.428133pt;}
.y2c8{bottom:626.973200pt;}
.y176{bottom:627.071467pt;}
.y1f1{bottom:628.021867pt;}
.y349{bottom:628.415333pt;}
.y9f{bottom:628.437200pt;}
.y154{bottom:629.029333pt;}
.y251{bottom:629.255467pt;}
.y239{bottom:629.521467pt;}
.y328{bottom:629.709200pt;}
.y5e{bottom:630.054667pt;}
.y70{bottom:630.055600pt;}
.y3e5{bottom:630.263333pt;}
.y42d{bottom:630.683333pt;}
.y3b4{bottom:631.551333pt;}
.y35c{bottom:631.621333pt;}
.y2b4{bottom:632.176400pt;}
.y37f{bottom:633.835867pt;}
.y211{bottom:641.183867pt;}
.y83{bottom:641.383200pt;}
.y2c7{bottom:642.502533pt;}
.y193{bottom:643.886133pt;}
.y9e{bottom:644.017200pt;}
.y175{bottom:644.487467pt;}
.y153{bottom:644.571333pt;}
.y327{bottom:645.086533pt;}
.y348{bottom:645.747333pt;}
.y250{bottom:646.531467pt;}
.y238{bottom:646.839467pt;}
.y3e4{bottom:647.483333pt;}
.y42c{bottom:647.875333pt;}
.y6f{bottom:648.344933pt;}
.y5d{bottom:648.373333pt;}
.y3b3{bottom:648.687333pt;}
.y35b{bottom:649.163333pt;}
.y37e{bottom:649.327200pt;}
.y210{bottom:656.687867pt;}
.y2c6{bottom:658.031867pt;}
.y9d{bottom:659.597200pt;}
.y152{bottom:660.113333pt;}
.y82{bottom:660.200533pt;}
.y326{bottom:660.463867pt;}
.y192{bottom:661.344133pt;}
.y174{bottom:661.903467pt;}
.y347{bottom:663.079333pt;}
.y24f{bottom:663.807467pt;}
.y237{bottom:664.157467pt;}
.y3e3{bottom:664.703333pt;}
.y37d{bottom:664.818533pt;}
.y42b{bottom:665.067333pt;}
.y3b2{bottom:665.823333pt;}
.yfd{bottom:666.414800pt;}
.y6e{bottom:666.634267pt;}
.y5c{bottom:666.692000pt;}
.y35a{bottom:666.705333pt;}
.y131{bottom:666.803333pt;}
.y140{bottom:666.817333pt;}
.y20f{bottom:672.191867pt;}
.y2c5{bottom:673.561200pt;}
.y9c{bottom:675.177200pt;}
.y151{bottom:675.655333pt;}
.y325{bottom:675.841200pt;}
.y191{bottom:678.802133pt;}
.y81{bottom:679.017867pt;}
.yfc{bottom:679.084800pt;}
.y173{bottom:679.319467pt;}
.y37c{bottom:680.309867pt;}
.y346{bottom:680.411333pt;}
.ya{bottom:680.942800pt;}
.y24e{bottom:681.083467pt;}
.y236{bottom:681.475467pt;}
.y3e2{bottom:681.923333pt;}
.y42a{bottom:682.259333pt;}
.y3b1{bottom:682.959333pt;}
.y130{bottom:683.869333pt;}
.y13f{bottom:683.883333pt;}
.y359{bottom:684.247333pt;}
.y5b{bottom:685.010667pt;}
.y20e{bottom:687.695867pt;}
.y2c4{bottom:689.090533pt;}
.y9b{bottom:690.757200pt;}
.y150{bottom:691.197333pt;}
.y324{bottom:691.218533pt;}
.yfb{bottom:691.754800pt;}
.y37b{bottom:695.801200pt;}
.y190{bottom:696.260133pt;}
.y172{bottom:696.735467pt;}
.y345{bottom:697.743333pt;}
.y80{bottom:697.835200pt;}
.y24d{bottom:698.359467pt;}
.y3e1{bottom:699.143333pt;}
.y429{bottom:699.451333pt;}
.y3b0{bottom:700.095333pt;}
.y12f{bottom:700.935333pt;}
.y13e{bottom:700.949333pt;}
.y20d{bottom:703.199867pt;}
.y5a{bottom:703.329333pt;}
.yfa{bottom:704.424800pt;}
.y2c3{bottom:704.619867pt;}
.y9{bottom:704.722267pt;}
.y9a{bottom:706.337200pt;}
.y323{bottom:706.595867pt;}
.y14f{bottom:706.739333pt;}
.y30b{bottom:707.166933pt;}
.ye0{bottom:707.607067pt;}
.y37a{bottom:711.292533pt;}
.y18f{bottom:713.718133pt;}
.y6d{bottom:713.869867pt;}
.y171{bottom:714.151467pt;}
.y344{bottom:715.075333pt;}
.y24c{bottom:715.635467pt;}
.y3e0{bottom:716.363333pt;}
.y428{bottom:716.629333pt;}
.y7f{bottom:716.652533pt;}
.yf9{bottom:717.094800pt;}
.y3af{bottom:717.231333pt;}
.y12e{bottom:718.001333pt;}
.y13d{bottom:718.015333pt;}
.y2c2{bottom:720.149200pt;}
.y59{bottom:721.648000pt;}
.y322{bottom:721.973200pt;}
.y14e{bottom:722.281333pt;}
.y20c{bottom:722.483200pt;}
.y99{bottom:725.689467pt;}
.y379{bottom:726.783867pt;}
.yf8{bottom:729.764800pt;}
.y18e{bottom:731.176133pt;}
.y6c{bottom:731.501867pt;}
.y170{bottom:731.567467pt;}
.y343{bottom:732.407333pt;}
.y24b{bottom:732.911467pt;}
.y3df{bottom:733.583333pt;}
.y427{bottom:733.821333pt;}
.y3ae{bottom:734.367333pt;}
.y12d{bottom:735.067333pt;}
.y13c{bottom:735.081333pt;}
.y7e{bottom:735.469867pt;}
.y2c1{bottom:735.678533pt;}
.y201{bottom:736.061600pt;}
.y321{bottom:737.350533pt;}
.y14d{bottom:737.823333pt;}
.y58{bottom:739.966667pt;}
.y20b{bottom:741.983200pt;}
.y378{bottom:742.275200pt;}
.yf7{bottom:742.434800pt;}
.y98{bottom:745.276133pt;}
.y8{bottom:747.192400pt;}
.y18d{bottom:748.634133pt;}
.y200{bottom:748.731600pt;}
.y16f{bottom:748.983467pt;}
.y6b{bottom:749.133867pt;}
.y342{bottom:749.739333pt;}
.y24a{bottom:750.187467pt;}
.y3de{bottom:750.803333pt;}
.y426{bottom:751.013333pt;}
.y2c0{bottom:751.207867pt;}
.y3ad{bottom:751.503333pt;}
.y12c{bottom:752.133333pt;}
.y13b{bottom:752.147333pt;}
.y320{bottom:752.727867pt;}
.y14c{bottom:753.365333pt;}
.y7d{bottom:754.287200pt;}
.yf6{bottom:755.104800pt;}
.y377{bottom:757.766533pt;}
.y57{bottom:758.285333pt;}
.y1ff{bottom:761.401600pt;}
.y20a{bottom:761.483200pt;}
.y18c{bottom:766.092133pt;}
.y16e{bottom:766.399467pt;}
.y2bf{bottom:766.737200pt;}
.y6a{bottom:766.765867pt;}
.y341{bottom:767.071333pt;}
.y249{bottom:767.463467pt;}
.yf5{bottom:767.774800pt;}
.y3dd{bottom:768.023333pt;}
.y31f{bottom:768.105200pt;}
.y425{bottom:768.191333pt;}
.y3ac{bottom:768.639333pt;}
.y14b{bottom:768.907333pt;}
.y12b{bottom:769.199333pt;}
.y13a{bottom:769.213333pt;}
.y316{bottom:771.541067pt;}
.y7c{bottom:773.104533pt;}
.y376{bottom:773.257867pt;}
.y1fe{bottom:774.071600pt;}
.y7{bottom:775.185733pt;}
.y56{bottom:776.604000pt;}
.y46d{bottom:779.922800pt;}
.yf4{bottom:780.444800pt;}
.y97{bottom:781.861200pt;}
.y2be{bottom:782.266533pt;}
.y31e{bottom:783.482533pt;}
.y18b{bottom:783.550133pt;}
.y16d{bottom:783.815467pt;}
.y315{bottom:784.211067pt;}
.y69{bottom:784.397867pt;}
.y340{bottom:784.403333pt;}
.y14a{bottom:784.449333pt;}
.y248{bottom:784.739467pt;}
.y3dc{bottom:785.243333pt;}
.y424{bottom:785.383333pt;}
.y3ab{bottom:785.775333pt;}
.y12a{bottom:786.265333pt;}
.y139{bottom:786.279333pt;}
.y1fd{bottom:786.734933pt;}
.y375{bottom:788.749200pt;}
.y7b{bottom:791.921867pt;}
.yf3{bottom:793.114800pt;}
.y55{bottom:794.922667pt;}
.y314{bottom:796.881067pt;}
.y96{bottom:797.441200pt;}
.y2bd{bottom:797.795867pt;}
.y209{bottom:797.973200pt;}
.y31d{bottom:798.859867pt;}
.y1fc{bottom:799.404933pt;}
.y149{bottom:799.991333pt;}
.y18a{bottom:801.008133pt;}
.y16c{bottom:801.231467pt;}
.y33f{bottom:801.735333pt;}
.y247{bottom:802.015467pt;}
.y3db{bottom:802.463333pt;}
.y423{bottom:802.575333pt;}
.y3aa{bottom:802.911333pt;}
.y6{bottom:803.179067pt;}
.y129{bottom:803.331333pt;}
.y138{bottom:803.345333pt;}
.y374{bottom:804.240533pt;}
.yf2{bottom:805.784800pt;}
.y313{bottom:809.551067pt;}
.y7a{bottom:810.739200pt;}
.y1fb{bottom:812.074933pt;}
.y95{bottom:813.021200pt;}
.y54{bottom:813.241333pt;}
.y2bc{bottom:813.325200pt;}
.y68{bottom:813.377867pt;}
.y208{bottom:813.477200pt;}
.y31c{bottom:814.237200pt;}
.y148{bottom:815.533333pt;}
.y1f2{bottom:818.351867pt;}
.yf1{bottom:818.454800pt;}
.y189{bottom:818.466133pt;}
.y16b{bottom:818.647467pt;}
.y33e{bottom:819.067333pt;}
.y246{bottom:819.291467pt;}
.y3da{bottom:819.683333pt;}
.y422{bottom:819.767333pt;}
.y3a9{bottom:820.047333pt;}
.y128{bottom:820.397333pt;}
.y137{bottom:820.411333pt;}
.y312{bottom:822.221067pt;}
.y373{bottom:823.514667pt;}
.y94{bottom:828.601200pt;}
.y2bb{bottom:828.854533pt;}
.y207{bottom:828.981200pt;}
.y79{bottom:829.556533pt;}
.y31b{bottom:829.614533pt;}
.yf0{bottom:831.124800pt;}
.y53{bottom:831.560000pt;}
.y67{bottom:831.667200pt;}
.y1fa{bottom:832.332667pt;}
.y147{bottom:834.851200pt;}
.y311{bottom:834.891067pt;}
.y188{bottom:835.924133pt;}
.y16a{bottom:836.063467pt;}
.y33d{bottom:836.399333pt;}
.y245{bottom:836.567467pt;}
.y3d9{bottom:836.903333pt;}
.y421{bottom:836.959333pt;}
.y3a8{bottom:837.183333pt;}
.y127{bottom:837.463333pt;}
.y136{bottom:837.477333pt;}
.y5{bottom:842.530933pt;}
.y93{bottom:844.181200pt;}
.y2ba{bottom:844.383867pt;}
.y206{bottom:844.485200pt;}
.y31a{bottom:844.991867pt;}
.y1f9{bottom:844.994000pt;}
.y310{bottom:847.561067pt;}
.y78{bottom:848.373867pt;}
.y52{bottom:849.878667pt;}
.y66{bottom:849.956533pt;}
.y187{bottom:853.382133pt;}
.y169{bottom:853.479467pt;}
.y33c{bottom:853.731333pt;}
.y244{bottom:853.843467pt;}
.y3d8{bottom:854.123333pt;}
.y420{bottom:854.151333pt;}
.y3a7{bottom:854.319333pt;}
.y146{bottom:854.403200pt;}
.y126{bottom:854.529333pt;}
.y135{bottom:854.543333pt;}
.yef{bottom:855.199467pt;}
.y1f8{bottom:857.655333pt;}
.y92{bottom:859.761200pt;}
.y2b9{bottom:859.913200pt;}
.y205{bottom:859.989200pt;}
.y372{bottom:860.027200pt;}
.y30f{bottom:860.231067pt;}
.y319{bottom:860.369200pt;}
.y77{bottom:867.191200pt;}
.yee{bottom:867.860800pt;}
.y51{bottom:868.197333pt;}
.y65{bottom:868.245867pt;}
.y1f7{bottom:870.316667pt;}
.y4{bottom:870.524267pt;}
.y186{bottom:870.840133pt;}
.y168{bottom:870.895467pt;}
.y33b{bottom:871.063333pt;}
.y243{bottom:871.119467pt;}
.y3d7{bottom:871.343333pt;}
.y3a6{bottom:871.455333pt;}
.y125{bottom:871.595333pt;}
.y134{bottom:871.609333pt;}
.y30e{bottom:872.901067pt;}
.y91{bottom:875.341200pt;}
.y2b8{bottom:875.442533pt;}
.y204{bottom:875.493200pt;}
.y371{bottom:875.518533pt;}
.y318{bottom:875.746533pt;}
.yed{bottom:880.522133pt;}
.y1f6{bottom:882.978000pt;}
.y30d{bottom:885.571067pt;}
.y76{bottom:886.008533pt;}
.y50{bottom:886.516000pt;}
.y64{bottom:886.535200pt;}
.y185{bottom:888.298133pt;}
.y167{bottom:888.311467pt;}
.y33a{bottom:888.395333pt;}
.y242{bottom:888.395467pt;}
.y41f{bottom:888.535333pt;}
.y3d6{bottom:888.563333pt;}
.y3a5{bottom:888.591333pt;}
.y124{bottom:888.661333pt;}
.y133{bottom:888.675333pt;}
.y90{bottom:890.921200pt;}
.y145{bottom:890.959333pt;}
.y2b7{bottom:890.971867pt;}
.y203{bottom:890.997200pt;}
.y370{bottom:891.009867pt;}
.y317{bottom:891.123867pt;}
.yec{bottom:893.183467pt;}
.y1f5{bottom:895.639333pt;}
.y3{bottom:898.517600pt;}
.y4f{bottom:904.828267pt;}
.y241{bottom:905.671467pt;}
.y123{bottom:905.727333pt;}
.y166{bottom:905.727467pt;}
.y132{bottom:905.741333pt;}
.y184{bottom:905.756133pt;}
.y3d5{bottom:905.783333pt;}
.yeb{bottom:905.844800pt;}
.y1{bottom:905.936667pt;}
.y202{bottom:906.501200pt;}
.y144{bottom:906.501333pt;}
.y1f4{bottom:908.300667pt;}
.y2b5{bottom:911.009333pt;}
.yea{bottom:918.506133pt;}
.ye9{bottom:931.167467pt;}
.ye8{bottom:943.828800pt;}
.ye7{bottom:956.490133pt;}
.y36e{bottom:969.135467pt;}
.ye6{bottom:969.151467pt;}
.y36d{bottom:981.796800pt;}
.ye5{bottom:981.812800pt;}
.y36f{bottom:982.039333pt;}
.y8b{bottom:994.474000pt;}
.ye4{bottom:994.474133pt;}
.y8e{bottom:994.709200pt;}
.y143{bottom:994.709333pt;}
.y8a{bottom:1007.135333pt;}
.ye3{bottom:1007.135467pt;}
.y8d{bottom:1007.379200pt;}
.y142{bottom:1007.379333pt;}
.y89{bottom:1019.796667pt;}
.ye2{bottom:1019.796800pt;}
.y8c{bottom:1020.049200pt;}
.y141{bottom:1020.049333pt;}
.y8f{bottom:1111.936933pt;}
.h3{height:29.480000pt;}
.he{height:30.240000pt;}
.h13{height:30.533507pt;}
.h18{height:31.402667pt;}
.hd{height:32.597333pt;}
.h1b{height:32.768000pt;}
.h19{height:35.376000pt;}
.hf{height:36.560000pt;}
.h16{height:36.672000pt;}
.hc{height:37.189333pt;}
.h14{height:37.290667pt;}
.h1a{height:38.656000pt;}
.h17{height:38.997333pt;}
.h6{height:43.008000pt;}
.h9{height:43.237333pt;}
.hb{height:44.352000pt;}
.h10{height:45.072000pt;}
.h7{height:46.309333pt;}
.ha{height:47.576000pt;}
.h2{height:50.080000pt;}
.h8{height:50.736000pt;}
.h12{height:55.029333pt;}
.h11{height:62.816000pt;}
.h5{height:69.269333pt;}
.h4{height:85.136000pt;}
.h15{height:203.257333pt;}
.h0{height:1133.858667pt;}
.h1{height:1134.000000pt;}
.w2{width:20.441333pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x10{left:7.480133pt;}
.x1{left:25.136133pt;}
.x2{left:75.590533pt;}
.x4{left:86.929200pt;}
.x12{left:98.267733pt;}
.xd{left:102.049067pt;}
.x3{left:111.496133pt;}
.xc{left:304.252000pt;}
.x6{left:315.591200pt;}
.xe{left:319.371467pt;}
.x13{left:326.929067pt;}
.x5{left:330.711200pt;}
.xa{left:532.913467pt;}
.x7{left:544.252000pt;}
.xb{left:548.033467pt;}
.x11{left:555.587867pt;}
.xf{left:786.130667pt;}
.x8{left:788.600533pt;}
.x9{left:793.610800pt;}
}




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