
    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_6ff02d5b4433c9ead5ea67e9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_79bdfa2a5bba344fc53f936a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_a94776cc56b6c9fb3c8de061.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5cd535fca2e3266aa8289649.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_280f83c80eca923d92f7499b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.364258;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_2634bed600daee6db5657f1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.742676;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_d80a3c6bb0fb331a8a6f8b80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_279c51c1478d16c5da962349.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_933c5a9c12bf0141ffef277e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120600px;}
.ls1a{letter-spacing:-1.135440px;}
.ls18{letter-spacing:-1.075680px;}
.ls17{letter-spacing:-0.657360px;}
.ls21{letter-spacing:-0.478080px;}
.ls1e{letter-spacing:-0.434160px;}
.ls2f{letter-spacing:-0.418320px;}
.ls14{letter-spacing:-0.358560px;}
.lse{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.239040px;}
.lsf{letter-spacing:-0.216000px;}
.ls31{letter-spacing:-0.132480px;}
.ls2e{letter-spacing:-0.119520px;}
.ls10{letter-spacing:-0.108000px;}
.ls16{letter-spacing:-0.059760px;}
.lsc{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.059760px;}
.ls12{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.132480px;}
.ls2{letter-spacing:0.162000px;}
.ls28{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.181440px;}
.ls23{letter-spacing:0.209160px;}
.ls2a{letter-spacing:0.227088px;}
.ls6{letter-spacing:0.239040px;}
.lsd{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.378000px;}
.ls1b{letter-spacing:0.836640px;}
.ls2d{letter-spacing:0.896400px;}
.ls2c{letter-spacing:1.565712px;}
.lsa{letter-spacing:2.970072px;}
.ls29{letter-spacing:3.764880px;}
.ls30{letter-spacing:5.898312px;}
.ls2b{letter-spacing:7.350480px;}
.ls4{letter-spacing:10.900224px;}
.ls7{letter-spacing:10.983888px;}
.ls3{letter-spacing:10.995840px;}
.ls5{letter-spacing:11.712960px;}
.ls26{letter-spacing:12.298608px;}
.ls1d{letter-spacing:14.581440px;}
.ls27{letter-spacing:15.298560px;}
.ls25{letter-spacing:16.015680px;}
.ls22{letter-spacing:16.493760px;}
.ls8{letter-spacing:16.891200px;}
.lsb{letter-spacing:18.167040px;}
.ls9{letter-spacing:23.963760px;}
.ls24{letter-spacing:50.317920px;}
.ls1c{letter-spacing:57.548880px;}
.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;}
}
.ws52{word-spacing:-59.760000px;}
.ws0{word-spacing:-27.324000px;}
.wsb{word-spacing:-16.692480px;}
.wsde{word-spacing:-16.427520px;}
.wsc{word-spacing:-15.776640px;}
.wsd{word-spacing:-15.298560px;}
.ws90{word-spacing:-15.179040px;}
.ws91{word-spacing:-15.119280px;}
.ws6{word-spacing:-15.059520px;}
.ws8f{word-spacing:-14.999760px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.880240px;}
.wsdd{word-spacing:-14.700960px;}
.ws9{word-spacing:-14.581440px;}
.ws53{word-spacing:-14.461920px;}
.ws3{word-spacing:-13.878000px;}
.wsa{word-spacing:-13.864320px;}
.ws4{word-spacing:-13.608000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.284000px;}
.ws1{word-spacing:-9.000000px;}
.ws7f{word-spacing:-0.358560px;}
.ws25{word-spacing:-0.239040px;}
.ws13{word-spacing:-0.216000px;}
.ws31{word-spacing:-0.179280px;}
.ws63{word-spacing:-0.132480px;}
.ws15{word-spacing:-0.119520px;}
.wsac{word-spacing:-0.059760px;}
.wse{word-spacing:0.000000px;}
.ws60{word-spacing:0.054000px;}
.ws30{word-spacing:0.059760px;}
.ws54{word-spacing:0.192960px;}
.ws11{word-spacing:0.216000px;}
.ws1f{word-spacing:0.239040px;}
.ws12{word-spacing:0.270000px;}
.ws10{word-spacing:0.288000px;}
.wsca{word-spacing:0.298800px;}
.wsf{word-spacing:0.324000px;}
.ws26{word-spacing:0.358560px;}
.wsd2{word-spacing:0.418320px;}
.ws55{word-spacing:0.434160px;}
.wsb0{word-spacing:0.478080px;}
.ws1e{word-spacing:0.537840px;}
.wsd9{word-spacing:0.657360px;}
.ws80{word-spacing:0.776880px;}
.wsd3{word-spacing:0.956160px;}
.wsd5{word-spacing:1.135440px;}
.wscb{word-spacing:1.254960px;}
.ws3d{word-spacing:1.494000px;}
.ws68{word-spacing:1.553760px;}
.ws48{word-spacing:1.673280px;}
.ws69{word-spacing:1.972080px;}
.ws14{word-spacing:2.211120px;}
.ws1a{word-spacing:2.390400px;}
.ws70{word-spacing:2.689200px;}
.ws19{word-spacing:2.928240px;}
.ws5b{word-spacing:3.107520px;}
.ws18{word-spacing:3.406320px;}
.ws17{word-spacing:3.645360px;}
.ws39{word-spacing:3.824640px;}
.ws16{word-spacing:4.123440px;}
.wsad{word-spacing:4.362480px;}
.ws86{word-spacing:4.840560px;}
.ws3c{word-spacing:5.079600px;}
.ws2b{word-spacing:5.258880px;}
.ws81{word-spacing:5.557680px;}
.ws7d{word-spacing:5.796720px;}
.ws65{word-spacing:5.976000px;}
.ws6f{word-spacing:6.274800px;}
.ws4c{word-spacing:6.513840px;}
.ws22{word-spacing:6.693120px;}
.ws4b{word-spacing:6.991920px;}
.ws75{word-spacing:7.051680px;}
.ws5d{word-spacing:7.290720px;}
.ws5e{word-spacing:7.470000px;}
.ws28{word-spacing:7.768800px;}
.ws42{word-spacing:8.007840px;}
.ws3e{word-spacing:8.187120px;}
.ws2e{word-spacing:8.485920px;}
.ws9a{word-spacing:8.724960px;}
.ws27{word-spacing:8.904240px;}
.ws51{word-spacing:9.203040px;}
.ws45{word-spacing:9.442080px;}
.ws57{word-spacing:9.621360px;}
.ws44{word-spacing:9.920160px;}
.ws62{word-spacing:10.159200px;}
.wsa0{word-spacing:10.338480px;}
.ws5f{word-spacing:10.476000px;}
.ws1c{word-spacing:10.637280px;}
.ws1b{word-spacing:10.876320px;}
.ws77{word-spacing:11.055600px;}
.ws20{word-spacing:11.354400px;}
.ws24{word-spacing:11.593440px;}
.ws23{word-spacing:11.772720px;}
.wse4{word-spacing:12.071520px;}
.wsa7{word-spacing:12.310560px;}
.ws21{word-spacing:12.370320px;}
.ws6a{word-spacing:12.489840px;}
.ws29{word-spacing:12.788640px;}
.wsba{word-spacing:13.027680px;}
.ws46{word-spacing:13.206960px;}
.ws98{word-spacing:13.386240px;}
.ws99{word-spacing:13.505760px;}
.ws4a{word-spacing:13.744800px;}
.ws2a{word-spacing:13.924080px;}
.wsd6{word-spacing:14.222880px;}
.ws6d{word-spacing:14.461920px;}
.wsb4{word-spacing:14.641200px;}
.ws79{word-spacing:14.940000px;}
.wsbb{word-spacing:15.179040px;}
.wsb9{word-spacing:15.358320px;}
.ws56{word-spacing:15.657120px;}
.wsbc{word-spacing:15.896160px;}
.ws88{word-spacing:16.075440px;}
.ws2d{word-spacing:16.374240px;}
.ws38{word-spacing:16.613280px;}
.wsb1{word-spacing:16.792560px;}
.wsda{word-spacing:17.091360px;}
.ws1d{word-spacing:17.330400px;}
.wse8{word-spacing:17.509680px;}
.ws40{word-spacing:17.808480px;}
.ws3f{word-spacing:18.047520px;}
.wsb8{word-spacing:18.525600px;}
.ws58{word-spacing:18.764640px;}
.wsbf{word-spacing:18.943920px;}
.ws5a{word-spacing:19.242720px;}
.ws49{word-spacing:19.481760px;}
.ws8e{word-spacing:19.661040px;}
.ws83{word-spacing:19.959840px;}
.wsaf{word-spacing:20.198880px;}
.ws84{word-spacing:20.557440px;}
.ws5c{word-spacing:20.676960px;}
.wsc0{word-spacing:20.736720px;}
.ws9f{word-spacing:20.916000px;}
.ws9e{word-spacing:21.095280px;}
.ws9c{word-spacing:21.394080px;}
.wsc6{word-spacing:21.453840px;}
.ws4f{word-spacing:21.692880px;}
.ws50{word-spacing:22.170960px;}
.ws33{word-spacing:22.410000px;}
.ws41{word-spacing:22.589280px;}
.ws47{word-spacing:22.888080px;}
.ws8d{word-spacing:23.605200px;}
.ws34{word-spacing:23.664960px;}
.ws2c{word-spacing:23.844240px;}
.wsb3{word-spacing:24.023520px;}
.ws87{word-spacing:24.322320px;}
.ws82{word-spacing:24.561360px;}
.ws7e{word-spacing:25.039440px;}
.ws4d{word-spacing:25.278480px;}
.ws35{word-spacing:25.457760px;}
.wsa1{word-spacing:25.756560px;}
.ws59{word-spacing:25.995600px;}
.wseb{word-spacing:26.174880px;}
.wsc9{word-spacing:26.473680px;}
.ws85{word-spacing:26.712720px;}
.wsb5{word-spacing:26.892000px;}
.ws3a{word-spacing:27.429840px;}
.ws43{word-spacing:27.609120px;}
.wse1{word-spacing:27.907920px;}
.ws64{word-spacing:28.146960px;}
.wsb2{word-spacing:28.326240px;}
.ws94{word-spacing:28.625040px;}
.wscc{word-spacing:28.864080px;}
.wse6{word-spacing:29.043360px;}
.ws93{word-spacing:29.760480px;}
.wsc8{word-spacing:30.059280px;}
.ws36{word-spacing:30.298320px;}
.wsc7{word-spacing:30.477600px;}
.ws7c{word-spacing:31.015440px;}
.wsc4{word-spacing:31.194720px;}
.wsa3{word-spacing:31.493520px;}
.ws32{word-spacing:31.732560px;}
.wsbe{word-spacing:32.210640px;}
.ws8b{word-spacing:32.808240px;}
.wsc5{word-spacing:32.927760px;}
.wsa6{word-spacing:33.166800px;}
.wse2{word-spacing:33.346080px;}
.ws6e{word-spacing:33.883920px;}
.wsea{word-spacing:34.063200px;}
.ws8a{word-spacing:34.362000px;}
.wsd8{word-spacing:34.601040px;}
.ws89{word-spacing:34.780320px;}
.ws71{word-spacing:35.318160px;}
.ws2f{word-spacing:35.796240px;}
.wsab{word-spacing:36.573120px;}
.wsdb{word-spacing:37.290240px;}
.wsb6{word-spacing:37.529280px;}
.wsaa{word-spacing:38.007360px;}
.wse0{word-spacing:38.425680px;}
.wsd4{word-spacing:38.724480px;}
.wsdc{word-spacing:38.963520px;}
.ws76{word-spacing:39.441600px;}
.wsc3{word-spacing:40.158720px;}
.ws61{word-spacing:40.577040px;}
.wsbd{word-spacing:41.114880px;}
.ws9b{word-spacing:41.294160px;}
.wsdf{word-spacing:41.592960px;}
.wscd{word-spacing:41.832000px;}
.wsd0{word-spacing:42.310080px;}
.wsb7{word-spacing:42.549120px;}
.ws97{word-spacing:42.728400px;}
.wsa2{word-spacing:43.027200px;}
.ws3b{word-spacing:43.983360px;}
.ws78{word-spacing:44.162640px;}
.ws6b{word-spacing:44.461440px;}
.ws96{word-spacing:44.700480px;}
.ws95{word-spacing:44.879760px;}
.ws6c{word-spacing:45.178560px;}
.ws7a{word-spacing:45.596880px;}
.ws37{word-spacing:47.568960px;}
.ws73{word-spacing:48.286080px;}
.ws74{word-spacing:48.465360px;}
.wsa9{word-spacing:48.764160px;}
.wscf{word-spacing:49.003200px;}
.ws7b{word-spacing:51.333840px;}
.wse9{word-spacing:51.692400px;}
.ws72{word-spacing:51.931440px;}
.wse5{word-spacing:55.517040px;}
.wsa8{word-spacing:55.995120px;}
.wsae{word-spacing:58.146480px;}
.ws4e{word-spacing:58.385520px;}
.wse3{word-spacing:60.297840px;}
.ws9d{word-spacing:61.971120px;}
.wsa4{word-spacing:65.736000px;}
.wsa5{word-spacing:65.915280px;}
.ws8c{word-spacing:66.094560px;}
.wsce{word-spacing:66.811680px;}
.wsd1{word-spacing:81.213840px;}
.wsc1{word-spacing:86.472720px;}
.wsc2{word-spacing:86.652000px;}
.wsd7{word-spacing:93.404880px;}
.wse7{word-spacing:97.289280px;}
.ws66{word-spacing:126.033840px;}
.ws67{word-spacing:126.870480px;}
.ws92{word-spacing:230.195520px;}
._0{margin-left:-10.292400px;}
._3{margin-left:-4.536000px;}
._2{margin-left:-2.732400px;}
._1{margin-left:-1.663200px;}
._4{width:1.015200px;}
._5{width:2.151360px;}
._c{width:5.260320px;}
._a{width:8.535600px;}
._6{width:11.355840px;}
._7{width:12.430080px;}
._d{width:13.924080px;}
._f{width:19.244160px;}
._e{width:22.949280px;}
._b{width:24.739920px;}
._8{width:27.610560px;}
._9{width:2740.514400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:2.526000px;}
.y57{bottom:16.926000px;}
.y56{bottom:26.235635px;}
.y55{bottom:75.525480px;}
.y3a{bottom:80.694720px;}
.y54{bottom:92.811060px;}
.y39{bottom:97.980300px;}
.y53{bottom:110.096640px;}
.y89{bottom:113.818500px;}
.y1d4{bottom:114.214320px;}
.y38{bottom:115.265880px;}
.y163{bottom:123.940260px;}
.yc3{bottom:127.040400px;}
.y52{bottom:127.202940px;}
.y133{bottom:128.241000px;}
.y88{bottom:131.104080px;}
.y1d3{bottom:131.499900px;}
.y37{bottom:132.372180px;}
.y19c{bottom:137.894220px;}
.y162{bottom:141.225840px;}
.yc2{bottom:144.325980px;}
.y51{bottom:144.488520px;}
.y132{bottom:145.526580px;}
.y1d2{bottom:148.785480px;}
.y36{bottom:149.657760px;}
.y87{bottom:152.348760px;}
.y19b{bottom:155.179800px;}
.y161{bottom:158.511420px;}
.yc1{bottom:161.611560px;}
.y50{bottom:161.774100px;}
.y131{bottom:162.812160px;}
.y1d1{bottom:165.891780px;}
.y35{bottom:166.943340px;}
.y86{bottom:169.634340px;}
.y19a{bottom:172.465380px;}
.y160{bottom:175.797000px;}
.y4f{bottom:179.059680px;}
.y130{bottom:179.918460px;}
.yc0{bottom:181.765620px;}
.y1d0{bottom:183.177360px;}
.y34{bottom:184.228920px;}
.y85{bottom:186.919920px;}
.y199{bottom:189.750960px;}
.y15f{bottom:192.903300px;}
.y4e{bottom:196.345260px;}
.y12f{bottom:197.204040px;}
.yf9{bottom:198.102420px;}
.ybf{bottom:199.051200px;}
.y1cf{bottom:200.462940px;}
.y33{bottom:201.514500px;}
.y84{bottom:204.205500px;}
.y198{bottom:207.036540px;}
.y15e{bottom:210.188880px;}
.y4d{bottom:213.630840px;}
.y12e{bottom:214.489620px;}
.ybe{bottom:216.336780px;}
.y1ce{bottom:217.748520px;}
.yf8{bottom:218.256480px;}
.y32{bottom:218.620800px;}
.y83{bottom:221.311800px;}
.y197{bottom:227.190600px;}
.y15d{bottom:227.474460px;}
.y4c{bottom:230.737140px;}
.y12d{bottom:231.775200px;}
.ybd{bottom:233.443080px;}
.y1cd{bottom:235.034100px;}
.yf7{bottom:235.542060px;}
.y31{bottom:235.906380px;}
.y82{bottom:238.597380px;}
.y196{bottom:244.296900px;}
.y15c{bottom:244.760040px;}
.y4b{bottom:248.022720px;}
.y12c{bottom:249.060780px;}
.ybc{bottom:250.728660px;}
.yf6{bottom:252.827640px;}
.y30{bottom:253.191960px;}
.y1cc{bottom:255.188160px;}
.y81{bottom:255.882960px;}
.y15b{bottom:262.045620px;}
.y4a{bottom:265.308300px;}
.y12b{bottom:266.167080px;}
.y195{bottom:266.258700px;}
.yf5{bottom:270.113220px;}
.y2f{bottom:270.477540px;}
.ybb{bottom:271.062000px;}
.y1cb{bottom:272.473740px;}
.y80{bottom:273.168540px;}
.y15a{bottom:279.331200px;}
.y49{bottom:282.593880px;}
.y12a{bottom:283.452660px;}
.y194{bottom:283.544280px;}
.yf4{bottom:287.398800px;}
.y2e{bottom:287.763120px;}
.yba{bottom:288.347580px;}
.y1ca{bottom:289.759320px;}
.y7f{bottom:290.454120px;}
.y159{bottom:296.437500px;}
.y48{bottom:299.879460px;}
.y193{bottom:300.650580px;}
.y129{bottom:300.738240px;}
.yf3{bottom:304.505100px;}
.yb9{bottom:305.453880px;}
.y1c9{bottom:307.044900px;}
.y2d{bottom:307.917180px;}
.y7e{bottom:311.698800px;}
.y158{bottom:316.770840px;}
.y47{bottom:317.165040px;}
.y192{bottom:317.936160px;}
.y128{bottom:318.023820px;}
.yf2{bottom:321.790680px;}
.yb8{bottom:322.739460px;}
.y1c8{bottom:324.330480px;}
.y2c{bottom:325.202760px;}
.y7d{bottom:328.984380px;}
.y157{bottom:334.056420px;}
.y46{bottom:334.271340px;}
.y191{bottom:335.221740px;}
.y127{bottom:335.309400px;}
.yf1{bottom:339.076260px;}
.yb7{bottom:340.025040px;}
.y1c7{bottom:341.436780px;}
.y2b{bottom:342.488340px;}
.y7c{bottom:346.269960px;}
.y190{bottom:352.507320px;}
.y45{bottom:354.604680px;}
.y126{bottom:355.463460px;}
.y156{bottom:355.480380px;}
.yf0{bottom:356.361840px;}
.yb6{bottom:357.310620px;}
.y1c6{bottom:358.722360px;}
.y2a{bottom:359.773920px;}
.y7b{bottom:363.555540px;}
.y18f{bottom:369.792900px;}
.y44{bottom:371.890260px;}
.y125{bottom:372.569760px;}
.y155{bottom:372.586680px;}
.yef{bottom:373.647420px;}
.yb5{bottom:374.596200px;}
.y1c5{bottom:376.007940px;}
.y29{bottom:377.059500px;}
.y7a{bottom:380.841120px;}
.y43{bottom:388.996560px;}
.yee{bottom:390.933000px;}
.y18e{bottom:391.216860px;}
.y1c4{bottom:393.293520px;}
.y28{bottom:394.165800px;}
.y124{bottom:394.531560px;}
.yb4{bottom:395.840880px;}
.y154{bottom:397.790460px;}
.y79{bottom:397.947420px;}
.y42{bottom:406.282140px;}
.y27{bottom:411.451380px;}
.y123{bottom:411.817140px;}
.yed{bottom:412.177680px;}
.yb3{bottom:413.126460px;}
.y1c3{bottom:413.447580px;}
.y153{bottom:415.076040px;}
.y78{bottom:415.233000px;}
.y18d{bottom:416.241360px;}
.y41{bottom:423.567720px;}
.y26{bottom:428.736960px;}
.y122{bottom:429.102720px;}
.yec{bottom:429.463260px;}
.yb2{bottom:430.412040px;}
.y1c2{bottom:430.553880px;}
.y152{bottom:432.182340px;}
.y77{bottom:432.518580px;}
.y18c{bottom:433.526940px;}
.y40{bottom:440.853300px;}
.y25{bottom:446.022540px;}
.y121{bottom:446.209020px;}
.yeb{bottom:446.748840px;}
.yb1{bottom:447.697620px;}
.y151{bottom:449.467920px;}
.y76{bottom:449.804160px;}
.y18b{bottom:450.812520px;}
.y1c1{bottom:452.515680px;}
.y3f{bottom:458.138880px;}
.y24{bottom:463.308120px;}
.y120{bottom:463.494600px;}
.yea{bottom:464.034420px;}
.yb0{bottom:464.983200px;}
.y150{bottom:466.753500px;}
.y18a{bottom:467.918820px;}
.y1c0{bottom:469.801260px;}
.y75{bottom:471.048840px;}
.y3e{bottom:475.424460px;}
.y1f8{bottom:480.571200px;}
.y23{bottom:480.593700px;}
.y11f{bottom:480.780180px;}
.ye9{bottom:481.140720px;}
.yaf{bottom:482.089500px;}
.y14f{bottom:484.039080px;}
.y189{bottom:485.204400px;}
.y1bf{bottom:487.086840px;}
.y74{bottom:488.334420px;}
.y3d{bottom:492.530760px;}
.y22{bottom:497.700000px;}
.y11e{bottom:498.065760px;}
.ye8{bottom:498.426300px;}
.yae{bottom:499.375080px;}
.y14e{bottom:501.324660px;}
.y1f7{bottom:502.174440px;}
.y188{bottom:502.489980px;}
.y1be{bottom:504.193140px;}
.y73{bottom:505.620000px;}
.y3c{bottom:509.816340px;}
.y11d{bottom:515.351340px;}
.ye7{bottom:515.711880px;}
.yad{bottom:516.660660px;}
.y21{bottom:519.480000px;}
.y187{bottom:519.775560px;}
.y14d{bottom:521.478720px;}
.y1f6{bottom:523.956960px;}
.y3b{bottom:527.101920px;}
.y72{bottom:527.400000px;}
.y11c{bottom:532.636920px;}
.ye6{bottom:532.997460px;}
.yac{bottom:533.946240px;}
.y186{bottom:537.061140px;}
.y1bd{bottom:538.764300px;}
.y1f5{bottom:541.242540px;}
.y14c{bottom:541.812060px;}
.y20{bottom:547.560000px;}
.y11b{bottom:549.743220px;}
.ye5{bottom:550.283040px;}
.y185{bottom:554.346720px;}
.yab{bottom:555.190920px;}
.y71{bottom:555.283620px;}
.y1bc{bottom:556.049880px;}
.y1f4{bottom:558.528120px;}
.y14b{bottom:559.097640px;}
.y11a{bottom:567.028800px;}
.ye4{bottom:567.568620px;}
.y1f{bottom:570.240000px;}
.y184{bottom:571.453020px;}
.yaa{bottom:572.476500px;}
.y1bb{bottom:573.335460px;}
.y70{bottom:575.616960px;}
.y1f3{bottom:575.813700px;}
.y14a{bottom:576.203940px;}
.y119{bottom:584.314380px;}
.ye3{bottom:584.674920px;}
.y183{bottom:588.738600px;}
.ya9{bottom:589.762080px;}
.y1e{bottom:590.580000px;}
.y1ba{bottom:590.621040px;}
.y6f{bottom:592.723260px;}
.y1f2{bottom:592.920000px;}
.y149{bottom:593.489520px;}
.y118{bottom:601.599960px;}
.ye2{bottom:601.960500px;}
.y182{bottom:606.024180px;}
.y1b9{bottom:607.727340px;}
.y1c{bottom:607.809600px;}
.y1d{bottom:607.860000px;}
.ya8{bottom:609.916140px;}
.y6e{bottom:610.008840px;}
.y148{bottom:610.775100px;}
.y1f1{bottom:614.700000px;}
.y117{bottom:618.885540px;}
.ye1{bottom:619.246080px;}
.y181{bottom:623.309760px;}
.y1b8{bottom:625.012920px;}
.ya7{bottom:627.201720px;}
.y6d{bottom:627.294420px;}
.y1b{bottom:627.963660px;}
.y147{bottom:628.060680px;}
.y116{bottom:635.991840px;}
.ye0{bottom:640.490760px;}
.y180{bottom:640.595340px;}
.y1b7{bottom:642.298500px;}
.y1f0{bottom:642.756960px;}
.ya6{bottom:644.487300px;}
.y6c{bottom:644.580000px;}
.y146{bottom:645.346260px;}
.y1a{bottom:648.297000px;}
.y115{bottom:653.277420px;}
.ydf{bottom:657.776340px;}
.y17f{bottom:657.880920px;}
.y1b6{bottom:659.584080px;}
.y1ef{bottom:660.042540px;}
.ya5{bottom:661.772880px;}
.y145{bottom:665.500320px;}
.y19{bottom:665.582580px;}
.y6b{bottom:669.780000px;}
.y114{bottom:670.563000px;}
.y1b5{bottom:676.869660px;}
.y1ee{bottom:677.148840px;}
.y17e{bottom:678.034980px;}
.yde{bottom:678.109680px;}
.ya4{bottom:679.058460px;}
.y6a{bottom:682.200000px;}
.y144{bottom:682.785900px;}
.y18{bottom:682.868160px;}
.y113{bottom:687.848580px;}
.y1b4{bottom:694.155240px;}
.y1ed{bottom:694.434420px;}
.y17d{bottom:695.141280px;}
.ydd{bottom:695.395260px;}
.ya3{bottom:696.344040px;}
.y69{bottom:697.979880px;}
.y17{bottom:699.974460px;}
.y143{bottom:700.071480px;}
.y112{bottom:705.134160px;}
.y1b3{bottom:711.261540px;}
.y1ec{bottom:711.720000px;}
.ydc{bottom:712.501560px;}
.ya2{bottom:713.450340px;}
.y17c{bottom:717.103080px;}
.y16{bottom:717.260040px;}
.y142{bottom:717.357060px;}
.y111{bottom:722.419740px;}
.y1b2{bottom:728.547120px;}
.ydb{bottom:729.787140px;}
.y1eb{bottom:733.500000px;}
.ya1{bottom:733.783680px;}
.y17b{bottom:734.388660px;}
.y141{bottom:734.642640px;}
.y110{bottom:739.526040px;}
.y15{bottom:743.539500px;}
.y1b1{bottom:745.832700px;}
.yda{bottom:747.072720px;}
.ya0{bottom:751.069260px;}
.y17a{bottom:751.494960px;}
.y140{bottom:751.748940px;}
.y10f{bottom:759.859380px;}
.y14{bottom:760.825080px;}
.y1ea{bottom:761.297400px;}
.y1b0{bottom:763.118280px;}
.yd9{bottom:767.406060px;}
.y9f{bottom:768.354840px;}
.y179{bottom:768.780540px;}
.y13f{bottom:769.034520px;}
.y10e{bottom:777.144960px;}
.y13{bottom:778.110660px;}
.y1e9{bottom:778.582980px;}
.y1af{bottom:780.403860px;}
.yd8{bottom:784.512360px;}
.y9e{bottom:785.461140px;}
.y178{bottom:786.066120px;}
.y13e{bottom:786.320100px;}
.y10d{bottom:794.430540px;}
.y12{bottom:795.396240px;}
.y1e8{bottom:795.868560px;}
.y1ae{bottom:797.510160px;}
.yd7{bottom:801.797940px;}
.y9d{bottom:802.746720px;}
.y177{bottom:803.351700px;}
.y13d{bottom:803.605680px;}
.y10c{bottom:811.536840px;}
.y11{bottom:812.502540px;}
.y1e7{bottom:813.154140px;}
.y1ad{bottom:817.843500px;}
.yd6{bottom:819.083520px;}
.y9c{bottom:820.032300px;}
.y176{bottom:820.637280px;}
.y13c{bottom:820.891260px;}
.y10b{bottom:828.822420px;}
.y10{bottom:829.788120px;}
.y1e6{bottom:830.439720px;}
.y1ac{bottom:834.949800px;}
.yd5{bottom:836.369100px;}
.y9b{bottom:837.317880px;}
.y175{bottom:837.743580px;}
.y13b{bottom:837.997560px;}
.y10a{bottom:846.108000px;}
.yf{bottom:847.073700px;}
.y1e5{bottom:847.546020px;}
.yd4{bottom:853.654680px;}
.y9a{bottom:854.603460px;}
.y174{bottom:855.029160px;}
.y13a{bottom:855.283140px;}
.y1ab{bottom:856.911600px;}
.y109{bottom:863.393580px;}
.ye{bottom:864.180000px;}
.y1e4{bottom:864.831600px;}
.yd3{bottom:870.760980px;}
.y173{bottom:872.314740px;}
.y139{bottom:872.568720px;}
.y1aa{bottom:874.017900px;}
.y99{bottom:875.848140px;}
.y108{bottom:880.679160px;}
.y1e3{bottom:882.117180px;}
.y172{bottom:889.600320px;}
.y138{bottom:889.854300px;}
.y1a9{bottom:891.303480px;}
.yd2{bottom:892.184940px;}
.yd{bottom:892.979850px;}
.y98{bottom:893.133720px;}
.y107{bottom:897.964740px;}
.y1e2{bottom:899.402760px;}
.y171{bottom:906.885900px;}
.y137{bottom:907.139880px;}
.y1a8{bottom:908.589060px;}
.yd1{bottom:909.470520px;}
.y97{bottom:910.419300px;}
.y68{bottom:911.636820px;}
.y106{bottom:915.071040px;}
.yc{bottom:916.020000px;}
.y1e1{bottom:916.688340px;}
.y170{bottom:924.171480px;}
.y1a7{bottom:925.874640px;}
.yd0{bottom:926.756100px;}
.y136{bottom:927.293940px;}
.y96{bottom:927.704880px;}
.y67{bottom:928.922400px;}
.yb{bottom:931.500000px;}
.y105{bottom:932.356620px;}
.y1e0{bottom:933.973920px;}
.y1a6{bottom:943.160220px;}
.ycf{bottom:943.862400px;}
.y16f{bottom:944.325540px;}
.y135{bottom:944.400240px;}
.y95{bottom:944.811180px;}
.y66{bottom:946.028700px;}
.ya{bottom:946.979850px;}
.y104{bottom:949.642200px;}
.y1df{bottom:951.080220px;}
.y1a5{bottom:960.445800px;}
.yce{bottom:961.147980px;}
.y16e{bottom:961.431840px;}
.y94{bottom:962.096760px;}
.y9{bottom:962.460000px;}
.y65{bottom:963.314280px;}
.y134{bottom:966.362040px;}
.y103{bottom:966.927780px;}
.y1de{bottom:968.365800px;}
.y8{bottom:975.600000px;}
.ycd{bottom:978.433560px;}
.y93{bottom:979.382340px;}
.y1a4{bottom:980.599860px;}
.y16d{bottom:983.393640px;}
.y64{bottom:983.647620px;}
.y102{bottom:984.213360px;}
.y1dd{bottom:985.651380px;}
.y7{bottom:996.479850px;}
.y92{bottom:996.667920px;}
.y1a3{bottom:997.885440px;}
.ycc{bottom:999.857520px;}
.y16c{bottom:1000.679220px;}
.y63{bottom:1000.933200px;}
.y101{bottom:1001.319660px;}
.y1dc{bottom:1002.936960px;}
.y1a2{bottom:1015.171020px;}
.ycb{bottom:1016.963820px;}
.y16b{bottom:1017.785520px;}
.y91{bottom:1017.912600px;}
.y62{bottom:1018.039500px;}
.y100{bottom:1018.605240px;}
.y6{bottom:1019.525940px;}
.y1db{bottom:1020.222540px;}
.y1a1{bottom:1032.456600px;}
.yca{bottom:1034.249400px;}
.y16a{bottom:1035.071100px;}
.y90{bottom:1035.198180px;}
.y61{bottom:1035.325080px;}
.yff{bottom:1035.890820px;}
.y1da{bottom:1037.328840px;}
.y5{bottom:1039.680000px;}
.y1a0{bottom:1049.562900px;}
.yc9{bottom:1051.534980px;}
.y169{bottom:1052.356680px;}
.y8f{bottom:1052.483760px;}
.y60{bottom:1052.610660px;}
.y1d9{bottom:1054.614420px;}
.yfe{bottom:1056.224160px;}
.y4{bottom:1062.351000px;}
.y19f{bottom:1066.848480px;}
.yc8{bottom:1068.820560px;}
.y168{bottom:1069.642260px;}
.y8e{bottom:1069.769340px;}
.y5f{bottom:1069.896240px;}
.y1d8{bottom:1071.900000px;}
.yfd{bottom:1073.330460px;}
.y19e{bottom:1084.134060px;}
.yc7{bottom:1086.106140px;}
.y167{bottom:1086.927840px;}
.y8d{bottom:1087.054920px;}
.y5e{bottom:1087.181820px;}
.y3{bottom:1093.320000px;}
.y1d7{bottom:1093.680000px;}
.yfc{bottom:1094.754420px;}
.y19d{bottom:1101.419640px;}
.yc6{bottom:1103.391720px;}
.y166{bottom:1104.213420px;}
.y8c{bottom:1104.340500px;}
.y5d{bottom:1104.467400px;}
.yfb{bottom:1112.040000px;}
.yc5{bottom:1120.498020px;}
.y1d6{bottom:1121.304780px;}
.y165{bottom:1121.319720px;}
.y8b{bottom:1121.446800px;}
.y5c{bottom:1121.573700px;}
.y2{bottom:1127.340000px;}
.yfa{bottom:1137.240000px;}
.yc4{bottom:1137.783600px;}
.y1d5{bottom:1138.590360px;}
.y164{bottom:1138.605300px;}
.y8a{bottom:1138.732380px;}
.y5b{bottom:1138.859280px;}
.y1{bottom:1165.500000px;}
.y5a{bottom:1168.560000px;}
.y59{bottom:1203.840000px;}
.h5{height:24.996094px;}
.h7{height:29.040150px;}
.h9{height:34.908047px;}
.ha{height:37.520508px;}
.hb{height:40.501406px;}
.hc{height:41.493516px;}
.h2{height:41.522695px;}
.h6{height:44.893125px;}
.h8{height:49.898438px;}
.h4{height:66.638920px;}
.h3{height:73.195312px;}
.h1{height:1258.500000px;}
.h0{height:1258.740000px;}
.w2{width:689.080500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.960000px;}
.x7{left:111.777300px;}
.x8{left:137.145420px;}
.x4{left:180.720000px;}
.x1{left:319.860000px;}
.x6{left:433.614780px;}
.x5{left:459.371340px;}
.xb{left:467.816040px;}
.xa{left:486.173700px;}
.x9{left:511.556760px;}
.x3{left:806.580000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440533pt;}
.ls1a{letter-spacing:-1.009280pt;}
.ls18{letter-spacing:-0.956160pt;}
.ls17{letter-spacing:-0.584320pt;}
.ls21{letter-spacing:-0.424960pt;}
.ls1e{letter-spacing:-0.385920pt;}
.ls2f{letter-spacing:-0.371840pt;}
.ls14{letter-spacing:-0.318720pt;}
.lse{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.212480pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls31{letter-spacing:-0.117760pt;}
.ls2e{letter-spacing:-0.106240pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls16{letter-spacing:-0.053120pt;}
.lsc{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.053120pt;}
.ls12{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.117760pt;}
.ls2{letter-spacing:0.144000pt;}
.ls28{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.161280pt;}
.ls23{letter-spacing:0.185920pt;}
.ls2a{letter-spacing:0.201856pt;}
.ls6{letter-spacing:0.212480pt;}
.lsd{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.336000pt;}
.ls1b{letter-spacing:0.743680pt;}
.ls2d{letter-spacing:0.796800pt;}
.ls2c{letter-spacing:1.391744pt;}
.lsa{letter-spacing:2.640064pt;}
.ls29{letter-spacing:3.346560pt;}
.ls30{letter-spacing:5.242944pt;}
.ls2b{letter-spacing:6.533760pt;}
.ls4{letter-spacing:9.689088pt;}
.ls7{letter-spacing:9.763456pt;}
.ls3{letter-spacing:9.774080pt;}
.ls5{letter-spacing:10.411520pt;}
.ls26{letter-spacing:10.932096pt;}
.ls1d{letter-spacing:12.961280pt;}
.ls27{letter-spacing:13.598720pt;}
.ls25{letter-spacing:14.236160pt;}
.ls22{letter-spacing:14.661120pt;}
.ls8{letter-spacing:15.014400pt;}
.lsb{letter-spacing:16.148480pt;}
.ls9{letter-spacing:21.301120pt;}
.ls24{letter-spacing:44.727040pt;}
.ls1c{letter-spacing:51.154560pt;}
.ws52{word-spacing:-53.120000pt;}
.ws0{word-spacing:-24.288000pt;}
.wsb{word-spacing:-14.837760pt;}
.wsde{word-spacing:-14.602240pt;}
.wsc{word-spacing:-14.023680pt;}
.wsd{word-spacing:-13.598720pt;}
.ws90{word-spacing:-13.492480pt;}
.ws91{word-spacing:-13.439360pt;}
.ws6{word-spacing:-13.386240pt;}
.ws8f{word-spacing:-13.333120pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.226880pt;}
.wsdd{word-spacing:-13.067520pt;}
.ws9{word-spacing:-12.961280pt;}
.ws53{word-spacing:-12.855040pt;}
.ws3{word-spacing:-12.336000pt;}
.wsa{word-spacing:-12.323840pt;}
.ws4{word-spacing:-12.096000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.808000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws7f{word-spacing:-0.318720pt;}
.ws25{word-spacing:-0.212480pt;}
.ws13{word-spacing:-0.192000pt;}
.ws31{word-spacing:-0.159360pt;}
.ws63{word-spacing:-0.117760pt;}
.ws15{word-spacing:-0.106240pt;}
.wsac{word-spacing:-0.053120pt;}
.wse{word-spacing:0.000000pt;}
.ws60{word-spacing:0.048000pt;}
.ws30{word-spacing:0.053120pt;}
.ws54{word-spacing:0.171520pt;}
.ws11{word-spacing:0.192000pt;}
.ws1f{word-spacing:0.212480pt;}
.ws12{word-spacing:0.240000pt;}
.ws10{word-spacing:0.256000pt;}
.wsca{word-spacing:0.265600pt;}
.wsf{word-spacing:0.288000pt;}
.ws26{word-spacing:0.318720pt;}
.wsd2{word-spacing:0.371840pt;}
.ws55{word-spacing:0.385920pt;}
.wsb0{word-spacing:0.424960pt;}
.ws1e{word-spacing:0.478080pt;}
.wsd9{word-spacing:0.584320pt;}
.ws80{word-spacing:0.690560pt;}
.wsd3{word-spacing:0.849920pt;}
.wsd5{word-spacing:1.009280pt;}
.wscb{word-spacing:1.115520pt;}
.ws3d{word-spacing:1.328000pt;}
.ws68{word-spacing:1.381120pt;}
.ws48{word-spacing:1.487360pt;}
.ws69{word-spacing:1.752960pt;}
.ws14{word-spacing:1.965440pt;}
.ws1a{word-spacing:2.124800pt;}
.ws70{word-spacing:2.390400pt;}
.ws19{word-spacing:2.602880pt;}
.ws5b{word-spacing:2.762240pt;}
.ws18{word-spacing:3.027840pt;}
.ws17{word-spacing:3.240320pt;}
.ws39{word-spacing:3.399680pt;}
.ws16{word-spacing:3.665280pt;}
.wsad{word-spacing:3.877760pt;}
.ws86{word-spacing:4.302720pt;}
.ws3c{word-spacing:4.515200pt;}
.ws2b{word-spacing:4.674560pt;}
.ws81{word-spacing:4.940160pt;}
.ws7d{word-spacing:5.152640pt;}
.ws65{word-spacing:5.312000pt;}
.ws6f{word-spacing:5.577600pt;}
.ws4c{word-spacing:5.790080pt;}
.ws22{word-spacing:5.949440pt;}
.ws4b{word-spacing:6.215040pt;}
.ws75{word-spacing:6.268160pt;}
.ws5d{word-spacing:6.480640pt;}
.ws5e{word-spacing:6.640000pt;}
.ws28{word-spacing:6.905600pt;}
.ws42{word-spacing:7.118080pt;}
.ws3e{word-spacing:7.277440pt;}
.ws2e{word-spacing:7.543040pt;}
.ws9a{word-spacing:7.755520pt;}
.ws27{word-spacing:7.914880pt;}
.ws51{word-spacing:8.180480pt;}
.ws45{word-spacing:8.392960pt;}
.ws57{word-spacing:8.552320pt;}
.ws44{word-spacing:8.817920pt;}
.ws62{word-spacing:9.030400pt;}
.wsa0{word-spacing:9.189760pt;}
.ws5f{word-spacing:9.312000pt;}
.ws1c{word-spacing:9.455360pt;}
.ws1b{word-spacing:9.667840pt;}
.ws77{word-spacing:9.827200pt;}
.ws20{word-spacing:10.092800pt;}
.ws24{word-spacing:10.305280pt;}
.ws23{word-spacing:10.464640pt;}
.wse4{word-spacing:10.730240pt;}
.wsa7{word-spacing:10.942720pt;}
.ws21{word-spacing:10.995840pt;}
.ws6a{word-spacing:11.102080pt;}
.ws29{word-spacing:11.367680pt;}
.wsba{word-spacing:11.580160pt;}
.ws46{word-spacing:11.739520pt;}
.ws98{word-spacing:11.898880pt;}
.ws99{word-spacing:12.005120pt;}
.ws4a{word-spacing:12.217600pt;}
.ws2a{word-spacing:12.376960pt;}
.wsd6{word-spacing:12.642560pt;}
.ws6d{word-spacing:12.855040pt;}
.wsb4{word-spacing:13.014400pt;}
.ws79{word-spacing:13.280000pt;}
.wsbb{word-spacing:13.492480pt;}
.wsb9{word-spacing:13.651840pt;}
.ws56{word-spacing:13.917440pt;}
.wsbc{word-spacing:14.129920pt;}
.ws88{word-spacing:14.289280pt;}
.ws2d{word-spacing:14.554880pt;}
.ws38{word-spacing:14.767360pt;}
.wsb1{word-spacing:14.926720pt;}
.wsda{word-spacing:15.192320pt;}
.ws1d{word-spacing:15.404800pt;}
.wse8{word-spacing:15.564160pt;}
.ws40{word-spacing:15.829760pt;}
.ws3f{word-spacing:16.042240pt;}
.wsb8{word-spacing:16.467200pt;}
.ws58{word-spacing:16.679680pt;}
.wsbf{word-spacing:16.839040pt;}
.ws5a{word-spacing:17.104640pt;}
.ws49{word-spacing:17.317120pt;}
.ws8e{word-spacing:17.476480pt;}
.ws83{word-spacing:17.742080pt;}
.wsaf{word-spacing:17.954560pt;}
.ws84{word-spacing:18.273280pt;}
.ws5c{word-spacing:18.379520pt;}
.wsc0{word-spacing:18.432640pt;}
.ws9f{word-spacing:18.592000pt;}
.ws9e{word-spacing:18.751360pt;}
.ws9c{word-spacing:19.016960pt;}
.wsc6{word-spacing:19.070080pt;}
.ws4f{word-spacing:19.282560pt;}
.ws50{word-spacing:19.707520pt;}
.ws33{word-spacing:19.920000pt;}
.ws41{word-spacing:20.079360pt;}
.ws47{word-spacing:20.344960pt;}
.ws8d{word-spacing:20.982400pt;}
.ws34{word-spacing:21.035520pt;}
.ws2c{word-spacing:21.194880pt;}
.wsb3{word-spacing:21.354240pt;}
.ws87{word-spacing:21.619840pt;}
.ws82{word-spacing:21.832320pt;}
.ws7e{word-spacing:22.257280pt;}
.ws4d{word-spacing:22.469760pt;}
.ws35{word-spacing:22.629120pt;}
.wsa1{word-spacing:22.894720pt;}
.ws59{word-spacing:23.107200pt;}
.wseb{word-spacing:23.266560pt;}
.wsc9{word-spacing:23.532160pt;}
.ws85{word-spacing:23.744640pt;}
.wsb5{word-spacing:23.904000pt;}
.ws3a{word-spacing:24.382080pt;}
.ws43{word-spacing:24.541440pt;}
.wse1{word-spacing:24.807040pt;}
.ws64{word-spacing:25.019520pt;}
.wsb2{word-spacing:25.178880pt;}
.ws94{word-spacing:25.444480pt;}
.wscc{word-spacing:25.656960pt;}
.wse6{word-spacing:25.816320pt;}
.ws93{word-spacing:26.453760pt;}
.wsc8{word-spacing:26.719360pt;}
.ws36{word-spacing:26.931840pt;}
.wsc7{word-spacing:27.091200pt;}
.ws7c{word-spacing:27.569280pt;}
.wsc4{word-spacing:27.728640pt;}
.wsa3{word-spacing:27.994240pt;}
.ws32{word-spacing:28.206720pt;}
.wsbe{word-spacing:28.631680pt;}
.ws8b{word-spacing:29.162880pt;}
.wsc5{word-spacing:29.269120pt;}
.wsa6{word-spacing:29.481600pt;}
.wse2{word-spacing:29.640960pt;}
.ws6e{word-spacing:30.119040pt;}
.wsea{word-spacing:30.278400pt;}
.ws8a{word-spacing:30.544000pt;}
.wsd8{word-spacing:30.756480pt;}
.ws89{word-spacing:30.915840pt;}
.ws71{word-spacing:31.393920pt;}
.ws2f{word-spacing:31.818880pt;}
.wsab{word-spacing:32.509440pt;}
.wsdb{word-spacing:33.146880pt;}
.wsb6{word-spacing:33.359360pt;}
.wsaa{word-spacing:33.784320pt;}
.wse0{word-spacing:34.156160pt;}
.wsd4{word-spacing:34.421760pt;}
.wsdc{word-spacing:34.634240pt;}
.ws76{word-spacing:35.059200pt;}
.wsc3{word-spacing:35.696640pt;}
.ws61{word-spacing:36.068480pt;}
.wsbd{word-spacing:36.546560pt;}
.ws9b{word-spacing:36.705920pt;}
.wsdf{word-spacing:36.971520pt;}
.wscd{word-spacing:37.184000pt;}
.wsd0{word-spacing:37.608960pt;}
.wsb7{word-spacing:37.821440pt;}
.ws97{word-spacing:37.980800pt;}
.wsa2{word-spacing:38.246400pt;}
.ws3b{word-spacing:39.096320pt;}
.ws78{word-spacing:39.255680pt;}
.ws6b{word-spacing:39.521280pt;}
.ws96{word-spacing:39.733760pt;}
.ws95{word-spacing:39.893120pt;}
.ws6c{word-spacing:40.158720pt;}
.ws7a{word-spacing:40.530560pt;}
.ws37{word-spacing:42.283520pt;}
.ws73{word-spacing:42.920960pt;}
.ws74{word-spacing:43.080320pt;}
.wsa9{word-spacing:43.345920pt;}
.wscf{word-spacing:43.558400pt;}
.ws7b{word-spacing:45.630080pt;}
.wse9{word-spacing:45.948800pt;}
.ws72{word-spacing:46.161280pt;}
.wse5{word-spacing:49.348480pt;}
.wsa8{word-spacing:49.773440pt;}
.wsae{word-spacing:51.685760pt;}
.ws4e{word-spacing:51.898240pt;}
.wse3{word-spacing:53.598080pt;}
.ws9d{word-spacing:55.085440pt;}
.wsa4{word-spacing:58.432000pt;}
.wsa5{word-spacing:58.591360pt;}
.ws8c{word-spacing:58.750720pt;}
.wsce{word-spacing:59.388160pt;}
.wsd1{word-spacing:72.190080pt;}
.wsc1{word-spacing:76.864640pt;}
.wsc2{word-spacing:77.024000pt;}
.wsd7{word-spacing:83.026560pt;}
.wse7{word-spacing:86.479360pt;}
.ws66{word-spacing:112.030080pt;}
.ws67{word-spacing:112.773760pt;}
.ws92{word-spacing:204.618240pt;}
._0{margin-left:-9.148800pt;}
._3{margin-left:-4.032000pt;}
._2{margin-left:-2.428800pt;}
._1{margin-left:-1.478400pt;}
._4{width:0.902400pt;}
._5{width:1.912320pt;}
._c{width:4.675840pt;}
._a{width:7.587200pt;}
._6{width:10.094080pt;}
._7{width:11.048960pt;}
._d{width:12.376960pt;}
._f{width:17.105920pt;}
._e{width:20.399360pt;}
._b{width:21.991040pt;}
._8{width:24.542720pt;}
._9{width:2436.012800pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:2.245333pt;}
.y57{bottom:15.045333pt;}
.y56{bottom:23.320565pt;}
.y55{bottom:67.133760pt;}
.y3a{bottom:71.728640pt;}
.y54{bottom:82.498720pt;}
.y39{bottom:87.093600pt;}
.y53{bottom:97.863680pt;}
.y89{bottom:101.172000pt;}
.y1d4{bottom:101.523840pt;}
.y38{bottom:102.458560pt;}
.y163{bottom:110.169120pt;}
.yc3{bottom:112.924800pt;}
.y52{bottom:113.069280pt;}
.y133{bottom:113.992000pt;}
.y88{bottom:116.536960pt;}
.y1d3{bottom:116.888800pt;}
.y37{bottom:117.664160pt;}
.y19c{bottom:122.572640pt;}
.y162{bottom:125.534080pt;}
.yc2{bottom:128.289760pt;}
.y51{bottom:128.434240pt;}
.y132{bottom:129.356960pt;}
.y1d2{bottom:132.253760pt;}
.y36{bottom:133.029120pt;}
.y87{bottom:135.421120pt;}
.y19b{bottom:137.937600pt;}
.y161{bottom:140.899040pt;}
.yc1{bottom:143.654720pt;}
.y50{bottom:143.799200pt;}
.y131{bottom:144.721920pt;}
.y1d1{bottom:147.459360pt;}
.y35{bottom:148.394080pt;}
.y86{bottom:150.786080pt;}
.y19a{bottom:153.302560pt;}
.y160{bottom:156.264000pt;}
.y4f{bottom:159.164160pt;}
.y130{bottom:159.927520pt;}
.yc0{bottom:161.569440pt;}
.y1d0{bottom:162.824320pt;}
.y34{bottom:163.759040pt;}
.y85{bottom:166.151040pt;}
.y199{bottom:168.667520pt;}
.y15f{bottom:171.469600pt;}
.y4e{bottom:174.529120pt;}
.y12f{bottom:175.292480pt;}
.yf9{bottom:176.091040pt;}
.ybf{bottom:176.934400pt;}
.y1cf{bottom:178.189280pt;}
.y33{bottom:179.124000pt;}
.y84{bottom:181.516000pt;}
.y198{bottom:184.032480pt;}
.y15e{bottom:186.834560pt;}
.y4d{bottom:189.894080pt;}
.y12e{bottom:190.657440pt;}
.ybe{bottom:192.299360pt;}
.y1ce{bottom:193.554240pt;}
.yf8{bottom:194.005760pt;}
.y32{bottom:194.329600pt;}
.y83{bottom:196.721600pt;}
.y197{bottom:201.947200pt;}
.y15d{bottom:202.199520pt;}
.y4c{bottom:205.099680pt;}
.y12d{bottom:206.022400pt;}
.ybd{bottom:207.504960pt;}
.y1cd{bottom:208.919200pt;}
.yf7{bottom:209.370720pt;}
.y31{bottom:209.694560pt;}
.y82{bottom:212.086560pt;}
.y196{bottom:217.152800pt;}
.y15c{bottom:217.564480pt;}
.y4b{bottom:220.464640pt;}
.y12c{bottom:221.387360pt;}
.ybc{bottom:222.869920pt;}
.yf6{bottom:224.735680pt;}
.y30{bottom:225.059520pt;}
.y1cc{bottom:226.833920pt;}
.y81{bottom:227.451520pt;}
.y15b{bottom:232.929440pt;}
.y4a{bottom:235.829600pt;}
.y12b{bottom:236.592960pt;}
.y195{bottom:236.674400pt;}
.yf5{bottom:240.100640pt;}
.y2f{bottom:240.424480pt;}
.ybb{bottom:240.944000pt;}
.y1cb{bottom:242.198880pt;}
.y80{bottom:242.816480pt;}
.y15a{bottom:248.294400pt;}
.y49{bottom:251.194560pt;}
.y12a{bottom:251.957920pt;}
.y194{bottom:252.039360pt;}
.yf4{bottom:255.465600pt;}
.y2e{bottom:255.789440pt;}
.yba{bottom:256.308960pt;}
.y1ca{bottom:257.563840pt;}
.y7f{bottom:258.181440pt;}
.y159{bottom:263.500000pt;}
.y48{bottom:266.559520pt;}
.y193{bottom:267.244960pt;}
.y129{bottom:267.322880pt;}
.yf3{bottom:270.671200pt;}
.yb9{bottom:271.514560pt;}
.y1c9{bottom:272.928800pt;}
.y2d{bottom:273.704160pt;}
.y7e{bottom:277.065600pt;}
.y158{bottom:281.574080pt;}
.y47{bottom:281.924480pt;}
.y192{bottom:282.609920pt;}
.y128{bottom:282.687840pt;}
.yf2{bottom:286.036160pt;}
.yb8{bottom:286.879520pt;}
.y1c8{bottom:288.293760pt;}
.y2c{bottom:289.069120pt;}
.y7d{bottom:292.430560pt;}
.y157{bottom:296.939040pt;}
.y46{bottom:297.130080pt;}
.y191{bottom:297.974880pt;}
.y127{bottom:298.052800pt;}
.yf1{bottom:301.401120pt;}
.yb7{bottom:302.244480pt;}
.y1c7{bottom:303.499360pt;}
.y2b{bottom:304.434080pt;}
.y7c{bottom:307.795520pt;}
.y190{bottom:313.339840pt;}
.y45{bottom:315.204160pt;}
.y126{bottom:315.967520pt;}
.y156{bottom:315.982560pt;}
.yf0{bottom:316.766080pt;}
.yb6{bottom:317.609440pt;}
.y1c6{bottom:318.864320pt;}
.y2a{bottom:319.799040pt;}
.y7b{bottom:323.160480pt;}
.y18f{bottom:328.704800pt;}
.y44{bottom:330.569120pt;}
.y125{bottom:331.173120pt;}
.y155{bottom:331.188160pt;}
.yef{bottom:332.131040pt;}
.yb5{bottom:332.974400pt;}
.y1c5{bottom:334.229280pt;}
.y29{bottom:335.164000pt;}
.y7a{bottom:338.525440pt;}
.y43{bottom:345.774720pt;}
.yee{bottom:347.496000pt;}
.y18e{bottom:347.748320pt;}
.y1c4{bottom:349.594240pt;}
.y28{bottom:350.369600pt;}
.y124{bottom:350.694720pt;}
.yb4{bottom:351.858560pt;}
.y154{bottom:353.591520pt;}
.y79{bottom:353.731040pt;}
.y42{bottom:361.139680pt;}
.y27{bottom:365.734560pt;}
.y123{bottom:366.059680pt;}
.yed{bottom:366.380160pt;}
.yb3{bottom:367.223520pt;}
.y1c3{bottom:367.508960pt;}
.y153{bottom:368.956480pt;}
.y78{bottom:369.096000pt;}
.y18d{bottom:369.992320pt;}
.y41{bottom:376.504640pt;}
.y26{bottom:381.099520pt;}
.y122{bottom:381.424640pt;}
.yec{bottom:381.745120pt;}
.yb2{bottom:382.588480pt;}
.y1c2{bottom:382.714560pt;}
.y152{bottom:384.162080pt;}
.y77{bottom:384.460960pt;}
.y18c{bottom:385.357280pt;}
.y40{bottom:391.869600pt;}
.y25{bottom:396.464480pt;}
.y121{bottom:396.630240pt;}
.yeb{bottom:397.110080pt;}
.yb1{bottom:397.953440pt;}
.y151{bottom:399.527040pt;}
.y76{bottom:399.825920pt;}
.y18b{bottom:400.722240pt;}
.y1c1{bottom:402.236160pt;}
.y3f{bottom:407.234560pt;}
.y24{bottom:411.829440pt;}
.y120{bottom:411.995200pt;}
.yea{bottom:412.475040pt;}
.yb0{bottom:413.318400pt;}
.y150{bottom:414.892000pt;}
.y18a{bottom:415.927840pt;}
.y1c0{bottom:417.601120pt;}
.y75{bottom:418.710080pt;}
.y3e{bottom:422.599520pt;}
.y1f8{bottom:427.174400pt;}
.y23{bottom:427.194400pt;}
.y11f{bottom:427.360160pt;}
.ye9{bottom:427.680640pt;}
.yaf{bottom:428.524000pt;}
.y14f{bottom:430.256960pt;}
.y189{bottom:431.292800pt;}
.y1bf{bottom:432.966080pt;}
.y74{bottom:434.075040pt;}
.y3d{bottom:437.805120pt;}
.y22{bottom:442.400000pt;}
.y11e{bottom:442.725120pt;}
.ye8{bottom:443.045600pt;}
.yae{bottom:443.888960pt;}
.y14e{bottom:445.621920pt;}
.y1f7{bottom:446.377280pt;}
.y188{bottom:446.657760pt;}
.y1be{bottom:448.171680pt;}
.y73{bottom:449.440000pt;}
.y3c{bottom:453.170080pt;}
.y11d{bottom:458.090080pt;}
.ye7{bottom:458.410560pt;}
.yad{bottom:459.253920pt;}
.y21{bottom:461.760000pt;}
.y187{bottom:462.022720pt;}
.y14d{bottom:463.536640pt;}
.y1f6{bottom:465.739520pt;}
.y3b{bottom:468.535040pt;}
.y72{bottom:468.800000pt;}
.y11c{bottom:473.455040pt;}
.ye6{bottom:473.775520pt;}
.yac{bottom:474.618880pt;}
.y186{bottom:477.387680pt;}
.y1bd{bottom:478.901600pt;}
.y1f5{bottom:481.104480pt;}
.y14c{bottom:481.610720pt;}
.y20{bottom:486.720000pt;}
.y11b{bottom:488.660640pt;}
.ye5{bottom:489.140480pt;}
.y185{bottom:492.752640pt;}
.yab{bottom:493.503040pt;}
.y71{bottom:493.585440pt;}
.y1bc{bottom:494.266560pt;}
.y1f4{bottom:496.469440pt;}
.y14b{bottom:496.975680pt;}
.y11a{bottom:504.025600pt;}
.ye4{bottom:504.505440pt;}
.y1f{bottom:506.880000pt;}
.y184{bottom:507.958240pt;}
.yaa{bottom:508.868000pt;}
.y1bb{bottom:509.631520pt;}
.y70{bottom:511.659520pt;}
.y1f3{bottom:511.834400pt;}
.y14a{bottom:512.181280pt;}
.y119{bottom:519.390560pt;}
.ye3{bottom:519.711040pt;}
.y183{bottom:523.323200pt;}
.ya9{bottom:524.232960pt;}
.y1e{bottom:524.960000pt;}
.y1ba{bottom:524.996480pt;}
.y6f{bottom:526.865120pt;}
.y1f2{bottom:527.040000pt;}
.y149{bottom:527.546240pt;}
.y118{bottom:534.755520pt;}
.ye2{bottom:535.076000pt;}
.y182{bottom:538.688160pt;}
.y1b9{bottom:540.202080pt;}
.y1c{bottom:540.275200pt;}
.y1d{bottom:540.320000pt;}
.ya8{bottom:542.147680pt;}
.y6e{bottom:542.230080pt;}
.y148{bottom:542.911200pt;}
.y1f1{bottom:546.400000pt;}
.y117{bottom:550.120480pt;}
.ye1{bottom:550.440960pt;}
.y181{bottom:554.053120pt;}
.y1b8{bottom:555.567040pt;}
.ya7{bottom:557.512640pt;}
.y6d{bottom:557.595040pt;}
.y1b{bottom:558.189920pt;}
.y147{bottom:558.276160pt;}
.y116{bottom:565.326080pt;}
.ye0{bottom:569.325120pt;}
.y180{bottom:569.418080pt;}
.y1b7{bottom:570.932000pt;}
.y1f0{bottom:571.339520pt;}
.ya6{bottom:572.877600pt;}
.y6c{bottom:572.960000pt;}
.y146{bottom:573.641120pt;}
.y1a{bottom:576.264000pt;}
.y115{bottom:580.691040pt;}
.ydf{bottom:584.690080pt;}
.y17f{bottom:584.783040pt;}
.y1b6{bottom:586.296960pt;}
.y1ef{bottom:586.704480pt;}
.ya5{bottom:588.242560pt;}
.y145{bottom:591.555840pt;}
.y19{bottom:591.628960pt;}
.y6b{bottom:595.360000pt;}
.y114{bottom:596.056000pt;}
.y1b5{bottom:601.661920pt;}
.y1ee{bottom:601.910080pt;}
.y17e{bottom:602.697760pt;}
.yde{bottom:602.764160pt;}
.ya4{bottom:603.607520pt;}
.y6a{bottom:606.400000pt;}
.y144{bottom:606.920800pt;}
.y18{bottom:606.993920pt;}
.y113{bottom:611.420960pt;}
.y1b4{bottom:617.026880pt;}
.y1ed{bottom:617.275040pt;}
.y17d{bottom:617.903360pt;}
.ydd{bottom:618.129120pt;}
.ya3{bottom:618.972480pt;}
.y69{bottom:620.426560pt;}
.y17{bottom:622.199520pt;}
.y143{bottom:622.285760pt;}
.y112{bottom:626.785920pt;}
.y1b3{bottom:632.232480pt;}
.y1ec{bottom:632.640000pt;}
.ydc{bottom:633.334720pt;}
.ya2{bottom:634.178080pt;}
.y17c{bottom:637.424960pt;}
.y16{bottom:637.564480pt;}
.y142{bottom:637.650720pt;}
.y111{bottom:642.150880pt;}
.y1b2{bottom:647.597440pt;}
.ydb{bottom:648.699680pt;}
.y1eb{bottom:652.000000pt;}
.ya1{bottom:652.252160pt;}
.y17b{bottom:652.789920pt;}
.y141{bottom:653.015680pt;}
.y110{bottom:657.356480pt;}
.y15{bottom:660.924000pt;}
.y1b1{bottom:662.962400pt;}
.yda{bottom:664.064640pt;}
.ya0{bottom:667.617120pt;}
.y17a{bottom:667.995520pt;}
.y140{bottom:668.221280pt;}
.y10f{bottom:675.430560pt;}
.y14{bottom:676.288960pt;}
.y1ea{bottom:676.708800pt;}
.y1b0{bottom:678.327360pt;}
.yd9{bottom:682.138720pt;}
.y9f{bottom:682.982080pt;}
.y179{bottom:683.360480pt;}
.y13f{bottom:683.586240pt;}
.y10e{bottom:690.795520pt;}
.y13{bottom:691.653920pt;}
.y1e9{bottom:692.073760pt;}
.y1af{bottom:693.692320pt;}
.yd8{bottom:697.344320pt;}
.y9e{bottom:698.187680pt;}
.y178{bottom:698.725440pt;}
.y13e{bottom:698.951200pt;}
.y10d{bottom:706.160480pt;}
.y12{bottom:707.018880pt;}
.y1e8{bottom:707.438720pt;}
.y1ae{bottom:708.897920pt;}
.yd7{bottom:712.709280pt;}
.y9d{bottom:713.552640pt;}
.y177{bottom:714.090400pt;}
.y13d{bottom:714.316160pt;}
.y10c{bottom:721.366080pt;}
.y11{bottom:722.224480pt;}
.y1e7{bottom:722.803680pt;}
.y1ad{bottom:726.972000pt;}
.yd6{bottom:728.074240pt;}
.y9c{bottom:728.917600pt;}
.y176{bottom:729.455360pt;}
.y13c{bottom:729.681120pt;}
.y10b{bottom:736.731040pt;}
.y10{bottom:737.589440pt;}
.y1e6{bottom:738.168640pt;}
.y1ac{bottom:742.177600pt;}
.yd5{bottom:743.439200pt;}
.y9b{bottom:744.282560pt;}
.y175{bottom:744.660960pt;}
.y13b{bottom:744.886720pt;}
.y10a{bottom:752.096000pt;}
.yf{bottom:752.954400pt;}
.y1e5{bottom:753.374240pt;}
.yd4{bottom:758.804160pt;}
.y9a{bottom:759.647520pt;}
.y174{bottom:760.025920pt;}
.y13a{bottom:760.251680pt;}
.y1ab{bottom:761.699200pt;}
.y109{bottom:767.460960pt;}
.ye{bottom:768.160000pt;}
.y1e4{bottom:768.739200pt;}
.yd3{bottom:774.009760pt;}
.y173{bottom:775.390880pt;}
.y139{bottom:775.616640pt;}
.y1aa{bottom:776.904800pt;}
.y99{bottom:778.531680pt;}
.y108{bottom:782.825920pt;}
.y1e3{bottom:784.104160pt;}
.y172{bottom:790.755840pt;}
.y138{bottom:790.981600pt;}
.y1a9{bottom:792.269760pt;}
.yd2{bottom:793.053280pt;}
.yd{bottom:793.759867pt;}
.y98{bottom:793.896640pt;}
.y107{bottom:798.190880pt;}
.y1e2{bottom:799.469120pt;}
.y171{bottom:806.120800pt;}
.y137{bottom:806.346560pt;}
.y1a8{bottom:807.634720pt;}
.yd1{bottom:808.418240pt;}
.y97{bottom:809.261600pt;}
.y68{bottom:810.343840pt;}
.y106{bottom:813.396480pt;}
.yc{bottom:814.240000pt;}
.y1e1{bottom:814.834080pt;}
.y170{bottom:821.485760pt;}
.y1a7{bottom:822.999680pt;}
.yd0{bottom:823.783200pt;}
.y136{bottom:824.261280pt;}
.y96{bottom:824.626560pt;}
.y67{bottom:825.708800pt;}
.yb{bottom:828.000000pt;}
.y105{bottom:828.761440pt;}
.y1e0{bottom:830.199040pt;}
.y1a6{bottom:838.364640pt;}
.ycf{bottom:838.988800pt;}
.y16f{bottom:839.400480pt;}
.y135{bottom:839.466880pt;}
.y95{bottom:839.832160pt;}
.y66{bottom:840.914400pt;}
.ya{bottom:841.759867pt;}
.y104{bottom:844.126400pt;}
.y1df{bottom:845.404640pt;}
.y1a5{bottom:853.729600pt;}
.yce{bottom:854.353760pt;}
.y16e{bottom:854.606080pt;}
.y94{bottom:855.197120pt;}
.y9{bottom:855.520000pt;}
.y65{bottom:856.279360pt;}
.y134{bottom:858.988480pt;}
.y103{bottom:859.491360pt;}
.y1de{bottom:860.769600pt;}
.y8{bottom:867.200000pt;}
.ycd{bottom:869.718720pt;}
.y93{bottom:870.562080pt;}
.y1a4{bottom:871.644320pt;}
.y16d{bottom:874.127680pt;}
.y64{bottom:874.353440pt;}
.y102{bottom:874.856320pt;}
.y1dd{bottom:876.134560pt;}
.y7{bottom:885.759867pt;}
.y92{bottom:885.927040pt;}
.y1a3{bottom:887.009280pt;}
.ycc{bottom:888.762240pt;}
.y16c{bottom:889.492640pt;}
.y63{bottom:889.718400pt;}
.y101{bottom:890.061920pt;}
.y1dc{bottom:891.499520pt;}
.y1a2{bottom:902.374240pt;}
.ycb{bottom:903.967840pt;}
.y16b{bottom:904.698240pt;}
.y91{bottom:904.811200pt;}
.y62{bottom:904.924000pt;}
.y100{bottom:905.426880pt;}
.y6{bottom:906.245280pt;}
.y1db{bottom:906.864480pt;}
.y1a1{bottom:917.739200pt;}
.yca{bottom:919.332800pt;}
.y16a{bottom:920.063200pt;}
.y90{bottom:920.176160pt;}
.y61{bottom:920.288960pt;}
.yff{bottom:920.791840pt;}
.y1da{bottom:922.070080pt;}
.y5{bottom:924.160000pt;}
.y1a0{bottom:932.944800pt;}
.yc9{bottom:934.697760pt;}
.y169{bottom:935.428160pt;}
.y8f{bottom:935.541120pt;}
.y60{bottom:935.653920pt;}
.y1d9{bottom:937.435040pt;}
.yfe{bottom:938.865920pt;}
.y4{bottom:944.312000pt;}
.y19f{bottom:948.309760pt;}
.yc8{bottom:950.062720pt;}
.y168{bottom:950.793120pt;}
.y8e{bottom:950.906080pt;}
.y5f{bottom:951.018880pt;}
.y1d8{bottom:952.800000pt;}
.yfd{bottom:954.071520pt;}
.y19e{bottom:963.674720pt;}
.yc7{bottom:965.427680pt;}
.y167{bottom:966.158080pt;}
.y8d{bottom:966.271040pt;}
.y5e{bottom:966.383840pt;}
.y3{bottom:971.840000pt;}
.y1d7{bottom:972.160000pt;}
.yfc{bottom:973.115040pt;}
.y19d{bottom:979.039680pt;}
.yc6{bottom:980.792640pt;}
.y166{bottom:981.523040pt;}
.y8c{bottom:981.636000pt;}
.y5d{bottom:981.748800pt;}
.yfb{bottom:988.480000pt;}
.yc5{bottom:995.998240pt;}
.y1d6{bottom:996.715360pt;}
.y165{bottom:996.728640pt;}
.y8b{bottom:996.841600pt;}
.y5c{bottom:996.954400pt;}
.y2{bottom:1002.080000pt;}
.yfa{bottom:1010.880000pt;}
.yc4{bottom:1011.363200pt;}
.y1d5{bottom:1012.080320pt;}
.y164{bottom:1012.093600pt;}
.y8a{bottom:1012.206560pt;}
.y5b{bottom:1012.319360pt;}
.y1{bottom:1036.000000pt;}
.y5a{bottom:1038.720000pt;}
.y59{bottom:1070.080000pt;}
.h5{height:22.218750pt;}
.h7{height:25.813467pt;}
.h9{height:31.029375pt;}
.ha{height:33.351562pt;}
.hb{height:36.001250pt;}
.hc{height:36.883125pt;}
.h2{height:36.909063pt;}
.h6{height:39.905000pt;}
.h8{height:44.354167pt;}
.h4{height:59.234596pt;}
.h3{height:65.062500pt;}
.h1{height:1118.666667pt;}
.h0{height:1118.880000pt;}
.w2{width:612.516000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.520000pt;}
.x7{left:99.357600pt;}
.x8{left:121.907040pt;}
.x4{left:160.640000pt;}
.x1{left:284.320000pt;}
.x6{left:385.435360pt;}
.x5{left:408.330080pt;}
.xb{left:415.836480pt;}
.xa{left:432.154400pt;}
.x9{left:454.717120pt;}
.x3{left:716.960000pt;}
}




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