
    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_f3aaa5e36ba627cc05261cd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.771484;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_0b32d5e8e05984eeb039f259.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_2ccd540d54bec9ce5fbf9aaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_014a917c62f31abe2c5d7fb8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974609;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_40f483a1978dc691be10155c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001953;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_229ba2b92e04f979077426ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_4e6c095321242d1149b42029.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_4ff6da8552cbb1671e99ca2b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973145;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_1db900f9ac5ee2427bf4326b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_14c52546a30c0de92715ac8c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_f3781882c5c49ce08d5e1c49.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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_b38a5caa80e63a6965855764.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.872559;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_72dc328112c7e509805fa5e1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.002930;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_ed753fec5e58ef69936aed9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.002930;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);}
.v7{vertical-align:-56.515800px;}
.v8{vertical-align:-53.114400px;}
.v3{vertical-align:-19.799400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.v6{vertical-align:15.840000px;}
.v4{vertical-align:19.800000px;}
.v1{vertical-align:27.719400px;}
.v5{vertical-align:36.000000px;}
.v9{vertical-align:56.515800px;}
.ls9{letter-spacing:-1.254000px;}
.ls16{letter-spacing:-0.660000px;}
.ls21{letter-spacing:-0.396000px;}
.ls6{letter-spacing:-0.330000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.002400px;}
.ls1c{letter-spacing:0.007200px;}
.ls12{letter-spacing:0.007800px;}
.ls19{letter-spacing:0.009600px;}
.lsc{letter-spacing:0.010200px;}
.ls10{letter-spacing:0.013200px;}
.ls15{letter-spacing:0.015000px;}
.lse{letter-spacing:0.016200px;}
.ls13{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.670200px;}
.ls5{letter-spacing:2.574000px;}
.ls3{letter-spacing:5.649600px;}
.ls1{letter-spacing:11.761800px;}
.ls1f{letter-spacing:16.743600px;}
.ls27{letter-spacing:83.840400px;}
.ls23{letter-spacing:112.344000px;}
.ls26{letter-spacing:192.297600px;}
.ls1b{letter-spacing:196.728000px;}
.ls29{letter-spacing:198.567000px;}
.ls18{letter-spacing:235.369200px;}
.lsf{letter-spacing:262.038000px;}
.ls28{letter-spacing:266.155200px;}
.ls24{letter-spacing:909.514200px;}
.ls25{letter-spacing:1426.416600px;}
.ls8{letter-spacing:1426.721400px;}
.ls1a{letter-spacing:1427.049600px;}
.ls1e{letter-spacing:1427.096400px;}
.ls0{letter-spacing:1427.401200px;}
.lsb{letter-spacing:1427.728800px;}
.ls20{letter-spacing:1428.221400px;}
.ls4{letter-spacing:1428.526200px;}
.lsd{letter-spacing:1428.853800px;}
.ls22{letter-spacing:1429.463400px;}
.ls7{letter-spacing:1429.768200px;}
.ls11{letter-spacing:1430.096400px;}
.ls1d{letter-spacing:1432.955400px;}
.lsa{letter-spacing:1433.588400px;}
.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;}
}
.wse{word-spacing:-17.490000px;}
.ws6a{word-spacing:-15.576000px;}
.wsf{word-spacing:-14.916000px;}
.ws6d{word-spacing:-14.520000px;}
.ws23{word-spacing:-13.662000px;}
.ws2{word-spacing:-13.560000px;}
.ws43{word-spacing:-12.900000px;}
.ws0{word-spacing:-11.568000px;}
.ws33{word-spacing:-10.848000px;}
.ws1{word-spacing:-8.386800px;}
.ws2f{word-spacing:-7.864800px;}
.ws10{word-spacing:-6.864000px;}
.ws76{word-spacing:-6.402000px;}
.ws32{word-spacing:-6.291840px;}
.ws6c{word-spacing:-5.148000px;}
.ws5f{word-spacing:-5.082000px;}
.ws42{word-spacing:-4.554000px;}
.ws80{word-spacing:-4.380000px;}
.ws13{word-spacing:-4.290000px;}
.wsb{word-spacing:-4.080000px;}
.ws12{word-spacing:-3.630000px;}
.ws1f{word-spacing:-3.300000px;}
.ws2c{word-spacing:-3.234000px;}
.ws2d{word-spacing:-2.574000px;}
.ws1d{word-spacing:-2.442000px;}
.ws5c{word-spacing:-1.254000px;}
.wsa{word-spacing:-1.020000px;}
.ws28{word-spacing:-0.990000px;}
.ws68{word-spacing:-0.924000px;}
.ws29{word-spacing:-0.858000px;}
.ws45{word-spacing:-0.660000px;}
.ws94{word-spacing:-0.600000px;}
.ws18{word-spacing:-0.462000px;}
.ws4{word-spacing:-0.096000px;}
.ws15{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws7f{word-spacing:0.120000px;}
.ws17{word-spacing:0.330000px;}
.ws7{word-spacing:0.336000px;}
.ws27{word-spacing:0.462000px;}
.ws24{word-spacing:0.858000px;}
.ws70{word-spacing:1.782000px;}
.ws9{word-spacing:2.220000px;}
.ws14{word-spacing:2.574000px;}
.ws73{word-spacing:2.838000px;}
.ws1c{word-spacing:3.102000px;}
.ws5e{word-spacing:3.630000px;}
.ws72{word-spacing:3.894000px;}
.ws63{word-spacing:3.960000px;}
.ws2a{word-spacing:4.356000px;}
.ws66{word-spacing:4.422000px;}
.ws69{word-spacing:4.950000px;}
.ws71{word-spacing:5.214000px;}
.wsc{word-spacing:5.640000px;}
.ws26{word-spacing:5.742000px;}
.ws6{word-spacing:5.952000px;}
.ws5d{word-spacing:6.006000px;}
.ws25{word-spacing:6.336000px;}
.ws92{word-spacing:6.660000px;}
.ws2b{word-spacing:6.798000px;}
.ws21{word-spacing:7.590000px;}
.ws19{word-spacing:8.514000px;}
.ws22{word-spacing:9.306000px;}
.ws5{word-spacing:9.456000px;}
.ws20{word-spacing:9.504000px;}
.ws95{word-spacing:9.780000px;}
.ws1a{word-spacing:10.032000px;}
.wsd{word-spacing:10.080000px;}
.ws8{word-spacing:10.320000px;}
.ws1b{word-spacing:10.428000px;}
.ws61{word-spacing:10.692000px;}
.ws75{word-spacing:10.758000px;}
.ws74{word-spacing:11.946000px;}
.ws6f{word-spacing:13.134000px;}
.ws65{word-spacing:14.124000px;}
.ws6e{word-spacing:15.312000px;}
.ws16{word-spacing:15.774000px;}
.ws6b{word-spacing:15.840000px;}
.ws7d{word-spacing:16.440000px;}
.ws62{word-spacing:16.764000px;}
.ws87{word-spacing:16.980000px;}
.ws8c{word-spacing:17.160000px;}
.ws64{word-spacing:17.358000px;}
.ws3d{word-spacing:19.020000px;}
.ws82{word-spacing:19.140000px;}
.ws60{word-spacing:19.470000px;}
.ws11{word-spacing:19.800000px;}
.ws93{word-spacing:20.040000px;}
.ws1e{word-spacing:20.130000px;}
.ws78{word-spacing:20.160000px;}
.ws90{word-spacing:21.180000px;}
.ws83{word-spacing:21.900000px;}
.ws7b{word-spacing:25.620000px;}
.ws67{word-spacing:25.938000px;}
.ws8a{word-spacing:29.520000px;}
.ws8b{word-spacing:35.340000px;}
.ws79{word-spacing:36.360000px;}
.ws8e{word-spacing:37.260000px;}
.ws88{word-spacing:40.440000px;}
.ws7a{word-spacing:41.100000px;}
.ws7e{word-spacing:41.160000px;}
.ws8f{word-spacing:43.680000px;}
.ws85{word-spacing:46.200000px;}
.ws81{word-spacing:51.720000px;}
.ws91{word-spacing:53.100000px;}
.ws96{word-spacing:57.900000px;}
.ws47{word-spacing:58.856400px;}
.ws7c{word-spacing:61.200000px;}
.ws89{word-spacing:70.560000px;}
.ws46{word-spacing:71.205600px;}
.ws84{word-spacing:83.569200px;}
.ws8d{word-spacing:91.740000px;}
.ws86{word-spacing:99.240000px;}
.ws56{word-spacing:104.614800px;}
.ws57{word-spacing:104.629200px;}
.ws59{word-spacing:119.962800px;}
.ws4e{word-spacing:125.501400px;}
.ws5a{word-spacing:134.506200px;}
.ws52{word-spacing:134.751600px;}
.ws53{word-spacing:134.766600px;}
.ws54{word-spacing:135.310200px;}
.ws5b{word-spacing:143.681400px;}
.ws4c{word-spacing:143.936400px;}
.ws4d{word-spacing:143.941800px;}
.ws4f{word-spacing:146.951400px;}
.ws51{word-spacing:158.880600px;}
.ws4a{word-spacing:170.516400px;}
.ws55{word-spacing:171.142200px;}
.ws50{word-spacing:173.818800px;}
.ws48{word-spacing:173.869200px;}
.ws38{word-spacing:183.801600px;}
.ws30{word-spacing:195.514800px;}
.ws4b{word-spacing:201.279000px;}
.ws34{word-spacing:204.154800px;}
.ws37{word-spacing:214.221600px;}
.ws35{word-spacing:243.125400px;}
.ws36{word-spacing:243.126000px;}
.ws44{word-spacing:280.282200px;}
.ws58{word-spacing:294.939600px;}
.ws77{word-spacing:300.665400px;}
.ws31{word-spacing:313.964400px;}
.ws2e{word-spacing:322.887000px;}
.ws3a{word-spacing:498.447600px;}
.ws39{word-spacing:528.867600px;}
.ws49{word-spacing:806.868600px;}
.ws3b{word-spacing:813.093000px;}
.ws3e{word-spacing:1127.739000px;}
.ws3c{word-spacing:1158.159000px;}
.ws3f{word-spacing:1442.384400px;}
.ws41{word-spacing:1757.030400px;}
.ws40{word-spacing:1787.450400px;}
._1a{margin-left:-15.641400px;}
._1c{margin-left:-14.405400px;}
._52{margin-left:-9.079200px;}
._19{margin-left:-7.873800px;}
._10{margin-left:-6.652200px;}
._0{margin-left:-5.565000px;}
._c{margin-left:-4.470000px;}
._a{margin-left:-2.472000px;}
._2{margin-left:-1.284000px;}
._5{width:1.314000px;}
._b{width:2.484000px;}
._4{width:4.134000px;}
._3{width:5.232000px;}
._8{width:6.744000px;}
._9{width:7.932000px;}
._d{width:9.320400px;}
._1{width:10.416000px;}
._f{width:11.722800px;}
._1d{width:12.784200px;}
._12{width:13.903200px;}
._6{width:15.084000px;}
._11{width:16.764000px;}
._15{width:18.222600px;}
._16{width:19.232400px;}
._e{width:20.634000px;}
._17{width:22.190400px;}
._1b{width:23.248800px;}
._4a{width:25.175400px;}
._4d{width:26.395800px;}
._54{width:27.574800px;}
._5f{width:28.604400px;}
._14{width:29.609400px;}
._13{width:31.231800px;}
._53{width:32.673000px;}
._4e{width:34.610400px;}
._4c{width:35.887800px;}
._56{width:37.400400px;}
._4f{width:38.451600px;}
._5a{width:40.686000px;}
._59{width:41.736000px;}
._5e{width:47.658000px;}
._4b{width:49.223400px;}
._5b{width:57.085200px;}
._5d{width:76.220400px;}
._49{width:79.903800px;}
._5c{width:97.129200px;}
._50{width:100.352400px;}
._51{width:101.800200px;}
._58{width:117.900000px;}
._57{width:119.118000px;}
._45{width:133.744200px;}
._23{width:140.858400px;}
._46{width:148.279200px;}
._47{width:157.464000px;}
._41{width:159.707400px;}
._24{width:160.846800px;}
._43{width:172.164000px;}
._21{width:176.061600px;}
._42{width:179.721000px;}
._2e{width:183.045000px;}
._3b{width:187.424400px;}
._26{width:197.323800px;}
._3d{width:203.082000px;}
._30{width:206.655600px;}
._20{width:209.403600px;}
._1f{width:211.452000px;}
._22{width:221.677800px;}
._1e{width:225.597600px;}
._40{width:248.973000px;}
._25{width:256.037400px;}
._38{width:262.404000px;}
._3a{width:281.211000px;}
._31{width:293.842200px;}
._44{width:300.633600px;}
._37{width:327.414600px;}
._3f{width:354.186600px;}
._60{width:360.932400px;}
._2f{width:371.553600px;}
._36{width:392.610600px;}
._35{width:398.325600px;}
._3c{width:417.180600px;}
._55{width:426.588600px;}
._33{width:449.805600px;}
._39{width:467.226600px;}
._2d{width:492.378000px;}
._3e{width:509.994600px;}
._28{width:511.969800px;}
._32{width:526.570800px;}
._27{width:542.389800px;}
._34{width:554.133600px;}
._29{width:857.035200px;}
._2a{width:1171.681200px;}
._48{width:1436.086800px;}
._18{width:1437.242400px;}
._7{width:1438.718400px;}
._2b{width:1455.906600px;}
._2c{width:1770.552600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(65,84,167);}
.fs8{font-size:27.840000px;}
.fs6{font-size:34.800000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:48.720000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y273{bottom:26.128050px;}
.y254{bottom:26.128350px;}
.y26f{bottom:26.128800px;}
.y230{bottom:26.128950px;}
.y244{bottom:26.129100px;}
.y226{bottom:26.129250px;}
.y29a{bottom:26.129400px;}
.y248{bottom:26.129700px;}
.y22a{bottom:26.129850px;}
.y28c{bottom:35.128050px;}
.y2a2{bottom:35.129100px;}
.y222{bottom:35.129250px;}
.y235{bottom:35.129550px;}
.y253{bottom:44.128350px;}
.y26e{bottom:44.128800px;}
.y22f{bottom:44.128950px;}
.y288{bottom:44.129100px;}
.y282{bottom:44.129250px;}
.y269{bottom:44.129700px;}
.y221{bottom:53.129250px;}
.y277{bottom:62.128650px;}
.y1{bottom:67.459200px;}
.y98{bottom:127.648200px;}
.y97{bottom:127.798200px;}
.y1ff{bottom:128.145900px;}
.y6f{bottom:128.542200px;}
.y21a{bottom:128.754900px;}
.y1f{bottom:130.056300px;}
.y120{bottom:130.291200px;}
.y191{bottom:132.597300px;}
.ydd{bottom:135.300600px;}
.y27d{bottom:136.870500px;}
.y1de{bottom:137.202600px;}
.y159{bottom:140.444100px;}
.ybf{bottom:141.298200px;}
.ycd{bottom:141.546600px;}
.y1dc{bottom:142.331550px;}
.y280{bottom:144.999750px;}
.y96{bottom:147.148200px;}
.y130{bottom:147.299100px;}
.y1fe{bottom:147.645900px;}
.y6e{bottom:148.042200px;}
.y1e{bottom:148.056300px;}
.y219{bottom:148.254900px;}
.y11f{bottom:149.791200px;}
.yfc{bottom:151.799550px;}
.y190{bottom:152.097300px;}
.y27e{bottom:153.999750px;}
.ydc{bottom:154.800600px;}
.y24c{bottom:158.743800px;}
.y1db{bottom:160.331550px;}
.ybe{bottom:160.798200px;}
.ycc{bottom:161.046750px;}
.y1ae{bottom:161.450100px;}
.y27c{bottom:162.999750px;}
.y1af{bottom:165.321150px;}
.y1dd{bottom:165.460500px;}
.y1d{bottom:166.056300px;}
.y95{bottom:166.498200px;}
.y12f{bottom:166.799100px;}
.y1fd{bottom:167.145900px;}
.y6d{bottom:167.542200px;}
.y24b{bottom:167.743800px;}
.y218{bottom:167.754900px;}
.y158{bottom:168.702000px;}
.y11e{bottom:169.291200px;}
.yfb{bottom:171.299550px;}
.y18f{bottom:171.597300px;}
.ydb{bottom:174.300600px;}
.y24d{bottom:176.743800px;}
.y1ad{bottom:179.450100px;}
.ybd{bottom:180.298200px;}
.ycb{bottom:180.546750px;}
.y27f{bottom:180.999750px;}
.y1c{bottom:184.056300px;}
.y94{bottom:185.848200px;}
.y12e{bottom:186.299100px;}
.y1fc{bottom:186.645900px;}
.y6c{bottom:187.042200px;}
.y217{bottom:187.254900px;}
.y11d{bottom:188.791200px;}
.yfa{bottom:190.799550px;}
.y18e{bottom:191.097300px;}
.y13e{bottom:192.300000px;}
.y1da{bottom:193.293300px;}
.yda{bottom:193.800600px;}
.y157{bottom:196.959750px;}
.y1ac{bottom:197.450100px;}
.y1d8{bottom:197.784300px;}
.ybc{bottom:199.798200px;}
.yca{bottom:200.046750px;}
.y47{bottom:201.290400px;}
.y1b{bottom:202.056300px;}
.y93{bottom:205.198200px;}
.y12d{bottom:205.799100px;}
.y1fb{bottom:206.145900px;}
.y6b{bottom:206.542200px;}
.y216{bottom:206.604900px;}
.y24a{bottom:207.860250px;}
.y11c{bottom:208.291200px;}
.yf9{bottom:210.299550px;}
.y18d{bottom:210.597300px;}
.y172{bottom:211.772550px;}
.y13d{bottom:211.800000px;}
.y27b{bottom:212.116200px;}
.yd9{bottom:213.300600px;}
.y1d7{bottom:215.784300px;}
.y46{bottom:219.290400px;}
.ybb{bottom:219.298200px;}
.yc9{bottom:219.546750px;}
.y1a{bottom:220.056300px;}
.y1d9{bottom:220.275450px;}
.y92{bottom:224.548200px;}
.y156{bottom:225.217650px;}
.y12c{bottom:225.299100px;}
.y1fa{bottom:225.645900px;}
.y1ab{bottom:225.708000px;}
.y215{bottom:225.954900px;}
.y6a{bottom:226.042200px;}
.y11b{bottom:227.791200px;}
.yf8{bottom:229.799550px;}
.y18c{bottom:230.097300px;}
.y1a9{bottom:230.836950px;}
.y247{bottom:230.847000px;}
.y171{bottom:231.272550px;}
.y13c{bottom:231.300000px;}
.yd8{bottom:232.800600px;}
.y276{bottom:235.104000px;}
.y19{bottom:238.056300px;}
.yba{bottom:238.798200px;}
.y249{bottom:238.976700px;}
.yc8{bottom:239.046750px;}
.y27a{bottom:243.232650px;}
.y45{bottom:243.668400px;}
.y91{bottom:243.898200px;}
.y12b{bottom:244.799100px;}
.y1f9{bottom:245.145900px;}
.y214{bottom:245.304900px;}
.y69{bottom:245.542200px;}
.y1d6{bottom:247.257750px;}
.y11a{bottom:247.291200px;}
.y246{bottom:247.976700px;}
.y1a8{bottom:248.836950px;}
.yf7{bottom:249.299550px;}
.y18b{bottom:249.597300px;}
.y170{bottom:250.772550px;}
.y13b{bottom:250.800000px;}
.y1d4{bottom:251.748900px;}
.yd7{bottom:252.300600px;}
.y155{bottom:253.475550px;}
.y1aa{bottom:253.965750px;}
.y18{bottom:256.056300px;}
.yb9{bottom:258.298200px;}
.yc7{bottom:258.546750px;}
.y279{bottom:261.232650px;}
.y44{bottom:261.668400px;}
.y90{bottom:263.248200px;}
.y2a9{bottom:264.204300px;}
.y12a{bottom:264.299100px;}
.y1f8{bottom:264.645900px;}
.y213{bottom:264.654900px;}
.y68{bottom:265.042200px;}
.y119{bottom:266.791200px;}
.yf6{bottom:268.799550px;}
.y18a{bottom:269.097300px;}
.y1d3{bottom:269.748900px;}
.y275{bottom:270.232650px;}
.y13a{bottom:270.300000px;}
.yd6{bottom:271.800600px;}
.y1d5{bottom:274.240050px;}
.y243{bottom:277.105500px;}
.yb8{bottom:277.798200px;}
.yc6{bottom:278.046750px;}
.y278{bottom:279.232650px;}
.y43{bottom:279.668400px;}
.y154{bottom:281.733450px;}
.y1a6{bottom:282.223650px;}
.y8f{bottom:282.598200px;}
.y129{bottom:283.799100px;}
.y212{bottom:284.004900px;}
.y1f7{bottom:284.145900px;}
.y67{bottom:284.542200px;}
.y245{bottom:285.234600px;}
.y118{bottom:286.291200px;}
.y189{bottom:288.597300px;}
.y139{bottom:289.800000px;}
.y1a5{bottom:291.223650px;}
.y16f{bottom:291.273000px;}
.yd5{bottom:291.300600px;}
.y242{bottom:294.234600px;}
.y17{bottom:295.056300px;}
.y2a7{bottom:295.831200px;}
.yb7{bottom:297.298200px;}
.yc5{bottom:297.546750px;}
.y42{bottom:297.668400px;}
.y1a7{bottom:300.223650px;}
.y1d2{bottom:301.222350px;}
.y8e{bottom:301.948200px;}
.y128{bottom:303.299100px;}
.y211{bottom:303.354900px;}
.y1f6{bottom:303.645900px;}
.y66{bottom:304.042200px;}
.y2a6{bottom:304.831200px;}
.y1d0{bottom:305.713500px;}
.y117{bottom:305.791200px;}
.y188{bottom:308.097300px;}
.yf5{bottom:309.300000px;}
.y153{bottom:309.991350px;}
.yd4{bottom:310.800600px;}
.y2a8{bottom:313.831200px;}
.y41{bottom:315.668400px;}
.yb6{bottom:316.798200px;}
.yc4{bottom:317.046750px;}
.y272{bottom:317.362500px;}
.y8d{bottom:321.298200px;}
.y210{bottom:322.704900px;}
.y127{bottom:322.799100px;}
.y1f5{bottom:323.145900px;}
.y65{bottom:323.542200px;}
.y1cf{bottom:323.713500px;}
.y116{bottom:325.291200px;}
.y274{bottom:325.490550px;}
.y187{bottom:327.597300px;}
.y1d1{bottom:328.204650px;}
.yf4{bottom:328.800000px;}
.yd3{bottom:330.300600px;}
.y240{bottom:331.492500px;}
.y1a4{bottom:333.108600px;}
.y40{bottom:333.668400px;}
.y2a1{bottom:333.960000px;}
.y271{bottom:334.490550px;}
.yb5{bottom:336.298200px;}
.yc3{bottom:336.546750px;}
.y152{bottom:338.249250px;}
.y23f{bottom:340.492500px;}
.y8c{bottom:340.648200px;}
.y20f{bottom:342.054900px;}
.y2a5{bottom:342.089100px;}
.y16e{bottom:342.271650px;}
.y126{bottom:342.299100px;}
.y1f4{bottom:342.645900px;}
.y64{bottom:343.042200px;}
.y115{bottom:344.791200px;}
.y16{bottom:347.058900px;}
.y186{bottom:347.097300px;}
.y138{bottom:348.300000px;}
.y241{bottom:349.492500px;}
.yd2{bottom:349.800600px;}
.y2a3{bottom:351.089100px;}
.y1a3{bottom:351.108600px;}
.y3f{bottom:351.668400px;}
.y1cd{bottom:355.186950px;}
.yb4{bottom:355.798200px;}
.yc2{bottom:356.046750px;}
.y16d{bottom:357.271650px;}
.y8b{bottom:359.998200px;}
.y2a0{bottom:360.089100px;}
.y20e{bottom:361.404900px;}
.y125{bottom:361.799100px;}
.y15{bottom:362.058900px;}
.y1f3{bottom:362.145900px;}
.y63{bottom:362.542200px;}
.y26d{bottom:363.619500px;}
.y1cc{bottom:364.186950px;}
.y114{bottom:364.291200px;}
.y151{bottom:366.507000px;}
.y137{bottom:367.800000px;}
.y1a2{bottom:369.108600px;}
.yd1{bottom:369.300600px;}
.y3e{bottom:369.668400px;}
.y270{bottom:371.748300px;}
.y1ce{bottom:373.186950px;}
.yb3{bottom:375.298200px;}
.y14{bottom:377.058900px;}
.y23e{bottom:377.750250px;}
.y2a4{bottom:378.089100px;}
.y8a{bottom:379.348200px;}
.yf3{bottom:379.798650px;}
.y20d{bottom:380.754900px;}
.y124{bottom:381.299100px;}
.y1f2{bottom:381.645900px;}
.y62{bottom:382.042200px;}
.y113{bottom:383.791200px;}
.y16c{bottom:385.402500px;}
.y23d{bottom:386.750250px;}
.y136{bottom:387.300000px;}
.y185{bottom:387.597750px;}
.y3d{bottom:387.668400px;}
.yd0{bottom:388.800600px;}
.y26c{bottom:389.748300px;}
.y13{bottom:392.058900px;}
.y150{bottom:394.764900px;}
.yb2{bottom:394.798200px;}
.yc1{bottom:396.547200px;}
.y89{bottom:398.698200px;}
.yf2{bottom:399.298650px;}
.y20c{bottom:400.104900px;}
.y123{bottom:400.799100px;}
.y1f1{bottom:401.145900px;}
.y61{bottom:401.542200px;}
.y112{bottom:403.291200px;}
.y1cb{bottom:405.221400px;}
.y3c{bottom:405.668400px;}
.y29e{bottom:406.347000px;}
.y135{bottom:406.800000px;}
.y12{bottom:407.058900px;}
.y184{bottom:407.097750px;}
.y16b{bottom:413.660400px;}
.yb1{bottom:414.298200px;}
.y29d{bottom:415.347000px;}
.y88{bottom:418.048200px;}
.y1a1{bottom:418.607100px;}
.yf1{bottom:418.798650px;}
.y20b{bottom:419.454900px;}
.y122{bottom:420.299100px;}
.y1f0{bottom:420.645900px;}
.y60{bottom:421.042200px;}
.y11{bottom:422.058900px;}
.y111{bottom:422.791200px;}
.y14f{bottom:423.022800px;}
.y1ca{bottom:423.221400px;}
.y3b{bottom:423.668400px;}
.y23b{bottom:424.008150px;}
.y29f{bottom:424.347000px;}
.y268{bottom:427.876500px;}
.ycf{bottom:429.301050px;}
.y23a{bottom:433.008150px;}
.yb0{bottom:433.798200px;}
.y26a{bottom:436.006200px;}
.y87{bottom:437.398200px;}
.y1a0{bottom:438.107100px;}
.yf0{bottom:438.298650px;}
.y20a{bottom:438.804900px;}
.y1ef{bottom:440.145900px;}
.y5f{bottom:440.542200px;}
.y1c9{bottom:441.221400px;}
.yc0{bottom:441.299550px;}
.y3a{bottom:441.668400px;}
.y16a{bottom:441.918300px;}
.y23c{bottom:442.008150px;}
.y110{bottom:442.291200px;}
.y299{bottom:444.475500px;}
.y134{bottom:447.300600px;}
.y14e{bottom:451.280700px;}
.y10{bottom:452.058900px;}
.y29b{bottom:452.604900px;}
.yaf{bottom:453.298200px;}
.y267{bottom:454.006200px;}
.y86{bottom:456.748200px;}
.y19f{bottom:457.607100px;}
.yef{bottom:457.798650px;}
.y183{bottom:458.096400px;}
.y209{bottom:458.154900px;}
.y1ee{bottom:459.645900px;}
.y39{bottom:459.668400px;}
.y5e{bottom:460.042200px;}
.y121{bottom:460.799550px;}
.y298{bottom:461.604900px;}
.y10f{bottom:461.791200px;}
.yf{bottom:467.058900px;}
.y169{bottom:470.176200px;}
.y29c{bottom:470.604900px;}
.y26b{bottom:472.006200px;}
.yae{bottom:472.798200px;}
.y239{bottom:473.124600px;}
.y85{bottom:476.098200px;}
.yee{bottom:477.298650px;}
.y208{bottom:477.504900px;}
.y182{bottom:477.596400px;}
.y38{bottom:477.668400px;}
.y1ed{bottom:479.145900px;}
.y14d{bottom:479.538600px;}
.y5d{bottom:479.542200px;}
.yce{bottom:480.299550px;}
.y10e{bottom:481.291200px;}
.y1c8{bottom:490.719900px;}
.yad{bottom:492.298200px;}
.y84{bottom:495.448200px;}
.y37{bottom:495.668400px;}
.y234{bottom:496.111500px;}
.yed{bottom:496.798650px;}
.y207{bottom:496.854900px;}
.y181{bottom:497.096400px;}
.y19e{bottom:498.107550px;}
.y133{bottom:498.299100px;}
.y168{bottom:498.433950px;}
.y1ec{bottom:498.645900px;}
.y5c{bottom:499.042200px;}
.y266{bottom:500.264100px;}
.y10d{bottom:500.791200px;}
.y297{bottom:501.721350px;}
.y238{bottom:504.241050px;}
.y14c{bottom:507.796350px;}
.y265{bottom:509.264100px;}
.ye{bottom:510.139050px;}
.y1c7{bottom:510.219900px;}
.yac{bottom:511.798200px;}
.y236{bottom:513.241050px;}
.y36{bottom:513.668400px;}
.y83{bottom:514.798200px;}
.y206{bottom:516.204900px;}
.yec{bottom:516.298650px;}
.y180{bottom:516.596400px;}
.y19d{bottom:517.607550px;}
.y132{bottom:517.799100px;}
.y1eb{bottom:518.145900px;}
.y5b{bottom:518.542200px;}
.y10c{bottom:520.291200px;}
.y233{bottom:522.241050px;}
.y167{bottom:526.691850px;}
.y1c6{bottom:529.719900px;}
.yab{bottom:531.298200px;}
.y35{bottom:531.668400px;}
.yd{bottom:533.088900px;}
.y82{bottom:534.148200px;}
.y205{bottom:535.554900px;}
.y296{bottom:535.696350px;}
.yeb{bottom:535.798650px;}
.y14b{bottom:536.054250px;}
.y17f{bottom:536.096400px;}
.y1ea{bottom:537.645900px;}
.y5a{bottom:538.042200px;}
.y10b{bottom:539.791200px;}
.y237{bottom:540.241050px;}
.y263{bottom:546.522000px;}
.y1c5{bottom:549.220050px;}
.y34{bottom:549.668400px;}
.yaa{bottom:550.798200px;}
.y81{bottom:553.498200px;}
.y204{bottom:554.904900px;}
.y166{bottom:554.949750px;}
.yea{bottom:555.298650px;}
.y262{bottom:555.522000px;}
.y17e{bottom:555.596400px;}
.y1e9{bottom:557.145900px;}
.y59{bottom:557.542200px;}
.y131{bottom:558.299550px;}
.y292{bottom:558.684000px;}
.y10a{bottom:559.291200px;}
.y22e{bottom:560.370000px;}
.y264{bottom:564.522000px;}
.yc{bottom:565.639050px;}
.y293{bottom:566.812800px;}
.y33{bottom:567.668400px;}
.y231{bottom:568.498950px;}
.y19c{bottom:568.606200px;}
.y1c4{bottom:568.720050px;}
.y14a{bottom:568.939050px;}
.ya9{bottom:570.298200px;}
.y80{bottom:572.848200px;}
.y295{bottom:575.812800px;}
.y1e8{bottom:576.645900px;}
.y58{bottom:577.042200px;}
.y109{bottom:578.791200px;}
.y165{bottom:583.207650px;}
.y291{bottom:584.812800px;}
.y22d{bottom:586.498950px;}
.y149{bottom:586.939050px;}
.y17d{bottom:587.852250px;}
.y1c3{bottom:588.220050px;}
.yb{bottom:589.639050px;}
.ya8{bottom:589.798200px;}
.y203{bottom:591.262800px;}
.y7f{bottom:592.198200px;}
.y261{bottom:592.779900px;}
.y294{bottom:593.812800px;}
.ye9{bottom:595.799100px;}
.y57{bottom:596.542200px;}
.y108{bottom:598.291200px;}
.y19b{bottom:600.233250px;}
.y260{bottom:601.779900px;}
.y232{bottom:604.498950px;}
.y148{bottom:604.939050px;}
.y32{bottom:606.668850px;}
.y1c2{bottom:607.720050px;}
.ya7{bottom:609.298200px;}
.y164{bottom:611.465550px;}
.y7e{bottom:611.548200px;}
.ya{bottom:613.639050px;}
.y56{bottom:616.042200px;}
.y1e7{bottom:617.146350px;}
.y107{bottom:617.791200px;}
.y229{bottom:624.627000px;}
.y1c1{bottom:627.220050px;}
.y19a{bottom:628.491000px;}
.ya6{bottom:628.798200px;}
.y7d{bottom:630.898200px;}
.y22b{bottom:632.756850px;}
.y17c{bottom:632.864100px;}
.y290{bottom:634.041750px;}
.y55{bottom:635.542200px;}
.y106{bottom:637.291200px;}
.y9{bottom:637.639050px;}
.y25f{bottom:639.037800px;}
.y163{bottom:639.723300px;}
.y202{bottom:640.526550px;}
.y228{bottom:641.756850px;}
.ye8{bottom:646.797750px;}
.y25e{bottom:648.037800px;}
.ya5{bottom:648.298200px;}
.y7c{bottom:650.248200px;}
.y22c{bottom:650.756850px;}
.y54{bottom:655.042200px;}
.y199{bottom:656.748900px;}
.y105{bottom:656.791200px;}
.y28b{bottom:657.142500px;}
.y201{bottom:660.026550px;}
.y31{bottom:662.545350px;}
.y17b{bottom:664.491000px;}
.y28f{bottom:665.270550px;}
.ye7{bottom:666.297750px;}
.ya4{bottom:667.798200px;}
.y162{bottom:667.981200px;}
.y1e6{bottom:668.145000px;}
.y7b{bottom:669.598200px;}
.y220{bottom:670.885500px;}
.y28d{bottom:674.270550px;}
.y53{bottom:674.542200px;}
.y104{bottom:676.291200px;}
.y1c0{bottom:678.218550px;}
.y227{bottom:679.014750px;}
.y30{bottom:680.545350px;}
.y8{bottom:681.139050px;}
.y28a{bottom:683.270550px;}
.y198{bottom:685.006800px;}
.y25d{bottom:685.295700px;}
.ye6{bottom:685.797750px;}
.y147{bottom:685.936350px;}
.ya3{bottom:687.298200px;}
.y1e5{bottom:687.645000px;}
.y223{bottom:688.014750px;}
.y7a{bottom:688.948200px;}
.y17a{bottom:692.748900px;}
.y52{bottom:694.042200px;}
.y25c{bottom:694.295700px;}
.y103{bottom:695.791200px;}
.y161{bottom:696.239100px;}
.y200{bottom:696.534450px;}
.y146{bottom:700.936350px;}
.y28e{bottom:701.270550px;}
.y2f{bottom:704.923350px;}
.ye5{bottom:705.297750px;}
.y21f{bottom:706.014750px;}
.ya2{bottom:706.798200px;}
.y1e4{bottom:707.145000px;}
.y7{bottom:708.139050px;}
.y79{bottom:708.298200px;}
.y1bf{bottom:708.995100px;}
.y197{bottom:713.264700px;}
.y1bd{bottom:713.273700px;}
.y51{bottom:713.542200px;}
.y225{bottom:715.014750px;}
.y179{bottom:721.006800px;}
.y287{bottom:721.399500px;}
.y2e{bottom:722.923350px;}
.y160{bottom:724.497000px;}
.ye4{bottom:724.797750px;}
.ya1{bottom:726.298200px;}
.y1e3{bottom:726.645000px;}
.y78{bottom:727.648200px;}
.y289{bottom:729.528600px;}
.y196{bottom:731.264700px;}
.y1bc{bottom:731.273700px;}
.y145{bottom:732.563250px;}
.y224{bottom:733.014750px;}
.y50{bottom:733.042200px;}
.y25b{bottom:734.412150px;}
.y6{bottom:735.139050px;}
.y1be{bottom:735.552150px;}
.y102{bottom:736.291650px;}
.y2d{bottom:740.923350px;}
.ye3{bottom:744.297750px;}
.ya0{bottom:745.798200px;}
.y77{bottom:746.998200px;}
.y286{bottom:747.528600px;}
.y178{bottom:749.264700px;}
.y144{bottom:750.563250px;}
.y4f{bottom:752.542200px;}
.y15f{bottom:752.754900px;}
.y2c{bottom:758.923350px;}
.y195{bottom:759.522600px;}
.y1bb{bottom:762.109350px;}
.ye2{bottom:763.797750px;}
.y21e{bottom:764.243550px;}
.y9f{bottom:765.298200px;}
.y259{bottom:765.528600px;}
.y76{bottom:766.348200px;}
.y1b9{bottom:766.387800px;}
.y4e{bottom:772.042200px;}
.y258{bottom:774.528600px;}
.y2b{bottom:776.923350px;}
.y177{bottom:777.522600px;}
.y1e2{bottom:777.643650px;}
.y15e{bottom:781.012800px;}
.y143{bottom:781.567350px;}
.y5{bottom:781.630050px;}
.ye1{bottom:783.297750px;}
.y25a{bottom:783.528600px;}
.y1b8{bottom:784.387800px;}
.y9e{bottom:784.798200px;}
.y75{bottom:785.698200px;}
.y101{bottom:787.290300px;}
.y194{bottom:787.780500px;}
.y1ba{bottom:788.666400px;}
.y4d{bottom:791.542200px;}
.y285{bottom:793.786350px;}
.y2a{bottom:794.923350px;}
.y21d{bottom:798.443550px;}
.y193{bottom:801.909300px;}
.y284{bottom:802.786350px;}
.ye0{bottom:802.797750px;}
.y252{bottom:803.658000px;}
.y9d{bottom:804.298200px;}
.y74{bottom:805.048200px;}
.y176{bottom:805.780500px;}
.y100{bottom:806.790300px;}
.y15d{bottom:809.270550px;}
.y4c{bottom:811.042200px;}
.y255{bottom:811.786350px;}
.y29{bottom:812.923350px;}
.y1e1{bottom:814.399500px;}
.y1b7{bottom:815.223450px;}
.y142{bottom:815.317350px;}
.y4{bottom:817.633050px;}
.y1b5{bottom:819.502050px;}
.y257{bottom:820.786350px;}
.ydf{bottom:822.297750px;}
.y9c{bottom:823.798200px;}
.y73{bottom:824.398200px;}
.yff{bottom:826.290300px;}
.y251{bottom:829.786350px;}
.y4b{bottom:830.542200px;}
.y28{bottom:830.923350px;}
.y1e0{bottom:832.399500px;}
.y174{bottom:834.038250px;}
.y21c{bottom:834.299550px;}
.y1b4{bottom:837.502050px;}
.y15c{bottom:837.528600px;}
.y256{bottom:838.786350px;}
.y1b6{bottom:841.780500px;}
.yde{bottom:841.797750px;}
.y173{bottom:843.038250px;}
.y9b{bottom:843.298200px;}
.y72{bottom:843.748200px;}
.yfe{bottom:845.790300px;}
.y27{bottom:848.923350px;}
.y141{bottom:849.179700px;}
.y281{bottom:849.915000px;}
.y4a{bottom:850.042200px;}
.y175{bottom:852.038250px;}
.y21b{bottom:852.299550px;}
.y3{bottom:853.636050px;}
.y283{bottom:858.044250px;}
.y9a{bottom:862.798200px;}
.y71{bottom:863.098200px;}
.yfd{bottom:865.290300px;}
.y15b{bottom:865.786350px;}
.y192{bottom:866.923200px;}
.y26{bottom:866.923350px;}
.y24f{bottom:867.915000px;}
.y1b3{bottom:868.337700px;}
.y49{bottom:869.542200px;}
.y1b1{bottom:872.616150px;}
.y250{bottom:876.044250px;}
.y1df{bottom:879.915300px;}
.y99{bottom:882.298200px;}
.y70{bottom:882.448200px;}
.y140{bottom:884.923200px;}
.y25{bottom:884.923350px;}
.y24e{bottom:885.044250px;}
.y2{bottom:889.639050px;}
.y1b0{bottom:890.616150px;}
.y15a{bottom:894.044250px;}
.y1b2{bottom:894.894750px;}
.y48{bottom:901.798200px;}
.y13f{bottom:902.923200px;}
.y24{bottom:902.923350px;}
.y23{bottom:948.630150px;}
.y21{bottom:950.540700px;}
.y22{bottom:963.030150px;}
.y20{bottom:967.040700px;}
.h6{height:26.320898px;}
.h2{height:36.304688px;}
.hc{height:39.585938px;}
.h7{height:45.380859px;}
.h11{height:45.507000px;}
.hf{height:45.508500px;}
.ha{height:45.890625px;}
.h8{height:49.482422px;}
.h9{height:54.430664px;}
.h13{height:63.507000px;}
.h10{height:63.508500px;}
.h5{height:64.568658px;}
.h4{height:72.750000px;}
.h12{height:81.507000px;}
.he{height:81.508500px;}
.hb{height:85.482422px;}
.h3{height:99.837891px;}
.hd{height:105.998222px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:252.991500px;}
.w3{width:252.993000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1f{left:8.503950px;}
.x1{left:85.039350px;}
.xf{left:93.543300px;}
.x9{left:94.556550px;}
.x6{left:100.256250px;}
.x1e{left:104.623950px;}
.x2{left:106.039350px;}
.xa{left:108.455550px;}
.x7{left:110.551200px;}
.x8{left:132.510000px;}
.x20{left:140.314950px;}
.xb{left:180.049650px;}
.x17{left:204.654300px;}
.x13{left:210.286050px;}
.x23{left:217.848000px;}
.x1c{left:233.858250px;}
.x19{left:235.506600px;}
.x1d{left:244.292100px;}
.x27{left:247.423200px;}
.x25{left:253.857450px;}
.x24{left:261.569850px;}
.x26{left:267.106950px;}
.x5{left:298.748400px;}
.x12{left:311.213700px;}
.x4{left:359.970150px;}
.x10{left:381.385050px;}
.x22{left:384.802500px;}
.x21{left:393.307050px;}
.x3{left:440.059350px;}
.xc{left:455.502750px;}
.x14{left:502.675500px;}
.x18{left:513.332250px;}
.x1a{left:516.046200px;}
.xd{left:551.853450px;}
.xe{left:555.449700px;}
.x16{left:580.502400px;}
.x11{left:583.653600px;}
.x15{left:586.845300px;}
.x1b{left:592.681650px;}
@media print{
.v7{vertical-align:-50.236267pt;}
.v8{vertical-align:-47.212800pt;}
.v3{vertical-align:-17.599467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.v6{vertical-align:14.080000pt;}
.v4{vertical-align:17.600000pt;}
.v1{vertical-align:24.639467pt;}
.v5{vertical-align:32.000000pt;}
.v9{vertical-align:50.236267pt;}
.ls9{letter-spacing:-1.114667pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls21{letter-spacing:-0.352000pt;}
.ls6{letter-spacing:-0.293333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.002133pt;}
.ls1c{letter-spacing:0.006400pt;}
.ls12{letter-spacing:0.006933pt;}
.ls19{letter-spacing:0.008533pt;}
.lsc{letter-spacing:0.009067pt;}
.ls10{letter-spacing:0.011733pt;}
.ls15{letter-spacing:0.013333pt;}
.lse{letter-spacing:0.014400pt;}
.ls13{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.595733pt;}
.ls5{letter-spacing:2.288000pt;}
.ls3{letter-spacing:5.021867pt;}
.ls1{letter-spacing:10.454933pt;}
.ls1f{letter-spacing:14.883200pt;}
.ls27{letter-spacing:74.524800pt;}
.ls23{letter-spacing:99.861333pt;}
.ls26{letter-spacing:170.931200pt;}
.ls1b{letter-spacing:174.869333pt;}
.ls29{letter-spacing:176.504000pt;}
.ls18{letter-spacing:209.217067pt;}
.lsf{letter-spacing:232.922667pt;}
.ls28{letter-spacing:236.582400pt;}
.ls24{letter-spacing:808.457067pt;}
.ls25{letter-spacing:1267.925867pt;}
.ls8{letter-spacing:1268.196800pt;}
.ls1a{letter-spacing:1268.488533pt;}
.ls1e{letter-spacing:1268.530133pt;}
.ls0{letter-spacing:1268.801067pt;}
.lsb{letter-spacing:1269.092267pt;}
.ls20{letter-spacing:1269.530133pt;}
.ls4{letter-spacing:1269.801067pt;}
.lsd{letter-spacing:1270.092267pt;}
.ls22{letter-spacing:1270.634133pt;}
.ls7{letter-spacing:1270.905067pt;}
.ls11{letter-spacing:1271.196800pt;}
.ls1d{letter-spacing:1273.738133pt;}
.lsa{letter-spacing:1274.300800pt;}
.wse{word-spacing:-15.546667pt;}
.ws6a{word-spacing:-13.845333pt;}
.wsf{word-spacing:-13.258667pt;}
.ws6d{word-spacing:-12.906667pt;}
.ws23{word-spacing:-12.144000pt;}
.ws2{word-spacing:-12.053333pt;}
.ws43{word-spacing:-11.466667pt;}
.ws0{word-spacing:-10.282667pt;}
.ws33{word-spacing:-9.642667pt;}
.ws1{word-spacing:-7.454933pt;}
.ws2f{word-spacing:-6.990933pt;}
.ws10{word-spacing:-6.101333pt;}
.ws76{word-spacing:-5.690667pt;}
.ws32{word-spacing:-5.592747pt;}
.ws6c{word-spacing:-4.576000pt;}
.ws5f{word-spacing:-4.517333pt;}
.ws42{word-spacing:-4.048000pt;}
.ws80{word-spacing:-3.893333pt;}
.ws13{word-spacing:-3.813333pt;}
.wsb{word-spacing:-3.626667pt;}
.ws12{word-spacing:-3.226667pt;}
.ws1f{word-spacing:-2.933333pt;}
.ws2c{word-spacing:-2.874667pt;}
.ws2d{word-spacing:-2.288000pt;}
.ws1d{word-spacing:-2.170667pt;}
.ws5c{word-spacing:-1.114667pt;}
.wsa{word-spacing:-0.906667pt;}
.ws28{word-spacing:-0.880000pt;}
.ws68{word-spacing:-0.821333pt;}
.ws29{word-spacing:-0.762667pt;}
.ws45{word-spacing:-0.586667pt;}
.ws94{word-spacing:-0.533333pt;}
.ws18{word-spacing:-0.410667pt;}
.ws4{word-spacing:-0.085333pt;}
.ws15{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.106667pt;}
.ws17{word-spacing:0.293333pt;}
.ws7{word-spacing:0.298667pt;}
.ws27{word-spacing:0.410667pt;}
.ws24{word-spacing:0.762667pt;}
.ws70{word-spacing:1.584000pt;}
.ws9{word-spacing:1.973333pt;}
.ws14{word-spacing:2.288000pt;}
.ws73{word-spacing:2.522667pt;}
.ws1c{word-spacing:2.757333pt;}
.ws5e{word-spacing:3.226667pt;}
.ws72{word-spacing:3.461333pt;}
.ws63{word-spacing:3.520000pt;}
.ws2a{word-spacing:3.872000pt;}
.ws66{word-spacing:3.930667pt;}
.ws69{word-spacing:4.400000pt;}
.ws71{word-spacing:4.634667pt;}
.wsc{word-spacing:5.013333pt;}
.ws26{word-spacing:5.104000pt;}
.ws6{word-spacing:5.290667pt;}
.ws5d{word-spacing:5.338667pt;}
.ws25{word-spacing:5.632000pt;}
.ws92{word-spacing:5.920000pt;}
.ws2b{word-spacing:6.042667pt;}
.ws21{word-spacing:6.746667pt;}
.ws19{word-spacing:7.568000pt;}
.ws22{word-spacing:8.272000pt;}
.ws5{word-spacing:8.405333pt;}
.ws20{word-spacing:8.448000pt;}
.ws95{word-spacing:8.693333pt;}
.ws1a{word-spacing:8.917333pt;}
.wsd{word-spacing:8.960000pt;}
.ws8{word-spacing:9.173333pt;}
.ws1b{word-spacing:9.269333pt;}
.ws61{word-spacing:9.504000pt;}
.ws75{word-spacing:9.562667pt;}
.ws74{word-spacing:10.618667pt;}
.ws6f{word-spacing:11.674667pt;}
.ws65{word-spacing:12.554667pt;}
.ws6e{word-spacing:13.610667pt;}
.ws16{word-spacing:14.021333pt;}
.ws6b{word-spacing:14.080000pt;}
.ws7d{word-spacing:14.613333pt;}
.ws62{word-spacing:14.901333pt;}
.ws87{word-spacing:15.093333pt;}
.ws8c{word-spacing:15.253333pt;}
.ws64{word-spacing:15.429333pt;}
.ws3d{word-spacing:16.906667pt;}
.ws82{word-spacing:17.013333pt;}
.ws60{word-spacing:17.306667pt;}
.ws11{word-spacing:17.600000pt;}
.ws93{word-spacing:17.813333pt;}
.ws1e{word-spacing:17.893333pt;}
.ws78{word-spacing:17.920000pt;}
.ws90{word-spacing:18.826667pt;}
.ws83{word-spacing:19.466667pt;}
.ws7b{word-spacing:22.773333pt;}
.ws67{word-spacing:23.056000pt;}
.ws8a{word-spacing:26.240000pt;}
.ws8b{word-spacing:31.413333pt;}
.ws79{word-spacing:32.320000pt;}
.ws8e{word-spacing:33.120000pt;}
.ws88{word-spacing:35.946667pt;}
.ws7a{word-spacing:36.533333pt;}
.ws7e{word-spacing:36.586667pt;}
.ws8f{word-spacing:38.826667pt;}
.ws85{word-spacing:41.066667pt;}
.ws81{word-spacing:45.973333pt;}
.ws91{word-spacing:47.200000pt;}
.ws96{word-spacing:51.466667pt;}
.ws47{word-spacing:52.316800pt;}
.ws7c{word-spacing:54.400000pt;}
.ws89{word-spacing:62.720000pt;}
.ws46{word-spacing:63.293867pt;}
.ws84{word-spacing:74.283733pt;}
.ws8d{word-spacing:81.546667pt;}
.ws86{word-spacing:88.213333pt;}
.ws56{word-spacing:92.990933pt;}
.ws57{word-spacing:93.003733pt;}
.ws59{word-spacing:106.633600pt;}
.ws4e{word-spacing:111.556800pt;}
.ws5a{word-spacing:119.561067pt;}
.ws52{word-spacing:119.779200pt;}
.ws53{word-spacing:119.792533pt;}
.ws54{word-spacing:120.275733pt;}
.ws5b{word-spacing:127.716800pt;}
.ws4c{word-spacing:127.943467pt;}
.ws4d{word-spacing:127.948267pt;}
.ws4f{word-spacing:130.623467pt;}
.ws51{word-spacing:141.227200pt;}
.ws4a{word-spacing:151.570133pt;}
.ws55{word-spacing:152.126400pt;}
.ws50{word-spacing:154.505600pt;}
.ws48{word-spacing:154.550400pt;}
.ws38{word-spacing:163.379200pt;}
.ws30{word-spacing:173.790933pt;}
.ws4b{word-spacing:178.914667pt;}
.ws34{word-spacing:181.470933pt;}
.ws37{word-spacing:190.419200pt;}
.ws35{word-spacing:216.111467pt;}
.ws36{word-spacing:216.112000pt;}
.ws44{word-spacing:249.139733pt;}
.ws58{word-spacing:262.168533pt;}
.ws77{word-spacing:267.258133pt;}
.ws31{word-spacing:279.079467pt;}
.ws2e{word-spacing:287.010667pt;}
.ws3a{word-spacing:443.064533pt;}
.ws39{word-spacing:470.104533pt;}
.ws49{word-spacing:717.216533pt;}
.ws3b{word-spacing:722.749333pt;}
.ws3e{word-spacing:1002.434667pt;}
.ws3c{word-spacing:1029.474667pt;}
.ws3f{word-spacing:1282.119467pt;}
.ws41{word-spacing:1561.804800pt;}
.ws40{word-spacing:1588.844800pt;}
._1a{margin-left:-13.903467pt;}
._1c{margin-left:-12.804800pt;}
._52{margin-left:-8.070400pt;}
._19{margin-left:-6.998933pt;}
._10{margin-left:-5.913067pt;}
._0{margin-left:-4.946667pt;}
._c{margin-left:-3.973333pt;}
._a{margin-left:-2.197333pt;}
._2{margin-left:-1.141333pt;}
._5{width:1.168000pt;}
._b{width:2.208000pt;}
._4{width:3.674667pt;}
._3{width:4.650667pt;}
._8{width:5.994667pt;}
._9{width:7.050667pt;}
._d{width:8.284800pt;}
._1{width:9.258667pt;}
._f{width:10.420267pt;}
._1d{width:11.363733pt;}
._12{width:12.358400pt;}
._6{width:13.408000pt;}
._11{width:14.901333pt;}
._15{width:16.197867pt;}
._16{width:17.095467pt;}
._e{width:18.341333pt;}
._17{width:19.724800pt;}
._1b{width:20.665600pt;}
._4a{width:22.378133pt;}
._4d{width:23.462933pt;}
._54{width:24.510933pt;}
._5f{width:25.426133pt;}
._14{width:26.319467pt;}
._13{width:27.761600pt;}
._53{width:29.042667pt;}
._4e{width:30.764800pt;}
._4c{width:31.900267pt;}
._56{width:33.244800pt;}
._4f{width:34.179200pt;}
._5a{width:36.165333pt;}
._59{width:37.098667pt;}
._5e{width:42.362667pt;}
._4b{width:43.754133pt;}
._5b{width:50.742400pt;}
._5d{width:67.751467pt;}
._49{width:71.025600pt;}
._5c{width:86.337067pt;}
._50{width:89.202133pt;}
._51{width:90.489067pt;}
._58{width:104.800000pt;}
._57{width:105.882667pt;}
._45{width:118.883733pt;}
._23{width:125.207467pt;}
._46{width:131.803733pt;}
._47{width:139.968000pt;}
._41{width:141.962133pt;}
._24{width:142.974933pt;}
._43{width:153.034667pt;}
._21{width:156.499200pt;}
._42{width:159.752000pt;}
._2e{width:162.706667pt;}
._3b{width:166.599467pt;}
._26{width:175.398933pt;}
._3d{width:180.517333pt;}
._30{width:183.693867pt;}
._20{width:186.136533pt;}
._1f{width:187.957333pt;}
._22{width:197.046933pt;}
._1e{width:200.531200pt;}
._40{width:221.309333pt;}
._25{width:227.588800pt;}
._38{width:233.248000pt;}
._3a{width:249.965333pt;}
._31{width:261.193067pt;}
._44{width:267.229867pt;}
._37{width:291.035200pt;}
._3f{width:314.832533pt;}
._60{width:320.828800pt;}
._2f{width:330.269867pt;}
._36{width:348.987200pt;}
._35{width:354.067200pt;}
._3c{width:370.827200pt;}
._55{width:379.189867pt;}
._33{width:399.827200pt;}
._39{width:415.312533pt;}
._2d{width:437.669333pt;}
._3e{width:453.328533pt;}
._28{width:455.084267pt;}
._32{width:468.062933pt;}
._27{width:482.124267pt;}
._34{width:492.563200pt;}
._29{width:761.809067pt;}
._2a{width:1041.494400pt;}
._48{width:1276.521600pt;}
._18{width:1277.548800pt;}
._7{width:1278.860800pt;}
._2b{width:1294.139200pt;}
._2c{width:1573.824533pt;}
.fs8{font-size:24.746667pt;}
.fs6{font-size:30.933333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:43.306667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y273{bottom:23.224933pt;}
.y254{bottom:23.225200pt;}
.y26f{bottom:23.225600pt;}
.y230{bottom:23.225733pt;}
.y244{bottom:23.225867pt;}
.y226{bottom:23.226000pt;}
.y29a{bottom:23.226133pt;}
.y248{bottom:23.226400pt;}
.y22a{bottom:23.226533pt;}
.y28c{bottom:31.224933pt;}
.y2a2{bottom:31.225867pt;}
.y222{bottom:31.226000pt;}
.y235{bottom:31.226267pt;}
.y253{bottom:39.225200pt;}
.y26e{bottom:39.225600pt;}
.y22f{bottom:39.225733pt;}
.y288{bottom:39.225867pt;}
.y282{bottom:39.226000pt;}
.y269{bottom:39.226400pt;}
.y221{bottom:47.226000pt;}
.y277{bottom:55.225467pt;}
.y1{bottom:59.963733pt;}
.y98{bottom:113.465067pt;}
.y97{bottom:113.598400pt;}
.y1ff{bottom:113.907467pt;}
.y6f{bottom:114.259733pt;}
.y21a{bottom:114.448800pt;}
.y1f{bottom:115.605600pt;}
.y120{bottom:115.814400pt;}
.y191{bottom:117.864267pt;}
.ydd{bottom:120.267200pt;}
.y27d{bottom:121.662667pt;}
.y1de{bottom:121.957867pt;}
.y159{bottom:124.839200pt;}
.ybf{bottom:125.598400pt;}
.ycd{bottom:125.819200pt;}
.y1dc{bottom:126.516933pt;}
.y280{bottom:128.888667pt;}
.y96{bottom:130.798400pt;}
.y130{bottom:130.932533pt;}
.y1fe{bottom:131.240800pt;}
.y6e{bottom:131.593067pt;}
.y1e{bottom:131.605600pt;}
.y219{bottom:131.782133pt;}
.y11f{bottom:133.147733pt;}
.yfc{bottom:134.932933pt;}
.y190{bottom:135.197600pt;}
.y27e{bottom:136.888667pt;}
.ydc{bottom:137.600533pt;}
.y24c{bottom:141.105600pt;}
.y1db{bottom:142.516933pt;}
.ybe{bottom:142.931733pt;}
.ycc{bottom:143.152667pt;}
.y1ae{bottom:143.511200pt;}
.y27c{bottom:144.888667pt;}
.y1af{bottom:146.952133pt;}
.y1dd{bottom:147.076000pt;}
.y1d{bottom:147.605600pt;}
.y95{bottom:147.998400pt;}
.y12f{bottom:148.265867pt;}
.y1fd{bottom:148.574133pt;}
.y6d{bottom:148.926400pt;}
.y24b{bottom:149.105600pt;}
.y218{bottom:149.115467pt;}
.y158{bottom:149.957333pt;}
.y11e{bottom:150.481067pt;}
.yfb{bottom:152.266267pt;}
.y18f{bottom:152.530933pt;}
.ydb{bottom:154.933867pt;}
.y24d{bottom:157.105600pt;}
.y1ad{bottom:159.511200pt;}
.ybd{bottom:160.265067pt;}
.ycb{bottom:160.486000pt;}
.y27f{bottom:160.888667pt;}
.y1c{bottom:163.605600pt;}
.y94{bottom:165.198400pt;}
.y12e{bottom:165.599200pt;}
.y1fc{bottom:165.907467pt;}
.y6c{bottom:166.259733pt;}
.y217{bottom:166.448800pt;}
.y11d{bottom:167.814400pt;}
.yfa{bottom:169.599600pt;}
.y18e{bottom:169.864267pt;}
.y13e{bottom:170.933333pt;}
.y1da{bottom:171.816267pt;}
.yda{bottom:172.267200pt;}
.y157{bottom:175.075333pt;}
.y1ac{bottom:175.511200pt;}
.y1d8{bottom:175.808267pt;}
.ybc{bottom:177.598400pt;}
.yca{bottom:177.819333pt;}
.y47{bottom:178.924800pt;}
.y1b{bottom:179.605600pt;}
.y93{bottom:182.398400pt;}
.y12d{bottom:182.932533pt;}
.y1fb{bottom:183.240800pt;}
.y6b{bottom:183.593067pt;}
.y216{bottom:183.648800pt;}
.y24a{bottom:184.764667pt;}
.y11c{bottom:185.147733pt;}
.yf9{bottom:186.932933pt;}
.y18d{bottom:187.197600pt;}
.y172{bottom:188.242267pt;}
.y13d{bottom:188.266667pt;}
.y27b{bottom:188.547733pt;}
.yd9{bottom:189.600533pt;}
.y1d7{bottom:191.808267pt;}
.y46{bottom:194.924800pt;}
.ybb{bottom:194.931733pt;}
.yc9{bottom:195.152667pt;}
.y1a{bottom:195.605600pt;}
.y1d9{bottom:195.800400pt;}
.y92{bottom:199.598400pt;}
.y156{bottom:200.193467pt;}
.y12c{bottom:200.265867pt;}
.y1fa{bottom:200.574133pt;}
.y1ab{bottom:200.629333pt;}
.y215{bottom:200.848800pt;}
.y6a{bottom:200.926400pt;}
.y11b{bottom:202.481067pt;}
.yf8{bottom:204.266267pt;}
.y18c{bottom:204.530933pt;}
.y1a9{bottom:205.188400pt;}
.y247{bottom:205.197333pt;}
.y171{bottom:205.575600pt;}
.y13c{bottom:205.600000pt;}
.yd8{bottom:206.933867pt;}
.y276{bottom:208.981333pt;}
.y19{bottom:211.605600pt;}
.yba{bottom:212.265067pt;}
.y249{bottom:212.423733pt;}
.yc8{bottom:212.486000pt;}
.y27a{bottom:216.206800pt;}
.y45{bottom:216.594133pt;}
.y91{bottom:216.798400pt;}
.y12b{bottom:217.599200pt;}
.y1f9{bottom:217.907467pt;}
.y214{bottom:218.048800pt;}
.y69{bottom:218.259733pt;}
.y1d6{bottom:219.784667pt;}
.y11a{bottom:219.814400pt;}
.y246{bottom:220.423733pt;}
.y1a8{bottom:221.188400pt;}
.yf7{bottom:221.599600pt;}
.y18b{bottom:221.864267pt;}
.y170{bottom:222.908933pt;}
.y13b{bottom:222.933333pt;}
.y1d4{bottom:223.776800pt;}
.yd7{bottom:224.267200pt;}
.y155{bottom:225.311600pt;}
.y1aa{bottom:225.747333pt;}
.y18{bottom:227.605600pt;}
.yb9{bottom:229.598400pt;}
.yc7{bottom:229.819333pt;}
.y279{bottom:232.206800pt;}
.y44{bottom:232.594133pt;}
.y90{bottom:233.998400pt;}
.y2a9{bottom:234.848267pt;}
.y12a{bottom:234.932533pt;}
.y1f8{bottom:235.240800pt;}
.y213{bottom:235.248800pt;}
.y68{bottom:235.593067pt;}
.y119{bottom:237.147733pt;}
.yf6{bottom:238.932933pt;}
.y18a{bottom:239.197600pt;}
.y1d3{bottom:239.776800pt;}
.y275{bottom:240.206800pt;}
.y13a{bottom:240.266667pt;}
.yd6{bottom:241.600533pt;}
.y1d5{bottom:243.768933pt;}
.y243{bottom:246.316000pt;}
.yb8{bottom:246.931733pt;}
.yc6{bottom:247.152667pt;}
.y278{bottom:248.206800pt;}
.y43{bottom:248.594133pt;}
.y154{bottom:250.429733pt;}
.y1a6{bottom:250.865467pt;}
.y8f{bottom:251.198400pt;}
.y129{bottom:252.265867pt;}
.y212{bottom:252.448800pt;}
.y1f7{bottom:252.574133pt;}
.y67{bottom:252.926400pt;}
.y245{bottom:253.541867pt;}
.y118{bottom:254.481067pt;}
.y189{bottom:256.530933pt;}
.y139{bottom:257.600000pt;}
.y1a5{bottom:258.865467pt;}
.y16f{bottom:258.909333pt;}
.yd5{bottom:258.933867pt;}
.y242{bottom:261.541867pt;}
.y17{bottom:262.272267pt;}
.y2a7{bottom:262.961067pt;}
.yb7{bottom:264.265067pt;}
.yc5{bottom:264.486000pt;}
.y42{bottom:264.594133pt;}
.y1a7{bottom:266.865467pt;}
.y1d2{bottom:267.753200pt;}
.y8e{bottom:268.398400pt;}
.y128{bottom:269.599200pt;}
.y211{bottom:269.648800pt;}
.y1f6{bottom:269.907467pt;}
.y66{bottom:270.259733pt;}
.y2a6{bottom:270.961067pt;}
.y1d0{bottom:271.745333pt;}
.y117{bottom:271.814400pt;}
.y188{bottom:273.864267pt;}
.yf5{bottom:274.933333pt;}
.y153{bottom:275.547867pt;}
.yd4{bottom:276.267200pt;}
.y2a8{bottom:278.961067pt;}
.y41{bottom:280.594133pt;}
.yb6{bottom:281.598400pt;}
.yc4{bottom:281.819333pt;}
.y272{bottom:282.100000pt;}
.y8d{bottom:285.598400pt;}
.y210{bottom:286.848800pt;}
.y127{bottom:286.932533pt;}
.y1f5{bottom:287.240800pt;}
.y65{bottom:287.593067pt;}
.y1cf{bottom:287.745333pt;}
.y116{bottom:289.147733pt;}
.y274{bottom:289.324933pt;}
.y187{bottom:291.197600pt;}
.y1d1{bottom:291.737467pt;}
.yf4{bottom:292.266667pt;}
.yd3{bottom:293.600533pt;}
.y240{bottom:294.660000pt;}
.y1a4{bottom:296.096533pt;}
.y40{bottom:296.594133pt;}
.y2a1{bottom:296.853333pt;}
.y271{bottom:297.324933pt;}
.yb5{bottom:298.931733pt;}
.yc3{bottom:299.152667pt;}
.y152{bottom:300.666000pt;}
.y23f{bottom:302.660000pt;}
.y8c{bottom:302.798400pt;}
.y20f{bottom:304.048800pt;}
.y2a5{bottom:304.079200pt;}
.y16e{bottom:304.241467pt;}
.y126{bottom:304.265867pt;}
.y1f4{bottom:304.574133pt;}
.y64{bottom:304.926400pt;}
.y115{bottom:306.481067pt;}
.y16{bottom:308.496800pt;}
.y186{bottom:308.530933pt;}
.y138{bottom:309.600000pt;}
.y241{bottom:310.660000pt;}
.yd2{bottom:310.933867pt;}
.y2a3{bottom:312.079200pt;}
.y1a3{bottom:312.096533pt;}
.y3f{bottom:312.594133pt;}
.y1cd{bottom:315.721733pt;}
.yb4{bottom:316.265067pt;}
.yc2{bottom:316.486000pt;}
.y16d{bottom:317.574800pt;}
.y8b{bottom:319.998400pt;}
.y2a0{bottom:320.079200pt;}
.y20e{bottom:321.248800pt;}
.y125{bottom:321.599200pt;}
.y15{bottom:321.830133pt;}
.y1f3{bottom:321.907467pt;}
.y63{bottom:322.259733pt;}
.y26d{bottom:323.217333pt;}
.y1cc{bottom:323.721733pt;}
.y114{bottom:323.814400pt;}
.y151{bottom:325.784000pt;}
.y137{bottom:326.933333pt;}
.y1a2{bottom:328.096533pt;}
.yd1{bottom:328.267200pt;}
.y3e{bottom:328.594133pt;}
.y270{bottom:330.442933pt;}
.y1ce{bottom:331.721733pt;}
.yb3{bottom:333.598400pt;}
.y14{bottom:335.163467pt;}
.y23e{bottom:335.778000pt;}
.y2a4{bottom:336.079200pt;}
.y8a{bottom:337.198400pt;}
.yf3{bottom:337.598800pt;}
.y20d{bottom:338.448800pt;}
.y124{bottom:338.932533pt;}
.y1f2{bottom:339.240800pt;}
.y62{bottom:339.593067pt;}
.y113{bottom:341.147733pt;}
.y16c{bottom:342.580000pt;}
.y23d{bottom:343.778000pt;}
.y136{bottom:344.266667pt;}
.y185{bottom:344.531333pt;}
.y3d{bottom:344.594133pt;}
.yd0{bottom:345.600533pt;}
.y26c{bottom:346.442933pt;}
.y13{bottom:348.496800pt;}
.y150{bottom:350.902133pt;}
.yb2{bottom:350.931733pt;}
.yc1{bottom:352.486400pt;}
.y89{bottom:354.398400pt;}
.yf2{bottom:354.932133pt;}
.y20c{bottom:355.648800pt;}
.y123{bottom:356.265867pt;}
.y1f1{bottom:356.574133pt;}
.y61{bottom:356.926400pt;}
.y112{bottom:358.481067pt;}
.y1cb{bottom:360.196800pt;}
.y3c{bottom:360.594133pt;}
.y29e{bottom:361.197333pt;}
.y135{bottom:361.600000pt;}
.y12{bottom:361.830133pt;}
.y184{bottom:361.864667pt;}
.y16b{bottom:367.698133pt;}
.yb1{bottom:368.265067pt;}
.y29d{bottom:369.197333pt;}
.y88{bottom:371.598400pt;}
.y1a1{bottom:372.095200pt;}
.yf1{bottom:372.265467pt;}
.y20b{bottom:372.848800pt;}
.y122{bottom:373.599200pt;}
.y1f0{bottom:373.907467pt;}
.y60{bottom:374.259733pt;}
.y11{bottom:375.163467pt;}
.y111{bottom:375.814400pt;}
.y14f{bottom:376.020267pt;}
.y1ca{bottom:376.196800pt;}
.y3b{bottom:376.594133pt;}
.y23b{bottom:376.896133pt;}
.y29f{bottom:377.197333pt;}
.y268{bottom:380.334667pt;}
.ycf{bottom:381.600933pt;}
.y23a{bottom:384.896133pt;}
.yb0{bottom:385.598400pt;}
.y26a{bottom:387.561067pt;}
.y87{bottom:388.798400pt;}
.y1a0{bottom:389.428533pt;}
.yf0{bottom:389.598800pt;}
.y20a{bottom:390.048800pt;}
.y1ef{bottom:391.240800pt;}
.y5f{bottom:391.593067pt;}
.y1c9{bottom:392.196800pt;}
.yc0{bottom:392.266267pt;}
.y3a{bottom:392.594133pt;}
.y16a{bottom:392.816267pt;}
.y23c{bottom:392.896133pt;}
.y110{bottom:393.147733pt;}
.y299{bottom:395.089333pt;}
.y134{bottom:397.600533pt;}
.y14e{bottom:401.138400pt;}
.y10{bottom:401.830133pt;}
.y29b{bottom:402.315467pt;}
.yaf{bottom:402.931733pt;}
.y267{bottom:403.561067pt;}
.y86{bottom:405.998400pt;}
.y19f{bottom:406.761867pt;}
.yef{bottom:406.932133pt;}
.y183{bottom:407.196800pt;}
.y209{bottom:407.248800pt;}
.y1ee{bottom:408.574133pt;}
.y39{bottom:408.594133pt;}
.y5e{bottom:408.926400pt;}
.y121{bottom:409.599600pt;}
.y298{bottom:410.315467pt;}
.y10f{bottom:410.481067pt;}
.yf{bottom:415.163467pt;}
.y169{bottom:417.934400pt;}
.y29c{bottom:418.315467pt;}
.y26b{bottom:419.561067pt;}
.yae{bottom:420.265067pt;}
.y239{bottom:420.555200pt;}
.y85{bottom:423.198400pt;}
.yee{bottom:424.265467pt;}
.y208{bottom:424.448800pt;}
.y182{bottom:424.530133pt;}
.y38{bottom:424.594133pt;}
.y1ed{bottom:425.907467pt;}
.y14d{bottom:426.256533pt;}
.y5d{bottom:426.259733pt;}
.yce{bottom:426.932933pt;}
.y10e{bottom:427.814400pt;}
.y1c8{bottom:436.195467pt;}
.yad{bottom:437.598400pt;}
.y84{bottom:440.398400pt;}
.y37{bottom:440.594133pt;}
.y234{bottom:440.988000pt;}
.yed{bottom:441.598800pt;}
.y207{bottom:441.648800pt;}
.y181{bottom:441.863467pt;}
.y19e{bottom:442.762267pt;}
.y133{bottom:442.932533pt;}
.y168{bottom:443.052400pt;}
.y1ec{bottom:443.240800pt;}
.y5c{bottom:443.593067pt;}
.y266{bottom:444.679200pt;}
.y10d{bottom:445.147733pt;}
.y297{bottom:445.974533pt;}
.y238{bottom:448.214267pt;}
.y14c{bottom:451.374533pt;}
.y265{bottom:452.679200pt;}
.ye{bottom:453.456933pt;}
.y1c7{bottom:453.528800pt;}
.yac{bottom:454.931733pt;}
.y236{bottom:456.214267pt;}
.y36{bottom:456.594133pt;}
.y83{bottom:457.598400pt;}
.y206{bottom:458.848800pt;}
.yec{bottom:458.932133pt;}
.y180{bottom:459.196800pt;}
.y19d{bottom:460.095600pt;}
.y132{bottom:460.265867pt;}
.y1eb{bottom:460.574133pt;}
.y5b{bottom:460.926400pt;}
.y10c{bottom:462.481067pt;}
.y233{bottom:464.214267pt;}
.y167{bottom:468.170533pt;}
.y1c6{bottom:470.862133pt;}
.yab{bottom:472.265067pt;}
.y35{bottom:472.594133pt;}
.yd{bottom:473.856800pt;}
.y82{bottom:474.798400pt;}
.y205{bottom:476.048800pt;}
.y296{bottom:476.174533pt;}
.yeb{bottom:476.265467pt;}
.y14b{bottom:476.492667pt;}
.y17f{bottom:476.530133pt;}
.y1ea{bottom:477.907467pt;}
.y5a{bottom:478.259733pt;}
.y10b{bottom:479.814400pt;}
.y237{bottom:480.214267pt;}
.y263{bottom:485.797333pt;}
.y1c5{bottom:488.195600pt;}
.y34{bottom:488.594133pt;}
.yaa{bottom:489.598400pt;}
.y81{bottom:491.998400pt;}
.y204{bottom:493.248800pt;}
.y166{bottom:493.288667pt;}
.yea{bottom:493.598800pt;}
.y262{bottom:493.797333pt;}
.y17e{bottom:493.863467pt;}
.y1e9{bottom:495.240800pt;}
.y59{bottom:495.593067pt;}
.y131{bottom:496.266267pt;}
.y292{bottom:496.608000pt;}
.y10a{bottom:497.147733pt;}
.y22e{bottom:498.106667pt;}
.y264{bottom:501.797333pt;}
.yc{bottom:502.790267pt;}
.y293{bottom:503.833600pt;}
.y33{bottom:504.594133pt;}
.y231{bottom:505.332400pt;}
.y19c{bottom:505.427733pt;}
.y1c4{bottom:505.528933pt;}
.y14a{bottom:505.723600pt;}
.ya9{bottom:506.931733pt;}
.y80{bottom:509.198400pt;}
.y295{bottom:511.833600pt;}
.y1e8{bottom:512.574133pt;}
.y58{bottom:512.926400pt;}
.y109{bottom:514.481067pt;}
.y165{bottom:518.406800pt;}
.y291{bottom:519.833600pt;}
.y22d{bottom:521.332400pt;}
.y149{bottom:521.723600pt;}
.y17d{bottom:522.535333pt;}
.y1c3{bottom:522.862267pt;}
.yb{bottom:524.123600pt;}
.ya8{bottom:524.265067pt;}
.y203{bottom:525.566933pt;}
.y7f{bottom:526.398400pt;}
.y261{bottom:526.915467pt;}
.y294{bottom:527.833600pt;}
.ye9{bottom:529.599200pt;}
.y57{bottom:530.259733pt;}
.y108{bottom:531.814400pt;}
.y19b{bottom:533.540667pt;}
.y260{bottom:534.915467pt;}
.y232{bottom:537.332400pt;}
.y148{bottom:537.723600pt;}
.y32{bottom:539.261200pt;}
.y1c2{bottom:540.195600pt;}
.ya7{bottom:541.598400pt;}
.y164{bottom:543.524933pt;}
.y7e{bottom:543.598400pt;}
.ya{bottom:545.456933pt;}
.y56{bottom:547.593067pt;}
.y1e7{bottom:548.574533pt;}
.y107{bottom:549.147733pt;}
.y229{bottom:555.224000pt;}
.y1c1{bottom:557.528933pt;}
.y19a{bottom:558.658667pt;}
.ya6{bottom:558.931733pt;}
.y7d{bottom:560.798400pt;}
.y22b{bottom:562.450533pt;}
.y17c{bottom:562.545867pt;}
.y290{bottom:563.592667pt;}
.y55{bottom:564.926400pt;}
.y106{bottom:566.481067pt;}
.y9{bottom:566.790267pt;}
.y25f{bottom:568.033600pt;}
.y163{bottom:568.642933pt;}
.y202{bottom:569.356933pt;}
.y228{bottom:570.450533pt;}
.ye8{bottom:574.931333pt;}
.y25e{bottom:576.033600pt;}
.ya5{bottom:576.265067pt;}
.y7c{bottom:577.998400pt;}
.y22c{bottom:578.450533pt;}
.y54{bottom:582.259733pt;}
.y199{bottom:583.776800pt;}
.y105{bottom:583.814400pt;}
.y28b{bottom:584.126667pt;}
.y201{bottom:586.690267pt;}
.y31{bottom:588.929200pt;}
.y17b{bottom:590.658667pt;}
.y28f{bottom:591.351600pt;}
.ye7{bottom:592.264667pt;}
.ya4{bottom:593.598400pt;}
.y162{bottom:593.761067pt;}
.y1e6{bottom:593.906667pt;}
.y7b{bottom:595.198400pt;}
.y220{bottom:596.342667pt;}
.y28d{bottom:599.351600pt;}
.y53{bottom:599.593067pt;}
.y104{bottom:601.147733pt;}
.y1c0{bottom:602.860933pt;}
.y227{bottom:603.568667pt;}
.y30{bottom:604.929200pt;}
.y8{bottom:605.456933pt;}
.y28a{bottom:607.351600pt;}
.y198{bottom:608.894933pt;}
.y25d{bottom:609.151733pt;}
.ye6{bottom:609.598000pt;}
.y147{bottom:609.721200pt;}
.ya3{bottom:610.931733pt;}
.y1e5{bottom:611.240000pt;}
.y223{bottom:611.568667pt;}
.y7a{bottom:612.398400pt;}
.y17a{bottom:615.776800pt;}
.y52{bottom:616.926400pt;}
.y25c{bottom:617.151733pt;}
.y103{bottom:618.481067pt;}
.y161{bottom:618.879200pt;}
.y200{bottom:619.141733pt;}
.y146{bottom:623.054533pt;}
.y28e{bottom:623.351600pt;}
.y2f{bottom:626.598533pt;}
.ye5{bottom:626.931333pt;}
.y21f{bottom:627.568667pt;}
.ya2{bottom:628.265067pt;}
.y1e4{bottom:628.573333pt;}
.y7{bottom:629.456933pt;}
.y79{bottom:629.598400pt;}
.y1bf{bottom:630.217867pt;}
.y197{bottom:634.013067pt;}
.y1bd{bottom:634.021067pt;}
.y51{bottom:634.259733pt;}
.y225{bottom:635.568667pt;}
.y179{bottom:640.894933pt;}
.y287{bottom:641.244000pt;}
.y2e{bottom:642.598533pt;}
.y160{bottom:643.997333pt;}
.ye4{bottom:644.264667pt;}
.ya1{bottom:645.598400pt;}
.y1e3{bottom:645.906667pt;}
.y78{bottom:646.798400pt;}
.y289{bottom:648.469867pt;}
.y196{bottom:650.013067pt;}
.y1bc{bottom:650.021067pt;}
.y145{bottom:651.167333pt;}
.y224{bottom:651.568667pt;}
.y50{bottom:651.593067pt;}
.y25b{bottom:652.810800pt;}
.y6{bottom:653.456933pt;}
.y1be{bottom:653.824133pt;}
.y102{bottom:654.481467pt;}
.y2d{bottom:658.598533pt;}
.ye3{bottom:661.598000pt;}
.ya0{bottom:662.931733pt;}
.y77{bottom:663.998400pt;}
.y286{bottom:664.469867pt;}
.y178{bottom:666.013067pt;}
.y144{bottom:667.167333pt;}
.y4f{bottom:668.926400pt;}
.y15f{bottom:669.115467pt;}
.y2c{bottom:674.598533pt;}
.y195{bottom:675.131200pt;}
.y1bb{bottom:677.430533pt;}
.ye2{bottom:678.931333pt;}
.y21e{bottom:679.327600pt;}
.y9f{bottom:680.265067pt;}
.y259{bottom:680.469867pt;}
.y76{bottom:681.198400pt;}
.y1b9{bottom:681.233600pt;}
.y4e{bottom:686.259733pt;}
.y258{bottom:688.469867pt;}
.y2b{bottom:690.598533pt;}
.y177{bottom:691.131200pt;}
.y1e2{bottom:691.238800pt;}
.y15e{bottom:694.233600pt;}
.y143{bottom:694.726533pt;}
.y5{bottom:694.782267pt;}
.ye1{bottom:696.264667pt;}
.y25a{bottom:696.469867pt;}
.y1b8{bottom:697.233600pt;}
.y9e{bottom:697.598400pt;}
.y75{bottom:698.398400pt;}
.y101{bottom:699.813600pt;}
.y194{bottom:700.249333pt;}
.y1ba{bottom:701.036800pt;}
.y4d{bottom:703.593067pt;}
.y285{bottom:705.587867pt;}
.y2a{bottom:706.598533pt;}
.y21d{bottom:709.727600pt;}
.y193{bottom:712.808267pt;}
.y284{bottom:713.587867pt;}
.ye0{bottom:713.598000pt;}
.y252{bottom:714.362667pt;}
.y9d{bottom:714.931733pt;}
.y74{bottom:715.598400pt;}
.y176{bottom:716.249333pt;}
.y100{bottom:717.146933pt;}
.y15d{bottom:719.351600pt;}
.y4c{bottom:720.926400pt;}
.y255{bottom:721.587867pt;}
.y29{bottom:722.598533pt;}
.y1e1{bottom:723.910667pt;}
.y1b7{bottom:724.643067pt;}
.y142{bottom:724.726533pt;}
.y4{bottom:726.784933pt;}
.y1b5{bottom:728.446267pt;}
.y257{bottom:729.587867pt;}
.ydf{bottom:730.931333pt;}
.y9c{bottom:732.265067pt;}
.y73{bottom:732.798400pt;}
.yff{bottom:734.480267pt;}
.y251{bottom:737.587867pt;}
.y4b{bottom:738.259733pt;}
.y28{bottom:738.598533pt;}
.y1e0{bottom:739.910667pt;}
.y174{bottom:741.367333pt;}
.y21c{bottom:741.599600pt;}
.y1b4{bottom:744.446267pt;}
.y15c{bottom:744.469867pt;}
.y256{bottom:745.587867pt;}
.y1b6{bottom:748.249333pt;}
.yde{bottom:748.264667pt;}
.y173{bottom:749.367333pt;}
.y9b{bottom:749.598400pt;}
.y72{bottom:749.998400pt;}
.yfe{bottom:751.813600pt;}
.y27{bottom:754.598533pt;}
.y141{bottom:754.826400pt;}
.y281{bottom:755.480000pt;}
.y4a{bottom:755.593067pt;}
.y175{bottom:757.367333pt;}
.y21b{bottom:757.599600pt;}
.y3{bottom:758.787600pt;}
.y283{bottom:762.706000pt;}
.y9a{bottom:766.931733pt;}
.y71{bottom:767.198400pt;}
.yfd{bottom:769.146933pt;}
.y15b{bottom:769.587867pt;}
.y192{bottom:770.598400pt;}
.y26{bottom:770.598533pt;}
.y24f{bottom:771.480000pt;}
.y1b3{bottom:771.855733pt;}
.y49{bottom:772.926400pt;}
.y1b1{bottom:775.658800pt;}
.y250{bottom:778.706000pt;}
.y1df{bottom:782.146933pt;}
.y99{bottom:784.265067pt;}
.y70{bottom:784.398400pt;}
.y140{bottom:786.598400pt;}
.y25{bottom:786.598533pt;}
.y24e{bottom:786.706000pt;}
.y2{bottom:790.790267pt;}
.y1b0{bottom:791.658800pt;}
.y15a{bottom:794.706000pt;}
.y1b2{bottom:795.462000pt;}
.y48{bottom:801.598400pt;}
.y13f{bottom:802.598400pt;}
.y24{bottom:802.598533pt;}
.y23{bottom:843.226800pt;}
.y21{bottom:844.925067pt;}
.y22{bottom:856.026800pt;}
.y20{bottom:859.591733pt;}
.h6{height:23.396354pt;}
.h2{height:32.270833pt;}
.hc{height:35.187500pt;}
.h7{height:40.338542pt;}
.h11{height:40.450667pt;}
.hf{height:40.452000pt;}
.ha{height:40.791667pt;}
.h8{height:43.984375pt;}
.h9{height:48.382812pt;}
.h13{height:56.450667pt;}
.h10{height:56.452000pt;}
.h5{height:57.394362pt;}
.h4{height:64.666667pt;}
.h12{height:72.450667pt;}
.he{height:72.452000pt;}
.hb{height:75.984375pt;}
.h3{height:88.744792pt;}
.hd{height:94.220642pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:224.881333pt;}
.w3{width:224.882667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:7.559067pt;}
.x1{left:75.590533pt;}
.xf{left:83.149600pt;}
.x9{left:84.050267pt;}
.x6{left:89.116667pt;}
.x1e{left:92.999067pt;}
.x2{left:94.257200pt;}
.xa{left:96.404933pt;}
.x7{left:98.267733pt;}
.x8{left:117.786667pt;}
.x20{left:124.724400pt;}
.xb{left:160.044133pt;}
.x17{left:181.914933pt;}
.x13{left:186.920933pt;}
.x23{left:193.642667pt;}
.x1c{left:207.874000pt;}
.x19{left:209.339200pt;}
.x1d{left:217.148533pt;}
.x27{left:219.931733pt;}
.x25{left:225.651067pt;}
.x24{left:232.506533pt;}
.x26{left:237.428400pt;}
.x5{left:265.554133pt;}
.x12{left:276.634400pt;}
.x4{left:319.973467pt;}
.x10{left:339.008933pt;}
.x22{left:342.046667pt;}
.x21{left:349.606267pt;}
.x3{left:391.163867pt;}
.xc{left:404.891333pt;}
.x14{left:446.822667pt;}
.x18{left:456.295333pt;}
.x1a{left:458.707733pt;}
.xd{left:490.536400pt;}
.xe{left:493.733067pt;}
.x16{left:516.002133pt;}
.x11{left:518.803200pt;}
.x15{left:521.640267pt;}
.x1b{left:526.828133pt;}
}




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