
    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_f6f1469e70973a5a2269588f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_06a7211b92a9916b64f0abe3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d9a4f2652a287f14c56518c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_5aa7c2265e0dbff0fc7c8b65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_c0ab6087dda2212c783bc49b.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_5a2e477a82b793c27db3737d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_8f88354c74e9bb98d59e14ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_e072a4de82ffa381f6783b2a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_e74658360a028e3a8dba19c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9d9a4f2652a287f14c56518c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_97635d04cfb7a67b135d0c13.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707031;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_c5c734a938c4eea10a21ace4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_019c9eb4f555d06aba0fc5f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_06a7211b92a9916b64f0abe3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9d9a4f2652a287f14c56518c.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;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_5aa7c2265e0dbff0fc7c8b65.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_bce916333ff6d278bb00d5d3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_06a7211b92a9916b64f0abe3.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9d9a4f2652a287f14c56518c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.904000;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:ff14;src:url('chunks/assets/font_5aa7c2265e0dbff0fc7c8b65.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.912000;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:ff15;src:url('chunks/assets/font_06a7211b92a9916b64f0abe3.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_9d9a4f2652a287f14c56518c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.904000;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:ff17;src:url('chunks/assets/font_5aa7c2265e0dbff0fc7c8b65.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912000;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:ff18;src:url('chunks/assets/font_108b33ef8c0737795fd7e164.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.941000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:26.975400px;}
.v1{vertical-align:29.700000px;}
.ls5{letter-spacing:-1.776000px;}
.ls9{letter-spacing:-1.080600px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000552px;}
.lsa{letter-spacing:0.449550px;}
.ls8{letter-spacing:0.595800px;}
.ls7{letter-spacing:0.900000px;}
.ls0{letter-spacing:3.780000px;}
.ls2{letter-spacing:17.200200px;}
.ls3{letter-spacing:24.492000px;}
.ls6{letter-spacing:1661.133600px;}
.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;}
}
.ws3{word-spacing:-20.460000px;}
.ws39{word-spacing:-15.600000px;}
.ws7{word-spacing:-15.012000px;}
.ws4{word-spacing:-14.400000px;}
.ws5{word-spacing:-12.960000px;}
.ws10c{word-spacing:-12.959550px;}
.ws10a{word-spacing:-12.510000px;}
.ws10b{word-spacing:-12.374550px;}
.ws0{word-spacing:-12.164724px;}
.wsa{word-spacing:-11.520480px;}
.ws2{word-spacing:-11.520000px;}
.ws6{word-spacing:-10.342800px;}
.wsc8{word-spacing:-8.262000px;}
.ws98{word-spacing:-8.099400px;}
.ws1{word-spacing:-7.637760px;}
.wsbd{word-spacing:-6.780600px;}
.ws101{word-spacing:-6.240000px;}
.ws5f{word-spacing:-6.060000px;}
.wsa2{word-spacing:-5.040000px;}
.ws4d{word-spacing:-4.320600px;}
.ws40{word-spacing:-4.200600px;}
.wse7{word-spacing:-3.420600px;}
.ws63{word-spacing:-3.059400px;}
.ws65{word-spacing:-3.000000px;}
.wsef{word-spacing:-2.820000px;}
.ws94{word-spacing:-2.760600px;}
.ws12{word-spacing:-2.700000px;}
.ws3e{word-spacing:-2.580000px;}
.wsb4{word-spacing:-2.220000px;}
.ws49{word-spacing:-2.100000px;}
.ws67{word-spacing:-2.040000px;}
.ws54{word-spacing:-1.920000px;}
.wsa4{word-spacing:-1.800000px;}
.wsb{word-spacing:-1.776000px;}
.ws9e{word-spacing:-1.740600px;}
.wsea{word-spacing:-1.680000px;}
.ws32{word-spacing:-1.620000px;}
.ws55{word-spacing:-1.560000px;}
.ws37{word-spacing:-1.512000px;}
.ws5b{word-spacing:-1.499400px;}
.ws104{word-spacing:-1.440000px;}
.ws3a{word-spacing:-1.379400px;}
.ws97{word-spacing:-1.320000px;}
.ws82{word-spacing:-1.140000px;}
.wsb6{word-spacing:-1.020000px;}
.wsdb{word-spacing:-0.960600px;}
.ws105{word-spacing:-0.954720px;}
.ws85{word-spacing:-0.900000px;}
.wsf7{word-spacing:-0.780000px;}
.ws80{word-spacing:-0.719400px;}
.ws23{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.480000px;}
.wsc2{word-spacing:-0.420000px;}
.wsc{word-spacing:-0.384000px;}
.ws57{word-spacing:-0.360000px;}
.ws108{word-spacing:-0.300000px;}
.ws27{word-spacing:-0.240000px;}
.ws8{word-spacing:0.000000px;}
.ws4f{word-spacing:0.060600px;}
.wsdf{word-spacing:0.120000px;}
.wsf6{word-spacing:0.180600px;}
.ws71{word-spacing:0.240000px;}
.ws4e{word-spacing:0.300000px;}
.ws33{word-spacing:0.324000px;}
.ws3f{word-spacing:0.360000px;}
.ws2e{word-spacing:0.378000px;}
.ws43{word-spacing:0.480000px;}
.ws86{word-spacing:0.540000px;}
.ws99{word-spacing:0.660000px;}
.ws34{word-spacing:0.810000px;}
.wscd{word-spacing:0.840600px;}
.ws13{word-spacing:0.900000px;}
.wse8{word-spacing:0.960600px;}
.wsec{word-spacing:1.020000px;}
.wsb7{word-spacing:1.080600px;}
.wsee{word-spacing:1.260000px;}
.ws42{word-spacing:1.379400px;}
.ws21{word-spacing:1.440000px;}
.ws38{word-spacing:1.457460px;}
.wsfb{word-spacing:1.499400px;}
.wsae{word-spacing:1.680000px;}
.ws16{word-spacing:1.740600px;}
.ws9{word-spacing:1.776000px;}
.ws58{word-spacing:1.800000px;}
.ws76{word-spacing:1.860600px;}
.ws4b{word-spacing:1.920000px;}
.wse4{word-spacing:1.980000px;}
.ws46{word-spacing:2.040000px;}
.ws7f{word-spacing:2.100000px;}
.wsad{word-spacing:2.160000px;}
.ws36{word-spacing:2.268540px;}
.ws77{word-spacing:2.340000px;}
.wsc3{word-spacing:2.460000px;}
.wsaa{word-spacing:2.580000px;}
.ws81{word-spacing:2.640600px;}
.wsbe{word-spacing:2.700000px;}
.ws7d{word-spacing:2.760600px;}
.ws84{word-spacing:2.820000px;}
.wsb5{word-spacing:2.940000px;}
.ws95{word-spacing:3.000000px;}
.ws9d{word-spacing:3.120000px;}
.ws2a{word-spacing:3.179400px;}
.wsb0{word-spacing:3.240000px;}
.ws5e{word-spacing:3.299400px;}
.ws45{word-spacing:3.480000px;}
.wsf{word-spacing:3.600000px;}
.ws8f{word-spacing:3.660000px;}
.ws3c{word-spacing:3.720000px;}
.ws22{word-spacing:3.900000px;}
.ws1b{word-spacing:3.959400px;}
.wsd3{word-spacing:4.020000px;}
.ws96{word-spacing:4.079400px;}
.ws70{word-spacing:4.260000px;}
.wsbf{word-spacing:4.440600px;}
.wsab{word-spacing:4.560000px;}
.ws109{word-spacing:4.620000px;}
.ws102{word-spacing:4.680000px;}
.wsa0{word-spacing:4.739400px;}
.ws20{word-spacing:4.800000px;}
.ws35{word-spacing:4.914000px;}
.ws50{word-spacing:4.920000px;}
.wsf3{word-spacing:4.979400px;}
.wsbc{word-spacing:5.040000px;}
.ws89{word-spacing:5.280000px;}
.ws9b{word-spacing:5.340000px;}
.ws7e{word-spacing:5.400000px;}
.wse9{word-spacing:5.460000px;}
.ws2f{word-spacing:5.508540px;}
.ws7a{word-spacing:5.639400px;}
.wsca{word-spacing:5.759400px;}
.wsfc{word-spacing:5.820000px;}
.ws56{word-spacing:5.880600px;}
.wsd9{word-spacing:5.940000px;}
.ws2d{word-spacing:6.048000px;}
.ws3b{word-spacing:6.060000px;}
.wsc5{word-spacing:6.120600px;}
.ws5a{word-spacing:6.180000px;}
.ws5c{word-spacing:6.360000px;}
.ws11{word-spacing:6.539400px;}
.ws41{word-spacing:6.600000px;}
.wsf9{word-spacing:6.659400px;}
.wsc0{word-spacing:6.720000px;}
.ws1f{word-spacing:6.780600px;}
.ws6b{word-spacing:6.840000px;}
.ws30{word-spacing:6.858000px;}
.wsf5{word-spacing:7.020000px;}
.wsb2{word-spacing:7.080000px;}
.ws68{word-spacing:7.140000px;}
.ws51{word-spacing:7.260000px;}
.wsb3{word-spacing:7.380000px;}
.wse5{word-spacing:7.439400px;}
.wse0{word-spacing:7.560600px;}
.wsed{word-spacing:7.620000px;}
.ws47{word-spacing:7.680600px;}
.wsfd{word-spacing:7.740000px;}
.wsce{word-spacing:7.800000px;}
.ws4c{word-spacing:7.920000px;}
.ws14{word-spacing:7.980000px;}
.ws3d{word-spacing:8.040000px;}
.wsa8{word-spacing:8.099400px;}
.ws8d{word-spacing:8.160000px;}
.wsb8{word-spacing:8.280000px;}
.ws9a{word-spacing:8.340600px;}
.ws75{word-spacing:8.460600px;}
.ws6c{word-spacing:8.580600px;}
.ws107{word-spacing:8.640000px;}
.wsde{word-spacing:8.760000px;}
.wsaf{word-spacing:8.820000px;}
.ws59{word-spacing:8.940000px;}
.wse1{word-spacing:9.060000px;}
.ws25{word-spacing:9.119400px;}
.ws62{word-spacing:9.180000px;}
.ws6d{word-spacing:9.420000px;}
.wsa6{word-spacing:9.480000px;}
.ws83{word-spacing:9.660000px;}
.ws61{word-spacing:9.720000px;}
.wscc{word-spacing:9.779400px;}
.ws19{word-spacing:9.840000px;}
.ws78{word-spacing:9.899400px;}
.wsa7{word-spacing:9.960000px;}
.wse6{word-spacing:10.020600px;}
.wsfa{word-spacing:10.080000px;}
.wsd4{word-spacing:10.200000px;}
.wsa5{word-spacing:10.260600px;}
.ws106{word-spacing:10.320000px;}
.ws17{word-spacing:10.440000px;}
.ws60{word-spacing:10.500000px;}
.wsf1{word-spacing:10.502318px;}
.wsdd{word-spacing:10.620000px;}
.wsb1{word-spacing:10.679400px;}
.ws2c{word-spacing:10.692000px;}
.ws64{word-spacing:10.740000px;}
.wsf2{word-spacing:10.860000px;}
.wsc4{word-spacing:10.920600px;}
.wsc6{word-spacing:11.100000px;}
.wse3{word-spacing:11.160000px;}
.ws6a{word-spacing:11.280000px;}
.wsff{word-spacing:11.400000px;}
.ws1a{word-spacing:11.640000px;}
.ws73{word-spacing:11.880000px;}
.ws72{word-spacing:12.060000px;}
.ws9c{word-spacing:12.359400px;}
.wseb{word-spacing:12.420000px;}
.ws103{word-spacing:12.479400px;}
.ws7b{word-spacing:12.780000px;}
.wsd8{word-spacing:13.080000px;}
.ws7c{word-spacing:13.139400px;}
.ws18{word-spacing:13.259400px;}
.ws24{word-spacing:13.560000px;}
.wscb{word-spacing:13.980000px;}
.wsdc{word-spacing:14.039400px;}
.wsd2{word-spacing:14.100000px;}
.wsc7{word-spacing:14.220000px;}
.wsf8{word-spacing:14.280600px;}
.wsf4{word-spacing:14.340000px;}
.ws93{word-spacing:14.460000px;}
.ws66{word-spacing:14.580000px;}
.ws31{word-spacing:14.904000px;}
.wsa9{word-spacing:15.180600px;}
.ws1d{word-spacing:15.360000px;}
.ws26{word-spacing:15.660000px;}
.wsda{word-spacing:15.780000px;}
.wsf0{word-spacing:15.840600px;}
.ws100{word-spacing:15.900000px;}
.ws74{word-spacing:16.020000px;}
.ws48{word-spacing:16.080600px;}
.ws10{word-spacing:16.740600px;}
.wsc1{word-spacing:16.800000px;}
.wsd1{word-spacing:16.860600px;}
.ws91{word-spacing:17.279400px;}
.wsfe{word-spacing:17.340000px;}
.wsa3{word-spacing:17.460000px;}
.ws8b{word-spacing:17.520600px;}
.ws44{word-spacing:17.760600px;}
.ws87{word-spacing:18.059400px;}
.wsd0{word-spacing:18.120000px;}
.ws69{word-spacing:18.240000px;}
.ws6e{word-spacing:18.299400px;}
.ws88{word-spacing:18.720000px;}
.ws6f{word-spacing:18.959400px;}
.ws8a{word-spacing:19.020000px;}
.wsbb{word-spacing:19.079400px;}
.ws15{word-spacing:19.200600px;}
.ws5d{word-spacing:19.739400px;}
.ws8e{word-spacing:19.800000px;}
.ws1e{word-spacing:19.979400px;}
.ws79{word-spacing:20.040000px;}
.wsd7{word-spacing:20.280000px;}
.ws90{word-spacing:20.520000px;}
.wsa1{word-spacing:21.480000px;}
.wse2{word-spacing:22.020000px;}
.ws4a{word-spacing:22.920000px;}
.wsd5{word-spacing:23.400000px;}
.ws52{word-spacing:23.520000px;}
.wsd{word-spacing:24.060000px;}
.wsc9{word-spacing:24.119400px;}
.wsba{word-spacing:24.899400px;}
.ws29{word-spacing:24.960000px;}
.ws8c{word-spacing:25.559400px;}
.ws1c{word-spacing:26.940600px;}
.wsb9{word-spacing:27.239400px;}
.ws9f{word-spacing:27.960000px;}
.wscf{word-spacing:28.080000px;}
.wsd6{word-spacing:33.000000px;}
.wse{word-spacing:35.580000px;}
.ws28{word-spacing:36.360000px;}
.wsac{word-spacing:41.220000px;}
.ws2b{word-spacing:41.364540px;}
.ws92{word-spacing:50.520000px;}
._d{margin-left:-2911.406760px;}
._c{margin-left:-1779.892380px;}
._b{margin-left:-59.040000px;}
._4{margin-left:-47.970000px;}
._f{margin-left:-22.820400px;}
._11{margin-left:-20.518200px;}
._13{margin-left:-14.881200px;}
._34{margin-left:-13.500000px;}
._6{margin-left:-11.520000px;}
._e{margin-left:-9.475200px;}
._2{margin-left:-7.335696px;}
._0{margin-left:-6.192000px;}
._a{margin-left:-4.779600px;}
._3{margin-left:-3.552000px;}
._1{margin-left:-1.776000px;}
._5{width:1.334400px;}
._7{width:2.683200px;}
._10{width:8.698800px;}
._8{width:11.520480px;}
._32{width:13.104000px;}
._9{width:14.649600px;}
._37{width:19.397250px;}
._33{width:20.610000px;}
._35{width:25.155000px;}
._2c{width:27.540000px;}
._36{width:32.985000px;}
._12{width:38.016000px;}
._14{width:39.186000px;}
._31{width:57.564000px;}
._28{width:87.588000px;}
._2d{width:91.800000px;}
._2b{width:97.794000px;}
._18{width:108.540000px;}
._2f{width:121.824000px;}
._27{width:127.818000px;}
._26{width:131.922000px;}
._2a{width:151.794000px;}
._1b{width:153.576000px;}
._2e{width:155.628000px;}
._17{width:175.716000px;}
._20{width:177.606000px;}
._25{width:187.704000px;}
._29{width:197.910000px;}
._23{width:205.740000px;}
._19{width:211.734000px;}
._1c{width:229.554000px;}
._1f{width:241.812000px;}
._21{width:247.806000px;}
._1d{width:274.590000px;}
._16{width:320.652000px;}
._30{width:325.620000px;}
._1a{width:417.582000px;}
._15{width:477.900000px;}
._1e{width:493.614000px;}
._22{width:517.842000px;}
._24{width:525.906000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs6{font-size:31.824000px;}
.fs5{font-size:39.000000px;}
.fs8{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fs9{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.y1f4{bottom:81.571350px;}
.ycb{bottom:81.601350px;}
.y115{bottom:81.602550px;}
.y7c{bottom:81.604650px;}
.y64{bottom:81.610800px;}
.y1a6{bottom:81.611550px;}
.y12b{bottom:81.617550px;}
.y2e{bottom:81.637800px;}
.y149{bottom:81.643200px;}
.y228{bottom:81.702600px;}
.y166{bottom:81.733200px;}
.y1cb{bottom:82.151700px;}
.yff{bottom:82.201350px;}
.y181{bottom:90.951300px;}
.y227{bottom:94.448850px;}
.y2d{bottom:96.637800px;}
.y1f3{bottom:99.571350px;}
.yca{bottom:99.601350px;}
.y114{bottom:99.602550px;}
.y7b{bottom:99.604650px;}
.y63{bottom:99.610800px;}
.y1a5{bottom:99.611550px;}
.y12a{bottom:99.617550px;}
.y148{bottom:99.643200px;}
.y165{bottom:99.883200px;}
.yfe{bottom:100.336350px;}
.y1ca{bottom:100.511700px;}
.y226{bottom:107.195100px;}
.y180{bottom:111.093300px;}
.y1f2{bottom:117.571350px;}
.yc9{bottom:117.601350px;}
.y113{bottom:117.602550px;}
.y7a{bottom:117.604650px;}
.y62{bottom:117.610800px;}
.y1a4{bottom:117.611550px;}
.y129{bottom:117.617550px;}
.y147{bottom:117.643200px;}
.y164{bottom:118.033200px;}
.yfd{bottom:118.471350px;}
.y1c9{bottom:118.871700px;}
.y225{bottom:119.941350px;}
.y2c{bottom:125.137800px;}
.y224{bottom:132.687600px;}
.y17f{bottom:132.733800px;}
.y1f1{bottom:135.571350px;}
.yc8{bottom:135.601350px;}
.y79{bottom:135.604650px;}
.y61{bottom:135.610800px;}
.y1a3{bottom:135.611550px;}
.y128{bottom:135.617550px;}
.y146{bottom:135.643200px;}
.y163{bottom:136.183200px;}
.yfc{bottom:136.606350px;}
.y1c8{bottom:137.231700px;}
.y2b{bottom:140.137800px;}
.y223{bottom:145.433850px;}
.y112{bottom:149.102550px;}
.y1f0{bottom:153.571350px;}
.yc7{bottom:153.601350px;}
.y78{bottom:153.604650px;}
.y60{bottom:153.610800px;}
.y1a2{bottom:153.611550px;}
.y127{bottom:153.617550px;}
.y145{bottom:153.643200px;}
.y162{bottom:154.333200px;}
.y17e{bottom:154.374300px;}
.y1c7{bottom:155.591700px;}
.y222{bottom:158.180100px;}
.y2a{bottom:160.537800px;}
.y111{bottom:167.102550px;}
.y29{bottom:170.137800px;}
.y221{bottom:170.926350px;}
.y1ef{bottom:171.571350px;}
.yc6{bottom:171.601350px;}
.y77{bottom:171.604650px;}
.y5f{bottom:171.610800px;}
.y1a1{bottom:171.611550px;}
.y126{bottom:171.617550px;}
.y144{bottom:171.643200px;}
.y161{bottom:172.483200px;}
.y1c6{bottom:173.951700px;}
.y17d{bottom:176.014800px;}
.y220{bottom:183.672600px;}
.y110{bottom:185.102550px;}
.y28{bottom:185.137800px;}
.yfb{bottom:185.191350px;}
.y1ee{bottom:189.571350px;}
.yc5{bottom:189.601350px;}
.y76{bottom:189.604650px;}
.y5e{bottom:189.610800px;}
.y1a0{bottom:189.611550px;}
.y125{bottom:189.617550px;}
.y143{bottom:189.643200px;}
.y160{bottom:190.633200px;}
.y1c5{bottom:192.311700px;}
.y17c{bottom:196.156800px;}
.y21f{bottom:196.418850px;}
.y10f{bottom:203.102550px;}
.yfa{bottom:203.326350px;}
.y27{bottom:205.537800px;}
.y1ed{bottom:207.571350px;}
.yc4{bottom:207.601350px;}
.y75{bottom:207.604650px;}
.y5d{bottom:207.610800px;}
.y19f{bottom:207.611550px;}
.y124{bottom:207.617550px;}
.y15f{bottom:208.783200px;}
.y21e{bottom:209.165100px;}
.y1c4{bottom:210.671700px;}
.y26{bottom:215.137800px;}
.y177{bottom:220.794300px;}
.y10e{bottom:221.102550px;}
.yf9{bottom:221.461350px;}
.y21d{bottom:221.911350px;}
.y1ec{bottom:225.571350px;}
.yc3{bottom:225.601350px;}
.y74{bottom:225.604650px;}
.y5c{bottom:225.610800px;}
.y19e{bottom:225.611550px;}
.y123{bottom:225.617550px;}
.y142{bottom:225.748200px;}
.y15e{bottom:226.933200px;}
.y1c3{bottom:229.031700px;}
.y25{bottom:230.137800px;}
.y21c{bottom:234.657600px;}
.y17b{bottom:236.994300px;}
.yf8{bottom:239.596350px;}
.y1eb{bottom:243.571350px;}
.yc2{bottom:243.601350px;}
.y73{bottom:243.604650px;}
.y19d{bottom:243.611550px;}
.y122{bottom:243.617550px;}
.y141{bottom:243.748200px;}
.y15d{bottom:245.083200px;}
.y24{bottom:245.137800px;}
.y1c2{bottom:247.391700px;}
.y21b{bottom:247.403850px;}
.y10d{bottom:252.602550px;}
.y17a{bottom:253.194300px;}
.y21a{bottom:260.150100px;}
.y1ea{bottom:261.571350px;}
.yc1{bottom:261.601350px;}
.y72{bottom:261.604650px;}
.y19c{bottom:261.611550px;}
.y121{bottom:261.617550px;}
.y140{bottom:261.748200px;}
.y15c{bottom:263.233200px;}
.y23{bottom:265.537800px;}
.y1c1{bottom:265.751700px;}
.y179{bottom:269.394300px;}
.y10c{bottom:270.602550px;}
.y219{bottom:272.896350px;}
.y22{bottom:275.137800px;}
.y1e9{bottom:279.571350px;}
.yc0{bottom:279.601350px;}
.y71{bottom:279.604650px;}
.y19b{bottom:279.611550px;}
.y120{bottom:279.617550px;}
.y13f{bottom:279.748200px;}
.y5b{bottom:280.951800px;}
.y1c0{bottom:284.111700px;}
.y218{bottom:285.642600px;}
.yf7{bottom:288.181350px;}
.y10b{bottom:288.602550px;}
.y21{bottom:290.137800px;}
.y178{bottom:291.034800px;}
.y5a{bottom:297.448800px;}
.y1e8{bottom:297.571350px;}
.ybf{bottom:297.601350px;}
.y70{bottom:297.604650px;}
.y19a{bottom:297.611550px;}
.y11f{bottom:297.617550px;}
.y13e{bottom:297.748200px;}
.y217{bottom:298.388850px;}
.y1bf{bottom:302.471700px;}
.y15b{bottom:302.818200px;}
.yf6{bottom:306.316350px;}
.y20{bottom:310.537800px;}
.y216{bottom:311.135100px;}
.y176{bottom:313.050000px;}
.y59{bottom:313.945800px;}
.y1e7{bottom:315.571350px;}
.ybe{bottom:315.601350px;}
.y6f{bottom:315.610800px;}
.y199{bottom:315.611550px;}
.y11e{bottom:315.617550px;}
.y13d{bottom:315.748200px;}
.y10a{bottom:320.102550px;}
.y1f{bottom:320.137800px;}
.y1be{bottom:320.831700px;}
.y15a{bottom:320.968200px;}
.y215{bottom:323.881350px;}
.yf5{bottom:324.451350px;}
.y175{bottom:329.547000px;}
.y58{bottom:330.442800px;}
.y1e6{bottom:333.571350px;}
.ybd{bottom:333.601350px;}
.y6e{bottom:333.610800px;}
.y198{bottom:333.611550px;}
.y11d{bottom:333.617550px;}
.y13c{bottom:333.748200px;}
.y1e{bottom:335.137800px;}
.y214{bottom:336.627600px;}
.y109{bottom:338.102550px;}
.y159{bottom:339.118200px;}
.y1bd{bottom:339.191700px;}
.yf4{bottom:342.586350px;}
.y57{bottom:346.939800px;}
.y213{bottom:349.373850px;}
.y1d{bottom:350.137800px;}
.y1e5{bottom:351.571350px;}
.ybc{bottom:351.601350px;}
.y6d{bottom:351.610800px;}
.y197{bottom:351.611550px;}
.y108{bottom:356.102550px;}
.y158{bottom:357.268200px;}
.y1bc{bottom:357.551700px;}
.yf3{bottom:360.721350px;}
.y212{bottom:362.120100px;}
.y172{bottom:362.422500px;}
.y16e{bottom:362.437500px;}
.y56{bottom:363.436800px;}
.y1e4{bottom:369.571350px;}
.ybb{bottom:369.601350px;}
.y6c{bottom:369.610800px;}
.y196{bottom:369.611550px;}
.y1c{bottom:370.537800px;}
.y107{bottom:374.102550px;}
.y211{bottom:374.866350px;}
.y157{bottom:375.418200px;}
.y1bb{bottom:375.911700px;}
.yf2{bottom:378.856350px;}
.y55{bottom:379.933800px;}
.y1b{bottom:380.137800px;}
.y171{bottom:380.422500px;}
.y16d{bottom:380.437500px;}
.y92{bottom:381.281685px;}
.y1e3{bottom:387.571350px;}
.yba{bottom:387.601350px;}
.y6b{bottom:387.610800px;}
.y195{bottom:387.611550px;}
.y210{bottom:387.612600px;}
.y11c{bottom:390.137550px;}
.y106{bottom:392.102550px;}
.y156{bottom:393.568200px;}
.y1ba{bottom:394.271700px;}
.y1a{bottom:395.137800px;}
.y13b{bottom:395.518200px;}
.y54{bottom:396.430800px;}
.yf1{bottom:396.991350px;}
.y170{bottom:398.422500px;}
.y16c{bottom:398.437500px;}
.y20f{bottom:400.358850px;}
.y1e2{bottom:405.571350px;}
.yb9{bottom:405.601350px;}
.y6a{bottom:405.610800px;}
.y194{bottom:405.611550px;}
.y11b{bottom:408.137550px;}
.y105{bottom:410.102550px;}
.y19{bottom:410.137800px;}
.y155{bottom:411.718200px;}
.y1b9{bottom:412.631700px;}
.y53{bottom:412.927800px;}
.y20e{bottom:413.105100px;}
.y13a{bottom:413.518200px;}
.yf0{bottom:415.126350px;}
.y16f{bottom:416.422500px;}
.y16b{bottom:416.437500px;}
.y1e1{bottom:423.571350px;}
.yb8{bottom:423.601350px;}
.y69{bottom:423.610800px;}
.y193{bottom:423.611550px;}
.y20d{bottom:425.851350px;}
.y11a{bottom:426.137550px;}
.y104{bottom:428.102550px;}
.y52{bottom:429.424800px;}
.y154{bottom:429.868200px;}
.y18{bottom:430.537800px;}
.y1b8{bottom:430.991700px;}
.y139{bottom:431.518200px;}
.yef{bottom:433.261350px;}
.y16a{bottom:434.437500px;}
.y20c{bottom:438.601350px;}
.y1e0{bottom:441.571350px;}
.yb7{bottom:441.601350px;}
.y68{bottom:441.610800px;}
.y192{bottom:441.611550px;}
.y119{bottom:444.137550px;}
.y34{bottom:444.205650px;}
.y51{bottom:445.921800px;}
.y153{bottom:448.018200px;}
.y1b7{bottom:449.351700px;}
.y138{bottom:449.518200px;}
.yee{bottom:451.396350px;}
.y169{bottom:452.437500px;}
.y33{bottom:458.605650px;}
.y1df{bottom:459.571350px;}
.yb6{bottom:459.601350px;}
.y103{bottom:459.602550px;}
.y67{bottom:459.610800px;}
.y191{bottom:459.611550px;}
.y118{bottom:462.137550px;}
.y50{bottom:462.418800px;}
.y152{bottom:466.168200px;}
.y137{bottom:467.518200px;}
.y1b6{bottom:467.711700px;}
.yed{bottom:469.531350px;}
.y168{bottom:470.437500px;}
.y32{bottom:473.005650px;}
.y1de{bottom:477.571350px;}
.y102{bottom:477.602550px;}
.y66{bottom:477.610800px;}
.y190{bottom:477.611550px;}
.y4f{bottom:478.915800px;}
.y151{bottom:484.318200px;}
.y136{bottom:485.518200px;}
.y1b5{bottom:486.071700px;}
.y31{bottom:487.405650px;}
.yec{bottom:487.666350px;}
.y4e{bottom:495.412800px;}
.y1dd{bottom:495.571350px;}
.y101{bottom:495.602550px;}
.y65{bottom:495.610800px;}
.y18f{bottom:495.611550px;}
.y117{bottom:496.082550px;}
.y30{bottom:501.805650px;}
.y150{bottom:502.468200px;}
.y20b{bottom:503.371350px;}
.y135{bottom:503.518200px;}
.y1b4{bottom:504.431700px;}
.yeb{bottom:505.801350px;}
.y4d{bottom:511.909800px;}
.yb5{bottom:513.571350px;}
.y100{bottom:513.602550px;}
.y18e{bottom:513.611550px;}
.y116{bottom:514.082550px;}
.y174{bottom:515.137350px;}
.y2f{bottom:516.205650px;}
.y20a{bottom:517.771350px;}
.y14f{bottom:520.618200px;}
.y134{bottom:521.518200px;}
.y1b3{bottom:522.791700px;}
.yea{bottom:523.936350px;}
.y4c{bottom:528.406800px;}
.y173{bottom:531.337350px;}
.yb4{bottom:531.571350px;}
.y18d{bottom:531.611550px;}
.y209{bottom:532.171350px;}
.y14e{bottom:538.768200px;}
.y133{bottom:539.518200px;}
.y1b2{bottom:541.151700px;}
.ye9{bottom:542.071350px;}
.y4b{bottom:544.903800px;}
.y208{bottom:546.571350px;}
.yb3{bottom:549.571350px;}
.y18c{bottom:549.611550px;}
.y91{bottom:553.615350px;}
.y14d{bottom:556.918200px;}
.y132{bottom:557.518200px;}
.y12d{bottom:558.242400px;}
.y1b1{bottom:559.511700px;}
.ye8{bottom:560.206350px;}
.y207{bottom:560.971350px;}
.y4a{bottom:561.400800px;}
.yb2{bottom:567.571350px;}
.y18b{bottom:567.611550px;}
.y90{bottom:570.112350px;}
.y12c{bottom:574.442400px;}
.y14c{bottom:575.068200px;}
.y206{bottom:575.371350px;}
.y131{bottom:575.518200px;}
.y1b0{bottom:577.871700px;}
.y49{bottom:577.897800px;}
.ye7{bottom:578.341350px;}
.yb1{bottom:585.571350px;}
.y8f{bottom:586.609350px;}
.y14b{bottom:593.218200px;}
.y130{bottom:593.518200px;}
.y48{bottom:594.394800px;}
.y205{bottom:595.771350px;}
.y1af{bottom:596.231700px;}
.ye6{bottom:596.476350px;}
.y18a{bottom:599.111550px;}
.y8e{bottom:603.115350px;}
.yb0{bottom:603.571350px;}
.y204{bottom:610.171350px;}
.y47{bottom:610.891800px;}
.y14a{bottom:611.368200px;}
.y12f{bottom:611.518200px;}
.y1ae{bottom:614.591700px;}
.ye5{bottom:614.611350px;}
.y189{bottom:617.111550px;}
.y8d{bottom:619.612350px;}
.yaf{bottom:621.571350px;}
.y203{bottom:624.571350px;}
.y46{bottom:627.388800px;}
.y12e{bottom:629.518200px;}
.ye4{bottom:632.746350px;}
.y1ad{bottom:632.951700px;}
.y188{bottom:635.111550px;}
.y8c{bottom:636.109350px;}
.yae{bottom:639.571350px;}
.y45{bottom:643.885800px;}
.y202{bottom:644.971350px;}
.ye3{bottom:650.881350px;}
.y1ac{bottom:651.311700px;}
.y8b{bottom:652.618350px;}
.y187{bottom:653.111550px;}
.yad{bottom:657.571350px;}
.y44{bottom:660.382800px;}
.y17{bottom:662.434650px;}
.y201{bottom:665.371350px;}
.y8a{bottom:669.115350px;}
.y1ab{bottom:669.671700px;}
.y186{bottom:671.111700px;}
.yac{bottom:675.571350px;}
.y43{bottom:676.879800px;}
.y16{bottom:677.434650px;}
.y167{bottom:682.933050px;}
.y89{bottom:685.612350px;}
.y200{bottom:686.371350px;}
.y1aa{bottom:688.031700px;}
.y185{bottom:689.111700px;}
.ye2{bottom:690.466350px;}
.y15{bottom:692.434650px;}
.y42{bottom:693.376800px;}
.yab{bottom:693.571350px;}
.y88{bottom:702.109350px;}
.y1a9{bottom:706.391700px;}
.y1ff{bottom:706.771350px;}
.y184{bottom:707.111700px;}
.ye1{bottom:708.601350px;}
.y41{bottom:709.873800px;}
.yaa{bottom:711.571350px;}
.y87{bottom:718.618350px;}
.y14{bottom:720.934650px;}
.y1fe{bottom:721.171350px;}
.y1a8{bottom:724.751700px;}
.y183{bottom:725.111700px;}
.y40{bottom:726.370800px;}
.ye0{bottom:726.736350px;}
.ya9{bottom:729.571350px;}
.y86{bottom:735.115350px;}
.y13{bottom:735.934650px;}
.y1fd{bottom:741.571350px;}
.y3f{bottom:742.867800px;}
.y1a7{bottom:743.111550px;}
.y182{bottom:743.111700px;}
.ydf{bottom:744.871350px;}
.ya8{bottom:747.571350px;}
.y12{bottom:750.934650px;}
.y85{bottom:751.612350px;}
.y1fc{bottom:755.971350px;}
.y3e{bottom:759.364800px;}
.yde{bottom:763.006350px;}
.ya7{bottom:765.571350px;}
.y244{bottom:765.620100px;}
.y25f{bottom:765.890100px;}
.y11{bottom:765.934650px;}
.y84{bottom:768.109350px;}
.y1fb{bottom:770.371350px;}
.y3d{bottom:775.861800px;}
.y243{bottom:778.366350px;}
.y25e{bottom:779.120100px;}
.y10{bottom:780.934650px;}
.ydd{bottom:781.141350px;}
.ya6{bottom:783.571350px;}
.y83{bottom:784.624350px;}
.y1fa{bottom:784.771350px;}
.y242{bottom:791.112600px;}
.y25d{bottom:792.350100px;}
.y3c{bottom:792.358800px;}
.yf{bottom:795.934650px;}
.y1dc{bottom:796.516650px;}
.y1f9{bottom:799.171350px;}
.ydc{bottom:799.276350px;}
.y82{bottom:801.121350px;}
.ya5{bottom:801.571350px;}
.y241{bottom:803.858850px;}
.y25c{bottom:805.580100px;}
.y3b{bottom:808.855800px;}
.y240{bottom:816.605100px;}
.y1db{bottom:816.658650px;}
.ydb{bottom:817.411350px;}
.y81{bottom:817.618350px;}
.y25b{bottom:818.810100px;}
.ya4{bottom:819.571350px;}
.ye{bottom:819.934650px;}
.y3a{bottom:825.352800px;}
.y23f{bottom:829.351350px;}
.y25a{bottom:832.040100px;}
.y1da{bottom:832.858650px;}
.y1f8{bottom:833.971350px;}
.y80{bottom:834.115350px;}
.yd{bottom:834.934650px;}
.yda{bottom:835.546350px;}
.ya3{bottom:837.571350px;}
.y39{bottom:841.849800px;}
.y23e{bottom:842.097600px;}
.y259{bottom:845.270100px;}
.y1f7{bottom:848.371350px;}
.yc{bottom:849.934650px;}
.y7f{bottom:850.612350px;}
.yd9{bottom:853.681350px;}
.y1d9{bottom:854.499150px;}
.y23d{bottom:854.843850px;}
.ya2{bottom:855.571350px;}
.y38{bottom:858.346800px;}
.y258{bottom:858.500100px;}
.y1f6{bottom:862.771350px;}
.yb{bottom:864.934650px;}
.y7e{bottom:867.109350px;}
.y23c{bottom:867.590100px;}
.y257{bottom:871.730100px;}
.yd8{bottom:871.816350px;}
.ya1{bottom:873.571350px;}
.y37{bottom:874.843800px;}
.y1d8{bottom:876.139650px;}
.y1f5{bottom:877.171350px;}
.ya{bottom:879.934650px;}
.y23b{bottom:880.336350px;}
.y256{bottom:884.960100px;}
.yd7{bottom:889.951350px;}
.y36{bottom:891.340800px;}
.ya0{bottom:891.571350px;}
.y1d7{bottom:892.339650px;}
.y23a{bottom:893.082600px;}
.y9{bottom:894.934650px;}
.y255{bottom:898.190100px;}
.y7d{bottom:898.840650px;}
.y239{bottom:905.828850px;}
.y35{bottom:907.840800px;}
.yd6{bottom:908.086350px;}
.y9f{bottom:909.571350px;}
.y8{bottom:909.934650px;}
.y254{bottom:911.420100px;}
.y1d6{bottom:913.980150px;}
.y238{bottom:918.575100px;}
.y253{bottom:924.650100px;}
.yd5{bottom:926.221350px;}
.y9e{bottom:927.571350px;}
.y1d5{bottom:930.180150px;}
.y237{bottom:931.321350px;}
.y252{bottom:937.880100px;}
.y236{bottom:944.067600px;}
.yd4{bottom:944.356350px;}
.y9d{bottom:945.571350px;}
.y1d4{bottom:950.322150px;}
.y251{bottom:951.110100px;}
.y235{bottom:956.813850px;}
.yd3{bottom:962.491350px;}
.y9c{bottom:963.571350px;}
.y250{bottom:964.340100px;}
.y234{bottom:969.560100px;}
.y1cf{bottom:974.959650px;}
.y7{bottom:976.837650px;}
.y24f{bottom:977.570100px;}
.yd2{bottom:980.626350px;}
.y9b{bottom:981.571350px;}
.y233{bottom:982.306350px;}
.y24e{bottom:990.800100px;}
.y1ce{bottom:991.159650px;}
.y232{bottom:995.052600px;}
.y6{bottom:996.340650px;}
.yd1{bottom:998.761350px;}
.y9a{bottom:999.571350px;}
.y24d{bottom:1004.030100px;}
.y1d3{bottom:1007.359650px;}
.y231{bottom:1007.798850px;}
.yd0{bottom:1016.896350px;}
.y24c{bottom:1017.260100px;}
.y99{bottom:1017.571350px;}
.y230{bottom:1020.545100px;}
.y1d2{bottom:1023.559650px;}
.y24b{bottom:1030.490100px;}
.y22f{bottom:1033.291350px;}
.ycf{bottom:1035.031350px;}
.y98{bottom:1035.571350px;}
.y1d1{bottom:1039.759650px;}
.y24a{bottom:1043.720100px;}
.y22e{bottom:1046.037600px;}
.yce{bottom:1053.166350px;}
.y97{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y249{bottom:1056.950100px;}
.y22d{bottom:1058.783850px;}
.y1d0{bottom:1061.400150px;}
.y248{bottom:1070.180100px;}
.ycd{bottom:1071.301350px;}
.y22c{bottom:1071.530100px;}
.y96{bottom:1071.571350px;}
.y247{bottom:1083.410100px;}
.y1cd{bottom:1083.415350px;}
.y22b{bottom:1084.276350px;}
.ycc{bottom:1089.436350px;}
.y95{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y246{bottom:1096.640100px;}
.y22a{bottom:1097.022600px;}
.y1cc{bottom:1099.912350px;}
.y94{bottom:1107.571350px;}
.y229{bottom:1109.768850px;}
.y245{bottom:1109.870100px;}
.y3{bottom:1140.946200px;}
.y93{bottom:1140.946350px;}
.h9{height:23.390640px;}
.h14{height:32.895000px;}
.ha{height:34.944000px;}
.h3{height:35.280000px;}
.h8{height:36.000000px;}
.h11{height:39.474000px;}
.hb{height:39.690000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.hc{height:44.040000px;}
.h10{height:44.100000px;}
.hd{height:56.173920px;}
.h12{height:56.197920px;}
.he{height:56.198520px;}
.h13{height:56.199120px;}
.hf{height:56.320312px;}
.h6{height:61.687098px;}
.h7{height:61.699098px;}
.h5{height:95.906250px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xe{left:74.250000px;}
.x1d{left:84.667500px;}
.x16{left:188.668500px;}
.x4{left:220.379400px;}
.x12{left:224.659500px;}
.x17{left:251.673000px;}
.x2{left:271.991700px;}
.x18{left:362.670000px;}
.x13{left:377.655000px;}
.xf{left:460.335000px;}
.x10{left:473.831850px;}
.x1c{left:484.249500px;}
.x19{left:506.674500px;}
.x14{left:530.650500px;}
.x8{left:537.524400px;}
.xa{left:546.518850px;}
.x9{left:551.024400px;}
.xb{left:558.395850px;}
.xc{left:564.518850px;}
.x1a{left:586.176000px;}
.x15{left:683.646000px;}
.x1b{left:695.674500px;}
.x11{left:723.708900px;}
.x7{left:752.065200px;}
.x1{left:824.963400px;}
.xd{left:867.000000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.978133pt;}
.v1{vertical-align:26.400000pt;}
.ls5{letter-spacing:-1.578667pt;}
.ls9{letter-spacing:-0.960533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000491pt;}
.lsa{letter-spacing:0.399600pt;}
.ls8{letter-spacing:0.529600pt;}
.ls7{letter-spacing:0.800000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls2{letter-spacing:15.289067pt;}
.ls3{letter-spacing:21.770667pt;}
.ls6{letter-spacing:1476.563200pt;}
.ws3{word-spacing:-18.186667pt;}
.ws39{word-spacing:-13.866667pt;}
.ws7{word-spacing:-13.344000pt;}
.ws4{word-spacing:-12.800000pt;}
.ws5{word-spacing:-11.520000pt;}
.ws10c{word-spacing:-11.519600pt;}
.ws10a{word-spacing:-11.120000pt;}
.ws10b{word-spacing:-10.999600pt;}
.ws0{word-spacing:-10.813088pt;}
.wsa{word-spacing:-10.240427pt;}
.ws2{word-spacing:-10.240000pt;}
.ws6{word-spacing:-9.193600pt;}
.wsc8{word-spacing:-7.344000pt;}
.ws98{word-spacing:-7.199467pt;}
.ws1{word-spacing:-6.789120pt;}
.wsbd{word-spacing:-6.027200pt;}
.ws101{word-spacing:-5.546667pt;}
.ws5f{word-spacing:-5.386667pt;}
.wsa2{word-spacing:-4.480000pt;}
.ws4d{word-spacing:-3.840533pt;}
.ws40{word-spacing:-3.733867pt;}
.wse7{word-spacing:-3.040533pt;}
.ws63{word-spacing:-2.719467pt;}
.ws65{word-spacing:-2.666667pt;}
.wsef{word-spacing:-2.506667pt;}
.ws94{word-spacing:-2.453867pt;}
.ws12{word-spacing:-2.400000pt;}
.ws3e{word-spacing:-2.293333pt;}
.wsb4{word-spacing:-1.973333pt;}
.ws49{word-spacing:-1.866667pt;}
.ws67{word-spacing:-1.813333pt;}
.ws54{word-spacing:-1.706667pt;}
.wsa4{word-spacing:-1.600000pt;}
.wsb{word-spacing:-1.578667pt;}
.ws9e{word-spacing:-1.547200pt;}
.wsea{word-spacing:-1.493333pt;}
.ws32{word-spacing:-1.440000pt;}
.ws55{word-spacing:-1.386667pt;}
.ws37{word-spacing:-1.344000pt;}
.ws5b{word-spacing:-1.332800pt;}
.ws104{word-spacing:-1.280000pt;}
.ws3a{word-spacing:-1.226133pt;}
.ws97{word-spacing:-1.173333pt;}
.ws82{word-spacing:-1.013333pt;}
.wsb6{word-spacing:-0.906667pt;}
.wsdb{word-spacing:-0.853867pt;}
.ws105{word-spacing:-0.848640pt;}
.ws85{word-spacing:-0.800000pt;}
.wsf7{word-spacing:-0.693333pt;}
.ws80{word-spacing:-0.639467pt;}
.ws23{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.426667pt;}
.wsc2{word-spacing:-0.373333pt;}
.wsc{word-spacing:-0.341333pt;}
.ws57{word-spacing:-0.320000pt;}
.ws108{word-spacing:-0.266667pt;}
.ws27{word-spacing:-0.213333pt;}
.ws8{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.053867pt;}
.wsdf{word-spacing:0.106667pt;}
.wsf6{word-spacing:0.160533pt;}
.ws71{word-spacing:0.213333pt;}
.ws4e{word-spacing:0.266667pt;}
.ws33{word-spacing:0.288000pt;}
.ws3f{word-spacing:0.320000pt;}
.ws2e{word-spacing:0.336000pt;}
.ws43{word-spacing:0.426667pt;}
.ws86{word-spacing:0.480000pt;}
.ws99{word-spacing:0.586667pt;}
.ws34{word-spacing:0.720000pt;}
.wscd{word-spacing:0.747200pt;}
.ws13{word-spacing:0.800000pt;}
.wse8{word-spacing:0.853867pt;}
.wsec{word-spacing:0.906667pt;}
.wsb7{word-spacing:0.960533pt;}
.wsee{word-spacing:1.120000pt;}
.ws42{word-spacing:1.226133pt;}
.ws21{word-spacing:1.280000pt;}
.ws38{word-spacing:1.295520pt;}
.wsfb{word-spacing:1.332800pt;}
.wsae{word-spacing:1.493333pt;}
.ws16{word-spacing:1.547200pt;}
.ws9{word-spacing:1.578667pt;}
.ws58{word-spacing:1.600000pt;}
.ws76{word-spacing:1.653867pt;}
.ws4b{word-spacing:1.706667pt;}
.wse4{word-spacing:1.760000pt;}
.ws46{word-spacing:1.813333pt;}
.ws7f{word-spacing:1.866667pt;}
.wsad{word-spacing:1.920000pt;}
.ws36{word-spacing:2.016480pt;}
.ws77{word-spacing:2.080000pt;}
.wsc3{word-spacing:2.186667pt;}
.wsaa{word-spacing:2.293333pt;}
.ws81{word-spacing:2.347200pt;}
.wsbe{word-spacing:2.400000pt;}
.ws7d{word-spacing:2.453867pt;}
.ws84{word-spacing:2.506667pt;}
.wsb5{word-spacing:2.613333pt;}
.ws95{word-spacing:2.666667pt;}
.ws9d{word-spacing:2.773333pt;}
.ws2a{word-spacing:2.826133pt;}
.wsb0{word-spacing:2.880000pt;}
.ws5e{word-spacing:2.932800pt;}
.ws45{word-spacing:3.093333pt;}
.wsf{word-spacing:3.200000pt;}
.ws8f{word-spacing:3.253333pt;}
.ws3c{word-spacing:3.306667pt;}
.ws22{word-spacing:3.466667pt;}
.ws1b{word-spacing:3.519467pt;}
.wsd3{word-spacing:3.573333pt;}
.ws96{word-spacing:3.626133pt;}
.ws70{word-spacing:3.786667pt;}
.wsbf{word-spacing:3.947200pt;}
.wsab{word-spacing:4.053333pt;}
.ws109{word-spacing:4.106667pt;}
.ws102{word-spacing:4.160000pt;}
.wsa0{word-spacing:4.212800pt;}
.ws20{word-spacing:4.266667pt;}
.ws35{word-spacing:4.368000pt;}
.ws50{word-spacing:4.373333pt;}
.wsf3{word-spacing:4.426133pt;}
.wsbc{word-spacing:4.480000pt;}
.ws89{word-spacing:4.693333pt;}
.ws9b{word-spacing:4.746667pt;}
.ws7e{word-spacing:4.800000pt;}
.wse9{word-spacing:4.853333pt;}
.ws2f{word-spacing:4.896480pt;}
.ws7a{word-spacing:5.012800pt;}
.wsca{word-spacing:5.119467pt;}
.wsfc{word-spacing:5.173333pt;}
.ws56{word-spacing:5.227200pt;}
.wsd9{word-spacing:5.280000pt;}
.ws2d{word-spacing:5.376000pt;}
.ws3b{word-spacing:5.386667pt;}
.wsc5{word-spacing:5.440533pt;}
.ws5a{word-spacing:5.493333pt;}
.ws5c{word-spacing:5.653333pt;}
.ws11{word-spacing:5.812800pt;}
.ws41{word-spacing:5.866667pt;}
.wsf9{word-spacing:5.919467pt;}
.wsc0{word-spacing:5.973333pt;}
.ws1f{word-spacing:6.027200pt;}
.ws6b{word-spacing:6.080000pt;}
.ws30{word-spacing:6.096000pt;}
.wsf5{word-spacing:6.240000pt;}
.wsb2{word-spacing:6.293333pt;}
.ws68{word-spacing:6.346667pt;}
.ws51{word-spacing:6.453333pt;}
.wsb3{word-spacing:6.560000pt;}
.wse5{word-spacing:6.612800pt;}
.wse0{word-spacing:6.720533pt;}
.wsed{word-spacing:6.773333pt;}
.ws47{word-spacing:6.827200pt;}
.wsfd{word-spacing:6.880000pt;}
.wsce{word-spacing:6.933333pt;}
.ws4c{word-spacing:7.040000pt;}
.ws14{word-spacing:7.093333pt;}
.ws3d{word-spacing:7.146667pt;}
.wsa8{word-spacing:7.199467pt;}
.ws8d{word-spacing:7.253333pt;}
.wsb8{word-spacing:7.360000pt;}
.ws9a{word-spacing:7.413867pt;}
.ws75{word-spacing:7.520533pt;}
.ws6c{word-spacing:7.627200pt;}
.ws107{word-spacing:7.680000pt;}
.wsde{word-spacing:7.786667pt;}
.wsaf{word-spacing:7.840000pt;}
.ws59{word-spacing:7.946667pt;}
.wse1{word-spacing:8.053333pt;}
.ws25{word-spacing:8.106133pt;}
.ws62{word-spacing:8.160000pt;}
.ws6d{word-spacing:8.373333pt;}
.wsa6{word-spacing:8.426667pt;}
.ws83{word-spacing:8.586667pt;}
.ws61{word-spacing:8.640000pt;}
.wscc{word-spacing:8.692800pt;}
.ws19{word-spacing:8.746667pt;}
.ws78{word-spacing:8.799467pt;}
.wsa7{word-spacing:8.853333pt;}
.wse6{word-spacing:8.907200pt;}
.wsfa{word-spacing:8.960000pt;}
.wsd4{word-spacing:9.066667pt;}
.wsa5{word-spacing:9.120533pt;}
.ws106{word-spacing:9.173333pt;}
.ws17{word-spacing:9.280000pt;}
.ws60{word-spacing:9.333333pt;}
.wsf1{word-spacing:9.335394pt;}
.wsdd{word-spacing:9.440000pt;}
.wsb1{word-spacing:9.492800pt;}
.ws2c{word-spacing:9.504000pt;}
.ws64{word-spacing:9.546667pt;}
.wsf2{word-spacing:9.653333pt;}
.wsc4{word-spacing:9.707200pt;}
.wsc6{word-spacing:9.866667pt;}
.wse3{word-spacing:9.920000pt;}
.ws6a{word-spacing:10.026667pt;}
.wsff{word-spacing:10.133333pt;}
.ws1a{word-spacing:10.346667pt;}
.ws73{word-spacing:10.560000pt;}
.ws72{word-spacing:10.720000pt;}
.ws9c{word-spacing:10.986133pt;}
.wseb{word-spacing:11.040000pt;}
.ws103{word-spacing:11.092800pt;}
.ws7b{word-spacing:11.360000pt;}
.wsd8{word-spacing:11.626667pt;}
.ws7c{word-spacing:11.679467pt;}
.ws18{word-spacing:11.786133pt;}
.ws24{word-spacing:12.053333pt;}
.wscb{word-spacing:12.426667pt;}
.wsdc{word-spacing:12.479467pt;}
.wsd2{word-spacing:12.533333pt;}
.wsc7{word-spacing:12.640000pt;}
.wsf8{word-spacing:12.693867pt;}
.wsf4{word-spacing:12.746667pt;}
.ws93{word-spacing:12.853333pt;}
.ws66{word-spacing:12.960000pt;}
.ws31{word-spacing:13.248000pt;}
.wsa9{word-spacing:13.493867pt;}
.ws1d{word-spacing:13.653333pt;}
.ws26{word-spacing:13.920000pt;}
.wsda{word-spacing:14.026667pt;}
.wsf0{word-spacing:14.080533pt;}
.ws100{word-spacing:14.133333pt;}
.ws74{word-spacing:14.240000pt;}
.ws48{word-spacing:14.293867pt;}
.ws10{word-spacing:14.880533pt;}
.wsc1{word-spacing:14.933333pt;}
.wsd1{word-spacing:14.987200pt;}
.ws91{word-spacing:15.359467pt;}
.wsfe{word-spacing:15.413333pt;}
.wsa3{word-spacing:15.520000pt;}
.ws8b{word-spacing:15.573867pt;}
.ws44{word-spacing:15.787200pt;}
.ws87{word-spacing:16.052800pt;}
.wsd0{word-spacing:16.106667pt;}
.ws69{word-spacing:16.213333pt;}
.ws6e{word-spacing:16.266133pt;}
.ws88{word-spacing:16.640000pt;}
.ws6f{word-spacing:16.852800pt;}
.ws8a{word-spacing:16.906667pt;}
.wsbb{word-spacing:16.959467pt;}
.ws15{word-spacing:17.067200pt;}
.ws5d{word-spacing:17.546133pt;}
.ws8e{word-spacing:17.600000pt;}
.ws1e{word-spacing:17.759467pt;}
.ws79{word-spacing:17.813333pt;}
.wsd7{word-spacing:18.026667pt;}
.ws90{word-spacing:18.240000pt;}
.wsa1{word-spacing:19.093333pt;}
.wse2{word-spacing:19.573333pt;}
.ws4a{word-spacing:20.373333pt;}
.wsd5{word-spacing:20.800000pt;}
.ws52{word-spacing:20.906667pt;}
.wsd{word-spacing:21.386667pt;}
.wsc9{word-spacing:21.439467pt;}
.wsba{word-spacing:22.132800pt;}
.ws29{word-spacing:22.186667pt;}
.ws8c{word-spacing:22.719467pt;}
.ws1c{word-spacing:23.947200pt;}
.wsb9{word-spacing:24.212800pt;}
.ws9f{word-spacing:24.853333pt;}
.wscf{word-spacing:24.960000pt;}
.wsd6{word-spacing:29.333333pt;}
.wse{word-spacing:31.626667pt;}
.ws28{word-spacing:32.320000pt;}
.wsac{word-spacing:36.640000pt;}
.ws2b{word-spacing:36.768480pt;}
.ws92{word-spacing:44.906667pt;}
._d{margin-left:-2587.917120pt;}
._c{margin-left:-1582.126560pt;}
._b{margin-left:-52.480000pt;}
._4{margin-left:-42.640000pt;}
._f{margin-left:-20.284800pt;}
._11{margin-left:-18.238400pt;}
._13{margin-left:-13.227733pt;}
._34{margin-left:-12.000000pt;}
._6{margin-left:-10.240000pt;}
._e{margin-left:-8.422400pt;}
._2{margin-left:-6.520619pt;}
._0{margin-left:-5.504000pt;}
._a{margin-left:-4.248533pt;}
._3{margin-left:-3.157333pt;}
._1{margin-left:-1.578667pt;}
._5{width:1.186133pt;}
._7{width:2.385067pt;}
._10{width:7.732267pt;}
._8{width:10.240427pt;}
._32{width:11.648000pt;}
._9{width:13.021867pt;}
._37{width:17.242000pt;}
._33{width:18.320000pt;}
._35{width:22.360000pt;}
._2c{width:24.480000pt;}
._36{width:29.320000pt;}
._12{width:33.792000pt;}
._14{width:34.832000pt;}
._31{width:51.168000pt;}
._28{width:77.856000pt;}
._2d{width:81.600000pt;}
._2b{width:86.928000pt;}
._18{width:96.480000pt;}
._2f{width:108.288000pt;}
._27{width:113.616000pt;}
._26{width:117.264000pt;}
._2a{width:134.928000pt;}
._1b{width:136.512000pt;}
._2e{width:138.336000pt;}
._17{width:156.192000pt;}
._20{width:157.872000pt;}
._25{width:166.848000pt;}
._29{width:175.920000pt;}
._23{width:182.880000pt;}
._19{width:188.208000pt;}
._1c{width:204.048000pt;}
._1f{width:214.944000pt;}
._21{width:220.272000pt;}
._1d{width:244.080000pt;}
._16{width:285.024000pt;}
._30{width:289.440000pt;}
._1a{width:371.184000pt;}
._15{width:424.800000pt;}
._1e{width:438.768000pt;}
._22{width:460.304000pt;}
._24{width:467.472000pt;}
.fs6{font-size:28.288000pt;}
.fs5{font-size:34.666667pt;}
.fs8{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fs9{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.y1f4{bottom:72.507867pt;}
.ycb{bottom:72.534533pt;}
.y115{bottom:72.535600pt;}
.y7c{bottom:72.537467pt;}
.y64{bottom:72.542933pt;}
.y1a6{bottom:72.543600pt;}
.y12b{bottom:72.548933pt;}
.y2e{bottom:72.566933pt;}
.y149{bottom:72.571733pt;}
.y228{bottom:72.624533pt;}
.y166{bottom:72.651733pt;}
.y1cb{bottom:73.023733pt;}
.yff{bottom:73.067867pt;}
.y181{bottom:80.845600pt;}
.y227{bottom:83.954533pt;}
.y2d{bottom:85.900267pt;}
.y1f3{bottom:88.507867pt;}
.yca{bottom:88.534533pt;}
.y114{bottom:88.535600pt;}
.y7b{bottom:88.537467pt;}
.y63{bottom:88.542933pt;}
.y1a5{bottom:88.543600pt;}
.y12a{bottom:88.548933pt;}
.y148{bottom:88.571733pt;}
.y165{bottom:88.785067pt;}
.yfe{bottom:89.187867pt;}
.y1ca{bottom:89.343733pt;}
.y226{bottom:95.284533pt;}
.y180{bottom:98.749600pt;}
.y1f2{bottom:104.507867pt;}
.yc9{bottom:104.534533pt;}
.y113{bottom:104.535600pt;}
.y7a{bottom:104.537467pt;}
.y62{bottom:104.542933pt;}
.y1a4{bottom:104.543600pt;}
.y129{bottom:104.548933pt;}
.y147{bottom:104.571733pt;}
.y164{bottom:104.918400pt;}
.yfd{bottom:105.307867pt;}
.y1c9{bottom:105.663733pt;}
.y225{bottom:106.614533pt;}
.y2c{bottom:111.233600pt;}
.y224{bottom:117.944533pt;}
.y17f{bottom:117.985600pt;}
.y1f1{bottom:120.507867pt;}
.yc8{bottom:120.534533pt;}
.y79{bottom:120.537467pt;}
.y61{bottom:120.542933pt;}
.y1a3{bottom:120.543600pt;}
.y128{bottom:120.548933pt;}
.y146{bottom:120.571733pt;}
.y163{bottom:121.051733pt;}
.yfc{bottom:121.427867pt;}
.y1c8{bottom:121.983733pt;}
.y2b{bottom:124.566933pt;}
.y223{bottom:129.274533pt;}
.y112{bottom:132.535600pt;}
.y1f0{bottom:136.507867pt;}
.yc7{bottom:136.534533pt;}
.y78{bottom:136.537467pt;}
.y60{bottom:136.542933pt;}
.y1a2{bottom:136.543600pt;}
.y127{bottom:136.548933pt;}
.y145{bottom:136.571733pt;}
.y162{bottom:137.185067pt;}
.y17e{bottom:137.221600pt;}
.y1c7{bottom:138.303733pt;}
.y222{bottom:140.604533pt;}
.y2a{bottom:142.700267pt;}
.y111{bottom:148.535600pt;}
.y29{bottom:151.233600pt;}
.y221{bottom:151.934533pt;}
.y1ef{bottom:152.507867pt;}
.yc6{bottom:152.534533pt;}
.y77{bottom:152.537467pt;}
.y5f{bottom:152.542933pt;}
.y1a1{bottom:152.543600pt;}
.y126{bottom:152.548933pt;}
.y144{bottom:152.571733pt;}
.y161{bottom:153.318400pt;}
.y1c6{bottom:154.623733pt;}
.y17d{bottom:156.457600pt;}
.y220{bottom:163.264533pt;}
.y110{bottom:164.535600pt;}
.y28{bottom:164.566933pt;}
.yfb{bottom:164.614533pt;}
.y1ee{bottom:168.507867pt;}
.yc5{bottom:168.534533pt;}
.y76{bottom:168.537467pt;}
.y5e{bottom:168.542933pt;}
.y1a0{bottom:168.543600pt;}
.y125{bottom:168.548933pt;}
.y143{bottom:168.571733pt;}
.y160{bottom:169.451733pt;}
.y1c5{bottom:170.943733pt;}
.y17c{bottom:174.361600pt;}
.y21f{bottom:174.594533pt;}
.y10f{bottom:180.535600pt;}
.yfa{bottom:180.734533pt;}
.y27{bottom:182.700267pt;}
.y1ed{bottom:184.507867pt;}
.yc4{bottom:184.534533pt;}
.y75{bottom:184.537467pt;}
.y5d{bottom:184.542933pt;}
.y19f{bottom:184.543600pt;}
.y124{bottom:184.548933pt;}
.y15f{bottom:185.585067pt;}
.y21e{bottom:185.924533pt;}
.y1c4{bottom:187.263733pt;}
.y26{bottom:191.233600pt;}
.y177{bottom:196.261600pt;}
.y10e{bottom:196.535600pt;}
.yf9{bottom:196.854533pt;}
.y21d{bottom:197.254533pt;}
.y1ec{bottom:200.507867pt;}
.yc3{bottom:200.534533pt;}
.y74{bottom:200.537467pt;}
.y5c{bottom:200.542933pt;}
.y19e{bottom:200.543600pt;}
.y123{bottom:200.548933pt;}
.y142{bottom:200.665067pt;}
.y15e{bottom:201.718400pt;}
.y1c3{bottom:203.583733pt;}
.y25{bottom:204.566933pt;}
.y21c{bottom:208.584533pt;}
.y17b{bottom:210.661600pt;}
.yf8{bottom:212.974533pt;}
.y1eb{bottom:216.507867pt;}
.yc2{bottom:216.534533pt;}
.y73{bottom:216.537467pt;}
.y19d{bottom:216.543600pt;}
.y122{bottom:216.548933pt;}
.y141{bottom:216.665067pt;}
.y15d{bottom:217.851733pt;}
.y24{bottom:217.900267pt;}
.y1c2{bottom:219.903733pt;}
.y21b{bottom:219.914533pt;}
.y10d{bottom:224.535600pt;}
.y17a{bottom:225.061600pt;}
.y21a{bottom:231.244533pt;}
.y1ea{bottom:232.507867pt;}
.yc1{bottom:232.534533pt;}
.y72{bottom:232.537467pt;}
.y19c{bottom:232.543600pt;}
.y121{bottom:232.548933pt;}
.y140{bottom:232.665067pt;}
.y15c{bottom:233.985067pt;}
.y23{bottom:236.033600pt;}
.y1c1{bottom:236.223733pt;}
.y179{bottom:239.461600pt;}
.y10c{bottom:240.535600pt;}
.y219{bottom:242.574533pt;}
.y22{bottom:244.566933pt;}
.y1e9{bottom:248.507867pt;}
.yc0{bottom:248.534533pt;}
.y71{bottom:248.537467pt;}
.y19b{bottom:248.543600pt;}
.y120{bottom:248.548933pt;}
.y13f{bottom:248.665067pt;}
.y5b{bottom:249.734933pt;}
.y1c0{bottom:252.543733pt;}
.y218{bottom:253.904533pt;}
.yf7{bottom:256.161200pt;}
.y10b{bottom:256.535600pt;}
.y21{bottom:257.900267pt;}
.y178{bottom:258.697600pt;}
.y5a{bottom:264.398933pt;}
.y1e8{bottom:264.507867pt;}
.ybf{bottom:264.534533pt;}
.y70{bottom:264.537467pt;}
.y19a{bottom:264.543600pt;}
.y11f{bottom:264.548933pt;}
.y13e{bottom:264.665067pt;}
.y217{bottom:265.234533pt;}
.y1bf{bottom:268.863733pt;}
.y15b{bottom:269.171733pt;}
.yf6{bottom:272.281200pt;}
.y20{bottom:276.033600pt;}
.y216{bottom:276.564533pt;}
.y176{bottom:278.266667pt;}
.y59{bottom:279.062933pt;}
.y1e7{bottom:280.507867pt;}
.ybe{bottom:280.534533pt;}
.y6f{bottom:280.542933pt;}
.y199{bottom:280.543600pt;}
.y11e{bottom:280.548933pt;}
.y13d{bottom:280.665067pt;}
.y10a{bottom:284.535600pt;}
.y1f{bottom:284.566933pt;}
.y1be{bottom:285.183733pt;}
.y15a{bottom:285.305067pt;}
.y215{bottom:287.894533pt;}
.yf5{bottom:288.401200pt;}
.y175{bottom:292.930667pt;}
.y58{bottom:293.726933pt;}
.y1e6{bottom:296.507867pt;}
.ybd{bottom:296.534533pt;}
.y6e{bottom:296.542933pt;}
.y198{bottom:296.543600pt;}
.y11d{bottom:296.548933pt;}
.y13c{bottom:296.665067pt;}
.y1e{bottom:297.900267pt;}
.y214{bottom:299.224533pt;}
.y109{bottom:300.535600pt;}
.y159{bottom:301.438400pt;}
.y1bd{bottom:301.503733pt;}
.yf4{bottom:304.521200pt;}
.y57{bottom:308.390933pt;}
.y213{bottom:310.554533pt;}
.y1d{bottom:311.233600pt;}
.y1e5{bottom:312.507867pt;}
.ybc{bottom:312.534533pt;}
.y6d{bottom:312.542933pt;}
.y197{bottom:312.543600pt;}
.y108{bottom:316.535600pt;}
.y158{bottom:317.571733pt;}
.y1bc{bottom:317.823733pt;}
.yf3{bottom:320.641200pt;}
.y212{bottom:321.884533pt;}
.y172{bottom:322.153333pt;}
.y16e{bottom:322.166667pt;}
.y56{bottom:323.054933pt;}
.y1e4{bottom:328.507867pt;}
.ybb{bottom:328.534533pt;}
.y6c{bottom:328.542933pt;}
.y196{bottom:328.543600pt;}
.y1c{bottom:329.366933pt;}
.y107{bottom:332.535600pt;}
.y211{bottom:333.214533pt;}
.y157{bottom:333.705067pt;}
.y1bb{bottom:334.143733pt;}
.yf2{bottom:336.761200pt;}
.y55{bottom:337.718933pt;}
.y1b{bottom:337.900267pt;}
.y171{bottom:338.153333pt;}
.y16d{bottom:338.166667pt;}
.y92{bottom:338.917053pt;}
.y1e3{bottom:344.507867pt;}
.yba{bottom:344.534533pt;}
.y6b{bottom:344.542933pt;}
.y195{bottom:344.543600pt;}
.y210{bottom:344.544533pt;}
.y11c{bottom:346.788933pt;}
.y106{bottom:348.535600pt;}
.y156{bottom:349.838400pt;}
.y1ba{bottom:350.463733pt;}
.y1a{bottom:351.233600pt;}
.y13b{bottom:351.571733pt;}
.y54{bottom:352.382933pt;}
.yf1{bottom:352.881200pt;}
.y170{bottom:354.153333pt;}
.y16c{bottom:354.166667pt;}
.y20f{bottom:355.874533pt;}
.y1e2{bottom:360.507867pt;}
.yb9{bottom:360.534533pt;}
.y6a{bottom:360.542933pt;}
.y194{bottom:360.543600pt;}
.y11b{bottom:362.788933pt;}
.y105{bottom:364.535600pt;}
.y19{bottom:364.566933pt;}
.y155{bottom:365.971733pt;}
.y1b9{bottom:366.783733pt;}
.y53{bottom:367.046933pt;}
.y20e{bottom:367.204533pt;}
.y13a{bottom:367.571733pt;}
.yf0{bottom:369.001200pt;}
.y16f{bottom:370.153333pt;}
.y16b{bottom:370.166667pt;}
.y1e1{bottom:376.507867pt;}
.yb8{bottom:376.534533pt;}
.y69{bottom:376.542933pt;}
.y193{bottom:376.543600pt;}
.y20d{bottom:378.534533pt;}
.y11a{bottom:378.788933pt;}
.y104{bottom:380.535600pt;}
.y52{bottom:381.710933pt;}
.y154{bottom:382.105067pt;}
.y18{bottom:382.700267pt;}
.y1b8{bottom:383.103733pt;}
.y139{bottom:383.571733pt;}
.yef{bottom:385.121200pt;}
.y16a{bottom:386.166667pt;}
.y20c{bottom:389.867867pt;}
.y1e0{bottom:392.507867pt;}
.yb7{bottom:392.534533pt;}
.y68{bottom:392.542933pt;}
.y192{bottom:392.543600pt;}
.y119{bottom:394.788933pt;}
.y34{bottom:394.849467pt;}
.y51{bottom:396.374933pt;}
.y153{bottom:398.238400pt;}
.y1b7{bottom:399.423733pt;}
.y138{bottom:399.571733pt;}
.yee{bottom:401.241200pt;}
.y169{bottom:402.166667pt;}
.y33{bottom:407.649467pt;}
.y1df{bottom:408.507867pt;}
.yb6{bottom:408.534533pt;}
.y103{bottom:408.535600pt;}
.y67{bottom:408.542933pt;}
.y191{bottom:408.543600pt;}
.y118{bottom:410.788933pt;}
.y50{bottom:411.038933pt;}
.y152{bottom:414.371733pt;}
.y137{bottom:415.571733pt;}
.y1b6{bottom:415.743733pt;}
.yed{bottom:417.361200pt;}
.y168{bottom:418.166667pt;}
.y32{bottom:420.449467pt;}
.y1de{bottom:424.507867pt;}
.y102{bottom:424.535600pt;}
.y66{bottom:424.542933pt;}
.y190{bottom:424.543600pt;}
.y4f{bottom:425.702933pt;}
.y151{bottom:430.505067pt;}
.y136{bottom:431.571733pt;}
.y1b5{bottom:432.063733pt;}
.y31{bottom:433.249467pt;}
.yec{bottom:433.481200pt;}
.y4e{bottom:440.366933pt;}
.y1dd{bottom:440.507867pt;}
.y101{bottom:440.535600pt;}
.y65{bottom:440.542933pt;}
.y18f{bottom:440.543600pt;}
.y117{bottom:440.962267pt;}
.y30{bottom:446.049467pt;}
.y150{bottom:446.638400pt;}
.y20b{bottom:447.441200pt;}
.y135{bottom:447.571733pt;}
.y1b4{bottom:448.383733pt;}
.yeb{bottom:449.601200pt;}
.y4d{bottom:455.030933pt;}
.yb5{bottom:456.507867pt;}
.y100{bottom:456.535600pt;}
.y18e{bottom:456.543600pt;}
.y116{bottom:456.962267pt;}
.y174{bottom:457.899867pt;}
.y2f{bottom:458.849467pt;}
.y20a{bottom:460.241200pt;}
.y14f{bottom:462.771733pt;}
.y134{bottom:463.571733pt;}
.y1b3{bottom:464.703733pt;}
.yea{bottom:465.721200pt;}
.y4c{bottom:469.694933pt;}
.y173{bottom:472.299867pt;}
.yb4{bottom:472.507867pt;}
.y18d{bottom:472.543600pt;}
.y209{bottom:473.041200pt;}
.y14e{bottom:478.905067pt;}
.y133{bottom:479.571733pt;}
.y1b2{bottom:481.023733pt;}
.ye9{bottom:481.841200pt;}
.y4b{bottom:484.358933pt;}
.y208{bottom:485.841200pt;}
.yb3{bottom:488.507867pt;}
.y18c{bottom:488.543600pt;}
.y91{bottom:492.102533pt;}
.y14d{bottom:495.038400pt;}
.y132{bottom:495.571733pt;}
.y12d{bottom:496.215467pt;}
.y1b1{bottom:497.343733pt;}
.ye8{bottom:497.961200pt;}
.y207{bottom:498.641200pt;}
.y4a{bottom:499.022933pt;}
.yb2{bottom:504.507867pt;}
.y18b{bottom:504.543600pt;}
.y90{bottom:506.766533pt;}
.y12c{bottom:510.615467pt;}
.y14c{bottom:511.171733pt;}
.y206{bottom:511.441200pt;}
.y131{bottom:511.571733pt;}
.y1b0{bottom:513.663733pt;}
.y49{bottom:513.686933pt;}
.ye7{bottom:514.081200pt;}
.yb1{bottom:520.507867pt;}
.y8f{bottom:521.430533pt;}
.y14b{bottom:527.305067pt;}
.y130{bottom:527.571733pt;}
.y48{bottom:528.350933pt;}
.y205{bottom:529.574533pt;}
.y1af{bottom:529.983733pt;}
.ye6{bottom:530.201200pt;}
.y18a{bottom:532.543600pt;}
.y8e{bottom:536.102533pt;}
.yb0{bottom:536.507867pt;}
.y204{bottom:542.374533pt;}
.y47{bottom:543.014933pt;}
.y14a{bottom:543.438400pt;}
.y12f{bottom:543.571733pt;}
.y1ae{bottom:546.303733pt;}
.ye5{bottom:546.321200pt;}
.y189{bottom:548.543600pt;}
.y8d{bottom:550.766533pt;}
.yaf{bottom:552.507867pt;}
.y203{bottom:555.174533pt;}
.y46{bottom:557.678933pt;}
.y12e{bottom:559.571733pt;}
.ye4{bottom:562.441200pt;}
.y1ad{bottom:562.623733pt;}
.y188{bottom:564.543600pt;}
.y8c{bottom:565.430533pt;}
.yae{bottom:568.507867pt;}
.y45{bottom:572.342933pt;}
.y202{bottom:573.307867pt;}
.ye3{bottom:578.561200pt;}
.y1ac{bottom:578.943733pt;}
.y8b{bottom:580.105200pt;}
.y187{bottom:580.543600pt;}
.yad{bottom:584.507867pt;}
.y44{bottom:587.006933pt;}
.y17{bottom:588.830800pt;}
.y201{bottom:591.441200pt;}
.y8a{bottom:594.769200pt;}
.y1ab{bottom:595.263733pt;}
.y186{bottom:596.543733pt;}
.yac{bottom:600.507867pt;}
.y43{bottom:601.670933pt;}
.y16{bottom:602.164133pt;}
.y167{bottom:607.051600pt;}
.y89{bottom:609.433200pt;}
.y200{bottom:610.107867pt;}
.y1aa{bottom:611.583733pt;}
.y185{bottom:612.543733pt;}
.ye2{bottom:613.747867pt;}
.y15{bottom:615.497467pt;}
.y42{bottom:616.334933pt;}
.yab{bottom:616.507867pt;}
.y88{bottom:624.097200pt;}
.y1a9{bottom:627.903733pt;}
.y1ff{bottom:628.241200pt;}
.y184{bottom:628.543733pt;}
.ye1{bottom:629.867867pt;}
.y41{bottom:630.998933pt;}
.yaa{bottom:632.507867pt;}
.y87{bottom:638.771867pt;}
.y14{bottom:640.830800pt;}
.y1fe{bottom:641.041200pt;}
.y1a8{bottom:644.223733pt;}
.y183{bottom:644.543733pt;}
.y40{bottom:645.662933pt;}
.ye0{bottom:645.987867pt;}
.ya9{bottom:648.507867pt;}
.y86{bottom:653.435867pt;}
.y13{bottom:654.164133pt;}
.y1fd{bottom:659.174533pt;}
.y3f{bottom:660.326933pt;}
.y1a7{bottom:660.543600pt;}
.y182{bottom:660.543733pt;}
.ydf{bottom:662.107867pt;}
.ya8{bottom:664.507867pt;}
.y12{bottom:667.497467pt;}
.y85{bottom:668.099867pt;}
.y1fc{bottom:671.974533pt;}
.y3e{bottom:674.990933pt;}
.yde{bottom:678.227867pt;}
.ya7{bottom:680.507867pt;}
.y244{bottom:680.551200pt;}
.y25f{bottom:680.791200pt;}
.y11{bottom:680.830800pt;}
.y84{bottom:682.763867pt;}
.y1fb{bottom:684.774533pt;}
.y3d{bottom:689.654933pt;}
.y243{bottom:691.881200pt;}
.y25e{bottom:692.551200pt;}
.y10{bottom:694.164133pt;}
.ydd{bottom:694.347867pt;}
.ya6{bottom:696.507867pt;}
.y83{bottom:697.443867pt;}
.y1fa{bottom:697.574533pt;}
.y242{bottom:703.211200pt;}
.y25d{bottom:704.311200pt;}
.y3c{bottom:704.318933pt;}
.yf{bottom:707.497467pt;}
.y1dc{bottom:708.014800pt;}
.y1f9{bottom:710.374533pt;}
.ydc{bottom:710.467867pt;}
.y82{bottom:712.107867pt;}
.ya5{bottom:712.507867pt;}
.y241{bottom:714.541200pt;}
.y25c{bottom:716.071200pt;}
.y3b{bottom:718.982933pt;}
.y240{bottom:725.871200pt;}
.y1db{bottom:725.918800pt;}
.ydb{bottom:726.587867pt;}
.y81{bottom:726.771867pt;}
.y25b{bottom:727.831200pt;}
.ya4{bottom:728.507867pt;}
.ye{bottom:728.830800pt;}
.y3a{bottom:733.646933pt;}
.y23f{bottom:737.201200pt;}
.y25a{bottom:739.591200pt;}
.y1da{bottom:740.318800pt;}
.y1f8{bottom:741.307867pt;}
.y80{bottom:741.435867pt;}
.yd{bottom:742.164133pt;}
.yda{bottom:742.707867pt;}
.ya3{bottom:744.507867pt;}
.y39{bottom:748.310933pt;}
.y23e{bottom:748.531200pt;}
.y259{bottom:751.351200pt;}
.y1f7{bottom:754.107867pt;}
.yc{bottom:755.497467pt;}
.y7f{bottom:756.099867pt;}
.yd9{bottom:758.827867pt;}
.y1d9{bottom:759.554800pt;}
.y23d{bottom:759.861200pt;}
.ya2{bottom:760.507867pt;}
.y38{bottom:762.974933pt;}
.y258{bottom:763.111200pt;}
.y1f6{bottom:766.907867pt;}
.yb{bottom:768.830800pt;}
.y7e{bottom:770.763867pt;}
.y23c{bottom:771.191200pt;}
.y257{bottom:774.871200pt;}
.yd8{bottom:774.947867pt;}
.ya1{bottom:776.507867pt;}
.y37{bottom:777.638933pt;}
.y1d8{bottom:778.790800pt;}
.y1f5{bottom:779.707867pt;}
.ya{bottom:782.164133pt;}
.y23b{bottom:782.521200pt;}
.y256{bottom:786.631200pt;}
.yd7{bottom:791.067867pt;}
.y36{bottom:792.302933pt;}
.ya0{bottom:792.507867pt;}
.y1d7{bottom:793.190800pt;}
.y23a{bottom:793.851200pt;}
.y9{bottom:795.497467pt;}
.y255{bottom:798.391200pt;}
.y7d{bottom:798.969467pt;}
.y239{bottom:805.181200pt;}
.y35{bottom:806.969600pt;}
.yd6{bottom:807.187867pt;}
.y9f{bottom:808.507867pt;}
.y8{bottom:808.830800pt;}
.y254{bottom:810.151200pt;}
.y1d6{bottom:812.426800pt;}
.y238{bottom:816.511200pt;}
.y253{bottom:821.911200pt;}
.yd5{bottom:823.307867pt;}
.y9e{bottom:824.507867pt;}
.y1d5{bottom:826.826800pt;}
.y237{bottom:827.841200pt;}
.y252{bottom:833.671200pt;}
.y236{bottom:839.171200pt;}
.yd4{bottom:839.427867pt;}
.y9d{bottom:840.507867pt;}
.y1d4{bottom:844.730800pt;}
.y251{bottom:845.431200pt;}
.y235{bottom:850.501200pt;}
.yd3{bottom:855.547867pt;}
.y9c{bottom:856.507867pt;}
.y250{bottom:857.191200pt;}
.y234{bottom:861.831200pt;}
.y1cf{bottom:866.630800pt;}
.y7{bottom:868.300133pt;}
.y24f{bottom:868.951200pt;}
.yd2{bottom:871.667867pt;}
.y9b{bottom:872.507867pt;}
.y233{bottom:873.161200pt;}
.y24e{bottom:880.711200pt;}
.y1ce{bottom:881.030800pt;}
.y232{bottom:884.491200pt;}
.y6{bottom:885.636133pt;}
.yd1{bottom:887.787867pt;}
.y9a{bottom:888.507867pt;}
.y24d{bottom:892.471200pt;}
.y1d3{bottom:895.430800pt;}
.y231{bottom:895.821200pt;}
.yd0{bottom:903.907867pt;}
.y24c{bottom:904.231200pt;}
.y99{bottom:904.507867pt;}
.y230{bottom:907.151200pt;}
.y1d2{bottom:909.830800pt;}
.y24b{bottom:915.991200pt;}
.y22f{bottom:918.481200pt;}
.ycf{bottom:920.027867pt;}
.y98{bottom:920.507867pt;}
.y1d1{bottom:924.230800pt;}
.y24a{bottom:927.751200pt;}
.y22e{bottom:929.811200pt;}
.yce{bottom:936.147867pt;}
.y97{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y249{bottom:939.511200pt;}
.y22d{bottom:941.141200pt;}
.y1d0{bottom:943.466800pt;}
.y248{bottom:951.271200pt;}
.ycd{bottom:952.267867pt;}
.y22c{bottom:952.471200pt;}
.y96{bottom:952.507867pt;}
.y247{bottom:963.031200pt;}
.y1cd{bottom:963.035867pt;}
.y22b{bottom:963.801200pt;}
.ycc{bottom:968.387867pt;}
.y95{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y246{bottom:974.791200pt;}
.y22a{bottom:975.131200pt;}
.y1cc{bottom:977.699867pt;}
.y94{bottom:984.507867pt;}
.y229{bottom:986.461200pt;}
.y245{bottom:986.551200pt;}
.y3{bottom:1014.174400pt;}
.y93{bottom:1014.174533pt;}
.h9{height:20.791680pt;}
.h14{height:29.240000pt;}
.ha{height:31.061333pt;}
.h3{height:31.360000pt;}
.h8{height:32.000000pt;}
.h11{height:35.088000pt;}
.hb{height:35.280000pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.hc{height:39.146667pt;}
.h10{height:39.200000pt;}
.hd{height:49.932373pt;}
.h12{height:49.953707pt;}
.he{height:49.954240pt;}
.h13{height:49.954773pt;}
.hf{height:50.062500pt;}
.h6{height:54.832976pt;}
.h7{height:54.843643pt;}
.h5{height:85.250000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xe{left:66.000000pt;}
.x1d{left:75.260000pt;}
.x16{left:167.705333pt;}
.x4{left:195.892800pt;}
.x12{left:199.697333pt;}
.x17{left:223.709333pt;}
.x2{left:241.770400pt;}
.x18{left:322.373333pt;}
.x13{left:335.693333pt;}
.xf{left:409.186667pt;}
.x10{left:421.183867pt;}
.x1c{left:430.444000pt;}
.x19{left:450.377333pt;}
.x14{left:471.689333pt;}
.x8{left:477.799467pt;}
.xa{left:485.794533pt;}
.x9{left:489.799467pt;}
.xb{left:496.351867pt;}
.xc{left:501.794533pt;}
.x1a{left:521.045333pt;}
.x15{left:607.685333pt;}
.x1b{left:618.377333pt;}
.x11{left:643.296800pt;}
.x7{left:668.502400pt;}
.x1{left:733.300800pt;}
.xd{left:770.666667pt;}
}




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