
    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_1ed020aa8350a2b91be1577a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_189af8fb5c6578cac9a0d19f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_13a18d45b869078cfc34c7bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_299597bc005ea4d748470a6c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_5c04d3d885d017700bdb39ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723633;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_e6f7e9d9777b98c667dc0295.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986816;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_d436cbdfe8901224525a08f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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_64cd7c3e00d140d33cce7050.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1dae72c31da037fb13ea62d9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_2627547c6e1ccb73357e7d6c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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_269e092806a237610576bcc7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.831543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7c8e20d7e307353885c47fc9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ab29fc2ea7652404dd1ad53b.woff2')format("woff");}.fff{font-family:fff;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d7418f00f7fd5859e4b5caad.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_60cd2ec303961ff37574a8c8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.840600px;}
.v3{vertical-align:-13.860000px;}
.v5{vertical-align:-10.080000px;}
.v7{vertical-align:-8.945400px;}
.vc{vertical-align:-6.288000px;}
.v4{vertical-align:-4.356000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.145400px;}
.va{vertical-align:13.860000px;}
.v1{vertical-align:15.840600px;}
.vb{vertical-align:17.586000px;}
.v9{vertical-align:30.000000px;}
.v8{vertical-align:47.232000px;}
.ls37{letter-spacing:-3.264000px;}
.ls13{letter-spacing:-1.296000px;}
.ls3f{letter-spacing:-0.702000px;}
.ls3c{letter-spacing:-0.648000px;}
.ls3d{letter-spacing:-0.540000px;}
.ls3e{letter-spacing:-0.486000px;}
.ls4d{letter-spacing:-0.336000px;}
.ls50{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.270000px;}
.ls4c{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.216000px;}
.ls4f{letter-spacing:-0.192000px;}
.ls1b{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.108000px;}
.ls53{letter-spacing:-0.096000px;}
.ls33{letter-spacing:-0.054000px;}
.ls47{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.002100px;}
.ls5{letter-spacing:0.002400px;}
.ls2b{letter-spacing:0.002700px;}
.ls38{letter-spacing:0.003600px;}
.ls34{letter-spacing:0.004200px;}
.ls6{letter-spacing:0.012900px;}
.ls32{letter-spacing:0.018600px;}
.ls49{letter-spacing:0.048000px;}
.ls17{letter-spacing:0.054000px;}
.ls43{letter-spacing:0.096000px;}
.ls11{letter-spacing:0.108000px;}
.ls48{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.162000px;}
.ls2d{letter-spacing:0.186300px;}
.ls45{letter-spacing:0.192000px;}
.ls31{letter-spacing:0.193500px;}
.ls1{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.229800px;}
.ls30{letter-spacing:0.237000px;}
.ls4e{letter-spacing:0.240000px;}
.ls52{letter-spacing:0.244800px;}
.ls16{letter-spacing:0.270000px;}
.ls46{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.300300px;}
.ls15{letter-spacing:0.324000px;}
.ls2f{letter-spacing:0.326700px;}
.ls19{letter-spacing:0.378000px;}
.ls35{letter-spacing:0.380400px;}
.ls4a{letter-spacing:0.384000px;}
.ls2e{letter-spacing:0.422400px;}
.ls18{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.486000px;}
.ls4b{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.549126px;}
.ls44{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.594000px;}
.ls42{letter-spacing:0.648000px;}
.ls40{letter-spacing:0.702000px;}
.lsd{letter-spacing:0.705012px;}
.ls41{letter-spacing:0.756000px;}
.ls51{letter-spacing:0.768000px;}
.ls1e{letter-spacing:0.864000px;}
.ls28{letter-spacing:0.918000px;}
.ls2a{letter-spacing:0.972000px;}
.ls23{letter-spacing:1.026000px;}
.ls1d{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.098452px;}
.ls24{letter-spacing:1.134000px;}
.ls1f{letter-spacing:1.188000px;}
.ls26{letter-spacing:1.242000px;}
.lsf{letter-spacing:1.254012px;}
.ls29{letter-spacing:1.350000px;}
.lse{letter-spacing:1.384812px;}
.ls20{letter-spacing:1.404000px;}
.ls4{letter-spacing:1.969200px;}
.lsb{letter-spacing:1.976400px;}
.lsa{letter-spacing:1.977600px;}
.lsc{letter-spacing:2.039616px;}
.ls2{letter-spacing:2.205000px;}
.ls8{letter-spacing:5.687400px;}
.ls9{letter-spacing:5.840400px;}
.ls3{letter-spacing:25.995600px;}
.ls3a{letter-spacing:147.312000px;}
.ls3b{letter-spacing:157.440000px;}
.ls7{letter-spacing:400.392000px;}
.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;}
}
.ws8{word-spacing:-22.027853px;}
.ws9{word-spacing:-16.693430px;}
.ws74{word-spacing:-14.850000px;}
.wse9{word-spacing:-13.392000px;}
.wsd4{word-spacing:-13.200000px;}
.ws4{word-spacing:-13.152000px;}
.wse7{word-spacing:-12.912000px;}
.wse8{word-spacing:-12.864000px;}
.ws9e{word-spacing:-11.550000px;}
.ws75{word-spacing:-11.137500px;}
.wsb0{word-spacing:-11.097000px;}
.ws1{word-spacing:-10.080000px;}
.ws7{word-spacing:-9.936000px;}
.ws98{word-spacing:-9.888000px;}
.ws2{word-spacing:-9.864000px;}
.ws6{word-spacing:-8.662500px;}
.ws9f{word-spacing:-8.631000px;}
.wse{word-spacing:-5.292000px;}
.ws21{word-spacing:-2.039616px;}
.ws72{word-spacing:-1.242000px;}
.ws6c{word-spacing:-1.134000px;}
.ws51{word-spacing:-1.080000px;}
.ws6a{word-spacing:-1.026000px;}
.wse1{word-spacing:-1.008000px;}
.ws6e{word-spacing:-0.918000px;}
.wsc0{word-spacing:-0.648000px;}
.ws6d{word-spacing:-0.594000px;}
.ws6f{word-spacing:-0.540000px;}
.ws27{word-spacing:-0.486000px;}
.wsf1{word-spacing:-0.480000px;}
.ws77{word-spacing:-0.432000px;}
.wse5{word-spacing:-0.384000px;}
.ws42{word-spacing:-0.378000px;}
.ws35{word-spacing:-0.324000px;}
.wsc7{word-spacing:-0.288000px;}
.ws2e{word-spacing:-0.270000px;}
.wsfa{word-spacing:-0.240000px;}
.wsba{word-spacing:-0.216000px;}
.ws4f{word-spacing:-0.162000px;}
.wsce{word-spacing:-0.144000px;}
.ws5f{word-spacing:-0.108000px;}
.wsc5{word-spacing:-0.096000px;}
.ws33{word-spacing:-0.054000px;}
.wsd7{word-spacing:-0.048000px;}
.ws3{word-spacing:-0.036000px;}
.ws0{word-spacing:0.000000px;}
.wsd9{word-spacing:0.048000px;}
.ws36{word-spacing:0.054000px;}
.ws19{word-spacing:0.084000px;}
.ws3c{word-spacing:0.108000px;}
.ws34{word-spacing:0.162000px;}
.ws54{word-spacing:0.216000px;}
.ws90{word-spacing:0.270000px;}
.wsf2{word-spacing:0.288000px;}
.ws7d{word-spacing:0.324000px;}
.ws24{word-spacing:0.378000px;}
.ws3b{word-spacing:0.432000px;}
.ws1e{word-spacing:0.504000px;}
.ws80{word-spacing:0.540000px;}
.ws87{word-spacing:0.594000px;}
.wsfc{word-spacing:0.624000px;}
.ws31{word-spacing:0.648000px;}
.ws81{word-spacing:0.702000px;}
.wsca{word-spacing:0.768000px;}
.ws5b{word-spacing:0.810000px;}
.ws46{word-spacing:0.864000px;}
.wseb{word-spacing:0.912000px;}
.ws66{word-spacing:0.972000px;}
.ws1b{word-spacing:1.008000px;}
.ws86{word-spacing:1.026000px;}
.ws14{word-spacing:1.050000px;}
.wse6{word-spacing:1.104000px;}
.ws57{word-spacing:1.188000px;}
.ws2f{word-spacing:1.242000px;}
.wsed{word-spacing:1.248000px;}
.wsef{word-spacing:1.296000px;}
.wsd0{word-spacing:1.344000px;}
.ws32{word-spacing:1.350000px;}
.wsd1{word-spacing:1.392000px;}
.ws58{word-spacing:1.458000px;}
.ws73{word-spacing:1.512000px;}
.wsc9{word-spacing:1.536000px;}
.ws83{word-spacing:1.566000px;}
.ws61{word-spacing:1.620000px;}
.wsd6{word-spacing:1.680000px;}
.ws1a{word-spacing:1.722000px;}
.wsb3{word-spacing:1.728000px;}
.ws100{word-spacing:1.776000px;}
.ws3d{word-spacing:1.782000px;}
.wscf{word-spacing:1.824000px;}
.ws48{word-spacing:1.836000px;}
.ws44{word-spacing:1.890000px;}
.wsf9{word-spacing:1.920000px;}
.wsa5{word-spacing:1.944000px;}
.wsd5{word-spacing:1.968000px;}
.wsc{word-spacing:1.980000px;}
.ws69{word-spacing:1.998000px;}
.wsf{word-spacing:2.106000px;}
.ws4c{word-spacing:2.160000px;}
.wscc{word-spacing:2.208000px;}
.ws45{word-spacing:2.214000px;}
.ws18{word-spacing:2.268000px;}
.wsec{word-spacing:2.304000px;}
.wsd{word-spacing:2.310000px;}
.ws56{word-spacing:2.322000px;}
.wscd{word-spacing:2.352000px;}
.ws3f{word-spacing:2.376000px;}
.ws10{word-spacing:2.394000px;}
.ws79{word-spacing:2.430000px;}
.ws41{word-spacing:2.484000px;}
.wsc2{word-spacing:2.496000px;}
.ws5d{word-spacing:2.538000px;}
.wsfd{word-spacing:2.544000px;}
.ws3e{word-spacing:2.592000px;}
.ws11{word-spacing:2.640000px;}
.ws76{word-spacing:2.646000px;}
.ws3a{word-spacing:2.700000px;}
.wsaf{word-spacing:2.754000px;}
.ws7e{word-spacing:2.805000px;}
.ws53{word-spacing:2.808000px;}
.ws16{word-spacing:2.814000px;}
.wsf4{word-spacing:2.832000px;}
.wsb2{word-spacing:2.862000px;}
.wsdd{word-spacing:2.928000px;}
.ws2d{word-spacing:2.970000px;}
.wsb9{word-spacing:3.024000px;}
.wsc6{word-spacing:3.072000px;}
.ws43{word-spacing:3.078000px;}
.wsde{word-spacing:3.168000px;}
.ws92{word-spacing:3.186000px;}
.ws13{word-spacing:3.192000px;}
.ws8f{word-spacing:3.240000px;}
.wsf8{word-spacing:3.264000px;}
.wsb6{word-spacing:3.294000px;}
.ws15{word-spacing:3.402000px;}
.ws82{word-spacing:3.456000px;}
.wsb{word-spacing:3.492000px;}
.wse0{word-spacing:3.504000px;}
.ws5c{word-spacing:3.510000px;}
.ws8c{word-spacing:3.564000px;}
.ws2c{word-spacing:3.618000px;}
.ws7f{word-spacing:3.672000px;}
.ws7b{word-spacing:3.726000px;}
.ws7c{word-spacing:3.780000px;}
.wsae{word-spacing:3.834000px;}
.wsfb{word-spacing:3.840000px;}
.wsfe{word-spacing:3.888000px;}
.ws47{word-spacing:3.960000px;}
.wsc8{word-spacing:3.984000px;}
.ws30{word-spacing:3.996000px;}
.ws55{word-spacing:4.050000px;}
.ws101{word-spacing:4.080000px;}
.ws85{word-spacing:4.104000px;}
.ws102{word-spacing:4.128000px;}
.ws62{word-spacing:4.158000px;}
.wsf5{word-spacing:4.176000px;}
.wsa{word-spacing:4.248000px;}
.ws5e{word-spacing:4.266000px;}
.wsa3{word-spacing:4.320000px;}
.ws25{word-spacing:4.374000px;}
.wscb{word-spacing:4.416000px;}
.ws8e{word-spacing:4.482000px;}
.ws63{word-spacing:4.536000px;}
.ws29{word-spacing:4.590000px;}
.wsdb{word-spacing:4.608000px;}
.ws40{word-spacing:4.644000px;}
.ws49{word-spacing:4.698000px;}
.wsc3{word-spacing:4.704000px;}
.wsbc{word-spacing:4.752000px;}
.wsb4{word-spacing:4.806000px;}
.ws8d{word-spacing:4.860000px;}
.wsea{word-spacing:4.896000px;}
.wsdc{word-spacing:4.944000px;}
.ws6b{word-spacing:4.968000px;}
.wsff{word-spacing:4.992000px;}
.ws4a{word-spacing:5.022000px;}
.ws50{word-spacing:5.076000px;}
.wsf3{word-spacing:5.088000px;}
.wsa4{word-spacing:5.130000px;}
.wsd3{word-spacing:5.136000px;}
.wsbd{word-spacing:5.184000px;}
.wsd8{word-spacing:5.232000px;}
.ws26{word-spacing:5.238000px;}
.wsc4{word-spacing:5.280000px;}
.ws78{word-spacing:5.292000px;}
.wse2{word-spacing:5.328000px;}
.wsbf{word-spacing:5.346000px;}
.wsd2{word-spacing:5.376000px;}
.ws2a{word-spacing:5.400000px;}
.wsf6{word-spacing:5.472000px;}
.ws5a{word-spacing:5.508000px;}
.wsf7{word-spacing:5.520000px;}
.ws59{word-spacing:5.562000px;}
.ws4d{word-spacing:5.616000px;}
.ws65{word-spacing:5.670000px;}
.ws68{word-spacing:5.724000px;}
.ws67{word-spacing:5.778000px;}
.ws38{word-spacing:5.832000px;}
.ws22{word-spacing:5.886000px;}
.ws23{word-spacing:5.940000px;}
.ws52{word-spacing:5.994000px;}
.ws91{word-spacing:6.048000px;}
.ws70{word-spacing:6.156000px;}
.ws71{word-spacing:6.210000px;}
.ws64{word-spacing:6.264000px;}
.wsc1{word-spacing:6.318000px;}
.wse3{word-spacing:6.336000px;}
.ws2b{word-spacing:6.372000px;}
.wse4{word-spacing:6.384000px;}
.wsf0{word-spacing:6.432000px;}
.ws17{word-spacing:6.552000px;}
.wsda{word-spacing:6.624000px;}
.ws12{word-spacing:6.636000px;}
.ws4b{word-spacing:6.696000px;}
.ws20{word-spacing:6.804000px;}
.ws84{word-spacing:6.858000px;}
.wsb5{word-spacing:6.966000px;}
.wsbe{word-spacing:7.020000px;}
.wsee{word-spacing:7.056000px;}
.ws60{word-spacing:7.074000px;}
.ws1c{word-spacing:7.224000px;}
.ws7a{word-spacing:7.290000px;}
.ws4e{word-spacing:7.344000px;}
.ws1d{word-spacing:7.350000px;}
.ws39{word-spacing:7.452000px;}
.wsbb{word-spacing:7.506000px;}
.ws1f{word-spacing:7.644000px;}
.wsb1{word-spacing:7.722000px;}
.wsb8{word-spacing:7.776000px;}
.ws37{word-spacing:7.938000px;}
.wsdf{word-spacing:7.968000px;}
.wsb7{word-spacing:8.046000px;}
.ws5{word-spacing:46.777800px;}
.ws99{word-spacing:64.176000px;}
.wsa6{word-spacing:73.824000px;}
.wsac{word-spacing:83.952000px;}
.wsa2{word-spacing:86.784000px;}
.ws96{word-spacing:96.859200px;}
.wsa9{word-spacing:96.912000px;}
.ws94{word-spacing:105.178200px;}
.ws97{word-spacing:105.178800px;}
.ws95{word-spacing:108.000000px;}
.wsab{word-spacing:116.928000px;}
.wsa0{word-spacing:134.160000px;}
.wsa8{word-spacing:144.288000px;}
.ws28{word-spacing:223.266000px;}
.ws88{word-spacing:460.848000px;}
.ws8b{word-spacing:473.808000px;}
.ws89{word-spacing:486.720000px;}
.ws93{word-spacing:493.344000px;}
.ws8a{word-spacing:512.592000px;}
.ws9b{word-spacing:553.344000px;}
.ws9a{word-spacing:609.552000px;}
.ws9c{word-spacing:657.216000px;}
.wsaa{word-spacing:688.608000px;}
.ws9d{word-spacing:703.872000px;}
.wsad{word-spacing:733.584000px;}
.wsa1{word-spacing:749.088000px;}
.wsa7{word-spacing:794.016000px;}
._a{margin-left:-26.628000px;}
._e{margin-left:-6.285600px;}
._35{margin-left:-5.275800px;}
._0{margin-left:-4.237800px;}
._4{margin-left:-2.286000px;}
._2{margin-left:-1.170000px;}
._7{width:1.040400px;}
._6{width:2.242800px;}
._8{width:3.616200px;}
._9{width:5.174400px;}
._c{width:6.177600px;}
._1{width:7.250400px;}
._b{width:8.440200px;}
._f{width:9.446400px;}
._5{width:58.595400px;}
._3{width:60.451800px;}
._2c{width:77.328000px;}
._4e{width:93.163800px;}
._48{width:97.104000px;}
._39{width:119.952000px;}
._29{width:124.113600px;}
._41{width:131.952000px;}
._4f{width:142.080000px;}
._3e{width:144.864000px;}
._40{width:153.643800px;}
._4d{width:154.992000px;}
._52{width:157.392000px;}
._3c{width:164.880000px;}
._4b{width:175.008000px;}
._54{width:177.408000px;}
._30{width:178.992000px;}
._2e{width:182.640000px;}
._37{width:191.005200px;}
._38{width:203.293200px;}
._3b{width:209.856000px;}
._45{width:211.261200px;}
._50{width:218.173800px;}
._4a{width:219.984000px;}
._46{width:223.549200px;}
._53{width:224.784000px;}
._49{width:276.624000px;}
._42{width:278.653800px;}
._44{width:299.838000px;}
._33{width:312.912000px;}
._36{width:322.446000px;}
._11{width:328.608000px;}
._10{width:334.477800px;}
._26{width:338.064000px;}
._23{width:342.288000px;}
._24{width:357.264000px;}
._25{width:360.768000px;}
._27{width:361.872000px;}
._2d{width:373.536000px;}
._20{width:375.264000px;}
._21{width:383.664000px;}
._12{width:384.960000px;}
._31{width:433.584000px;}
._47{width:442.992000px;}
._1e{width:477.696000px;}
._51{width:494.304000px;}
._34{width:499.056000px;}
._17{width:508.848000px;}
._43{width:554.784000px;}
._18{width:563.280000px;}
._3f{width:567.648000px;}
._4c{width:572.077800px;}
._16{width:577.536000px;}
._3a{width:599.712000px;}
._15{width:608.190000px;}
._2a{width:609.552000px;}
._14{width:620.640000px;}
._3d{width:632.557800px;}
._19{width:655.728000px;}
._13{width:667.392000px;}
._1c{width:695.904000px;}
._1b{width:708.816000px;}
._22{width:711.360000px;}
._1a{width:712.944000px;}
._32{width:715.680000px;}
._1d{width:725.856000px;}
._1f{width:802.014000px;}
._28{width:820.908000px;}
._d{width:894.661800px;}
._2f{width:913.872000px;}
._2b{width:1055.437800px;}
.fc5{color:rgb(105,62,21);}
.fc4{color:rgb(150,109,66);}
.fc3{color:rgb(91,50,12);}
.fc2{color:rgb(120,76,33);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.500000px;}
.fs5{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fsf{font-size:40.500000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:50.373600px;}
.fs10{font-size:51.000000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:54.912600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fsa{font-size:67.987200px;}
.fsb{font-size:70.602000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:49.760250px;}
.y24{bottom:61.757250px;}
.y5{bottom:66.525004px;}
.y23{bottom:73.754250px;}
.y87{bottom:80.803800px;}
.y14e{bottom:80.967000px;}
.y254{bottom:81.079500px;}
.y231{bottom:85.024350px;}
.y2de{bottom:85.040850px;}
.y1a2{bottom:85.890750px;}
.yb4{bottom:86.247150px;}
.y27a{bottom:91.109100px;}
.ye1{bottom:91.120950px;}
.y2aa{bottom:91.191000px;}
.y130{bottom:91.797150px;}
.y1c2{bottom:91.867350px;}
.y30f{bottom:91.940850px;}
.y1ec{bottom:93.570300px;}
.y207{bottom:97.092300px;}
.y4{bottom:97.125005px;}
.y10c{bottom:97.352700px;}
.y17a{bottom:97.482900px;}
.y86{bottom:98.799300px;}
.y14d{bottom:98.962500px;}
.y144{bottom:99.032550px;}
.y253{bottom:99.075000px;}
.y26{bottom:100.243950px;}
.y2dd{bottom:100.940850px;}
.y340{bottom:102.440850px;}
.y230{bottom:103.019850px;}
.yb3{bottom:104.242650px;}
.y1a1{bottom:106.397250px;}
.y1c1{bottom:106.867350px;}
.y2a9{bottom:107.391000px;}
.y30e{bottom:108.440850px;}
.y279{bottom:109.104600px;}
.ye0{bottom:109.116450px;}
.y1eb{bottom:115.005450px;}
.y206{bottom:115.087800px;}
.y10b{bottom:115.348200px;}
.y179{bottom:115.478400px;}
.y85{bottom:116.794800px;}
.y2dc{bottom:116.840850px;}
.y14c{bottom:116.958000px;}
.y143{bottom:117.028050px;}
.y252{bottom:117.070500px;}
.y12f{bottom:118.350600px;}
.y33f{bottom:118.640850px;}
.y22f{bottom:121.015350px;}
.yb2{bottom:122.238150px;}
.y2a8{bottom:123.591000px;}
.y30d{bottom:124.940850px;}
.y1c0{bottom:126.235350px;}
.y278{bottom:127.100100px;}
.ydf{bottom:127.111950px;}
.y1a0{bottom:127.798050px;}
.y1ea{bottom:130.005450px;}
.y2db{bottom:132.740850px;}
.y205{bottom:133.173300px;}
.y10a{bottom:133.343700px;}
.y178{bottom:133.473900px;}
.y84{bottom:134.790300px;}
.y33e{bottom:134.840850px;}
.y14b{bottom:134.953500px;}
.y142{bottom:135.023550px;}
.y251{bottom:135.066000px;}
.y22e{bottom:139.010850px;}
.y22{bottom:139.264499px;}
.y2a7{bottom:139.791000px;}
.y57{bottom:140.044800px;}
.yb1{bottom:140.233650px;}
.y1bf{bottom:141.235350px;}
.y30c{bottom:141.440850px;}
.y19f{bottom:142.798050px;}
.y12e{bottom:144.851100px;}
.y277{bottom:145.095600px;}
.yde{bottom:145.107450px;}
.y2da{bottom:148.640850px;}
.y1e9{bottom:149.373450px;}
.y33d{bottom:151.040850px;}
.y204{bottom:151.168800px;}
.y109{bottom:151.339200px;}
.y177{bottom:151.469400px;}
.y83{bottom:152.785800px;}
.y14a{bottom:152.949000px;}
.y141{bottom:153.019050px;}
.y250{bottom:153.061500px;}
.y2a6{bottom:155.991000px;}
.y22d{bottom:157.006350px;}
.y30b{bottom:157.940850px;}
.y56{bottom:158.040300px;}
.yb0{bottom:158.229150px;}
.y19e{bottom:162.166050px;}
.y1be{bottom:162.727350px;}
.y12d{bottom:162.846600px;}
.ydd{bottom:163.102950px;}
.y1e8{bottom:164.373450px;}
.y2d9{bottom:164.840850px;}
.y33c{bottom:167.240850px;}
.y203{bottom:169.164300px;}
.y108{bottom:169.334700px;}
.y176{bottom:169.464900px;}
.y82{bottom:170.781300px;}
.y149{bottom:170.944500px;}
.y140{bottom:171.014550px;}
.y24f{bottom:171.057000px;}
.y2a5{bottom:172.191000px;}
.y30a{bottom:174.440850px;}
.y1bd{bottom:174.535350px;}
.y22c{bottom:175.001850px;}
.y276{bottom:175.851600px;}
.y55{bottom:176.035800px;}
.yaf{bottom:176.224650px;}
.y2d8{bottom:180.740850px;}
.y12c{bottom:180.842100px;}
.ydc{bottom:181.098450px;}
.y19d{bottom:181.534050px;}
.y33b{bottom:183.440850px;}
.y1e7{bottom:186.873450px;}
.y202{bottom:187.159800px;}
.y107{bottom:187.330200px;}
.y175{bottom:187.460400px;}
.y2a4{bottom:188.391000px;}
.y81{bottom:188.776800px;}
.y148{bottom:188.940000px;}
.y13f{bottom:189.010050px;}
.y24e{bottom:189.052500px;}
.y309{bottom:190.940850px;}
.y22b{bottom:192.997350px;}
.y54{bottom:194.031300px;}
.yae{bottom:194.220150px;}
.y2d7{bottom:196.640850px;}
.y19{bottom:196.933500px;}
.y12b{bottom:198.837600px;}
.ydb{bottom:199.093950px;}
.y33a{bottom:199.640850px;}
.y19c{bottom:200.902050px;}
.y2a3{bottom:204.591000px;}
.y201{bottom:205.155300px;}
.y106{bottom:205.325700px;}
.y174{bottom:205.455900px;}
.y80{bottom:206.772300px;}
.y147{bottom:206.935500px;}
.y13e{bottom:207.005550px;}
.y24d{bottom:207.048000px;}
.y308{bottom:207.440850px;}
.y1e6{bottom:209.373450px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y22a{bottom:210.992850px;}
.y53{bottom:212.026800px;}
.yad{bottom:212.215650px;}
.y2d6{bottom:212.540850px;}
.y339{bottom:215.840850px;}
.y1bc{bottom:216.525150px;}
.y12a{bottom:216.833100px;}
.yda{bottom:217.089450px;}
.y19b{bottom:220.270050px;}
.y2a2{bottom:220.791000px;}
.y275{bottom:221.071800px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y200{bottom:223.150800px;}
.y105{bottom:223.321200px;}
.y173{bottom:223.451400px;}
.y307{bottom:223.940850px;}
.y7f{bottom:224.767800px;}
.y146{bottom:224.931000px;}
.y24c{bottom:225.043500px;}
.y2d5{bottom:228.440850px;}
.y1e5{bottom:228.741450px;}
.y229{bottom:228.988350px;}
.y52{bottom:230.022300px;}
.yac{bottom:230.211150px;}
.y338{bottom:232.040850px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y129{bottom:234.828600px;}
.yd9{bottom:235.084950px;}
.y2a1{bottom:236.991000px;}
.y13d{bottom:237.761400px;}
.y274{bottom:239.067300px;}
.y19a{bottom:239.638050px;}
.y306{bottom:240.440850px;}
.y1ff{bottom:241.146300px;}
.y172{bottom:241.446900px;}
.y7e{bottom:242.763300px;}
.y24b{bottom:243.039000px;}
.y1e4{bottom:243.741450px;}
.y2d4{bottom:244.340850px;}
.y228{bottom:246.983850px;}
.yab{bottom:248.206650px;}
.y337{bottom:248.240850px;}
.y104{bottom:249.825150px;}
.y128{bottom:252.824100px;}
.y1bb{bottom:253.098450px;}
.y2a0{bottom:253.191000px;}
.y199{bottom:254.638050px;}
.y145{bottom:255.687000px;}
.y305{bottom:256.640850px;}
.y273{bottom:257.062800px;}
.y1fe{bottom:259.141800px;}
.y171{bottom:259.442400px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y2d3{bottom:260.240850px;}
.y7d{bottom:260.758800px;}
.y51{bottom:260.778300px;}
.y24a{bottom:261.034500px;}
.yd8{bottom:261.588900px;}
.y1e3{bottom:263.109450px;}
.y336{bottom:264.440850px;}
.y227{bottom:264.979350px;}
.yaa{bottom:266.202150px;}
.y29f{bottom:269.391000px;}
.y127{bottom:270.819600px;}
.y1ba{bottom:271.093950px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y304{bottom:273.140850px;}
.y198{bottom:274.006050px;}
.y272{bottom:275.058300px;}
.y2d2{bottom:276.140850px;}
.y1fd{bottom:277.137300px;}
.y170{bottom:277.437900px;}
.y1e2{bottom:278.109450px;}
.y7c{bottom:278.754300px;}
.y249{bottom:279.030000px;}
.y335{bottom:280.640850px;}
.y13c{bottom:282.923100px;}
.y226{bottom:282.974850px;}
.ya9{bottom:284.197650px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y29e{bottom:285.591000px;}
.y126{bottom:288.815100px;}
.y1b9{bottom:289.089450px;}
.y103{bottom:289.129950px;}
.y303{bottom:289.640850px;}
.y2d1{bottom:292.040850px;}
.y271{bottom:293.053800px;}
.y197{bottom:293.374050px;}
.y1fc{bottom:295.132800px;}
.y16f{bottom:295.433400px;}
.y7b{bottom:296.749800px;}
.y334{bottom:296.840850px;}
.y248{bottom:297.025500px;}
.y1e1{bottom:297.477450px;}
.y225{bottom:300.970350px;}
.yd7{bottom:301.001850px;}
.y29d{bottom:301.791000px;}
.ya8{bottom:302.193150px;}
.y302{bottom:306.140850px;}
.y125{bottom:306.810600px;}
.y1b8{bottom:307.089450px;}
.y102{bottom:307.125450px;}
.y2d0{bottom:307.940850px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y270{bottom:311.049300px;}
.y1e0{bottom:312.477450px;}
.y196{bottom:312.742050px;}
.y333{bottom:313.040850px;}
.y1fb{bottom:313.128300px;}
.y16e{bottom:313.428900px;}
.y4e{bottom:313.932750px;}
.y7a{bottom:314.745300px;}
.y247{bottom:315.021000px;}
.y29c{bottom:317.991000px;}
.y224{bottom:318.965850px;}
.yd6{bottom:318.997350px;}
.ya7{bottom:320.188650px;}
.y301{bottom:322.640850px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2cf{bottom:323.840850px;}
.y124{bottom:324.806100px;}
.y1b7{bottom:325.102950px;}
.y101{bottom:325.120950px;}
.y195{bottom:327.742050px;}
.y26f{bottom:329.044800px;}
.y332{bottom:329.240850px;}
.y1fa{bottom:331.123800px;}
.y16d{bottom:331.424400px;}
.y1df{bottom:331.845450px;}
.y4d{bottom:332.570100px;}
.y79{bottom:332.740800px;}
.y246{bottom:333.016500px;}
.y29b{bottom:334.191000px;}
.y223{bottom:336.961350px;}
.yd5{bottom:336.992850px;}
.ya6{bottom:338.184150px;}
.y300{bottom:339.140850px;}
.y2ce{bottom:339.740850px;}
.y123{bottom:342.801600px;}
.y1b6{bottom:343.098450px;}
.y100{bottom:343.116450px;}
.y331{bottom:345.440850px;}
.y1de{bottom:346.845450px;}
.y26e{bottom:347.040300px;}
.y194{bottom:347.110050px;}
.y10{bottom:348.133500px;}
.y1f9{bottom:349.119300px;}
.y16c{bottom:349.419900px;}
.y29a{bottom:350.391000px;}
.y78{bottom:350.736300px;}
.y245{bottom:351.012000px;}
.y4c{bottom:354.815100px;}
.y222{bottom:354.956850px;}
.yd4{bottom:354.988350px;}
.y2cd{bottom:355.640850px;}
.ya5{bottom:356.179650px;}
.y1b5{bottom:361.093950px;}
.yff{bottom:361.111950px;}
.y330{bottom:361.640850px;}
.y26d{bottom:365.035800px;}
.y1dd{bottom:366.213450px;}
.y193{bottom:366.478050px;}
.y299{bottom:366.591000px;}
.y1f8{bottom:367.114800px;}
.y16b{bottom:367.415400px;}
.y4b{bottom:368.318250px;}
.y77{bottom:368.731800px;}
.y244{bottom:369.007500px;}
.y122{bottom:369.305400px;}
.y2cc{bottom:371.540850px;}
.y2ff{bottom:372.140850px;}
.y221{bottom:372.952350px;}
.yd3{bottom:372.983850px;}
.ya4{bottom:374.175150px;}
.y32f{bottom:377.840850px;}
.y1b4{bottom:379.089450px;}
.yfe{bottom:379.107450px;}
.y1dc{bottom:381.213450px;}
.y298{bottom:382.791000px;}
.y26c{bottom:383.031300px;}
.y1f7{bottom:385.110300px;}
.y16a{bottom:385.410900px;}
.y192{bottom:385.846050px;}
.y76{bottom:386.727300px;}
.yf{bottom:386.785499px;}
.y243{bottom:387.003000px;}
.y2cb{bottom:387.440850px;}
.y2fe{bottom:388.640850px;}
.y48{bottom:390.512100px;}
.y220{bottom:390.947850px;}
.yd2{bottom:390.979350px;}
.y32e{bottom:394.040850px;}
.y1b3{bottom:397.093950px;}
.yfd{bottom:397.102950px;}
.y297{bottom:398.991000px;}
.ya3{bottom:400.679100px;}
.y191{bottom:400.846050px;}
.y26b{bottom:401.026800px;}
.y1db{bottom:402.705450px;}
.y1f6{bottom:403.105800px;}
.y2ca{bottom:403.340850px;}
.y169{bottom:403.406400px;}
.y47{bottom:404.015100px;}
.y75{bottom:404.722800px;}
.y242{bottom:404.998500px;}
.y2fd{bottom:405.140850px;}
.ye{bottom:408.044999px;}
.y121{bottom:408.569850px;}
.y21f{bottom:408.943350px;}
.yd1{bottom:408.974850px;}
.y32d{bottom:410.240850px;}
.y1da{bottom:414.513450px;}
.y1b2{bottom:415.089450px;}
.yfc{bottom:415.098450px;}
.y296{bottom:415.191000px;}
.y46{bottom:417.518100px;}
.y26a{bottom:419.022300px;}
.y2c9{bottom:419.240850px;}
.y190{bottom:420.214050px;}
.y1f5{bottom:421.101300px;}
.y168{bottom:421.401900px;}
.y2fc{bottom:421.640850px;}
.y74{bottom:422.718300px;}
.y241{bottom:422.994000px;}
.y32c{bottom:426.440850px;}
.y120{bottom:426.573300px;}
.y21e{bottom:426.938850px;}
.yd0{bottom:426.970350px;}
.y45{bottom:431.021100px;}
.y295{bottom:431.391000px;}
.ya2{bottom:431.434950px;}
.yfb{bottom:433.093950px;}
.y1b1{bottom:433.143450px;}
.y2c8{bottom:435.140850px;}
.y269{bottom:437.017800px;}
.y2fb{bottom:438.140850px;}
.y1f4{bottom:439.096800px;}
.y167{bottom:439.397400px;}
.y18f{bottom:439.582050px;}
.y73{bottom:440.713800px;}
.y240{bottom:440.989500px;}
.y32b{bottom:442.640850px;}
.y44{bottom:444.524100px;}
.y21d{bottom:444.934350px;}
.ycf{bottom:444.965850px;}
.y294{bottom:447.591000px;}
.y2c7{bottom:451.040850px;}
.yfa{bottom:451.089450px;}
.y1b0{bottom:451.138950px;}
.y11f{bottom:453.073800px;}
.y18e{bottom:454.582050px;}
.y2fa{bottom:454.640850px;}
.y268{bottom:455.013300px;}
.y1d9{bottom:456.503400px;}
.y1f3{bottom:457.092300px;}
.y166{bottom:457.392900px;}
.y43{bottom:458.027100px;}
.y72{bottom:458.709300px;}
.y32a{bottom:458.840850px;}
.y23f{bottom:458.985000px;}
.y21c{bottom:462.929850px;}
.yce{bottom:462.961350px;}
.y293{bottom:463.791000px;}
.y2c6{bottom:466.940850px;}
.yf9{bottom:469.084950px;}
.y1af{bottom:469.134450px;}
.y11e{bottom:471.077250px;}
.y2f9{bottom:471.140850px;}
.y42{bottom:471.530100px;}
.y18d{bottom:473.950050px;}
.y329{bottom:475.040850px;}
.y1f2{bottom:475.087800px;}
.y165{bottom:475.388400px;}
.y71{bottom:476.704800px;}
.ya1{bottom:476.709000px;}
.y23e{bottom:476.980500px;}
.y292{bottom:479.991000px;}
.y21b{bottom:480.925350px;}
.ycd{bottom:480.956850px;}
.y2c5{bottom:482.840850px;}
.yd{bottom:484.864502px;}
.y41{bottom:485.033100px;}
.y267{bottom:485.769300px;}
.y1ae{bottom:487.129950px;}
.y2f8{bottom:487.640850px;}
.y18c{bottom:488.950050px;}
.y328{bottom:491.240850px;}
.y1d8{bottom:493.076700px;}
.y1f1{bottom:493.083300px;}
.y164{bottom:493.383900px;}
.y70{bottom:494.700300px;}
.ya0{bottom:494.704500px;}
.y23d{bottom:494.976000px;}
.yf8{bottom:495.588900px;}
.y291{bottom:496.191000px;}
.y11d{bottom:497.577750px;}
.y40{bottom:498.536100px;}
.y2c4{bottom:498.740850px;}
.y21a{bottom:498.920850px;}
.ycc{bottom:498.952350px;}
.yc{bottom:502.864502px;}
.y2f7{bottom:504.140850px;}
.y1ad{bottom:505.125450px;}
.y327{bottom:507.440850px;}
.y18b{bottom:508.318050px;}
.y1d7{bottom:511.072200px;}
.y3f{bottom:512.039100px;}
.y290{bottom:512.391000px;}
.y6f{bottom:512.695800px;}
.y9f{bottom:512.700000px;}
.y23c{bottom:512.971500px;}
.y2c3{bottom:514.640850px;}
.y11c{bottom:515.617200px;}
.y219{bottom:516.916350px;}
.ycb{bottom:516.947850px;}
.y163{bottom:519.887850px;}
.y2f6{bottom:520.640850px;}
.yb{bottom:520.864502px;}
.y1ac{bottom:523.120950px;}
.y326{bottom:523.640850px;}
.y1f0{bottom:523.839300px;}
.y3e{bottom:525.542100px;}
.y18a{bottom:527.686050px;}
.y28f{bottom:528.591000px;}
.y1d6{bottom:529.067700px;}
.y2c2{bottom:530.540850px;}
.y6e{bottom:530.691300px;}
.y9e{bottom:530.695500px;}
.y23b{bottom:530.967000px;}
.y266{bottom:531.003000px;}
.y218{bottom:534.911850px;}
.yca{bottom:534.943350px;}
.yf7{bottom:534.948000px;}
.y2f5{bottom:537.140850px;}
.ya{bottom:538.864499px;}
.y3d{bottom:539.045100px;}
.y325{bottom:539.840850px;}
.y1ab{bottom:541.116450px;}
.y11b{bottom:542.117700px;}
.y28e{bottom:544.791000px;}
.y2c1{bottom:546.440850px;}
.y189{bottom:547.054050px;}
.y1d5{bottom:547.067700px;}
.y6d{bottom:548.686800px;}
.y9d{bottom:548.691000px;}
.y23a{bottom:548.962500px;}
.y265{bottom:548.998500px;}
.y3c{bottom:552.548100px;}
.y217{bottom:552.907350px;}
.yc9{bottom:552.938850px;}
.yf6{bottom:552.943500px;}
.y2f4{bottom:553.640850px;}
.y324{bottom:556.040850px;}
.y9{bottom:556.864499px;}
.y1aa{bottom:559.111950px;}
.y11a{bottom:560.113200px;}
.y28d{bottom:560.991000px;}
.y162{bottom:561.662100px;}
.y2c0{bottom:562.340850px;}
.y1d4{bottom:565.072200px;}
.y3b{bottom:566.051100px;}
.y188{bottom:566.422050px;}
.y6c{bottom:566.682300px;}
.y9c{bottom:566.686500px;}
.y239{bottom:566.958000px;}
.y264{bottom:566.994000px;}
.y1ef{bottom:569.001000px;}
.y2f3{bottom:570.140850px;}
.y216{bottom:570.902850px;}
.yc8{bottom:570.934350px;}
.yf5{bottom:570.939000px;}
.y323{bottom:572.240850px;}
.y1a9{bottom:577.107450px;}
.y28c{bottom:577.191000px;}
.y119{bottom:578.108700px;}
.y2bf{bottom:578.240850px;}
.y3a{bottom:579.554100px;}
.y1d3{bottom:583.067700px;}
.y160{bottom:584.162100px;}
.y6b{bottom:584.677800px;}
.y9b{bottom:584.682000px;}
.y238{bottom:584.953500px;}
.y263{bottom:584.989500px;}
.y187{bottom:585.790050px;}
.y2f2{bottom:586.640850px;}
.y322{bottom:588.440850px;}
.y215{bottom:588.898350px;}
.yc7{bottom:588.929850px;}
.yf4{bottom:588.934500px;}
.y39{bottom:593.057100px;}
.y28b{bottom:593.391000px;}
.y2be{bottom:594.140850px;}
.y1a8{bottom:595.102950px;}
.y118{bottom:596.104200px;}
.y1ee{bottom:597.057000px;}
.y1d2{bottom:601.063200px;}
.y6a{bottom:602.673300px;}
.y9a{bottom:602.677500px;}
.y237{bottom:602.949000px;}
.y262{bottom:602.985000px;}
.y2f1{bottom:603.140850px;}
.y321{bottom:604.640850px;}
.y186{bottom:605.158050px;}
.y38{bottom:606.560100px;}
.y161{bottom:606.662100px;}
.y214{bottom:606.893850px;}
.yc6{bottom:606.925350px;}
.yf3{bottom:606.930000px;}
.y4a{bottom:608.942250px;}
.y28a{bottom:609.591000px;}
.y2bd{bottom:610.040850px;}
.y1a7{bottom:613.098450px;}
.y117{bottom:614.099700px;}
.y2f0{bottom:619.640850px;}
.y37{bottom:620.063100px;}
.y69{bottom:620.668800px;}
.y99{bottom:620.673000px;}
.y320{bottom:620.840850px;}
.y49{bottom:620.892600px;}
.y236{bottom:620.944500px;}
.y261{bottom:620.980500px;}
.y185{bottom:624.526050px;}
.y213{bottom:624.889350px;}
.yc5{bottom:624.920850px;}
.yf2{bottom:624.925500px;}
.y289{bottom:625.791000px;}
.y2bc{bottom:625.940850px;}
.y1d1{bottom:627.567150px;}
.y15f{bottom:629.162100px;}
.y1a6{bottom:631.093950px;}
.y116{bottom:632.095200px;}
.y36{bottom:634.658100px;}
.y2ef{bottom:636.140850px;}
.y31f{bottom:637.040850px;}
.y68{bottom:638.664300px;}
.y98{bottom:638.668500px;}
.y235{bottom:638.940000px;}
.y260{bottom:638.976000px;}
.y184{bottom:639.526050px;}
.y2bb{bottom:641.840850px;}
.y288{bottom:641.991000px;}
.y212{bottom:642.884850px;}
.yc4{bottom:642.916350px;}
.yf1{bottom:642.921000px;}
.y8{bottom:645.510000px;}
.y1d0{bottom:649.005900px;}
.y1a5{bottom:649.089450px;}
.y115{bottom:650.090700px;}
.y15e{bottom:651.662100px;}
.y2ee{bottom:652.640850px;}
.y31e{bottom:653.240850px;}
.y13b{bottom:653.344950px;}
.y15b{bottom:655.406100px;}
.y67{bottom:656.659800px;}
.y97{bottom:656.664000px;}
.y234{bottom:656.935500px;}
.y25f{bottom:656.971500px;}
.y2ba{bottom:657.740850px;}
.y287{bottom:658.191000px;}
.y183{bottom:658.894050px;}
.y211{bottom:660.880350px;}
.yc3{bottom:660.911850px;}
.yf0{bottom:660.916500px;}
.y1cf{bottom:664.005900px;}
.y35{bottom:664.419000px;}
.y7{bottom:666.771000px;}
.y1a4{bottom:667.084950px;}
.y114{bottom:668.086200px;}
.y2ed{bottom:669.140850px;}
.y31d{bottom:669.440850px;}
.y15a{bottom:670.406100px;}
.y2b9{bottom:673.640850px;}
.y182{bottom:673.894050px;}
.y15d{bottom:674.162100px;}
.y286{bottom:674.391000px;}
.y66{bottom:674.655300px;}
.y96{bottom:674.659500px;}
.y233{bottom:674.931000px;}
.y25e{bottom:674.967000px;}
.y34{bottom:677.584950px;}
.y210{bottom:678.875850px;}
.yc2{bottom:678.907350px;}
.yef{bottom:678.912000px;}
.y13a{bottom:679.845450px;}
.y1ce{bottom:683.373900px;}
.y2ec{bottom:685.640850px;}
.y113{bottom:686.081700px;}
.y2b8{bottom:689.540850px;}
.y285{bottom:690.591000px;}
.y33{bottom:690.750750px;}
.y65{bottom:692.650800px;}
.y95{bottom:692.655000px;}
.y25d{bottom:692.962500px;}
.y181{bottom:693.262050px;}
.y1a3{bottom:693.588900px;}
.y15c{bottom:696.662100px;}
.y20f{bottom:696.871350px;}
.yc1{bottom:696.902850px;}
.yee{bottom:696.907500px;}
.y139{bottom:697.888350px;}
.y1cd{bottom:698.373900px;}
.y31c{bottom:701.840850px;}
.y2eb{bottom:702.140850px;}
.y32{bottom:703.916700px;}
.y112{bottom:704.077200px;}
.y2b7{bottom:705.440850px;}
.y232{bottom:705.687000px;}
.y284{bottom:706.791000px;}
.y64{bottom:710.646300px;}
.y94{bottom:710.650500px;}
.y25c{bottom:710.958000px;}
.y180{bottom:712.630050px;}
.y20e{bottom:714.866850px;}
.yc0{bottom:714.898350px;}
.yed{bottom:714.903000px;}
.y31{bottom:717.082650px;}
.y31b{bottom:718.040850px;}
.y2ea{bottom:718.640850px;}
.y159{bottom:719.150100px;}
.y1cc{bottom:720.873900px;}
.y2b6{bottom:721.340850px;}
.y283{bottom:722.991000px;}
.y138{bottom:724.388850px;}
.y6{bottom:726.298500px;}
.y17f{bottom:727.630050px;}
.y63{bottom:728.641800px;}
.y93{bottom:728.646000px;}
.y25b{bottom:728.953500px;}
.y111{bottom:730.581000px;}
.y20d{bottom:732.862350px;}
.ybf{bottom:732.893850px;}
.yec{bottom:732.898500px;}
.y31a{bottom:734.240850px;}
.y2e9{bottom:735.140850px;}
.y30{bottom:736.519200px;}
.y2b5{bottom:737.240850px;}
.y282{bottom:739.191000px;}
.y158{bottom:741.650100px;}
.y137{bottom:742.384350px;}
.y1cb{bottom:743.373900px;}
.y62{bottom:746.637300px;}
.y92{bottom:746.641500px;}
.y25a{bottom:746.949000px;}
.y17e{bottom:746.998050px;}
.y319{bottom:750.440850px;}
.y20c{bottom:750.857850px;}
.ybe{bottom:750.889350px;}
.yeb{bottom:750.894000px;}
.y2e8{bottom:751.640850px;}
.y3{bottom:752.599495px;}
.y2b4{bottom:753.140850px;}
.y281{bottom:755.391000px;}
.y2f{bottom:757.519200px;}
.y136{bottom:760.379850px;}
.y1ca{bottom:762.741900px;}
.y157{bottom:764.150100px;}
.y61{bottom:764.632800px;}
.y91{bottom:764.637000px;}
.y259{bottom:764.944500px;}
.y154{bottom:765.650100px;}
.y318{bottom:766.640850px;}
.y2e7{bottom:768.140850px;}
.y17d{bottom:768.491100px;}
.y20b{bottom:768.853350px;}
.ybd{bottom:768.884850px;}
.yea{bottom:768.889500px;}
.y2b3{bottom:769.040850px;}
.y110{bottom:769.845450px;}
.y280{bottom:771.591000px;}
.y1c9{bottom:777.741900px;}
.y135{bottom:778.375350px;}
.y17c{bottom:780.299100px;}
.y60{bottom:782.628300px;}
.y90{bottom:782.632500px;}
.y317{bottom:782.840850px;}
.y258{bottom:782.940000px;}
.y2e6{bottom:784.640850px;}
.y2b2{bottom:784.940850px;}
.y20a{bottom:786.862350px;}
.ybc{bottom:786.880350px;}
.ye9{bottom:786.885000px;}
.y2e{bottom:786.909300px;}
.y156{bottom:787.406100px;}
.y27f{bottom:787.791000px;}
.y10f{bottom:787.848750px;}
.y134{bottom:796.370850px;}
.y1c8{bottom:797.109900px;}
.y316{bottom:799.040850px;}
.y5f{bottom:800.623800px;}
.y8f{bottom:800.628000px;}
.y2b1{bottom:800.840850px;}
.y257{bottom:800.935500px;}
.y2e5{bottom:801.140850px;}
.y209{bottom:804.857850px;}
.ybb{bottom:804.875850px;}
.ye8{bottom:804.880500px;}
.y2d{bottom:804.911550px;}
.y155{bottom:811.406100px;}
.y1c7{bottom:812.109900px;}
.y10e{bottom:814.349250px;}
.y133{bottom:814.366350px;}
.y315{bottom:815.240850px;}
.y2b0{bottom:816.740850px;}
.y27e{bottom:816.746850px;}
.y2e4{bottom:817.640850px;}
.y5e{bottom:818.619300px;}
.y8e{bottom:818.623500px;}
.y256{bottom:818.931000px;}
.y17b{bottom:822.288900px;}
.y208{bottom:822.853350px;}
.yba{bottom:822.871350px;}
.ye7{bottom:822.876000px;}
.y314{bottom:831.440850px;}
.y1c6{bottom:831.477900px;}
.y10d{bottom:832.361850px;}
.y2af{bottom:832.940850px;}
.y2e3{bottom:834.140850px;}
.y153{bottom:835.406100px;}
.y5d{bottom:836.614800px;}
.y8d{bottom:836.619000px;}
.yb9{bottom:840.866850px;}
.ye6{bottom:840.871500px;}
.y1c5{bottom:846.477900px;}
.y151{bottom:847.406100px;}
.y313{bottom:847.940850px;}
.y2ae{bottom:849.140850px;}
.y255{bottom:849.687000px;}
.y2e2{bottom:850.340850px;}
.y132{bottom:850.357350px;}
.y5c{bottom:854.610300px;}
.y8c{bottom:854.614500px;}
.yb8{bottom:858.862350px;}
.ye5{bottom:858.867000px;}
.y152{bottom:859.406100px;}
.y27d{bottom:861.913200px;}
.y312{bottom:864.440850px;}
.y2ad{bottom:865.340850px;}
.y2e1{bottom:866.240850px;}
.y1c4{bottom:867.969900px;}
.y131{bottom:868.352850px;}
.y2c{bottom:871.653600px;}
.y5b{bottom:872.605800px;}
.y8b{bottom:872.610000px;}
.yb7{bottom:876.857850px;}
.ye4{bottom:876.862500px;}
.y2{bottom:879.369000px;}
.y1c3{bottom:879.777900px;}
.y27c{bottom:879.908700px;}
.y311{bottom:880.940850px;}
.y2ac{bottom:881.540850px;}
.y2e0{bottom:882.140850px;}
.y150{bottom:883.214100px;}
.y5a{bottom:890.601300px;}
.y8a{bottom:890.605500px;}
.y2b{bottom:891.223800px;}
.yb6{bottom:894.853350px;}
.ye3{bottom:894.858000px;}
.y50{bottom:897.035850px;}
.y310{bottom:897.440850px;}
.y2ab{bottom:897.740850px;}
.y2df{bottom:898.040850px;}
.y59{bottom:908.596800px;}
.y89{bottom:908.601000px;}
.y2a{bottom:910.645800px;}
.y27b{bottom:910.664700px;}
.yb5{bottom:912.848850px;}
.ye2{bottom:912.853500px;}
.y14f{bottom:913.394850px;}
.y1ed{bottom:913.940850px;}
.y4f{bottom:916.378950px;}
.y29{bottom:928.800300px;}
.y28{bottom:946.954800px;}
.y58{bottom:949.519500px;}
.y88{bottom:951.755850px;}
.y1{bottom:966.726000px;}
.y27{bottom:975.454650px;}
.h11{height:23.686523px;}
.he{height:25.560000px;}
.hc{height:25.596000px;}
.ha{height:27.035156px;}
.h16{height:27.070312px;}
.h12{height:27.173016px;}
.hd{height:27.729000px;}
.h1c{height:28.854600px;}
.h14{height:29.400000px;}
.h15{height:31.540416px;}
.hb{height:31.541016px;}
.h13{height:31.582031px;}
.h7{height:32.130000px;}
.h20{height:36.046875px;}
.h24{height:36.093750px;}
.h25{height:37.515762px;}
.h1b{height:37.800000px;}
.h1f{height:38.299805px;}
.h1e{height:38.349609px;}
.h19{height:40.552734px;}
.h29{height:40.569469px;}
.h1a{height:40.605469px;}
.h22{height:42.870956px;}
.h10{height:42.875756px;}
.hf{height:44.850586px;}
.h1d{height:45.117188px;}
.h6{height:45.900000px;}
.h26{height:48.040102px;}
.h3{height:48.195000px;}
.h27{height:48.238102px;}
.h18{height:49.628906px;}
.h17{height:51.186450px;}
.h2{height:55.080000px;}
.h23{height:66.046875px;}
.h5{height:78.030000px;}
.h21{height:83.278875px;}
.h28{height:83.325750px;}
.h4{height:119.055004px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:714.000000px;}
.w3{width:714.330000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:76.535400px;}
.x16{left:81.345750px;}
.x5{left:85.433550px;}
.xc{left:89.291250px;}
.xe{left:93.560100px;}
.x11{left:97.797900px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1b{left:123.387300px;}
.x19{left:131.575350px;}
.x12{left:133.506000px;}
.x17{left:140.079450px;}
.x14{left:153.284400px;}
.x4{left:203.484001px;}
.x13{left:227.766000px;}
.xf{left:243.485550px;}
.xd{left:259.365600px;}
.x1c{left:289.995300px;}
.x15{left:301.892400px;}
.x1a{left:305.083350px;}
.x18{left:313.587450px;}
.x3{left:454.959000px;}
.xb{left:473.984550px;}
.x6{left:497.533050px;}
.x1d{left:554.708550px;}
.xa{left:563.182050px;}
.x8{left:584.524800px;}
.x9{left:599.062050px;}
.x7{left:607.027800px;}
@media print{
.v2{vertical-align:-14.080533pt;}
.v3{vertical-align:-12.320000pt;}
.v5{vertical-align:-8.960000pt;}
.v7{vertical-align:-7.951467pt;}
.vc{vertical-align:-5.589333pt;}
.v4{vertical-align:-3.872000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.351467pt;}
.va{vertical-align:12.320000pt;}
.v1{vertical-align:14.080533pt;}
.vb{vertical-align:15.632000pt;}
.v9{vertical-align:26.666667pt;}
.v8{vertical-align:41.984000pt;}
.ls37{letter-spacing:-2.901333pt;}
.ls13{letter-spacing:-1.152000pt;}
.ls3f{letter-spacing:-0.624000pt;}
.ls3c{letter-spacing:-0.576000pt;}
.ls3d{letter-spacing:-0.480000pt;}
.ls3e{letter-spacing:-0.432000pt;}
.ls4d{letter-spacing:-0.298667pt;}
.ls50{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls4c{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls4f{letter-spacing:-0.170667pt;}
.ls1b{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls53{letter-spacing:-0.085333pt;}
.ls33{letter-spacing:-0.048000pt;}
.ls47{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.001867pt;}
.ls5{letter-spacing:0.002133pt;}
.ls2b{letter-spacing:0.002400pt;}
.ls38{letter-spacing:0.003200pt;}
.ls34{letter-spacing:0.003733pt;}
.ls6{letter-spacing:0.011467pt;}
.ls32{letter-spacing:0.016533pt;}
.ls49{letter-spacing:0.042667pt;}
.ls17{letter-spacing:0.048000pt;}
.ls43{letter-spacing:0.085333pt;}
.ls11{letter-spacing:0.096000pt;}
.ls48{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.144000pt;}
.ls2d{letter-spacing:0.165600pt;}
.ls45{letter-spacing:0.170667pt;}
.ls31{letter-spacing:0.172000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.204267pt;}
.ls30{letter-spacing:0.210667pt;}
.ls4e{letter-spacing:0.213333pt;}
.ls52{letter-spacing:0.217600pt;}
.ls16{letter-spacing:0.240000pt;}
.ls46{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.266933pt;}
.ls15{letter-spacing:0.288000pt;}
.ls2f{letter-spacing:0.290400pt;}
.ls19{letter-spacing:0.336000pt;}
.ls35{letter-spacing:0.338133pt;}
.ls4a{letter-spacing:0.341333pt;}
.ls2e{letter-spacing:0.375467pt;}
.ls18{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.432000pt;}
.ls4b{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.488112pt;}
.ls44{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.528000pt;}
.ls42{letter-spacing:0.576000pt;}
.ls40{letter-spacing:0.624000pt;}
.lsd{letter-spacing:0.626677pt;}
.ls41{letter-spacing:0.672000pt;}
.ls51{letter-spacing:0.682667pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls28{letter-spacing:0.816000pt;}
.ls2a{letter-spacing:0.864000pt;}
.ls23{letter-spacing:0.912000pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls10{letter-spacing:0.976402pt;}
.ls24{letter-spacing:1.008000pt;}
.ls1f{letter-spacing:1.056000pt;}
.ls26{letter-spacing:1.104000pt;}
.lsf{letter-spacing:1.114677pt;}
.ls29{letter-spacing:1.200000pt;}
.lse{letter-spacing:1.230944pt;}
.ls20{letter-spacing:1.248000pt;}
.ls4{letter-spacing:1.750400pt;}
.lsb{letter-spacing:1.756800pt;}
.lsa{letter-spacing:1.757867pt;}
.lsc{letter-spacing:1.812992pt;}
.ls2{letter-spacing:1.960000pt;}
.ls8{letter-spacing:5.055467pt;}
.ls9{letter-spacing:5.191467pt;}
.ls3{letter-spacing:23.107200pt;}
.ls3a{letter-spacing:130.944000pt;}
.ls3b{letter-spacing:139.946667pt;}
.ls7{letter-spacing:355.904000pt;}
.ws8{word-spacing:-19.580314pt;}
.ws9{word-spacing:-14.838605pt;}
.ws74{word-spacing:-13.200000pt;}
.wse9{word-spacing:-11.904000pt;}
.wsd4{word-spacing:-11.733333pt;}
.ws4{word-spacing:-11.690667pt;}
.wse7{word-spacing:-11.477333pt;}
.wse8{word-spacing:-11.434667pt;}
.ws9e{word-spacing:-10.266667pt;}
.ws75{word-spacing:-9.900000pt;}
.wsb0{word-spacing:-9.864000pt;}
.ws1{word-spacing:-8.960000pt;}
.ws7{word-spacing:-8.832000pt;}
.ws98{word-spacing:-8.789333pt;}
.ws2{word-spacing:-8.768000pt;}
.ws6{word-spacing:-7.700000pt;}
.ws9f{word-spacing:-7.672000pt;}
.wse{word-spacing:-4.704000pt;}
.ws21{word-spacing:-1.812992pt;}
.ws72{word-spacing:-1.104000pt;}
.ws6c{word-spacing:-1.008000pt;}
.ws51{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.912000pt;}
.wse1{word-spacing:-0.896000pt;}
.ws6e{word-spacing:-0.816000pt;}
.wsc0{word-spacing:-0.576000pt;}
.ws6d{word-spacing:-0.528000pt;}
.ws6f{word-spacing:-0.480000pt;}
.ws27{word-spacing:-0.432000pt;}
.wsf1{word-spacing:-0.426667pt;}
.ws77{word-spacing:-0.384000pt;}
.wse5{word-spacing:-0.341333pt;}
.ws42{word-spacing:-0.336000pt;}
.ws35{word-spacing:-0.288000pt;}
.wsc7{word-spacing:-0.256000pt;}
.ws2e{word-spacing:-0.240000pt;}
.wsfa{word-spacing:-0.213333pt;}
.wsba{word-spacing:-0.192000pt;}
.ws4f{word-spacing:-0.144000pt;}
.wsce{word-spacing:-0.128000pt;}
.ws5f{word-spacing:-0.096000pt;}
.wsc5{word-spacing:-0.085333pt;}
.ws33{word-spacing:-0.048000pt;}
.wsd7{word-spacing:-0.042667pt;}
.ws3{word-spacing:-0.032000pt;}
.ws0{word-spacing:0.000000pt;}
.wsd9{word-spacing:0.042667pt;}
.ws36{word-spacing:0.048000pt;}
.ws19{word-spacing:0.074667pt;}
.ws3c{word-spacing:0.096000pt;}
.ws34{word-spacing:0.144000pt;}
.ws54{word-spacing:0.192000pt;}
.ws90{word-spacing:0.240000pt;}
.wsf2{word-spacing:0.256000pt;}
.ws7d{word-spacing:0.288000pt;}
.ws24{word-spacing:0.336000pt;}
.ws3b{word-spacing:0.384000pt;}
.ws1e{word-spacing:0.448000pt;}
.ws80{word-spacing:0.480000pt;}
.ws87{word-spacing:0.528000pt;}
.wsfc{word-spacing:0.554667pt;}
.ws31{word-spacing:0.576000pt;}
.ws81{word-spacing:0.624000pt;}
.wsca{word-spacing:0.682667pt;}
.ws5b{word-spacing:0.720000pt;}
.ws46{word-spacing:0.768000pt;}
.wseb{word-spacing:0.810667pt;}
.ws66{word-spacing:0.864000pt;}
.ws1b{word-spacing:0.896000pt;}
.ws86{word-spacing:0.912000pt;}
.ws14{word-spacing:0.933333pt;}
.wse6{word-spacing:0.981333pt;}
.ws57{word-spacing:1.056000pt;}
.ws2f{word-spacing:1.104000pt;}
.wsed{word-spacing:1.109333pt;}
.wsef{word-spacing:1.152000pt;}
.wsd0{word-spacing:1.194667pt;}
.ws32{word-spacing:1.200000pt;}
.wsd1{word-spacing:1.237333pt;}
.ws58{word-spacing:1.296000pt;}
.ws73{word-spacing:1.344000pt;}
.wsc9{word-spacing:1.365333pt;}
.ws83{word-spacing:1.392000pt;}
.ws61{word-spacing:1.440000pt;}
.wsd6{word-spacing:1.493333pt;}
.ws1a{word-spacing:1.530667pt;}
.wsb3{word-spacing:1.536000pt;}
.ws100{word-spacing:1.578667pt;}
.ws3d{word-spacing:1.584000pt;}
.wscf{word-spacing:1.621333pt;}
.ws48{word-spacing:1.632000pt;}
.ws44{word-spacing:1.680000pt;}
.wsf9{word-spacing:1.706667pt;}
.wsa5{word-spacing:1.728000pt;}
.wsd5{word-spacing:1.749333pt;}
.wsc{word-spacing:1.760000pt;}
.ws69{word-spacing:1.776000pt;}
.wsf{word-spacing:1.872000pt;}
.ws4c{word-spacing:1.920000pt;}
.wscc{word-spacing:1.962667pt;}
.ws45{word-spacing:1.968000pt;}
.ws18{word-spacing:2.016000pt;}
.wsec{word-spacing:2.048000pt;}
.wsd{word-spacing:2.053333pt;}
.ws56{word-spacing:2.064000pt;}
.wscd{word-spacing:2.090667pt;}
.ws3f{word-spacing:2.112000pt;}
.ws10{word-spacing:2.128000pt;}
.ws79{word-spacing:2.160000pt;}
.ws41{word-spacing:2.208000pt;}
.wsc2{word-spacing:2.218667pt;}
.ws5d{word-spacing:2.256000pt;}
.wsfd{word-spacing:2.261333pt;}
.ws3e{word-spacing:2.304000pt;}
.ws11{word-spacing:2.346667pt;}
.ws76{word-spacing:2.352000pt;}
.ws3a{word-spacing:2.400000pt;}
.wsaf{word-spacing:2.448000pt;}
.ws7e{word-spacing:2.493333pt;}
.ws53{word-spacing:2.496000pt;}
.ws16{word-spacing:2.501333pt;}
.wsf4{word-spacing:2.517333pt;}
.wsb2{word-spacing:2.544000pt;}
.wsdd{word-spacing:2.602667pt;}
.ws2d{word-spacing:2.640000pt;}
.wsb9{word-spacing:2.688000pt;}
.wsc6{word-spacing:2.730667pt;}
.ws43{word-spacing:2.736000pt;}
.wsde{word-spacing:2.816000pt;}
.ws92{word-spacing:2.832000pt;}
.ws13{word-spacing:2.837333pt;}
.ws8f{word-spacing:2.880000pt;}
.wsf8{word-spacing:2.901333pt;}
.wsb6{word-spacing:2.928000pt;}
.ws15{word-spacing:3.024000pt;}
.ws82{word-spacing:3.072000pt;}
.wsb{word-spacing:3.104000pt;}
.wse0{word-spacing:3.114667pt;}
.ws5c{word-spacing:3.120000pt;}
.ws8c{word-spacing:3.168000pt;}
.ws2c{word-spacing:3.216000pt;}
.ws7f{word-spacing:3.264000pt;}
.ws7b{word-spacing:3.312000pt;}
.ws7c{word-spacing:3.360000pt;}
.wsae{word-spacing:3.408000pt;}
.wsfb{word-spacing:3.413333pt;}
.wsfe{word-spacing:3.456000pt;}
.ws47{word-spacing:3.520000pt;}
.wsc8{word-spacing:3.541333pt;}
.ws30{word-spacing:3.552000pt;}
.ws55{word-spacing:3.600000pt;}
.ws101{word-spacing:3.626667pt;}
.ws85{word-spacing:3.648000pt;}
.ws102{word-spacing:3.669333pt;}
.ws62{word-spacing:3.696000pt;}
.wsf5{word-spacing:3.712000pt;}
.wsa{word-spacing:3.776000pt;}
.ws5e{word-spacing:3.792000pt;}
.wsa3{word-spacing:3.840000pt;}
.ws25{word-spacing:3.888000pt;}
.wscb{word-spacing:3.925333pt;}
.ws8e{word-spacing:3.984000pt;}
.ws63{word-spacing:4.032000pt;}
.ws29{word-spacing:4.080000pt;}
.wsdb{word-spacing:4.096000pt;}
.ws40{word-spacing:4.128000pt;}
.ws49{word-spacing:4.176000pt;}
.wsc3{word-spacing:4.181333pt;}
.wsbc{word-spacing:4.224000pt;}
.wsb4{word-spacing:4.272000pt;}
.ws8d{word-spacing:4.320000pt;}
.wsea{word-spacing:4.352000pt;}
.wsdc{word-spacing:4.394667pt;}
.ws6b{word-spacing:4.416000pt;}
.wsff{word-spacing:4.437333pt;}
.ws4a{word-spacing:4.464000pt;}
.ws50{word-spacing:4.512000pt;}
.wsf3{word-spacing:4.522667pt;}
.wsa4{word-spacing:4.560000pt;}
.wsd3{word-spacing:4.565333pt;}
.wsbd{word-spacing:4.608000pt;}
.wsd8{word-spacing:4.650667pt;}
.ws26{word-spacing:4.656000pt;}
.wsc4{word-spacing:4.693333pt;}
.ws78{word-spacing:4.704000pt;}
.wse2{word-spacing:4.736000pt;}
.wsbf{word-spacing:4.752000pt;}
.wsd2{word-spacing:4.778667pt;}
.ws2a{word-spacing:4.800000pt;}
.wsf6{word-spacing:4.864000pt;}
.ws5a{word-spacing:4.896000pt;}
.wsf7{word-spacing:4.906667pt;}
.ws59{word-spacing:4.944000pt;}
.ws4d{word-spacing:4.992000pt;}
.ws65{word-spacing:5.040000pt;}
.ws68{word-spacing:5.088000pt;}
.ws67{word-spacing:5.136000pt;}
.ws38{word-spacing:5.184000pt;}
.ws22{word-spacing:5.232000pt;}
.ws23{word-spacing:5.280000pt;}
.ws52{word-spacing:5.328000pt;}
.ws91{word-spacing:5.376000pt;}
.ws70{word-spacing:5.472000pt;}
.ws71{word-spacing:5.520000pt;}
.ws64{word-spacing:5.568000pt;}
.wsc1{word-spacing:5.616000pt;}
.wse3{word-spacing:5.632000pt;}
.ws2b{word-spacing:5.664000pt;}
.wse4{word-spacing:5.674667pt;}
.wsf0{word-spacing:5.717333pt;}
.ws17{word-spacing:5.824000pt;}
.wsda{word-spacing:5.888000pt;}
.ws12{word-spacing:5.898667pt;}
.ws4b{word-spacing:5.952000pt;}
.ws20{word-spacing:6.048000pt;}
.ws84{word-spacing:6.096000pt;}
.wsb5{word-spacing:6.192000pt;}
.wsbe{word-spacing:6.240000pt;}
.wsee{word-spacing:6.272000pt;}
.ws60{word-spacing:6.288000pt;}
.ws1c{word-spacing:6.421333pt;}
.ws7a{word-spacing:6.480000pt;}
.ws4e{word-spacing:6.528000pt;}
.ws1d{word-spacing:6.533333pt;}
.ws39{word-spacing:6.624000pt;}
.wsbb{word-spacing:6.672000pt;}
.ws1f{word-spacing:6.794667pt;}
.wsb1{word-spacing:6.864000pt;}
.wsb8{word-spacing:6.912000pt;}
.ws37{word-spacing:7.056000pt;}
.wsdf{word-spacing:7.082667pt;}
.wsb7{word-spacing:7.152000pt;}
.ws5{word-spacing:41.580267pt;}
.ws99{word-spacing:57.045333pt;}
.wsa6{word-spacing:65.621333pt;}
.wsac{word-spacing:74.624000pt;}
.wsa2{word-spacing:77.141333pt;}
.ws96{word-spacing:86.097067pt;}
.wsa9{word-spacing:86.144000pt;}
.ws94{word-spacing:93.491733pt;}
.ws97{word-spacing:93.492267pt;}
.ws95{word-spacing:96.000000pt;}
.wsab{word-spacing:103.936000pt;}
.wsa0{word-spacing:119.253333pt;}
.wsa8{word-spacing:128.256000pt;}
.ws28{word-spacing:198.458667pt;}
.ws88{word-spacing:409.642667pt;}
.ws8b{word-spacing:421.162667pt;}
.ws89{word-spacing:432.640000pt;}
.ws93{word-spacing:438.528000pt;}
.ws8a{word-spacing:455.637333pt;}
.ws9b{word-spacing:491.861333pt;}
.ws9a{word-spacing:541.824000pt;}
.ws9c{word-spacing:584.192000pt;}
.wsaa{word-spacing:612.096000pt;}
.ws9d{word-spacing:625.664000pt;}
.wsad{word-spacing:652.074667pt;}
.wsa1{word-spacing:665.856000pt;}
.wsa7{word-spacing:705.792000pt;}
._a{margin-left:-23.669333pt;}
._e{margin-left:-5.587200pt;}
._35{margin-left:-4.689600pt;}
._0{margin-left:-3.766933pt;}
._4{margin-left:-2.032000pt;}
._2{margin-left:-1.040000pt;}
._7{width:0.924800pt;}
._6{width:1.993600pt;}
._8{width:3.214400pt;}
._9{width:4.599467pt;}
._c{width:5.491200pt;}
._1{width:6.444800pt;}
._b{width:7.502400pt;}
._f{width:8.396800pt;}
._5{width:52.084800pt;}
._3{width:53.734933pt;}
._2c{width:68.736000pt;}
._4e{width:82.812267pt;}
._48{width:86.314667pt;}
._39{width:106.624000pt;}
._29{width:110.323200pt;}
._41{width:117.290667pt;}
._4f{width:126.293333pt;}
._3e{width:128.768000pt;}
._40{width:136.572267pt;}
._4d{width:137.770667pt;}
._52{width:139.904000pt;}
._3c{width:146.560000pt;}
._4b{width:155.562667pt;}
._54{width:157.696000pt;}
._30{width:159.104000pt;}
._2e{width:162.346667pt;}
._37{width:169.782400pt;}
._38{width:180.705067pt;}
._3b{width:186.538667pt;}
._45{width:187.787733pt;}
._50{width:193.932267pt;}
._4a{width:195.541333pt;}
._46{width:198.710400pt;}
._53{width:199.808000pt;}
._49{width:245.888000pt;}
._42{width:247.692267pt;}
._44{width:266.522667pt;}
._33{width:278.144000pt;}
._36{width:286.618667pt;}
._11{width:292.096000pt;}
._10{width:297.313600pt;}
._26{width:300.501333pt;}
._23{width:304.256000pt;}
._24{width:317.568000pt;}
._25{width:320.682667pt;}
._27{width:321.664000pt;}
._2d{width:332.032000pt;}
._20{width:333.568000pt;}
._21{width:341.034667pt;}
._12{width:342.186667pt;}
._31{width:385.408000pt;}
._47{width:393.770667pt;}
._1e{width:424.618667pt;}
._51{width:439.381333pt;}
._34{width:443.605333pt;}
._17{width:452.309333pt;}
._43{width:493.141333pt;}
._18{width:500.693333pt;}
._3f{width:504.576000pt;}
._4c{width:508.513600pt;}
._16{width:513.365333pt;}
._3a{width:533.077333pt;}
._15{width:540.613333pt;}
._2a{width:541.824000pt;}
._14{width:551.680000pt;}
._3d{width:562.273600pt;}
._19{width:582.869333pt;}
._13{width:593.237333pt;}
._1c{width:618.581333pt;}
._1b{width:630.058667pt;}
._22{width:632.320000pt;}
._1a{width:633.728000pt;}
._32{width:636.160000pt;}
._1d{width:645.205333pt;}
._1f{width:712.901333pt;}
._28{width:729.696000pt;}
._d{width:795.254933pt;}
._2f{width:812.330667pt;}
._2b{width:938.166933pt;}
.fs9{font-size:28.000000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fsf{font-size:36.000000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:44.776533pt;}
.fs10{font-size:45.333333pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:48.811200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fsa{font-size:60.433067pt;}
.fsb{font-size:62.757333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:44.231333pt;}
.y24{bottom:54.895333pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:65.559333pt;}
.y87{bottom:71.825600pt;}
.y14e{bottom:71.970667pt;}
.y254{bottom:72.070667pt;}
.y231{bottom:75.577200pt;}
.y2de{bottom:75.591867pt;}
.y1a2{bottom:76.347333pt;}
.yb4{bottom:76.664133pt;}
.y27a{bottom:80.985867pt;}
.ye1{bottom:80.996400pt;}
.y2aa{bottom:81.058667pt;}
.y130{bottom:81.597467pt;}
.y1c2{bottom:81.659867pt;}
.y30f{bottom:81.725200pt;}
.y1ec{bottom:83.173600pt;}
.y207{bottom:86.304267pt;}
.y4{bottom:86.333337pt;}
.y10c{bottom:86.535733pt;}
.y17a{bottom:86.651467pt;}
.y86{bottom:87.821600pt;}
.y14d{bottom:87.966667pt;}
.y144{bottom:88.028933pt;}
.y253{bottom:88.066667pt;}
.y26{bottom:89.105733pt;}
.y2dd{bottom:89.725200pt;}
.y340{bottom:91.058533pt;}
.y230{bottom:91.573200pt;}
.yb3{bottom:92.660133pt;}
.y1a1{bottom:94.575333pt;}
.y1c1{bottom:94.993200pt;}
.y2a9{bottom:95.458667pt;}
.y30e{bottom:96.391867pt;}
.y279{bottom:96.981867pt;}
.ye0{bottom:96.992400pt;}
.y1eb{bottom:102.227067pt;}
.y206{bottom:102.300267pt;}
.y10b{bottom:102.531733pt;}
.y179{bottom:102.647467pt;}
.y85{bottom:103.817600pt;}
.y2dc{bottom:103.858533pt;}
.y14c{bottom:103.962667pt;}
.y143{bottom:104.024933pt;}
.y252{bottom:104.062667pt;}
.y12f{bottom:105.200533pt;}
.y33f{bottom:105.458533pt;}
.y22f{bottom:107.569200pt;}
.yb2{bottom:108.656133pt;}
.y2a8{bottom:109.858667pt;}
.y30d{bottom:111.058533pt;}
.y1c0{bottom:112.209200pt;}
.y278{bottom:112.977867pt;}
.ydf{bottom:112.988400pt;}
.y1a0{bottom:113.598267pt;}
.y1ea{bottom:115.560400pt;}
.y2db{bottom:117.991867pt;}
.y205{bottom:118.376267pt;}
.y10a{bottom:118.527733pt;}
.y178{bottom:118.643467pt;}
.y84{bottom:119.813600pt;}
.y33e{bottom:119.858533pt;}
.y14b{bottom:119.958667pt;}
.y142{bottom:120.020933pt;}
.y251{bottom:120.058667pt;}
.y22e{bottom:123.565200pt;}
.y22{bottom:123.790666pt;}
.y2a7{bottom:124.258667pt;}
.y57{bottom:124.484267pt;}
.yb1{bottom:124.652133pt;}
.y1bf{bottom:125.542533pt;}
.y30c{bottom:125.725200pt;}
.y19f{bottom:126.931600pt;}
.y12e{bottom:128.756533pt;}
.y277{bottom:128.973867pt;}
.yde{bottom:128.984400pt;}
.y2da{bottom:132.125200pt;}
.y1e9{bottom:132.776400pt;}
.y33d{bottom:134.258533pt;}
.y204{bottom:134.372267pt;}
.y109{bottom:134.523733pt;}
.y177{bottom:134.639467pt;}
.y83{bottom:135.809600pt;}
.y14a{bottom:135.954667pt;}
.y141{bottom:136.016933pt;}
.y250{bottom:136.054667pt;}
.y2a6{bottom:138.658667pt;}
.y22d{bottom:139.561200pt;}
.y30b{bottom:140.391867pt;}
.y56{bottom:140.480267pt;}
.yb0{bottom:140.648133pt;}
.y19e{bottom:144.147600pt;}
.y1be{bottom:144.646533pt;}
.y12d{bottom:144.752533pt;}
.ydd{bottom:144.980400pt;}
.y1e8{bottom:146.109733pt;}
.y2d9{bottom:146.525200pt;}
.y33c{bottom:148.658533pt;}
.y203{bottom:150.368267pt;}
.y108{bottom:150.519733pt;}
.y176{bottom:150.635467pt;}
.y82{bottom:151.805600pt;}
.y149{bottom:151.950667pt;}
.y140{bottom:152.012933pt;}
.y24f{bottom:152.050667pt;}
.y2a5{bottom:153.058667pt;}
.y30a{bottom:155.058533pt;}
.y1bd{bottom:155.142533pt;}
.y22c{bottom:155.557200pt;}
.y276{bottom:156.312533pt;}
.y55{bottom:156.476267pt;}
.yaf{bottom:156.644133pt;}
.y2d8{bottom:160.658533pt;}
.y12c{bottom:160.748533pt;}
.ydc{bottom:160.976400pt;}
.y19d{bottom:161.363600pt;}
.y33b{bottom:163.058533pt;}
.y1e7{bottom:166.109733pt;}
.y202{bottom:166.364267pt;}
.y107{bottom:166.515733pt;}
.y175{bottom:166.631467pt;}
.y2a4{bottom:167.458667pt;}
.y81{bottom:167.801600pt;}
.y148{bottom:167.946667pt;}
.y13f{bottom:168.008933pt;}
.y24e{bottom:168.046667pt;}
.y309{bottom:169.725200pt;}
.y22b{bottom:171.553200pt;}
.y54{bottom:172.472267pt;}
.yae{bottom:172.640133pt;}
.y2d7{bottom:174.791867pt;}
.y19{bottom:175.052000pt;}
.y12b{bottom:176.744533pt;}
.ydb{bottom:176.972400pt;}
.y33a{bottom:177.458533pt;}
.y19c{bottom:178.579600pt;}
.y2a3{bottom:181.858667pt;}
.y201{bottom:182.360267pt;}
.y106{bottom:182.511733pt;}
.y174{bottom:182.627467pt;}
.y80{bottom:183.797600pt;}
.y147{bottom:183.942667pt;}
.y13e{bottom:184.004933pt;}
.y24d{bottom:184.042667pt;}
.y308{bottom:184.391867pt;}
.y1e6{bottom:186.109733pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y22a{bottom:187.549200pt;}
.y53{bottom:188.468267pt;}
.yad{bottom:188.636133pt;}
.y2d6{bottom:188.925200pt;}
.y339{bottom:191.858533pt;}
.y1bc{bottom:192.466800pt;}
.y12a{bottom:192.740533pt;}
.yda{bottom:192.968400pt;}
.y19b{bottom:195.795600pt;}
.y2a2{bottom:196.258667pt;}
.y275{bottom:196.508267pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y200{bottom:198.356267pt;}
.y105{bottom:198.507733pt;}
.y173{bottom:198.623467pt;}
.y307{bottom:199.058533pt;}
.y7f{bottom:199.793600pt;}
.y146{bottom:199.938667pt;}
.y24c{bottom:200.038667pt;}
.y2d5{bottom:203.058533pt;}
.y1e5{bottom:203.325733pt;}
.y229{bottom:203.545200pt;}
.y52{bottom:204.464267pt;}
.yac{bottom:204.632133pt;}
.y338{bottom:206.258533pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y129{bottom:208.736533pt;}
.yd9{bottom:208.964400pt;}
.y2a1{bottom:210.658667pt;}
.y13d{bottom:211.343467pt;}
.y274{bottom:212.504267pt;}
.y19a{bottom:213.011600pt;}
.y306{bottom:213.725200pt;}
.y1ff{bottom:214.352267pt;}
.y172{bottom:214.619467pt;}
.y7e{bottom:215.789600pt;}
.y24b{bottom:216.034667pt;}
.y1e4{bottom:216.659067pt;}
.y2d4{bottom:217.191867pt;}
.y228{bottom:219.541200pt;}
.yab{bottom:220.628133pt;}
.y337{bottom:220.658533pt;}
.y104{bottom:222.066800pt;}
.y128{bottom:224.732533pt;}
.y1bb{bottom:224.976400pt;}
.y2a0{bottom:225.058667pt;}
.y199{bottom:226.344933pt;}
.y145{bottom:227.277333pt;}
.y305{bottom:228.125200pt;}
.y273{bottom:228.500267pt;}
.y1fe{bottom:230.348267pt;}
.y171{bottom:230.615467pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y2d3{bottom:231.325200pt;}
.y7d{bottom:231.785600pt;}
.y51{bottom:231.802933pt;}
.y24a{bottom:232.030667pt;}
.yd8{bottom:232.523467pt;}
.y1e3{bottom:233.875067pt;}
.y336{bottom:235.058533pt;}
.y227{bottom:235.537200pt;}
.yaa{bottom:236.624133pt;}
.y29f{bottom:239.458667pt;}
.y127{bottom:240.728533pt;}
.y1ba{bottom:240.972400pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y304{bottom:242.791867pt;}
.y198{bottom:243.560933pt;}
.y272{bottom:244.496267pt;}
.y2d2{bottom:245.458533pt;}
.y1fd{bottom:246.344267pt;}
.y170{bottom:246.611467pt;}
.y1e2{bottom:247.208400pt;}
.y7c{bottom:247.781600pt;}
.y249{bottom:248.026667pt;}
.y335{bottom:249.458533pt;}
.y13c{bottom:251.487200pt;}
.y226{bottom:251.533200pt;}
.ya9{bottom:252.620133pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y29e{bottom:253.858667pt;}
.y126{bottom:256.724533pt;}
.y1b9{bottom:256.968400pt;}
.y103{bottom:257.004400pt;}
.y303{bottom:257.458533pt;}
.y2d1{bottom:259.591867pt;}
.y271{bottom:260.492267pt;}
.y197{bottom:260.776933pt;}
.y1fc{bottom:262.340267pt;}
.y16f{bottom:262.607467pt;}
.y7b{bottom:263.777600pt;}
.y334{bottom:263.858533pt;}
.y248{bottom:264.022667pt;}
.y1e1{bottom:264.424400pt;}
.y225{bottom:267.529200pt;}
.yd7{bottom:267.557200pt;}
.y29d{bottom:268.258667pt;}
.ya8{bottom:268.616133pt;}
.y302{bottom:272.125200pt;}
.y125{bottom:272.720533pt;}
.y1b8{bottom:272.968400pt;}
.y102{bottom:273.000400pt;}
.y2d0{bottom:273.725200pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y270{bottom:276.488267pt;}
.y1e0{bottom:277.757733pt;}
.y196{bottom:277.992933pt;}
.y333{bottom:278.258533pt;}
.y1fb{bottom:278.336267pt;}
.y16e{bottom:278.603467pt;}
.y4e{bottom:279.051333pt;}
.y7a{bottom:279.773600pt;}
.y247{bottom:280.018667pt;}
.y29c{bottom:282.658667pt;}
.y224{bottom:283.525200pt;}
.yd6{bottom:283.553200pt;}
.ya7{bottom:284.612133pt;}
.y301{bottom:286.791867pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2cf{bottom:287.858533pt;}
.y124{bottom:288.716533pt;}
.y1b7{bottom:288.980400pt;}
.y101{bottom:288.996400pt;}
.y195{bottom:291.326267pt;}
.y26f{bottom:292.484267pt;}
.y332{bottom:292.658533pt;}
.y1fa{bottom:294.332267pt;}
.y16d{bottom:294.599467pt;}
.y1df{bottom:294.973733pt;}
.y4d{bottom:295.617867pt;}
.y79{bottom:295.769600pt;}
.y246{bottom:296.014667pt;}
.y29b{bottom:297.058667pt;}
.y223{bottom:299.521200pt;}
.yd5{bottom:299.549200pt;}
.ya6{bottom:300.608133pt;}
.y300{bottom:301.458533pt;}
.y2ce{bottom:301.991867pt;}
.y123{bottom:304.712533pt;}
.y1b6{bottom:304.976400pt;}
.y100{bottom:304.992400pt;}
.y331{bottom:307.058533pt;}
.y1de{bottom:308.307067pt;}
.y26e{bottom:308.480267pt;}
.y194{bottom:308.542267pt;}
.y10{bottom:309.452000pt;}
.y1f9{bottom:310.328267pt;}
.y16c{bottom:310.595467pt;}
.y29a{bottom:311.458667pt;}
.y78{bottom:311.765600pt;}
.y245{bottom:312.010667pt;}
.y4c{bottom:315.391200pt;}
.y222{bottom:315.517200pt;}
.yd4{bottom:315.545200pt;}
.y2cd{bottom:316.125200pt;}
.ya5{bottom:316.604133pt;}
.y1b5{bottom:320.972400pt;}
.yff{bottom:320.988400pt;}
.y330{bottom:321.458533pt;}
.y26d{bottom:324.476267pt;}
.y1dd{bottom:325.523067pt;}
.y193{bottom:325.758267pt;}
.y299{bottom:325.858667pt;}
.y1f8{bottom:326.324267pt;}
.y16b{bottom:326.591467pt;}
.y4b{bottom:327.394000pt;}
.y77{bottom:327.761600pt;}
.y244{bottom:328.006667pt;}
.y122{bottom:328.271467pt;}
.y2cc{bottom:330.258533pt;}
.y2ff{bottom:330.791867pt;}
.y221{bottom:331.513200pt;}
.yd3{bottom:331.541200pt;}
.ya4{bottom:332.600133pt;}
.y32f{bottom:335.858533pt;}
.y1b4{bottom:336.968400pt;}
.yfe{bottom:336.984400pt;}
.y1dc{bottom:338.856400pt;}
.y298{bottom:340.258667pt;}
.y26c{bottom:340.472267pt;}
.y1f7{bottom:342.320267pt;}
.y16a{bottom:342.587467pt;}
.y192{bottom:342.974267pt;}
.y76{bottom:343.757600pt;}
.yf{bottom:343.809333pt;}
.y243{bottom:344.002667pt;}
.y2cb{bottom:344.391867pt;}
.y2fe{bottom:345.458533pt;}
.y48{bottom:347.121867pt;}
.y220{bottom:347.509200pt;}
.yd2{bottom:347.537200pt;}
.y32e{bottom:350.258533pt;}
.y1b3{bottom:352.972400pt;}
.yfd{bottom:352.980400pt;}
.y297{bottom:354.658667pt;}
.ya3{bottom:356.159200pt;}
.y191{bottom:356.307600pt;}
.y26b{bottom:356.468267pt;}
.y1db{bottom:357.960400pt;}
.y1f6{bottom:358.316267pt;}
.y2ca{bottom:358.525200pt;}
.y169{bottom:358.583467pt;}
.y47{bottom:359.124533pt;}
.y75{bottom:359.753600pt;}
.y242{bottom:359.998667pt;}
.y2fd{bottom:360.125200pt;}
.ye{bottom:362.706666pt;}
.y121{bottom:363.173200pt;}
.y21f{bottom:363.505200pt;}
.yd1{bottom:363.533200pt;}
.y32d{bottom:364.658533pt;}
.y1da{bottom:368.456400pt;}
.y1b2{bottom:368.968400pt;}
.yfc{bottom:368.976400pt;}
.y296{bottom:369.058667pt;}
.y46{bottom:371.127200pt;}
.y26a{bottom:372.464267pt;}
.y2c9{bottom:372.658533pt;}
.y190{bottom:373.523600pt;}
.y1f5{bottom:374.312267pt;}
.y168{bottom:374.579467pt;}
.y2fc{bottom:374.791867pt;}
.y74{bottom:375.749600pt;}
.y241{bottom:375.994667pt;}
.y32c{bottom:379.058533pt;}
.y120{bottom:379.176267pt;}
.y21e{bottom:379.501200pt;}
.yd0{bottom:379.529200pt;}
.y45{bottom:383.129867pt;}
.y295{bottom:383.458667pt;}
.ya2{bottom:383.497733pt;}
.yfb{bottom:384.972400pt;}
.y1b1{bottom:385.016400pt;}
.y2c8{bottom:386.791867pt;}
.y269{bottom:388.460267pt;}
.y2fb{bottom:389.458533pt;}
.y1f4{bottom:390.308267pt;}
.y167{bottom:390.575467pt;}
.y18f{bottom:390.739600pt;}
.y73{bottom:391.745600pt;}
.y240{bottom:391.990667pt;}
.y32b{bottom:393.458533pt;}
.y44{bottom:395.132533pt;}
.y21d{bottom:395.497200pt;}
.ycf{bottom:395.525200pt;}
.y294{bottom:397.858667pt;}
.y2c7{bottom:400.925200pt;}
.yfa{bottom:400.968400pt;}
.y1b0{bottom:401.012400pt;}
.y11f{bottom:402.732267pt;}
.y18e{bottom:404.072933pt;}
.y2fa{bottom:404.125200pt;}
.y268{bottom:404.456267pt;}
.y1d9{bottom:405.780800pt;}
.y1f3{bottom:406.304267pt;}
.y166{bottom:406.571467pt;}
.y43{bottom:407.135200pt;}
.y72{bottom:407.741600pt;}
.y32a{bottom:407.858533pt;}
.y23f{bottom:407.986667pt;}
.y21c{bottom:411.493200pt;}
.yce{bottom:411.521200pt;}
.y293{bottom:412.258667pt;}
.y2c6{bottom:415.058533pt;}
.yf9{bottom:416.964400pt;}
.y1af{bottom:417.008400pt;}
.y11e{bottom:418.735333pt;}
.y2f9{bottom:418.791867pt;}
.y42{bottom:419.137867pt;}
.y18d{bottom:421.288933pt;}
.y329{bottom:422.258533pt;}
.y1f2{bottom:422.300267pt;}
.y165{bottom:422.567467pt;}
.y71{bottom:423.737600pt;}
.ya1{bottom:423.741333pt;}
.y23e{bottom:423.982667pt;}
.y292{bottom:426.658667pt;}
.y21b{bottom:427.489200pt;}
.ycd{bottom:427.517200pt;}
.y2c5{bottom:429.191867pt;}
.yd{bottom:430.990669pt;}
.y41{bottom:431.140533pt;}
.y267{bottom:431.794933pt;}
.y1ae{bottom:433.004400pt;}
.y2f8{bottom:433.458533pt;}
.y18c{bottom:434.622267pt;}
.y328{bottom:436.658533pt;}
.y1d8{bottom:438.290400pt;}
.y1f1{bottom:438.296267pt;}
.y164{bottom:438.563467pt;}
.y70{bottom:439.733600pt;}
.ya0{bottom:439.737333pt;}
.y23d{bottom:439.978667pt;}
.yf8{bottom:440.523467pt;}
.y291{bottom:441.058667pt;}
.y11d{bottom:442.291333pt;}
.y40{bottom:443.143200pt;}
.y2c4{bottom:443.325200pt;}
.y21a{bottom:443.485200pt;}
.ycc{bottom:443.513200pt;}
.yc{bottom:446.990669pt;}
.y2f7{bottom:448.125200pt;}
.y1ad{bottom:449.000400pt;}
.y327{bottom:451.058533pt;}
.y18b{bottom:451.838267pt;}
.y1d7{bottom:454.286400pt;}
.y3f{bottom:455.145867pt;}
.y290{bottom:455.458667pt;}
.y6f{bottom:455.729600pt;}
.y9f{bottom:455.733333pt;}
.y23c{bottom:455.974667pt;}
.y2c3{bottom:457.458533pt;}
.y11c{bottom:458.326400pt;}
.y219{bottom:459.481200pt;}
.ycb{bottom:459.509200pt;}
.y163{bottom:462.122533pt;}
.y2f6{bottom:462.791867pt;}
.yb{bottom:462.990669pt;}
.y1ac{bottom:464.996400pt;}
.y326{bottom:465.458533pt;}
.y1f0{bottom:465.634933pt;}
.y3e{bottom:467.148533pt;}
.y18a{bottom:469.054267pt;}
.y28f{bottom:469.858667pt;}
.y1d6{bottom:470.282400pt;}
.y2c2{bottom:471.591867pt;}
.y6e{bottom:471.725600pt;}
.y9e{bottom:471.729333pt;}
.y23b{bottom:471.970667pt;}
.y266{bottom:472.002667pt;}
.y218{bottom:475.477200pt;}
.yca{bottom:475.505200pt;}
.yf7{bottom:475.509333pt;}
.y2f5{bottom:477.458533pt;}
.ya{bottom:478.990666pt;}
.y3d{bottom:479.151200pt;}
.y325{bottom:479.858533pt;}
.y1ab{bottom:480.992400pt;}
.y11b{bottom:481.882400pt;}
.y28e{bottom:484.258667pt;}
.y2c1{bottom:485.725200pt;}
.y189{bottom:486.270267pt;}
.y1d5{bottom:486.282400pt;}
.y6d{bottom:487.721600pt;}
.y9d{bottom:487.725333pt;}
.y23a{bottom:487.966667pt;}
.y265{bottom:487.998667pt;}
.y3c{bottom:491.153867pt;}
.y217{bottom:491.473200pt;}
.yc9{bottom:491.501200pt;}
.yf6{bottom:491.505333pt;}
.y2f4{bottom:492.125200pt;}
.y324{bottom:494.258533pt;}
.y9{bottom:494.990666pt;}
.y1aa{bottom:496.988400pt;}
.y11a{bottom:497.878400pt;}
.y28d{bottom:498.658667pt;}
.y162{bottom:499.255200pt;}
.y2c0{bottom:499.858533pt;}
.y1d4{bottom:502.286400pt;}
.y3b{bottom:503.156533pt;}
.y188{bottom:503.486267pt;}
.y6c{bottom:503.717600pt;}
.y9c{bottom:503.721333pt;}
.y239{bottom:503.962667pt;}
.y264{bottom:503.994667pt;}
.y1ef{bottom:505.778667pt;}
.y2f3{bottom:506.791867pt;}
.y216{bottom:507.469200pt;}
.yc8{bottom:507.497200pt;}
.yf5{bottom:507.501333pt;}
.y323{bottom:508.658533pt;}
.y1a9{bottom:512.984400pt;}
.y28c{bottom:513.058667pt;}
.y119{bottom:513.874400pt;}
.y2bf{bottom:513.991867pt;}
.y3a{bottom:515.159200pt;}
.y1d3{bottom:518.282400pt;}
.y160{bottom:519.255200pt;}
.y6b{bottom:519.713600pt;}
.y9b{bottom:519.717333pt;}
.y238{bottom:519.958667pt;}
.y263{bottom:519.990667pt;}
.y187{bottom:520.702267pt;}
.y2f2{bottom:521.458533pt;}
.y322{bottom:523.058533pt;}
.y215{bottom:523.465200pt;}
.yc7{bottom:523.493200pt;}
.yf4{bottom:523.497333pt;}
.y39{bottom:527.161867pt;}
.y28b{bottom:527.458667pt;}
.y2be{bottom:528.125200pt;}
.y1a8{bottom:528.980400pt;}
.y118{bottom:529.870400pt;}
.y1ee{bottom:530.717333pt;}
.y1d2{bottom:534.278400pt;}
.y6a{bottom:535.709600pt;}
.y9a{bottom:535.713333pt;}
.y237{bottom:535.954667pt;}
.y262{bottom:535.986667pt;}
.y2f1{bottom:536.125200pt;}
.y321{bottom:537.458533pt;}
.y186{bottom:537.918267pt;}
.y38{bottom:539.164533pt;}
.y161{bottom:539.255200pt;}
.y214{bottom:539.461200pt;}
.yc6{bottom:539.489200pt;}
.yf3{bottom:539.493333pt;}
.y4a{bottom:541.282000pt;}
.y28a{bottom:541.858667pt;}
.y2bd{bottom:542.258533pt;}
.y1a7{bottom:544.976400pt;}
.y117{bottom:545.866400pt;}
.y2f0{bottom:550.791867pt;}
.y37{bottom:551.167200pt;}
.y69{bottom:551.705600pt;}
.y99{bottom:551.709333pt;}
.y320{bottom:551.858533pt;}
.y49{bottom:551.904533pt;}
.y236{bottom:551.950667pt;}
.y261{bottom:551.982667pt;}
.y185{bottom:555.134267pt;}
.y213{bottom:555.457200pt;}
.yc5{bottom:555.485200pt;}
.yf2{bottom:555.489333pt;}
.y289{bottom:556.258667pt;}
.y2bc{bottom:556.391867pt;}
.y1d1{bottom:557.837467pt;}
.y15f{bottom:559.255200pt;}
.y1a6{bottom:560.972400pt;}
.y116{bottom:561.862400pt;}
.y36{bottom:564.140533pt;}
.y2ef{bottom:565.458533pt;}
.y31f{bottom:566.258533pt;}
.y68{bottom:567.701600pt;}
.y98{bottom:567.705333pt;}
.y235{bottom:567.946667pt;}
.y260{bottom:567.978667pt;}
.y184{bottom:568.467600pt;}
.y2bb{bottom:570.525200pt;}
.y288{bottom:570.658667pt;}
.y212{bottom:571.453200pt;}
.yc4{bottom:571.481200pt;}
.yf1{bottom:571.485333pt;}
.y8{bottom:573.786667pt;}
.y1d0{bottom:576.894133pt;}
.y1a5{bottom:576.968400pt;}
.y115{bottom:577.858400pt;}
.y15e{bottom:579.255200pt;}
.y2ee{bottom:580.125200pt;}
.y31e{bottom:580.658533pt;}
.y13b{bottom:580.751067pt;}
.y15b{bottom:582.583200pt;}
.y67{bottom:583.697600pt;}
.y97{bottom:583.701333pt;}
.y234{bottom:583.942667pt;}
.y25f{bottom:583.974667pt;}
.y2ba{bottom:584.658533pt;}
.y287{bottom:585.058667pt;}
.y183{bottom:585.683600pt;}
.y211{bottom:587.449200pt;}
.yc3{bottom:587.477200pt;}
.yf0{bottom:587.481333pt;}
.y1cf{bottom:590.227467pt;}
.y35{bottom:590.594667pt;}
.y7{bottom:592.685334pt;}
.y1a4{bottom:592.964400pt;}
.y114{bottom:593.854400pt;}
.y2ed{bottom:594.791867pt;}
.y31d{bottom:595.058533pt;}
.y15a{bottom:595.916533pt;}
.y2b9{bottom:598.791867pt;}
.y182{bottom:599.016933pt;}
.y15d{bottom:599.255200pt;}
.y286{bottom:599.458667pt;}
.y66{bottom:599.693600pt;}
.y96{bottom:599.697333pt;}
.y233{bottom:599.938667pt;}
.y25e{bottom:599.970667pt;}
.y34{bottom:602.297733pt;}
.y210{bottom:603.445200pt;}
.yc2{bottom:603.473200pt;}
.yef{bottom:603.477333pt;}
.y13a{bottom:604.307067pt;}
.y1ce{bottom:607.443467pt;}
.y2ec{bottom:609.458533pt;}
.y113{bottom:609.850400pt;}
.y2b8{bottom:612.925200pt;}
.y285{bottom:613.858667pt;}
.y33{bottom:614.000667pt;}
.y65{bottom:615.689600pt;}
.y95{bottom:615.693333pt;}
.y25d{bottom:615.966667pt;}
.y181{bottom:616.232933pt;}
.y1a3{bottom:616.523467pt;}
.y15c{bottom:619.255200pt;}
.y20f{bottom:619.441200pt;}
.yc1{bottom:619.469200pt;}
.yee{bottom:619.473333pt;}
.y139{bottom:620.345200pt;}
.y1cd{bottom:620.776800pt;}
.y31c{bottom:623.858533pt;}
.y2eb{bottom:624.125200pt;}
.y32{bottom:625.703733pt;}
.y112{bottom:625.846400pt;}
.y2b7{bottom:627.058533pt;}
.y232{bottom:627.277333pt;}
.y284{bottom:628.258667pt;}
.y64{bottom:631.685600pt;}
.y94{bottom:631.689333pt;}
.y25c{bottom:631.962667pt;}
.y180{bottom:633.448933pt;}
.y20e{bottom:635.437200pt;}
.yc0{bottom:635.465200pt;}
.yed{bottom:635.469333pt;}
.y31{bottom:637.406800pt;}
.y31b{bottom:638.258533pt;}
.y2ea{bottom:638.791867pt;}
.y159{bottom:639.244533pt;}
.y1cc{bottom:640.776800pt;}
.y2b6{bottom:641.191867pt;}
.y283{bottom:642.658667pt;}
.y138{bottom:643.901200pt;}
.y6{bottom:645.598667pt;}
.y17f{bottom:646.782267pt;}
.y63{bottom:647.681600pt;}
.y93{bottom:647.685333pt;}
.y25b{bottom:647.958667pt;}
.y111{bottom:649.405333pt;}
.y20d{bottom:651.433200pt;}
.ybf{bottom:651.461200pt;}
.yec{bottom:651.465333pt;}
.y31a{bottom:652.658533pt;}
.y2e9{bottom:653.458533pt;}
.y30{bottom:654.683733pt;}
.y2b5{bottom:655.325200pt;}
.y282{bottom:657.058667pt;}
.y158{bottom:659.244533pt;}
.y137{bottom:659.897200pt;}
.y1cb{bottom:660.776800pt;}
.y62{bottom:663.677600pt;}
.y92{bottom:663.681333pt;}
.y25a{bottom:663.954667pt;}
.y17e{bottom:663.998267pt;}
.y319{bottom:667.058533pt;}
.y20c{bottom:667.429200pt;}
.ybe{bottom:667.457200pt;}
.yeb{bottom:667.461333pt;}
.y2e8{bottom:668.125200pt;}
.y3{bottom:668.977329pt;}
.y2b4{bottom:669.458533pt;}
.y281{bottom:671.458667pt;}
.y2f{bottom:673.350400pt;}
.y136{bottom:675.893200pt;}
.y1ca{bottom:677.992800pt;}
.y157{bottom:679.244533pt;}
.y61{bottom:679.673600pt;}
.y91{bottom:679.677333pt;}
.y259{bottom:679.950667pt;}
.y154{bottom:680.577867pt;}
.y318{bottom:681.458533pt;}
.y2e7{bottom:682.791867pt;}
.y17d{bottom:683.103200pt;}
.y20b{bottom:683.425200pt;}
.ybd{bottom:683.453200pt;}
.yea{bottom:683.457333pt;}
.y2b3{bottom:683.591867pt;}
.y110{bottom:684.307067pt;}
.y280{bottom:685.858667pt;}
.y1c9{bottom:691.326133pt;}
.y135{bottom:691.889200pt;}
.y17c{bottom:693.599200pt;}
.y60{bottom:695.669600pt;}
.y90{bottom:695.673333pt;}
.y317{bottom:695.858533pt;}
.y258{bottom:695.946667pt;}
.y2e6{bottom:697.458533pt;}
.y2b2{bottom:697.725200pt;}
.y20a{bottom:699.433200pt;}
.ybc{bottom:699.449200pt;}
.ye9{bottom:699.453333pt;}
.y2e{bottom:699.474933pt;}
.y156{bottom:699.916533pt;}
.y27f{bottom:700.258667pt;}
.y10f{bottom:700.310000pt;}
.y134{bottom:707.885200pt;}
.y1c8{bottom:708.542133pt;}
.y316{bottom:710.258533pt;}
.y5f{bottom:711.665600pt;}
.y8f{bottom:711.669333pt;}
.y2b1{bottom:711.858533pt;}
.y257{bottom:711.942667pt;}
.y2e5{bottom:712.125200pt;}
.y209{bottom:715.429200pt;}
.ybb{bottom:715.445200pt;}
.ye8{bottom:715.449333pt;}
.y2d{bottom:715.476933pt;}
.y155{bottom:721.249867pt;}
.y1c7{bottom:721.875467pt;}
.y10e{bottom:723.866000pt;}
.y133{bottom:723.881200pt;}
.y315{bottom:724.658533pt;}
.y2b0{bottom:725.991867pt;}
.y27e{bottom:725.997200pt;}
.y2e4{bottom:726.791867pt;}
.y5e{bottom:727.661600pt;}
.y8e{bottom:727.665333pt;}
.y256{bottom:727.938667pt;}
.y17b{bottom:730.923467pt;}
.y208{bottom:731.425200pt;}
.yba{bottom:731.441200pt;}
.ye7{bottom:731.445333pt;}
.y314{bottom:739.058533pt;}
.y1c6{bottom:739.091467pt;}
.y10d{bottom:739.877200pt;}
.y2af{bottom:740.391867pt;}
.y2e3{bottom:741.458533pt;}
.y153{bottom:742.583200pt;}
.y5d{bottom:743.657600pt;}
.y8d{bottom:743.661333pt;}
.yb9{bottom:747.437200pt;}
.ye6{bottom:747.441333pt;}
.y1c5{bottom:752.424800pt;}
.y151{bottom:753.249867pt;}
.y313{bottom:753.725200pt;}
.y2ae{bottom:754.791867pt;}
.y255{bottom:755.277333pt;}
.y2e2{bottom:755.858533pt;}
.y132{bottom:755.873200pt;}
.y5c{bottom:759.653600pt;}
.y8c{bottom:759.657333pt;}
.yb8{bottom:763.433200pt;}
.ye5{bottom:763.437333pt;}
.y152{bottom:763.916533pt;}
.y27d{bottom:766.145067pt;}
.y312{bottom:768.391867pt;}
.y2ad{bottom:769.191867pt;}
.y2e1{bottom:769.991867pt;}
.y1c4{bottom:771.528800pt;}
.y131{bottom:771.869200pt;}
.y2c{bottom:774.803200pt;}
.y5b{bottom:775.649600pt;}
.y8b{bottom:775.653333pt;}
.yb7{bottom:779.429200pt;}
.ye4{bottom:779.433333pt;}
.y2{bottom:781.661334pt;}
.y1c3{bottom:782.024800pt;}
.y27c{bottom:782.141067pt;}
.y311{bottom:783.058533pt;}
.y2ac{bottom:783.591867pt;}
.y2e0{bottom:784.125200pt;}
.y150{bottom:785.079200pt;}
.y5a{bottom:791.645600pt;}
.y8a{bottom:791.649333pt;}
.y2b{bottom:792.198933pt;}
.yb6{bottom:795.425200pt;}
.ye3{bottom:795.429333pt;}
.y50{bottom:797.365200pt;}
.y310{bottom:797.725200pt;}
.y2ab{bottom:797.991867pt;}
.y2df{bottom:798.258533pt;}
.y59{bottom:807.641600pt;}
.y89{bottom:807.645333pt;}
.y2a{bottom:809.462933pt;}
.y27b{bottom:809.479733pt;}
.yb5{bottom:811.421200pt;}
.ye2{bottom:811.425333pt;}
.y14f{bottom:811.906533pt;}
.y1ed{bottom:812.391867pt;}
.y4f{bottom:814.559067pt;}
.y29{bottom:825.600267pt;}
.y28{bottom:841.737600pt;}
.y58{bottom:844.017333pt;}
.y88{bottom:846.005200pt;}
.y1{bottom:859.312000pt;}
.y27{bottom:867.070800pt;}
.h11{height:21.054688pt;}
.he{height:22.720000pt;}
.hc{height:22.752000pt;}
.ha{height:24.031250pt;}
.h16{height:24.062500pt;}
.h12{height:24.153792pt;}
.hd{height:24.648000pt;}
.h1c{height:25.648533pt;}
.h14{height:26.133333pt;}
.h15{height:28.035925pt;}
.hb{height:28.036458pt;}
.h13{height:28.072917pt;}
.h7{height:28.560000pt;}
.h20{height:32.041667pt;}
.h24{height:32.083333pt;}
.h25{height:33.347344pt;}
.h1b{height:33.600000pt;}
.h1f{height:34.044271pt;}
.h1e{height:34.088542pt;}
.h19{height:36.046875pt;}
.h29{height:36.061750pt;}
.h1a{height:36.093750pt;}
.h22{height:38.107517pt;}
.h10{height:38.111783pt;}
.hf{height:39.867188pt;}
.h1d{height:40.104167pt;}
.h6{height:40.800000pt;}
.h26{height:42.702313pt;}
.h3{height:42.840000pt;}
.h27{height:42.878313pt;}
.h18{height:44.114583pt;}
.h17{height:45.499067pt;}
.h2{height:48.960000pt;}
.h23{height:58.708333pt;}
.h5{height:69.360000pt;}
.h21{height:74.025667pt;}
.h28{height:74.067333pt;}
.h4{height:105.826671pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:634.666667pt;}
.w3{width:634.960000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:68.031467pt;}
.x16{left:72.307333pt;}
.x5{left:75.940933pt;}
.xc{left:79.370000pt;}
.xe{left:83.164533pt;}
.x11{left:86.931467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1b{left:109.677600pt;}
.x19{left:116.955867pt;}
.x12{left:118.672000pt;}
.x17{left:124.515067pt;}
.x14{left:136.252800pt;}
.x4{left:180.874667pt;}
.x13{left:202.458667pt;}
.xf{left:216.431600pt;}
.xd{left:230.547200pt;}
.x1c{left:257.773600pt;}
.x15{left:268.348800pt;}
.x1a{left:271.185200pt;}
.x18{left:278.744400pt;}
.x3{left:404.408000pt;}
.xb{left:421.319600pt;}
.x6{left:442.251600pt;}
.x1d{left:493.074267pt;}
.xa{left:500.606267pt;}
.x8{left:519.577600pt;}
.x9{left:532.499600pt;}
.x7{left:539.580267pt;}
}




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