
    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_857336f2ed16efdde862ad46.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_1369ae6270063d20e409bb16.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202000;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_76a82f1adeb7c0ad3a4e2233.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_30a584ab114fa03ea4f179fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_a3674339f8cbaa370ceaeef2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_84549b7a1d43a2cb68d2db85.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.213000;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_f34cbb4d1a3ca2225fc69098.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.256000;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_857336f2ed16efdde862ad46.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.197000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.256000;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_857336f2ed16efdde862ad46.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.197000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_417f4c7bf2426821f866a2e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.230000;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_5b04b0cff6f2ee30cb9dbb23.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.303000;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_d71fdfb542b22b23909da883.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_020c1ba443bbc770d2c26846.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_46641e10649173b64f982b5a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.200073px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls14{letter-spacing:-12.000000px;}
.ls13{letter-spacing:-6.000000px;}
.lsa{letter-spacing:-3.552000px;}
.lsb{letter-spacing:-2.880000px;}
.ls7{letter-spacing:-2.640000px;}
.ls12{letter-spacing:-2.064000px;}
.lsf{letter-spacing:-0.912000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000033px;}
.ls5{letter-spacing:0.000038px;}
.ls9{letter-spacing:0.000081px;}
.ls0{letter-spacing:0.000085px;}
.ls3{letter-spacing:0.000092px;}
.ls8{letter-spacing:0.000125px;}
.ls4{letter-spacing:0.000583px;}
.lse{letter-spacing:0.005379px;}
.ls25{letter-spacing:0.188965px;}
.ls16{letter-spacing:0.331238px;}
.ls11{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.384000px;}
.ls26{letter-spacing:0.425354px;}
.ls1c{letter-spacing:0.573669px;}
.ls21{letter-spacing:0.658173px;}
.ls1d{letter-spacing:0.903625px;}
.ls27{letter-spacing:0.905273px;}
.ls24{letter-spacing:1.207214px;}
.ls15{letter-spacing:1.420807px;}
.ls2a{letter-spacing:1.605646px;}
.ls17{letter-spacing:1.657288px;}
.ls29{letter-spacing:1.699768px;}
.ls28{letter-spacing:1.724396px;}
.ls1a{letter-spacing:1.751404px;}
.ls23{letter-spacing:1.761475px;}
.ls1e{letter-spacing:1.944580px;}
.ls22{letter-spacing:2.932251px;}
.ls1f{letter-spacing:2.944153px;}
.ls1b{letter-spacing:3.031219px;}
.ls2b{letter-spacing:3.345520px;}
.ls18{letter-spacing:4.584595px;}
.ls19{letter-spacing:5.093994px;}
.ls20{letter-spacing:7.180115px;}
.ls2c{letter-spacing:30.703191px;}
.ls1{letter-spacing:53.015527px;}
.lsd{letter-spacing:116.198547px;}
.lsc{letter-spacing:276.905273px;}
.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;}
}
.ws10{word-spacing:-15.000000px;}
.wsf{word-spacing:-13.332000px;}
.ws2{word-spacing:-12.420000px;}
.ws7e{word-spacing:-12.336000px;}
.ws1{word-spacing:-12.120000px;}
.ws30{word-spacing:-12.000000px;}
.ws5d{word-spacing:-11.340000px;}
.ws7d{word-spacing:-11.088000px;}
.ws69{word-spacing:-10.500000px;}
.ws7f{word-spacing:-9.936000px;}
.ws0{word-spacing:-9.408000px;}
.ws92{word-spacing:-9.216000px;}
.ws3{word-spacing:-8.694000px;}
.wsad{word-spacing:-8.448000px;}
.wsd6{word-spacing:-8.400000px;}
.ws5e{word-spacing:-7.500000px;}
.ws86{word-spacing:-6.000000px;}
.ws95{word-spacing:-4.260000px;}
.ws88{word-spacing:-3.900000px;}
.wsbb{word-spacing:-3.312000px;}
.ws90{word-spacing:-3.060000px;}
.ws75{word-spacing:-2.760000px;}
.ws93{word-spacing:-2.700000px;}
.ws65{word-spacing:-2.640000px;}
.ws3f{word-spacing:-2.580000px;}
.ws4c{word-spacing:-2.520000px;}
.ws96{word-spacing:-2.460000px;}
.ws1c{word-spacing:-2.340000px;}
.ws23{word-spacing:-2.280000px;}
.wsb0{word-spacing:-2.208000px;}
.wse{word-spacing:-2.160000px;}
.wsa4{word-spacing:-2.064000px;}
.ws99{word-spacing:-1.980000px;}
.wsb1{word-spacing:-1.968000px;}
.ws8b{word-spacing:-1.860000px;}
.ws81{word-spacing:-1.800000px;}
.ws43{word-spacing:-1.680000px;}
.ws94{word-spacing:-1.560000px;}
.wsce{word-spacing:-1.488000px;}
.ws2a{word-spacing:-1.440000px;}
.wsa2{word-spacing:-1.392000px;}
.ws9c{word-spacing:-1.380000px;}
.ws4d{word-spacing:-1.320000px;}
.ws14{word-spacing:-1.140000px;}
.ws12{word-spacing:-1.080000px;}
.wsa9{word-spacing:-0.960000px;}
.wsab{word-spacing:-0.864000px;}
.ws80{word-spacing:-0.840000px;}
.wsb5{word-spacing:-0.816000px;}
.ws73{word-spacing:-0.780000px;}
.ws17{word-spacing:-0.720000px;}
.ws32{word-spacing:-0.660000px;}
.wsc3{word-spacing:-0.624000px;}
.ws42{word-spacing:-0.600000px;}
.ws56{word-spacing:-0.540000px;}
.wsba{word-spacing:-0.480000px;}
.wsc0{word-spacing:-0.432000px;}
.ws84{word-spacing:-0.384000px;}
.ws62{word-spacing:-0.360000px;}
.wsd1{word-spacing:-0.336000px;}
.wsd3{word-spacing:-0.192000px;}
.ws1b{word-spacing:-0.120000px;}
.wsbe{word-spacing:-0.096000px;}
.ws67{word-spacing:-0.060000px;}
.ws60{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws85{word-spacing:0.048000px;}
.wsb2{word-spacing:0.096000px;}
.ws16{word-spacing:0.120000px;}
.ws15{word-spacing:0.180000px;}
.wscf{word-spacing:0.192000px;}
.ws4b{word-spacing:0.240000px;}
.wsd2{word-spacing:0.288000px;}
.ws49{word-spacing:0.300000px;}
.wsaa{word-spacing:0.336000px;}
.ws33{word-spacing:0.360000px;}
.ws2c{word-spacing:0.420000px;}
.wsd0{word-spacing:0.432000px;}
.wsc4{word-spacing:0.576000px;}
.ws3e{word-spacing:0.600000px;}
.wsc8{word-spacing:0.672000px;}
.ws4f{word-spacing:0.720000px;}
.wsc5{word-spacing:0.912000px;}
.ws25{word-spacing:0.960000px;}
.ws21{word-spacing:1.020000px;}
.ws13{word-spacing:1.140000px;}
.wsb8{word-spacing:1.152000px;}
.ws18{word-spacing:1.200000px;}
.ws40{word-spacing:1.260000px;}
.wsbf{word-spacing:1.296000px;}
.ws68{word-spacing:1.320000px;}
.wsb9{word-spacing:1.344000px;}
.wsa7{word-spacing:1.440000px;}
.wsa1{word-spacing:1.488000px;}
.ws48{word-spacing:1.500000px;}
.wsd5{word-spacing:1.632000px;}
.wsa3{word-spacing:1.680000px;}
.wsc9{word-spacing:1.728000px;}
.ws2d{word-spacing:1.740000px;}
.ws9e{word-spacing:1.776000px;}
.ws1a{word-spacing:1.800000px;}
.wsc2{word-spacing:1.824000px;}
.wsae{word-spacing:1.920000px;}
.ws8f{word-spacing:1.980000px;}
.ws2b{word-spacing:2.040000px;}
.wsd8{word-spacing:2.064000px;}
.ws4a{word-spacing:2.100000px;}
.ws24{word-spacing:2.160000px;}
.ws58{word-spacing:2.220000px;}
.ws35{word-spacing:2.400000px;}
.ws83{word-spacing:2.448000px;}
.ws46{word-spacing:2.460000px;}
.wsa8{word-spacing:2.496000px;}
.ws2e{word-spacing:2.520000px;}
.wsb4{word-spacing:2.544000px;}
.wsd{word-spacing:2.580000px;}
.wsbd{word-spacing:2.592000px;}
.ws66{word-spacing:2.640000px;}
.wsd9{word-spacing:2.688000px;}
.ws9{word-spacing:2.700000px;}
.ws8d{word-spacing:2.760000px;}
.ws9b{word-spacing:2.820000px;}
.ws11{word-spacing:2.832000px;}
.ws37{word-spacing:2.880000px;}
.wsc6{word-spacing:2.928000px;}
.ws3a{word-spacing:2.940000px;}
.ws53{word-spacing:3.000000px;}
.wsbc{word-spacing:3.024000px;}
.wsd4{word-spacing:3.072000px;}
.ws74{word-spacing:3.180000px;}
.ws98{word-spacing:3.240000px;}
.wsa{word-spacing:3.360000px;}
.ws26{word-spacing:3.420000px;}
.ws9f{word-spacing:3.456000px;}
.wscb{word-spacing:3.504000px;}
.wsc{word-spacing:3.540000px;}
.ws7c{word-spacing:3.552000px;}
.ws97{word-spacing:3.600000px;}
.wscd{word-spacing:3.648000px;}
.ws27{word-spacing:3.720000px;}
.ws57{word-spacing:3.780000px;}
.wsca{word-spacing:3.888000px;}
.wscc{word-spacing:3.936000px;}
.ws6e{word-spacing:4.080000px;}
.ws5f{word-spacing:4.320000px;}
.wsa0{word-spacing:4.416000px;}
.ws29{word-spacing:4.440000px;}
.wsb{word-spacing:4.500000px;}
.ws55{word-spacing:4.560000px;}
.wsa6{word-spacing:4.608000px;}
.ws63{word-spacing:4.680000px;}
.ws50{word-spacing:4.800000px;}
.ws64{word-spacing:4.860000px;}
.ws8{word-spacing:4.980000px;}
.wsac{word-spacing:5.040000px;}
.wsb6{word-spacing:5.088000px;}
.ws71{word-spacing:5.100000px;}
.ws3c{word-spacing:5.220000px;}
.ws44{word-spacing:5.280000px;}
.wsb7{word-spacing:5.328000px;}
.ws52{word-spacing:5.340000px;}
.wsa5{word-spacing:5.376000px;}
.ws39{word-spacing:5.400000px;}
.ws2f{word-spacing:5.460000px;}
.ws28{word-spacing:5.520000px;}
.ws3d{word-spacing:5.580000px;}
.ws41{word-spacing:5.640000px;}
.wsb3{word-spacing:5.664000px;}
.ws8a{word-spacing:5.700000px;}
.ws19{word-spacing:5.820000px;}
.ws54{word-spacing:5.940000px;}
.ws87{word-spacing:6.000000px;}
.ws8c{word-spacing:6.180000px;}
.ws5c{word-spacing:6.300000px;}
.ws51{word-spacing:6.360000px;}
.ws20{word-spacing:6.480000px;}
.ws31{word-spacing:6.600000px;}
.wsc1{word-spacing:6.624000px;}
.ws82{word-spacing:6.660000px;}
.ws70{word-spacing:6.720000px;}
.ws36{word-spacing:6.780000px;}
.ws47{word-spacing:6.840000px;}
.ws1f{word-spacing:6.900000px;}
.ws7{word-spacing:6.960000px;}
.wsd7{word-spacing:7.056000px;}
.ws61{word-spacing:7.200000px;}
.ws76{word-spacing:7.320000px;}
.ws59{word-spacing:7.440000px;}
.ws38{word-spacing:7.680000px;}
.wsc7{word-spacing:7.728000px;}
.wsaf{word-spacing:7.776000px;}
.ws72{word-spacing:7.920000px;}
.ws45{word-spacing:8.100000px;}
.ws34{word-spacing:8.160000px;}
.ws91{word-spacing:8.220000px;}
.ws1d{word-spacing:8.460000px;}
.ws4e{word-spacing:8.580000px;}
.ws22{word-spacing:8.700000px;}
.ws1e{word-spacing:9.480000px;}
.ws89{word-spacing:9.840000px;}
.ws3b{word-spacing:10.260000px;}
.ws8e{word-spacing:10.680000px;}
.ws5{word-spacing:10.860000px;}
.ws6f{word-spacing:11.220000px;}
.ws6{word-spacing:11.280000px;}
.ws5b{word-spacing:11.580000px;}
.ws9d{word-spacing:12.000000px;}
.ws5a{word-spacing:12.300000px;}
.ws9a{word-spacing:15.240000px;}
.ws7b{word-spacing:40.943398px;}
.ws78{word-spacing:41.446655px;}
.ws77{word-spacing:50.303398px;}
.ws79{word-spacing:54.287398px;}
.ws7a{word-spacing:81.604198px;}
.ws6d{word-spacing:133.944016px;}
.ws6a{word-spacing:150.024016px;}
.ws6b{word-spacing:177.919189px;}
.ws6c{word-spacing:224.664016px;}
._40{margin-left:-66.351585px;}
._3d{margin-left:-12.125919px;}
._3e{margin-left:-11.118567px;}
._18{margin-left:-8.420588px;}
._14{margin-left:-7.116609px;}
._d{margin-left:-5.719333px;}
._11{margin-left:-4.393200px;}
._2{margin-left:-3.330000px;}
._b{margin-left:-2.222381px;}
._0{margin-left:-1.204800px;}
._1{width:1.144800px;}
._3{width:2.274000px;}
._5{width:3.276000px;}
._6{width:4.350000px;}
._8{width:5.388000px;}
._c{width:6.586774px;}
._e{width:7.899578px;}
._4{width:9.168000px;}
._7{width:10.260000px;}
._13{width:12.132000px;}
._12{width:13.272000px;}
._3f{width:14.623797px;}
._a{width:16.044000px;}
._9{width:17.518203px;}
._19{width:18.604793px;}
._10{width:35.760000px;}
._2e{width:52.943398px;}
._24{width:54.154655px;}
._1b{width:56.024506px;}
._25{width:66.287398px;}
._f{width:67.918783px;}
._2c{width:72.855654px;}
._31{width:76.943398px;}
._32{width:130.675254px;}
._29{width:152.942454px;}
._22{width:165.919189px;}
._3c{width:173.582454px;}
._33{width:186.925863px;}
._17{width:194.749191px;}
._21{width:200.024506px;}
._15{width:204.109191px;}
._20{width:209.928016px;}
._38{width:216.905411px;}
._1c{width:222.264016px;}
._1d{width:224.024506px;}
._1e{width:236.616016px;}
._35{width:240.064799px;}
._2d{width:248.864454px;}
._1f{width:252.648016px;}
._39{width:264.064799px;}
._16{width:270.824990px;}
._37{width:275.410799px;}
._36{width:276.905411px;}
._2a{width:314.199654px;}
._30{width:338.894454px;}
._2f{width:397.550454px;}
._26{width:401.582454px;}
._1a{width:420.615695px;}
._2b{width:431.463654px;}
._34{width:460.237863px;}
._3b{width:474.830454px;}
._27{width:660.206454px;}
._28{width:688.784454px;}
._3a{width:777.470454px;}
._23{width:1028.720454px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:46.736100px;}
.y4e{bottom:46.771650px;}
.y50{bottom:90.001350px;}
.y1f{bottom:90.001499px;}
.y4d{bottom:90.425102px;}
.y110{bottom:91.425000px;}
.y142{bottom:106.967697px;}
.y87{bottom:107.652306px;}
.y15b{bottom:107.675102px;}
.y10f{bottom:108.249298px;}
.y4c{bottom:108.425102px;}
.y1c5{bottom:112.104904px;}
.ybd{bottom:115.501202px;}
.y86{bottom:121.902306px;}
.y18c{bottom:121.925102px;}
.y141{bottom:123.792000px;}
.y10e{bottom:125.073600px;}
.y1c4{bottom:126.354904px;}
.y4b{bottom:126.425102px;}
.ybc{bottom:129.751202px;}
.y85{bottom:136.152306px;}
.y18b{bottom:136.175102px;}
.y15a{bottom:139.925102px;}
.y1c3{bottom:140.604904px;}
.y140{bottom:141.247650px;}
.y10d{bottom:141.897755px;}
.ybb{bottom:144.001202px;}
.y4a{bottom:144.425102px;}
.ye5{bottom:146.575504px;}
.y84{bottom:150.402306px;}
.y18a{bottom:150.425102px;}
.y159{bottom:154.175102px;}
.y1c2{bottom:154.854904px;}
.yba{bottom:158.251202px;}
.y13f{bottom:158.703449px;}
.y10c{bottom:158.722046px;}
.ye4{bottom:160.825504px;}
.y49{bottom:162.425102px;}
.y83{bottom:164.652306px;}
.y189{bottom:164.675102px;}
.y1c1{bottom:169.104904px;}
.yb9{bottom:175.075504px;}
.y13e{bottom:175.527752px;}
.y10b{bottom:175.546349px;}
.y82{bottom:178.902306px;}
.y188{bottom:178.925102px;}
.y48{bottom:180.425102px;}
.y1c0{bottom:183.354904px;}
.yb8{bottom:189.325504px;}
.ye3{bottom:191.899796px;}
.y13d{bottom:192.351906px;}
.y10a{bottom:193.114655px;}
.y81{bottom:193.152306px;}
.y187{bottom:193.175102px;}
.y1bf{bottom:197.604904px;}
.y47{bottom:198.425102px;}
.yb7{bottom:203.575493px;}
.ye2{bottom:206.149796px;}
.y109{bottom:207.364655px;}
.y80{bottom:207.402306px;}
.y186{bottom:207.425102px;}
.y13c{bottom:209.807854px;}
.y1be{bottom:211.854904px;}
.y46{bottom:216.425102px;}
.y106{bottom:217.825493px;}
.yb6{bottom:220.399796px;}
.y108{bottom:221.614655px;}
.y7f{bottom:221.652306px;}
.y185{bottom:221.675102px;}
.y1bd{bottom:226.104904px;}
.y13b{bottom:227.263504px;}
.y112{bottom:227.761208px;}
.y105{bottom:232.075493px;}
.y45{bottom:234.425102px;}
.yb5{bottom:234.649796px;}
.y7e{bottom:235.902306px;}
.y184{bottom:235.925102px;}
.ye1{bottom:237.223961px;}
.y107{bottom:238.438957px;}
.y1bc{bottom:240.354904px;}
.y13a{bottom:241.513504px;}
.y111{bottom:242.011208px;}
.y113{bottom:247.276199px;}
.yb4{bottom:248.899796px;}
.y7d{bottom:250.152306px;}
.y183{bottom:250.175102px;}
.ye0{bottom:251.473961px;}
.y44{bottom:252.425102px;}
.y1bb{bottom:254.604904px;}
.y139{bottom:258.337807px;}
.y17{bottom:260.205757px;}
.y104{bottom:263.149796px;}
.y7c{bottom:264.402306px;}
.y182{bottom:264.425102px;}
.yb3{bottom:265.723961px;}
.y1da{bottom:266.042107px;}
.ydf{bottom:268.298241px;}
.y1ba{bottom:268.854904px;}
.y43{bottom:270.425102px;}
.y138{bottom:275.162109px;}
.y103{bottom:277.399796px;}
.y16{bottom:278.205757px;}
.y7b{bottom:278.652306px;}
.y181{bottom:278.675102px;}
.yb2{bottom:279.973961px;}
.yde{bottom:282.548241px;}
.y1b9{bottom:283.104904px;}
.y1d9{bottom:285.092102px;}
.y42{bottom:288.425102px;}
.y137{bottom:291.986252px;}
.y7a{bottom:292.902306px;}
.y180{bottom:292.925102px;}
.yb1{bottom:294.223961px;}
.ydd{bottom:296.798241px;}
.y1b8{bottom:297.354904px;}
.y136{bottom:306.236252px;}
.y41{bottom:306.425102px;}
.y1d8{bottom:306.842102px;}
.y17f{bottom:307.175102px;}
.yb0{bottom:308.473961px;}
.y79{bottom:309.726448px;}
.ydc{bottom:311.048241px;}
.y1b7{bottom:311.604904px;}
.y15{bottom:314.205597px;}
.y17e{bottom:321.425102px;}
.yaf{bottom:322.723961px;}
.y135{bottom:323.060554px;}
.y1d7{bottom:323.792107px;}
.y78{bottom:323.976448px;}
.y40{bottom:324.425102px;}
.y1b6{bottom:325.854904px;}
.ydb{bottom:327.872543px;}
.y14{bottom:332.205597px;}
.y17d{bottom:335.675102px;}
.yae{bottom:336.973961px;}
.y134{bottom:337.310554px;}
.y77{bottom:338.226448px;}
.y1b5{bottom:340.104904px;}
.yda{bottom:342.122543px;}
.y3f{bottom:342.425102px;}
.y1d6{bottom:342.842102px;}
.y17c{bottom:349.925102px;}
.y13{bottom:350.205597px;}
.yad{bottom:351.223961px;}
.y76{bottom:352.476448px;}
.y102{bottom:353.798241px;}
.y133{bottom:354.134857px;}
.y1b4{bottom:354.354904px;}
.yd9{bottom:356.372543px;}
.y1d5{bottom:359.792107px;}
.y3e{bottom:360.425102px;}
.y17b{bottom:364.175102px;}
.yac{bottom:365.473961px;}
.y101{bottom:368.048241px;}
.y12{bottom:368.205597px;}
.y1b3{bottom:368.604904px;}
.y75{bottom:369.300750px;}
.yd8{bottom:370.622543px;}
.y132{bottom:371.590645px;}
.y3d{bottom:378.425102px;}
.y1d4{bottom:378.842102px;}
.yab{bottom:379.723961px;}
.y100{bottom:382.298241px;}
.y1b2{bottom:382.854904px;}
.y74{bottom:383.550750px;}
.y11{bottom:386.205734px;}
.yd7{bottom:387.446869px;}
.y131{bottom:389.046295px;}
.y51{bottom:392.161514px;}
.y17a{bottom:392.675079px;}
.yaa{bottom:393.973938px;}
.y1d3{bottom:395.792084px;}
.y3c{bottom:396.425079px;}
.y1b1{bottom:397.104904px;}
.y73{bottom:397.800750px;}
.yff{bottom:399.122543px;}
.yd6{bottom:401.696869px;}
.y130{bottom:403.296295px;}
.y10{bottom:404.205734px;}
.y179{bottom:406.925079px;}
.ya9{bottom:408.223938px;}
.y1b0{bottom:411.354904px;}
.yfe{bottom:413.372543px;}
.y3b{bottom:414.425079px;}
.y72{bottom:414.625031px;}
.y1d2{bottom:414.842102px;}
.yd5{bottom:415.946869px;}
.y12f{bottom:420.120621px;}
.y178{bottom:421.175079px;}
.yf{bottom:422.205734px;}
.ya8{bottom:422.473938px;}
.y1af{bottom:425.604904px;}
.yfd{bottom:427.622543px;}
.y71{bottom:428.875031px;}
.yd4{bottom:430.196869px;}
.y3a{bottom:432.425079px;}
.y12e{bottom:434.370621px;}
.y177{bottom:435.425079px;}
.ya7{bottom:436.723938px;}
.y1d1{bottom:439.174072px;}
.y1ae{bottom:439.854904px;}
.ye{bottom:440.205734px;}
.y70{bottom:443.125031px;}
.yfc{bottom:444.446686px;}
.yd3{bottom:444.446869px;}
.y176{bottom:449.675079px;}
.y39{bottom:450.425079px;}
.ya6{bottom:450.973938px;}
.y12d{bottom:451.194900px;}
.y1d0{bottom:453.424072px;}
.y1ad{bottom:454.104904px;}
.y152{bottom:457.392883px;}
.yd{bottom:458.205734px;}
.yfb{bottom:458.696686px;}
.yd2{bottom:458.696869px;}
.y6f{bottom:459.949219px;}
.y175{bottom:463.925079px;}
.ya5{bottom:465.223938px;}
.y12c{bottom:468.019043px;}
.y1ac{bottom:468.354904px;}
.y38{bottom:468.425079px;}
.yd1{bottom:472.946869px;}
.y6e{bottom:474.199219px;}
.y151{bottom:474.217209px;}
.y1cf{bottom:475.174072px;}
.yfa{bottom:475.521011px;}
.yc{bottom:476.205734px;}
.y174{bottom:478.175079px;}
.ya4{bottom:482.048264px;}
.y12b{bottom:482.269043px;}
.y1ab{bottom:482.604904px;}
.y37{bottom:486.425079px;}
.yd0{bottom:487.196869px;}
.y1ce{bottom:489.424072px;}
.yf9{bottom:489.771011px;}
.y6d{bottom:491.023499px;}
.y150{bottom:491.041489px;}
.y173{bottom:492.425079px;}
.yb{bottom:494.205734px;}
.ya3{bottom:496.298264px;}
.y1aa{bottom:496.854904px;}
.y12a{bottom:499.093369px;}
.ycf{bottom:501.446869px;}
.yf8{bottom:504.021011px;}
.y36{bottom:504.425079px;}
.y6c{bottom:505.273499px;}
.y172{bottom:506.675079px;}
.y14f{bottom:507.865631px;}
.ya2{bottom:510.548264px;}
.y1a9{bottom:511.104904px;}
.y1cd{bottom:511.174072px;}
.ya{bottom:512.205734px;}
.yce{bottom:515.696869px;}
.y129{bottom:516.549133px;}
.yf7{bottom:520.845291px;}
.y171{bottom:520.925079px;}
.y6b{bottom:522.097778px;}
.y35{bottom:522.425079px;}
.y14e{bottom:524.689957px;}
.ya1{bottom:524.798264px;}
.y1a8{bottom:525.354904px;}
.y1cc{bottom:525.424072px;}
.ycd{bottom:529.946869px;}
.y9{bottom:530.205734px;}
.y128{bottom:534.004944px;}
.yf6{bottom:535.095291px;}
.y170{bottom:535.175079px;}
.y6a{bottom:536.347778px;}
.y1a7{bottom:539.604904px;}
.y34{bottom:540.425079px;}
.y14d{bottom:541.514236px;}
.ya0{bottom:541.622543px;}
.ycc{bottom:544.196869px;}
.y1cb{bottom:547.174072px;}
.y8{bottom:548.205734px;}
.y127{bottom:548.254944px;}
.yf5{bottom:549.345291px;}
.y16f{bottom:549.425079px;}
.y69{bottom:553.172104px;}
.y1a6{bottom:553.854904px;}
.y9f{bottom:555.872543px;}
.y14c{bottom:558.338562px;}
.y33{bottom:558.425079px;}
.ycb{bottom:558.446869px;}
.y1ca{bottom:561.424072px;}
.y16e{bottom:563.675079px;}
.y126{bottom:565.079086px;}
.yf4{bottom:566.169434px;}
.y7{bottom:566.205734px;}
.y68{bottom:567.422104px;}
.y1a5{bottom:568.104904px;}
.y9e{bottom:570.122543px;}
.yca{bottom:572.696869px;}
.y14b{bottom:575.162704px;}
.y32{bottom:576.425079px;}
.y16d{bottom:577.925079px;}
.yf3{bottom:580.419434px;}
.y125{bottom:581.903412px;}
.y1a4{bottom:582.354904px;}
.y1c9{bottom:583.174072px;}
.y6{bottom:584.205734px;}
.y67{bottom:584.246246px;}
.y9d{bottom:584.372543px;}
.yc9{bottom:586.946869px;}
.y14a{bottom:591.986984px;}
.y16c{bottom:592.175079px;}
.y31{bottom:594.425079px;}
.yf2{bottom:594.669434px;}
.y1a3{bottom:596.604904px;}
.y1c8{bottom:597.424072px;}
.y66{bottom:598.496246px;}
.y124{bottom:598.727692px;}
.y9c{bottom:601.196869px;}
.y5{bottom:602.205734px;}
.yc8{bottom:603.771011px;}
.y16b{bottom:606.425079px;}
.y149{bottom:608.811310px;}
.yf1{bottom:608.919434px;}
.y1a2{bottom:610.854904px;}
.y30{bottom:612.425079px;}
.y65{bottom:612.746246px;}
.y123{bottom:612.977692px;}
.y9b{bottom:615.446869px;}
.yc7{bottom:618.021011px;}
.y4{bottom:620.205734px;}
.y16a{bottom:620.675079px;}
.yf0{bottom:623.169434px;}
.y1a1{bottom:625.104904px;}
.y148{bottom:625.635452px;}
.y64{bottom:629.570572px;}
.y9a{bottom:629.696869px;}
.y122{bottom:629.802017px;}
.y2f{bottom:630.425079px;}
.yc6{bottom:632.271011px;}
.y169{bottom:634.925079px;}
.yef{bottom:637.419434px;}
.y3{bottom:638.205734px;}
.y1a0{bottom:639.354904px;}
.y147{bottom:642.459732px;}
.y63{bottom:643.820572px;}
.y99{bottom:643.946869px;}
.yc5{bottom:646.521011px;}
.y121{bottom:646.626160px;}
.y2e{bottom:648.425079px;}
.y168{bottom:649.175079px;}
.yee{bottom:651.669434px;}
.y19f{bottom:653.604904px;}
.y62{bottom:658.070572px;}
.y146{bottom:659.284058px;}
.y98{bottom:660.771011px;}
.yc4{bottom:663.345291px;}
.y167{bottom:663.425079px;}
.y120{bottom:664.081970px;}
.yed{bottom:665.919434px;}
.y2d{bottom:666.425079px;}
.y19e{bottom:667.854904px;}
.y61{bottom:674.894852px;}
.y97{bottom:675.021011px;}
.y145{bottom:676.852341px;}
.yc3{bottom:677.595291px;}
.y166{bottom:677.675079px;}
.yec{bottom:680.169434px;}
.y11f{bottom:681.537735px;}
.y19d{bottom:682.104904px;}
.y2c{bottom:684.425079px;}
.y19{bottom:687.723312px;}
.y60{bottom:689.144852px;}
.y96{bottom:689.271011px;}
.yc2{bottom:691.845291px;}
.y165{bottom:691.925079px;}
.y144{bottom:693.676483px;}
.yeb{bottom:694.419434px;}
.y11e{bottom:695.787735px;}
.y19c{bottom:696.354904px;}
.y18{bottom:701.973312px;}
.y2b{bottom:702.425079px;}
.y5f{bottom:703.394852px;}
.y95{bottom:706.095291px;}
.y164{bottom:706.175079px;}
.y143{bottom:707.926483px;}
.yea{bottom:708.669434px;}
.y19b{bottom:710.604904px;}
.y11d{bottom:712.611877px;}
.y5e{bottom:717.644852px;}
.y94{bottom:720.345291px;}
.y2a{bottom:720.425079px;}
.ye9{bottom:722.919434px;}
.yc1{bottom:722.919617px;}
.y19a{bottom:724.854904px;}
.y11c{bottom:729.436203px;}
.y5d{bottom:731.894852px;}
.ye8{bottom:737.169434px;}
.y93{bottom:737.169617px;}
.y29{bottom:738.425079px;}
.y199{bottom:739.104904px;}
.y1e{bottom:740.737198px;}
.y5c{bottom:746.144852px;}
.y11b{bottom:746.260483px;}
.ye7{bottom:751.419434px;}
.y92{bottom:751.419617px;}
.y198{bottom:753.354904px;}
.y1c7{bottom:753.729904px;}
.y28{bottom:756.425079px;}
.y1d{bottom:758.737198px;}
.y5b{bottom:760.394852px;}
.y158{bottom:760.509293px;}
.y11a{bottom:763.084671px;}
.y91{bottom:765.669617px;}
.y197{bottom:767.604904px;}
.y1c6{bottom:767.979904px;}
.ye6{bottom:768.243713px;}
.y27{bottom:774.425079px;}
.y5a{bottom:774.644806px;}
.y157{bottom:774.759338px;}
.y119{bottom:779.908905px;}
.y196{bottom:781.854858px;}
.y90{bottom:782.493713px;}
.y59{bottom:788.894806px;}
.y156{bottom:791.595337px;}
.y26{bottom:792.425079px;}
.y118{bottom:794.158905px;}
.y163{bottom:795.425079px;}
.y195{bottom:796.104858px;}
.y8f{bottom:796.743713px;}
.y1c{bottom:801.186035px;}
.y58{bottom:803.144806px;}
.y155{bottom:808.419617px;}
.y162{bottom:809.675079px;}
.y194{bottom:810.354858px;}
.y25{bottom:810.425079px;}
.y117{bottom:810.983276px;}
.y8e{bottom:810.993713px;}
.yc0{bottom:813.568085px;}
.y57{bottom:817.394806px;}
.y1b{bottom:823.686035px;}
.y161{bottom:823.925079px;}
.y193{bottom:824.604858px;}
.y8d{bottom:825.243713px;}
.ybf{bottom:827.818085px;}
.y24{bottom:828.425079px;}
.y116{bottom:828.439087px;}
.y56{bottom:831.644806px;}
.y160{bottom:838.175079px;}
.y192{bottom:838.854858px;}
.y8c{bottom:842.068085px;}
.y154{bottom:842.386780px;}
.y55{bottom:845.894806px;}
.y1a{bottom:846.186035px;}
.y23{bottom:846.425079px;}
.y115{bottom:846.638855px;}
.y15f{bottom:852.425079px;}
.y191{bottom:853.104858px;}
.y8b{bottom:856.318085px;}
.y153{bottom:856.636780px;}
.y54{bottom:860.144806px;}
.y114{bottom:860.888855px;}
.y22{bottom:864.425079px;}
.y15e{bottom:866.675079px;}
.y190{bottom:867.354858px;}
.y8a{bottom:873.461060px;}
.y53{bottom:877.713135px;}
.y15d{bottom:880.925079px;}
.y18f{bottom:881.604858px;}
.y4f{bottom:882.425079px;}
.y89{bottom:887.711060px;}
.y52{bottom:891.963135px;}
.y15c{bottom:895.175079px;}
.y18e{bottom:895.854858px;}
.y21{bottom:900.425079px;}
.ybe{bottom:905.944611px;}
.y88{bottom:909.425079px;}
.y18d{bottom:910.104858px;}
.y2{bottom:924.938965px;}
.y1{bottom:939.188965px;}
.h17{height:23.346094px;}
.h16{height:29.482031px;}
.h15{height:33.328125px;}
.ha{height:33.351562px;}
.h5{height:41.689453px;}
.h11{height:42.117188px;}
.h3{height:45.456000px;}
.h2{height:45.696000px;}
.hd{height:46.224000px;}
.h14{height:47.472000px;}
.h13{height:48.480000px;}
.he{height:50.027344px;}
.h6{height:52.646484px;}
.h7{height:57.780000px;}
.hf{height:58.800000px;}
.h4{height:59.340000px;}
.h10{height:60.600000px;}
.h12{height:60.852539px;}
.h9{height:64.824000px;}
.hc{height:65.274000px;}
.hb{height:72.000000px;}
.h8{height:75.114000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535402px;}
.x14{left:90.123299px;}
.x4{left:93.543303px;}
.x15{left:97.795200px;}
.x13{left:102.047253px;}
.x12{left:119.111252px;}
.x6{left:180.230700px;}
.x3{left:185.170349px;}
.xa{left:250.866142px;}
.x7{left:266.060692px;}
.xb{left:328.692146px;}
.xc{left:405.698273px;}
.x8{left:415.762939px;}
.x9{left:471.323090px;}
.xd{left:474.178070px;}
.x5{left:477.023117px;}
.xf{left:482.786865px;}
.x10{left:517.148529px;}
.x2{left:521.162704px;}
.xe{left:542.680344px;}
.x11{left:552.198166px;}
@media print{
.v2{vertical-align:-17.066732pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls14{letter-spacing:-10.666667pt;}
.ls13{letter-spacing:-5.333333pt;}
.lsa{letter-spacing:-3.157333pt;}
.lsb{letter-spacing:-2.560000pt;}
.ls7{letter-spacing:-2.346667pt;}
.ls12{letter-spacing:-1.834667pt;}
.lsf{letter-spacing:-0.810667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000029pt;}
.ls5{letter-spacing:0.000033pt;}
.ls9{letter-spacing:0.000072pt;}
.ls0{letter-spacing:0.000076pt;}
.ls3{letter-spacing:0.000081pt;}
.ls8{letter-spacing:0.000111pt;}
.ls4{letter-spacing:0.000518pt;}
.lse{letter-spacing:0.004781pt;}
.ls25{letter-spacing:0.167969pt;}
.ls16{letter-spacing:0.294434pt;}
.ls11{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.341333pt;}
.ls26{letter-spacing:0.378092pt;}
.ls1c{letter-spacing:0.509928pt;}
.ls21{letter-spacing:0.585042pt;}
.ls1d{letter-spacing:0.803223pt;}
.ls27{letter-spacing:0.804687pt;}
.ls24{letter-spacing:1.073079pt;}
.ls15{letter-spacing:1.262939pt;}
.ls2a{letter-spacing:1.427241pt;}
.ls17{letter-spacing:1.473145pt;}
.ls29{letter-spacing:1.510905pt;}
.ls28{letter-spacing:1.532796pt;}
.ls1a{letter-spacing:1.556803pt;}
.ls23{letter-spacing:1.565755pt;}
.ls1e{letter-spacing:1.728516pt;}
.ls22{letter-spacing:2.606445pt;}
.ls1f{letter-spacing:2.617025pt;}
.ls1b{letter-spacing:2.694417pt;}
.ls2b{letter-spacing:2.973796pt;}
.ls18{letter-spacing:4.075195pt;}
.ls19{letter-spacing:4.527995pt;}
.ls20{letter-spacing:6.382324pt;}
.ls2c{letter-spacing:27.291725pt;}
.ls1{letter-spacing:47.124913pt;}
.lsd{letter-spacing:103.287598pt;}
.lsc{letter-spacing:246.138021pt;}
.ws10{word-spacing:-13.333333pt;}
.wsf{word-spacing:-11.850667pt;}
.ws2{word-spacing:-11.040000pt;}
.ws7e{word-spacing:-10.965333pt;}
.ws1{word-spacing:-10.773333pt;}
.ws30{word-spacing:-10.666667pt;}
.ws5d{word-spacing:-10.080000pt;}
.ws7d{word-spacing:-9.856000pt;}
.ws69{word-spacing:-9.333333pt;}
.ws7f{word-spacing:-8.832000pt;}
.ws0{word-spacing:-8.362667pt;}
.ws92{word-spacing:-8.192000pt;}
.ws3{word-spacing:-7.728000pt;}
.wsad{word-spacing:-7.509333pt;}
.wsd6{word-spacing:-7.466667pt;}
.ws5e{word-spacing:-6.666667pt;}
.ws86{word-spacing:-5.333333pt;}
.ws95{word-spacing:-3.786667pt;}
.ws88{word-spacing:-3.466667pt;}
.wsbb{word-spacing:-2.944000pt;}
.ws90{word-spacing:-2.720000pt;}
.ws75{word-spacing:-2.453333pt;}
.ws93{word-spacing:-2.400000pt;}
.ws65{word-spacing:-2.346667pt;}
.ws3f{word-spacing:-2.293333pt;}
.ws4c{word-spacing:-2.240000pt;}
.ws96{word-spacing:-2.186667pt;}
.ws1c{word-spacing:-2.080000pt;}
.ws23{word-spacing:-2.026667pt;}
.wsb0{word-spacing:-1.962667pt;}
.wse{word-spacing:-1.920000pt;}
.wsa4{word-spacing:-1.834667pt;}
.ws99{word-spacing:-1.760000pt;}
.wsb1{word-spacing:-1.749333pt;}
.ws8b{word-spacing:-1.653333pt;}
.ws81{word-spacing:-1.600000pt;}
.ws43{word-spacing:-1.493333pt;}
.ws94{word-spacing:-1.386667pt;}
.wsce{word-spacing:-1.322667pt;}
.ws2a{word-spacing:-1.280000pt;}
.wsa2{word-spacing:-1.237333pt;}
.ws9c{word-spacing:-1.226667pt;}
.ws4d{word-spacing:-1.173333pt;}
.ws14{word-spacing:-1.013333pt;}
.ws12{word-spacing:-0.960000pt;}
.wsa9{word-spacing:-0.853333pt;}
.wsab{word-spacing:-0.768000pt;}
.ws80{word-spacing:-0.746667pt;}
.wsb5{word-spacing:-0.725333pt;}
.ws73{word-spacing:-0.693333pt;}
.ws17{word-spacing:-0.640000pt;}
.ws32{word-spacing:-0.586667pt;}
.wsc3{word-spacing:-0.554667pt;}
.ws42{word-spacing:-0.533333pt;}
.ws56{word-spacing:-0.480000pt;}
.wsba{word-spacing:-0.426667pt;}
.wsc0{word-spacing:-0.384000pt;}
.ws84{word-spacing:-0.341333pt;}
.ws62{word-spacing:-0.320000pt;}
.wsd1{word-spacing:-0.298667pt;}
.wsd3{word-spacing:-0.170667pt;}
.ws1b{word-spacing:-0.106667pt;}
.wsbe{word-spacing:-0.085333pt;}
.ws67{word-spacing:-0.053333pt;}
.ws60{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws85{word-spacing:0.042667pt;}
.wsb2{word-spacing:0.085333pt;}
.ws16{word-spacing:0.106667pt;}
.ws15{word-spacing:0.160000pt;}
.wscf{word-spacing:0.170667pt;}
.ws4b{word-spacing:0.213333pt;}
.wsd2{word-spacing:0.256000pt;}
.ws49{word-spacing:0.266667pt;}
.wsaa{word-spacing:0.298667pt;}
.ws33{word-spacing:0.320000pt;}
.ws2c{word-spacing:0.373333pt;}
.wsd0{word-spacing:0.384000pt;}
.wsc4{word-spacing:0.512000pt;}
.ws3e{word-spacing:0.533333pt;}
.wsc8{word-spacing:0.597333pt;}
.ws4f{word-spacing:0.640000pt;}
.wsc5{word-spacing:0.810667pt;}
.ws25{word-spacing:0.853333pt;}
.ws21{word-spacing:0.906667pt;}
.ws13{word-spacing:1.013333pt;}
.wsb8{word-spacing:1.024000pt;}
.ws18{word-spacing:1.066667pt;}
.ws40{word-spacing:1.120000pt;}
.wsbf{word-spacing:1.152000pt;}
.ws68{word-spacing:1.173333pt;}
.wsb9{word-spacing:1.194667pt;}
.wsa7{word-spacing:1.280000pt;}
.wsa1{word-spacing:1.322667pt;}
.ws48{word-spacing:1.333333pt;}
.wsd5{word-spacing:1.450667pt;}
.wsa3{word-spacing:1.493333pt;}
.wsc9{word-spacing:1.536000pt;}
.ws2d{word-spacing:1.546667pt;}
.ws9e{word-spacing:1.578667pt;}
.ws1a{word-spacing:1.600000pt;}
.wsc2{word-spacing:1.621333pt;}
.wsae{word-spacing:1.706667pt;}
.ws8f{word-spacing:1.760000pt;}
.ws2b{word-spacing:1.813333pt;}
.wsd8{word-spacing:1.834667pt;}
.ws4a{word-spacing:1.866667pt;}
.ws24{word-spacing:1.920000pt;}
.ws58{word-spacing:1.973333pt;}
.ws35{word-spacing:2.133333pt;}
.ws83{word-spacing:2.176000pt;}
.ws46{word-spacing:2.186667pt;}
.wsa8{word-spacing:2.218667pt;}
.ws2e{word-spacing:2.240000pt;}
.wsb4{word-spacing:2.261333pt;}
.wsd{word-spacing:2.293333pt;}
.wsbd{word-spacing:2.304000pt;}
.ws66{word-spacing:2.346667pt;}
.wsd9{word-spacing:2.389333pt;}
.ws9{word-spacing:2.400000pt;}
.ws8d{word-spacing:2.453333pt;}
.ws9b{word-spacing:2.506667pt;}
.ws11{word-spacing:2.517333pt;}
.ws37{word-spacing:2.560000pt;}
.wsc6{word-spacing:2.602667pt;}
.ws3a{word-spacing:2.613333pt;}
.ws53{word-spacing:2.666667pt;}
.wsbc{word-spacing:2.688000pt;}
.wsd4{word-spacing:2.730667pt;}
.ws74{word-spacing:2.826667pt;}
.ws98{word-spacing:2.880000pt;}
.wsa{word-spacing:2.986667pt;}
.ws26{word-spacing:3.040000pt;}
.ws9f{word-spacing:3.072000pt;}
.wscb{word-spacing:3.114667pt;}
.wsc{word-spacing:3.146667pt;}
.ws7c{word-spacing:3.157333pt;}
.ws97{word-spacing:3.200000pt;}
.wscd{word-spacing:3.242667pt;}
.ws27{word-spacing:3.306667pt;}
.ws57{word-spacing:3.360000pt;}
.wsca{word-spacing:3.456000pt;}
.wscc{word-spacing:3.498667pt;}
.ws6e{word-spacing:3.626667pt;}
.ws5f{word-spacing:3.840000pt;}
.wsa0{word-spacing:3.925333pt;}
.ws29{word-spacing:3.946667pt;}
.wsb{word-spacing:4.000000pt;}
.ws55{word-spacing:4.053333pt;}
.wsa6{word-spacing:4.096000pt;}
.ws63{word-spacing:4.160000pt;}
.ws50{word-spacing:4.266667pt;}
.ws64{word-spacing:4.320000pt;}
.ws8{word-spacing:4.426667pt;}
.wsac{word-spacing:4.480000pt;}
.wsb6{word-spacing:4.522667pt;}
.ws71{word-spacing:4.533333pt;}
.ws3c{word-spacing:4.640000pt;}
.ws44{word-spacing:4.693333pt;}
.wsb7{word-spacing:4.736000pt;}
.ws52{word-spacing:4.746667pt;}
.wsa5{word-spacing:4.778667pt;}
.ws39{word-spacing:4.800000pt;}
.ws2f{word-spacing:4.853333pt;}
.ws28{word-spacing:4.906667pt;}
.ws3d{word-spacing:4.960000pt;}
.ws41{word-spacing:5.013333pt;}
.wsb3{word-spacing:5.034667pt;}
.ws8a{word-spacing:5.066667pt;}
.ws19{word-spacing:5.173333pt;}
.ws54{word-spacing:5.280000pt;}
.ws87{word-spacing:5.333333pt;}
.ws8c{word-spacing:5.493333pt;}
.ws5c{word-spacing:5.600000pt;}
.ws51{word-spacing:5.653333pt;}
.ws20{word-spacing:5.760000pt;}
.ws31{word-spacing:5.866667pt;}
.wsc1{word-spacing:5.888000pt;}
.ws82{word-spacing:5.920000pt;}
.ws70{word-spacing:5.973333pt;}
.ws36{word-spacing:6.026667pt;}
.ws47{word-spacing:6.080000pt;}
.ws1f{word-spacing:6.133333pt;}
.ws7{word-spacing:6.186667pt;}
.wsd7{word-spacing:6.272000pt;}
.ws61{word-spacing:6.400000pt;}
.ws76{word-spacing:6.506667pt;}
.ws59{word-spacing:6.613333pt;}
.ws38{word-spacing:6.826667pt;}
.wsc7{word-spacing:6.869333pt;}
.wsaf{word-spacing:6.912000pt;}
.ws72{word-spacing:7.040000pt;}
.ws45{word-spacing:7.200000pt;}
.ws34{word-spacing:7.253333pt;}
.ws91{word-spacing:7.306667pt;}
.ws1d{word-spacing:7.520000pt;}
.ws4e{word-spacing:7.626667pt;}
.ws22{word-spacing:7.733333pt;}
.ws1e{word-spacing:8.426667pt;}
.ws89{word-spacing:8.746667pt;}
.ws3b{word-spacing:9.120000pt;}
.ws8e{word-spacing:9.493333pt;}
.ws5{word-spacing:9.653333pt;}
.ws6f{word-spacing:9.973333pt;}
.ws6{word-spacing:10.026667pt;}
.ws5b{word-spacing:10.293333pt;}
.ws9d{word-spacing:10.666667pt;}
.ws5a{word-spacing:10.933333pt;}
.ws9a{word-spacing:13.546667pt;}
.ws7b{word-spacing:36.394132pt;}
.ws78{word-spacing:36.841471pt;}
.ws77{word-spacing:44.714132pt;}
.ws79{word-spacing:48.255465pt;}
.ws7a{word-spacing:72.537065pt;}
.ws6d{word-spacing:119.061348pt;}
.ws6a{word-spacing:133.354681pt;}
.ws6b{word-spacing:158.150391pt;}
.ws6c{word-spacing:199.701348pt;}
._40{margin-left:-58.979187pt;}
._3d{margin-left:-10.778595pt;}
._3e{margin-left:-9.883171pt;}
._18{margin-left:-7.484967pt;}
._14{margin-left:-6.325875pt;}
._d{margin-left:-5.083852pt;}
._11{margin-left:-3.905067pt;}
._2{margin-left:-2.960000pt;}
._b{margin-left:-1.975450pt;}
._0{margin-left:-1.070933pt;}
._1{width:1.017600pt;}
._3{width:2.021333pt;}
._5{width:2.912000pt;}
._6{width:3.866667pt;}
._8{width:4.789333pt;}
._c{width:5.854910pt;}
._e{width:7.021847pt;}
._4{width:8.149333pt;}
._7{width:9.120000pt;}
._13{width:10.784000pt;}
._12{width:11.797333pt;}
._3f{width:12.998931pt;}
._a{width:14.261333pt;}
._9{width:15.571736pt;}
._19{width:16.537594pt;}
._10{width:31.786667pt;}
._2e{width:47.060798pt;}
._24{width:48.137471pt;}
._1b{width:49.799561pt;}
._25{width:58.922132pt;}
._f{width:60.372251pt;}
._2c{width:64.760581pt;}
._31{width:68.394132pt;}
._32{width:116.155781pt;}
._29{width:135.948848pt;}
._22{width:147.483724pt;}
._3c{width:154.295514pt;}
._33{width:166.156322pt;}
._17{width:173.110392pt;}
._21{width:177.799561pt;}
._15{width:181.430392pt;}
._20{width:186.602681pt;}
._38{width:192.804810pt;}
._1c{width:197.568014pt;}
._1d{width:199.132894pt;}
._1e{width:210.325348pt;}
._35{width:213.390933pt;}
._2d{width:221.212848pt;}
._1f{width:224.576014pt;}
._39{width:234.724266pt;}
._16{width:240.733325pt;}
._37{width:244.809599pt;}
._36{width:246.138143pt;}
._2a{width:279.288581pt;}
._30{width:301.239514pt;}
._2f{width:353.378181pt;}
._26{width:356.962181pt;}
._1a{width:373.880618pt;}
._2b{width:383.523248pt;}
._34{width:409.100322pt;}
._3b{width:422.071514pt;}
._27{width:586.850181pt;}
._28{width:612.252848pt;}
._3a{width:691.084848pt;}
._23{width:914.418181pt;}
.fs7{font-size:29.866667pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:41.543200pt;}
.y4e{bottom:41.574800pt;}
.y50{bottom:80.001200pt;}
.y1f{bottom:80.001333pt;}
.y4d{bottom:80.377869pt;}
.y110{bottom:81.266667pt;}
.y142{bottom:95.082397pt;}
.y87{bottom:95.690938pt;}
.y15b{bottom:95.711202pt;}
.y10f{bottom:96.221598pt;}
.y4c{bottom:96.377869pt;}
.y1c5{bottom:99.648804pt;}
.ybd{bottom:102.667735pt;}
.y86{bottom:108.357605pt;}
.y18c{bottom:108.377869pt;}
.y141{bottom:110.037333pt;}
.y10e{bottom:111.176533pt;}
.y1c4{bottom:112.315470pt;}
.y4b{bottom:112.377869pt;}
.ybc{bottom:115.334401pt;}
.y85{bottom:121.024272pt;}
.y18b{bottom:121.044535pt;}
.y15a{bottom:124.377869pt;}
.y1c3{bottom:124.982137pt;}
.y140{bottom:125.553467pt;}
.y10d{bottom:126.131337pt;}
.ybb{bottom:128.001068pt;}
.y4a{bottom:128.377869pt;}
.ye5{bottom:130.289337pt;}
.y84{bottom:133.690938pt;}
.y18a{bottom:133.711202pt;}
.y159{bottom:137.044535pt;}
.y1c2{bottom:137.648804pt;}
.yba{bottom:140.667735pt;}
.y13f{bottom:141.069733pt;}
.y10c{bottom:141.086263pt;}
.ye4{bottom:142.956004pt;}
.y49{bottom:144.377869pt;}
.y83{bottom:146.357605pt;}
.y189{bottom:146.377869pt;}
.y1c1{bottom:150.315470pt;}
.yb9{bottom:155.622670pt;}
.y13e{bottom:156.024668pt;}
.y10b{bottom:156.041199pt;}
.y82{bottom:159.024272pt;}
.y188{bottom:159.044535pt;}
.y48{bottom:160.377869pt;}
.y1c0{bottom:162.982137pt;}
.yb8{bottom:168.289337pt;}
.ye3{bottom:170.577596pt;}
.y13d{bottom:170.979472pt;}
.y10a{bottom:171.657471pt;}
.y81{bottom:171.690938pt;}
.y187{bottom:171.711202pt;}
.y1bf{bottom:175.648804pt;}
.y47{bottom:176.377869pt;}
.yb7{bottom:180.955994pt;}
.ye2{bottom:183.244263pt;}
.y109{bottom:184.324137pt;}
.y80{bottom:184.357605pt;}
.y186{bottom:184.377869pt;}
.y13c{bottom:186.495870pt;}
.y1be{bottom:188.315470pt;}
.y46{bottom:192.377869pt;}
.y106{bottom:193.622660pt;}
.yb6{bottom:195.910929pt;}
.y108{bottom:196.990804pt;}
.y7f{bottom:197.024272pt;}
.y185{bottom:197.044535pt;}
.y1bd{bottom:200.982137pt;}
.y13b{bottom:202.012004pt;}
.y112{bottom:202.454407pt;}
.y105{bottom:206.289327pt;}
.y45{bottom:208.377869pt;}
.yb5{bottom:208.577596pt;}
.y7e{bottom:209.690938pt;}
.y184{bottom:209.711202pt;}
.ye1{bottom:210.865743pt;}
.y107{bottom:211.945740pt;}
.y1bc{bottom:213.648804pt;}
.y13a{bottom:214.678670pt;}
.y111{bottom:215.121073pt;}
.y113{bottom:219.801066pt;}
.yb4{bottom:221.244263pt;}
.y7d{bottom:222.357605pt;}
.y183{bottom:222.377869pt;}
.ye0{bottom:223.532410pt;}
.y44{bottom:224.377869pt;}
.y1bb{bottom:226.315470pt;}
.y139{bottom:229.633606pt;}
.y17{bottom:231.294006pt;}
.y104{bottom:233.910929pt;}
.y7c{bottom:235.024272pt;}
.y182{bottom:235.044535pt;}
.yb3{bottom:236.199076pt;}
.y1da{bottom:236.481873pt;}
.ydf{bottom:238.487325pt;}
.y1ba{bottom:238.982137pt;}
.y43{bottom:240.377869pt;}
.y138{bottom:244.588542pt;}
.y103{bottom:246.577596pt;}
.y16{bottom:247.294006pt;}
.y7b{bottom:247.690938pt;}
.y181{bottom:247.711202pt;}
.yb2{bottom:248.865743pt;}
.yde{bottom:251.153992pt;}
.y1b9{bottom:251.648804pt;}
.y1d9{bottom:253.415202pt;}
.y42{bottom:256.377869pt;}
.y137{bottom:259.543335pt;}
.y7a{bottom:260.357605pt;}
.y180{bottom:260.377869pt;}
.yb1{bottom:261.532410pt;}
.ydd{bottom:263.820658pt;}
.y1b8{bottom:264.315470pt;}
.y136{bottom:272.210002pt;}
.y41{bottom:272.377869pt;}
.y1d8{bottom:272.748535pt;}
.y17f{bottom:273.044535pt;}
.yb0{bottom:274.199076pt;}
.y79{bottom:275.312398pt;}
.ydc{bottom:276.487325pt;}
.y1b7{bottom:276.982137pt;}
.y15{bottom:279.293864pt;}
.y17e{bottom:285.711202pt;}
.yaf{bottom:286.865743pt;}
.y135{bottom:287.164937pt;}
.y1d7{bottom:287.815206pt;}
.y78{bottom:287.979065pt;}
.y40{bottom:288.377869pt;}
.y1b6{bottom:289.648804pt;}
.ydb{bottom:291.442261pt;}
.y14{bottom:295.293864pt;}
.y17d{bottom:298.377869pt;}
.yae{bottom:299.532410pt;}
.y134{bottom:299.831604pt;}
.y77{bottom:300.645732pt;}
.y1b5{bottom:302.315470pt;}
.yda{bottom:304.108927pt;}
.y3f{bottom:304.377869pt;}
.y1d6{bottom:304.748535pt;}
.y17c{bottom:311.044535pt;}
.y13{bottom:311.293864pt;}
.yad{bottom:312.199076pt;}
.y76{bottom:313.312398pt;}
.y102{bottom:314.487325pt;}
.y133{bottom:314.786540pt;}
.y1b4{bottom:314.982137pt;}
.yd9{bottom:316.775594pt;}
.y1d5{bottom:319.815206pt;}
.y3e{bottom:320.377869pt;}
.y17b{bottom:323.711202pt;}
.yac{bottom:324.865743pt;}
.y101{bottom:327.153992pt;}
.y12{bottom:327.293864pt;}
.y1b3{bottom:327.648804pt;}
.y75{bottom:328.267333pt;}
.yd8{bottom:329.442261pt;}
.y132{bottom:330.302795pt;}
.y3d{bottom:336.377869pt;}
.y1d4{bottom:336.748535pt;}
.yab{bottom:337.532410pt;}
.y100{bottom:339.820658pt;}
.y1b2{bottom:340.315470pt;}
.y74{bottom:340.934000pt;}
.y11{bottom:343.293986pt;}
.yd7{bottom:344.397217pt;}
.y131{bottom:345.818929pt;}
.y51{bottom:348.588013pt;}
.y17a{bottom:349.044515pt;}
.yaa{bottom:350.199056pt;}
.y1d3{bottom:351.815186pt;}
.y3c{bottom:352.377848pt;}
.y1b1{bottom:352.982137pt;}
.y73{bottom:353.600667pt;}
.yff{bottom:354.775594pt;}
.yd6{bottom:357.063883pt;}
.y130{bottom:358.485596pt;}
.y10{bottom:359.293986pt;}
.y179{bottom:361.711182pt;}
.ya9{bottom:362.865723pt;}
.y1b0{bottom:365.648804pt;}
.yfe{bottom:367.442261pt;}
.y3b{bottom:368.377848pt;}
.y72{bottom:368.555583pt;}
.y1d2{bottom:368.748535pt;}
.yd5{bottom:369.730550pt;}
.y12f{bottom:373.440552pt;}
.y178{bottom:374.377848pt;}
.yf{bottom:375.293986pt;}
.ya8{bottom:375.532389pt;}
.y1af{bottom:378.315470pt;}
.yfd{bottom:380.108927pt;}
.y71{bottom:381.222249pt;}
.yd4{bottom:382.397217pt;}
.y3a{bottom:384.377848pt;}
.y12e{bottom:386.107218pt;}
.y177{bottom:387.044515pt;}
.ya7{bottom:388.199056pt;}
.y1d1{bottom:390.376953pt;}
.y1ae{bottom:390.982137pt;}
.ye{bottom:391.293986pt;}
.y70{bottom:393.888916pt;}
.yfc{bottom:395.063721pt;}
.yd3{bottom:395.063883pt;}
.y176{bottom:399.711182pt;}
.y39{bottom:400.377848pt;}
.ya6{bottom:400.865723pt;}
.y12d{bottom:401.062133pt;}
.y1d0{bottom:403.043620pt;}
.y1ad{bottom:403.648804pt;}
.y152{bottom:406.571452pt;}
.yd{bottom:407.293986pt;}
.yfb{bottom:407.730387pt;}
.yd2{bottom:407.730550pt;}
.y6f{bottom:408.843750pt;}
.y175{bottom:412.377848pt;}
.ya5{bottom:413.532389pt;}
.y12c{bottom:416.016927pt;}
.y1ac{bottom:416.315470pt;}
.y38{bottom:416.377848pt;}
.yd1{bottom:420.397217pt;}
.y6e{bottom:421.510417pt;}
.y151{bottom:421.526408pt;}
.y1cf{bottom:422.376953pt;}
.yfa{bottom:422.685343pt;}
.yc{bottom:423.293986pt;}
.y174{bottom:425.044515pt;}
.ya4{bottom:428.487345pt;}
.y12b{bottom:428.683594pt;}
.y1ab{bottom:428.982137pt;}
.y37{bottom:432.377848pt;}
.yd0{bottom:433.063883pt;}
.y1ce{bottom:435.043620pt;}
.yf9{bottom:435.352010pt;}
.y6d{bottom:436.465332pt;}
.y150{bottom:436.481323pt;}
.y173{bottom:437.711182pt;}
.yb{bottom:439.293986pt;}
.ya3{bottom:441.154012pt;}
.y1aa{bottom:441.648804pt;}
.y12a{bottom:443.638550pt;}
.ycf{bottom:445.730550pt;}
.yf8{bottom:448.018677pt;}
.y36{bottom:448.377848pt;}
.y6c{bottom:449.131999pt;}
.y172{bottom:450.377848pt;}
.y14f{bottom:451.436117pt;}
.ya2{bottom:453.820679pt;}
.y1a9{bottom:454.315470pt;}
.y1cd{bottom:454.376953pt;}
.ya{bottom:455.293986pt;}
.yce{bottom:458.397217pt;}
.y129{bottom:459.154785pt;}
.yf7{bottom:462.973592pt;}
.y171{bottom:463.044515pt;}
.y6b{bottom:464.086914pt;}
.y35{bottom:464.377848pt;}
.y14e{bottom:466.391073pt;}
.ya1{bottom:466.487345pt;}
.y1a8{bottom:466.982137pt;}
.y1cc{bottom:467.043620pt;}
.ycd{bottom:471.063883pt;}
.y9{bottom:471.293986pt;}
.y128{bottom:474.671061pt;}
.yf6{bottom:475.640259pt;}
.y170{bottom:475.711182pt;}
.y6a{bottom:476.753581pt;}
.y1a7{bottom:479.648804pt;}
.y34{bottom:480.377848pt;}
.y14d{bottom:481.345988pt;}
.ya0{bottom:481.442261pt;}
.ycc{bottom:483.730550pt;}
.y1cb{bottom:486.376953pt;}
.y8{bottom:487.293986pt;}
.y127{bottom:487.337728pt;}
.yf5{bottom:488.306925pt;}
.y16f{bottom:488.377848pt;}
.y69{bottom:491.708537pt;}
.y1a6{bottom:492.315470pt;}
.y9f{bottom:494.108927pt;}
.y14c{bottom:496.300944pt;}
.y33{bottom:496.377848pt;}
.ycb{bottom:496.397217pt;}
.y1ca{bottom:499.043620pt;}
.y16e{bottom:501.044515pt;}
.y126{bottom:502.292521pt;}
.yf4{bottom:503.261719pt;}
.y7{bottom:503.293986pt;}
.y68{bottom:504.375203pt;}
.y1a5{bottom:504.982137pt;}
.y9e{bottom:506.775594pt;}
.yca{bottom:509.063883pt;}
.y14b{bottom:511.255737pt;}
.y32{bottom:512.377848pt;}
.y16d{bottom:513.711182pt;}
.yf3{bottom:515.928385pt;}
.y125{bottom:517.247477pt;}
.y1a4{bottom:517.648804pt;}
.y1c9{bottom:518.376953pt;}
.y6{bottom:519.293986pt;}
.y67{bottom:519.329997pt;}
.y9d{bottom:519.442261pt;}
.yc9{bottom:521.730550pt;}
.y14a{bottom:526.210653pt;}
.y16c{bottom:526.377848pt;}
.y31{bottom:528.377848pt;}
.yf2{bottom:528.595052pt;}
.y1a3{bottom:530.315470pt;}
.y1c8{bottom:531.043620pt;}
.y66{bottom:531.996663pt;}
.y124{bottom:532.202393pt;}
.y9c{bottom:534.397217pt;}
.y5{bottom:535.293986pt;}
.yc8{bottom:536.685343pt;}
.y16b{bottom:539.044515pt;}
.y149{bottom:541.165609pt;}
.yf1{bottom:541.261719pt;}
.y1a2{bottom:542.982137pt;}
.y30{bottom:544.377848pt;}
.y65{bottom:544.663330pt;}
.y123{bottom:544.869059pt;}
.y9b{bottom:547.063883pt;}
.yc7{bottom:549.352010pt;}
.y4{bottom:551.293986pt;}
.y16a{bottom:551.711182pt;}
.yf0{bottom:553.928385pt;}
.y1a1{bottom:555.648804pt;}
.y148{bottom:556.120402pt;}
.y64{bottom:559.618286pt;}
.y9a{bottom:559.730550pt;}
.y122{bottom:559.824015pt;}
.y2f{bottom:560.377848pt;}
.yc6{bottom:562.018677pt;}
.y169{bottom:564.377848pt;}
.yef{bottom:566.595052pt;}
.y3{bottom:567.293986pt;}
.y1a0{bottom:568.315470pt;}
.y147{bottom:571.075317pt;}
.y63{bottom:572.284953pt;}
.y99{bottom:572.397217pt;}
.yc5{bottom:574.685343pt;}
.y121{bottom:574.778809pt;}
.y2e{bottom:576.377848pt;}
.y168{bottom:577.044515pt;}
.yee{bottom:579.261719pt;}
.y19f{bottom:580.982137pt;}
.y62{bottom:584.951619pt;}
.y146{bottom:586.030273pt;}
.y98{bottom:587.352010pt;}
.yc4{bottom:589.640259pt;}
.y167{bottom:589.711182pt;}
.y120{bottom:590.295085pt;}
.yed{bottom:591.928385pt;}
.y2d{bottom:592.377848pt;}
.y19e{bottom:593.648804pt;}
.y61{bottom:599.906535pt;}
.y97{bottom:600.018677pt;}
.y145{bottom:601.646525pt;}
.yc3{bottom:602.306925pt;}
.y166{bottom:602.377848pt;}
.yec{bottom:604.595052pt;}
.y11f{bottom:605.811320pt;}
.y19d{bottom:606.315470pt;}
.y2c{bottom:608.377848pt;}
.y19{bottom:611.309611pt;}
.y60{bottom:612.573201pt;}
.y96{bottom:612.685343pt;}
.yc2{bottom:614.973592pt;}
.y165{bottom:615.044515pt;}
.y144{bottom:616.601318pt;}
.yeb{bottom:617.261719pt;}
.y11e{bottom:618.477987pt;}
.y19c{bottom:618.982137pt;}
.y18{bottom:623.976278pt;}
.y2b{bottom:624.377848pt;}
.y5f{bottom:625.239868pt;}
.y95{bottom:627.640259pt;}
.y164{bottom:627.711182pt;}
.y143{bottom:629.267985pt;}
.yea{bottom:629.928385pt;}
.y19b{bottom:631.648804pt;}
.y11d{bottom:633.432780pt;}
.y5e{bottom:637.906535pt;}
.y94{bottom:640.306925pt;}
.y2a{bottom:640.377848pt;}
.ye9{bottom:642.595052pt;}
.yc1{bottom:642.595215pt;}
.y19a{bottom:644.315470pt;}
.y11c{bottom:648.387736pt;}
.y5d{bottom:650.573201pt;}
.ye8{bottom:655.261719pt;}
.y93{bottom:655.261882pt;}
.y29{bottom:656.377848pt;}
.y199{bottom:656.982137pt;}
.y1e{bottom:658.433065pt;}
.y5c{bottom:663.239868pt;}
.y11b{bottom:663.342651pt;}
.ye7{bottom:667.928385pt;}
.y92{bottom:667.928548pt;}
.y198{bottom:669.648804pt;}
.y1c7{bottom:669.982137pt;}
.y28{bottom:672.377848pt;}
.y1d{bottom:674.433065pt;}
.y5b{bottom:675.906535pt;}
.y158{bottom:676.008260pt;}
.y11a{bottom:678.297485pt;}
.y91{bottom:680.595215pt;}
.y197{bottom:682.315470pt;}
.y1c6{bottom:682.648804pt;}
.ye6{bottom:682.883301pt;}
.y27{bottom:688.377848pt;}
.y5a{bottom:688.573161pt;}
.y157{bottom:688.674967pt;}
.y119{bottom:693.252360pt;}
.y196{bottom:694.982096pt;}
.y90{bottom:695.549967pt;}
.y59{bottom:701.239827pt;}
.y156{bottom:703.640299pt;}
.y26{bottom:704.377848pt;}
.y118{bottom:705.919027pt;}
.y163{bottom:707.044515pt;}
.y195{bottom:707.648763pt;}
.y8f{bottom:708.216634pt;}
.y1c{bottom:712.165365pt;}
.y58{bottom:713.906494pt;}
.y155{bottom:718.595215pt;}
.y162{bottom:719.711182pt;}
.y194{bottom:720.315430pt;}
.y25{bottom:720.377848pt;}
.y117{bottom:720.874023pt;}
.y8e{bottom:720.883301pt;}
.yc0{bottom:723.171631pt;}
.y57{bottom:726.573161pt;}
.y1b{bottom:732.165365pt;}
.y161{bottom:732.377848pt;}
.y193{bottom:732.982096pt;}
.y8d{bottom:733.549967pt;}
.ybf{bottom:735.838298pt;}
.y24{bottom:736.377848pt;}
.y116{bottom:736.390299pt;}
.y56{bottom:739.239827pt;}
.y160{bottom:745.044515pt;}
.y192{bottom:745.648763pt;}
.y8c{bottom:748.504964pt;}
.y154{bottom:748.788249pt;}
.y55{bottom:751.906494pt;}
.y1a{bottom:752.165365pt;}
.y23{bottom:752.377848pt;}
.y115{bottom:752.567871pt;}
.y15f{bottom:757.711182pt;}
.y191{bottom:758.315430pt;}
.y8b{bottom:761.171631pt;}
.y153{bottom:761.454915pt;}
.y54{bottom:764.573161pt;}
.y114{bottom:765.234538pt;}
.y22{bottom:768.377848pt;}
.y15e{bottom:770.377848pt;}
.y190{bottom:770.982096pt;}
.y8a{bottom:776.409831pt;}
.y53{bottom:780.189453pt;}
.y15d{bottom:783.044515pt;}
.y18f{bottom:783.648763pt;}
.y4f{bottom:784.377848pt;}
.y89{bottom:789.076497pt;}
.y52{bottom:792.856120pt;}
.y15c{bottom:795.711182pt;}
.y18e{bottom:796.315430pt;}
.y21{bottom:800.377848pt;}
.ybe{bottom:805.284098pt;}
.y88{bottom:808.377848pt;}
.y18d{bottom:808.982096pt;}
.y2{bottom:822.167969pt;}
.y1{bottom:834.834635pt;}
.h17{height:20.752083pt;}
.h16{height:26.206250pt;}
.h15{height:29.625000pt;}
.ha{height:29.645833pt;}
.h5{height:37.057292pt;}
.h11{height:37.437500pt;}
.h3{height:40.405333pt;}
.h2{height:40.618667pt;}
.hd{height:41.088000pt;}
.h14{height:42.197333pt;}
.h13{height:43.093333pt;}
.he{height:44.468750pt;}
.h6{height:46.796875pt;}
.h7{height:51.360000pt;}
.hf{height:52.266667pt;}
.h4{height:52.746667pt;}
.h10{height:53.866667pt;}
.h12{height:54.091146pt;}
.h9{height:57.621333pt;}
.hc{height:58.021333pt;}
.hb{height:64.000000pt;}
.h8{height:66.768000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031469pt;}
.x14{left:80.109599pt;}
.x4{left:83.149602pt;}
.x15{left:86.929067pt;}
.x13{left:90.708669pt;}
.x12{left:105.876668pt;}
.x6{left:160.205067pt;}
.x3{left:164.595866pt;}
.xa{left:222.992126pt;}
.x7{left:236.498393pt;}
.xb{left:292.170797pt;}
.xc{left:360.620687pt;}
.x8{left:369.567057pt;}
.x9{left:418.953857pt;}
.xd{left:421.491618pt;}
.x5{left:424.020549pt;}
.xf{left:429.143880pt;}
.x10{left:459.687581pt;}
.x2{left:463.255737pt;}
.xe{left:482.382528pt;}
.x11{left:490.842814pt;}
}




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