
    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_6e6d9c04edfa27296dae561c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893000;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_799f463f85c4146c04b0cd18.woff')format("woff");}.ff2{font-family:ff2;line-height:0.714000;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_c278c3df58ab579a80a97108.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_9749934ac9c019e0ea6f8c38.woff')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_8f820d1634ef07dd65406e37.woff')format("woff");}.ff5{font-family:ff5;line-height:0.665000;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_ec8a2098aee521d8edff2b62.woff')format("woff");}.ff6{font-family:ff6;line-height:0.304000;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_44f6be20d6f2fa2f29b652c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.665000;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_ed0323fcdfa05b956096632b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b552376d1660a28d76468ebb.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_b052350b55bd688bd2c60c54.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_a863a8c4d99d09dff0ba962f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_77e625f05b586b2d61d55891.woff')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_563f5017e91294cbae4a7732.woff')format("woff");}.ffd{font-family:ffd;line-height:0.431000;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_ba5625d5895b75b25ebdeaa3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.688000;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);}
.v4{vertical-align:-22.854000px;}
.v3{vertical-align:-10.572000px;}
.v5{vertical-align:-8.946000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.276000px;}
.v1{vertical-align:21.690000px;}
.v6{vertical-align:24.678000px;}
.v2{vertical-align:26.034000px;}
.vc{vertical-align:35.268000px;}
.va{vertical-align:41.004000px;}
.v8{vertical-align:52.446000px;}
.v9{vertical-align:53.778000px;}
.vb{vertical-align:65.682000px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000017px;}
.ls1a{letter-spacing:0.000387px;}
.ls8{letter-spacing:0.000538px;}
.ls25{letter-spacing:0.000564px;}
.ls24{letter-spacing:0.000648px;}
.ls1e{letter-spacing:0.000854px;}
.ls2f{letter-spacing:0.002338px;}
.ls1f{letter-spacing:0.003031px;}
.lsc{letter-spacing:0.003269px;}
.ls15{letter-spacing:0.003634px;}
.ls28{letter-spacing:0.004188px;}
.ls1d{letter-spacing:0.005673px;}
.ls4a{letter-spacing:2.137689px;}
.ls43{letter-spacing:2.143689px;}
.lse{letter-spacing:2.144023px;}
.ls21{letter-spacing:2.144222px;}
.ls1b{letter-spacing:2.982648px;}
.ls26{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.984915px;}
.ls1c{letter-spacing:2.988648px;}
.ls2c{letter-spacing:2.989140px;}
.ls4{letter-spacing:2.989200px;}
.ls3f{letter-spacing:2.989409px;}
.ls37{letter-spacing:2.990845px;}
.ls1{letter-spacing:2.994141px;}
.lsb{letter-spacing:3.422408px;}
.ls42{letter-spacing:5.706113px;}
.ls30{letter-spacing:5.914010px;}
.ls47{letter-spacing:7.173269px;}
.ls29{letter-spacing:7.679376px;}
.ls4d{letter-spacing:8.297139px;}
.ls45{letter-spacing:8.303139px;}
.ls27{letter-spacing:9.962338px;}
.ls2{letter-spacing:11.951700px;}
.ls44{letter-spacing:12.030544px;}
.lsa{letter-spacing:13.278538px;}
.lsd{letter-spacing:13.280245px;}
.ls23{letter-spacing:13.280338px;}
.ls9{letter-spacing:13.284538px;}
.ls49{letter-spacing:13.286338px;}
.ls40{letter-spacing:15.950100px;}
.ls39{letter-spacing:16.266648px;}
.ls33{letter-spacing:16.268525px;}
.ls32{letter-spacing:16.272648px;}
.ls2b{letter-spacing:16.273140px;}
.ls36{letter-spacing:16.274845px;}
.ls3{letter-spacing:16.434532px;}
.ls6{letter-spacing:16.602376px;}
.ls7{letter-spacing:16.602538px;}
.ls12{letter-spacing:16.746017px;}
.ls10{letter-spacing:16.749634px;}
.ls11{letter-spacing:16.929634px;}
.ls3e{letter-spacing:17.838538px;}
.ls3c{letter-spacing:18.560100px;}
.ls14{letter-spacing:18.693634px;}
.ls41{letter-spacing:18.739409px;}
.ls18{letter-spacing:19.191634px;}
.ls2e{letter-spacing:19.204010px;}
.ls19{letter-spacing:19.371634px;}
.ls20{letter-spacing:19.590648px;}
.ls4c{letter-spacing:19.592525px;}
.ls13{letter-spacing:19.707634px;}
.ls3d{letter-spacing:19.988222px;}
.ls16{letter-spacing:20.252100px;}
.ls3b{letter-spacing:20.820648px;}
.ls22{letter-spacing:20.963376px;}
.ls34{letter-spacing:23.160538px;}
.ls48{letter-spacing:43.088525px;}
.ls46{letter-spacing:100.946525px;}
.ls4b{letter-spacing:645.141269px;}
.ls31{letter-spacing:775.965269px;}
.ls38{letter-spacing:838.845269px;}
.ls2a{letter-spacing:841.125269px;}
.ls2d{letter-spacing:853.167269px;}
.lsf{letter-spacing:865.280525px;}
.ls35{letter-spacing:881.712648px;}
.ls3a{letter-spacing:953.817269px;}
.ls4e{letter-spacing:1008.912775px;}
.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;}
}
.ws7e{word-spacing:-38.937826px;}
.ws7b{word-spacing:-31.633157px;}
.ws63{word-spacing:-25.623802px;}
.ws64{word-spacing:-23.482023px;}
.ws2{word-spacing:-14.943900px;}
.ws18{word-spacing:-13.449600px;}
.ws89{word-spacing:-3.526760px;}
.wsa7{word-spacing:-2.809453px;}
.ws75{word-spacing:-2.689902px;}
.ws3f{word-spacing:-2.630126px;}
.ws82{word-spacing:-2.510575px;}
.ws36{word-spacing:-2.391024px;}
.ws26{word-spacing:-2.331248px;}
.ws71{word-spacing:-2.211697px;}
.ws98{word-spacing:-2.092146px;}
.ws5f{word-spacing:-1.793268px;}
.ws8f{word-spacing:-1.733492px;}
.ws25{word-spacing:-1.554166px;}
.ws78{word-spacing:-1.434614px;}
.ws3e{word-spacing:-1.374839px;}
.wsa9{word-spacing:-1.255288px;}
.ws38{word-spacing:-1.195512px;}
.ws61{word-spacing:-1.135736px;}
.wsa5{word-spacing:-1.075961px;}
.ws97{word-spacing:-1.016185px;}
.ws35{word-spacing:-0.956410px;}
.ws5d{word-spacing:-0.896634px;}
.wsab{word-spacing:-0.836858px;}
.ws8c{word-spacing:-0.777083px;}
.ws96{word-spacing:-0.717307px;}
.ws46{word-spacing:-0.657532px;}
.ws83{word-spacing:-0.597756px;}
.ws23{word-spacing:-0.537980px;}
.ws5e{word-spacing:-0.418429px;}
.wsc{word-spacing:-0.376589px;}
.ws1b{word-spacing:-0.358654px;}
.ws2b{word-spacing:-0.298878px;}
.wsca{word-spacing:-0.215194px;}
.ws4b{word-spacing:-0.179327px;}
.ws6b{word-spacing:-0.119551px;}
.wsd{word-spacing:-0.107597px;}
.wsb6{word-spacing:-0.083686px;}
.ws40{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.041843px;}
.wsbc{word-spacing:-0.002602px;}
.wscc{word-spacing:-0.002342px;}
.ws0{word-spacing:0.000000px;}
.ws76{word-spacing:0.008981px;}
.ws77{word-spacing:0.059776px;}
.wsc2{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.wsc1{word-spacing:0.161395px;}
.ws81{word-spacing:0.179327px;}
.wsc6{word-spacing:0.215194px;}
.ws60{word-spacing:0.239102px;}
.wsc7{word-spacing:0.268992px;}
.ws8d{word-spacing:0.298878px;}
.ws24{word-spacing:0.358654px;}
.wsc5{word-spacing:0.376589px;}
.ws30{word-spacing:0.418429px;}
.ws1d{word-spacing:0.478205px;}
.ws5a{word-spacing:0.537980px;}
.ws10{word-spacing:0.537984px;}
.ws41{word-spacing:0.597756px;}
.ws29{word-spacing:0.777083px;}
.ws7f{word-spacing:0.798582px;}
.ws1c{word-spacing:0.836858px;}
.ws13{word-spacing:0.860774px;}
.ws8e{word-spacing:0.896634px;}
.ws9a{word-spacing:0.956410px;}
.wsaa{word-spacing:1.016185px;}
.ws11{word-spacing:1.129766px;}
.ws99{word-spacing:1.135736px;}
.ws65{word-spacing:1.195512px;}
.ws15{word-spacing:1.237363px;}
.ws2d{word-spacing:1.255288px;}
.ws52{word-spacing:1.315063px;}
.wsbf{word-spacing:1.398758px;}
.ws28{word-spacing:1.434614px;}
.ws1a{word-spacing:1.494390px;}
.ws58{word-spacing:1.554166px;}
.ws14{word-spacing:1.560154px;}
.ws4c{word-spacing:1.673717px;}
.ws45{word-spacing:1.733492px;}
.ws68{word-spacing:1.793268px;}
.ws39{word-spacing:1.853044px;}
.wsb0{word-spacing:1.912819px;}
.ws62{word-spacing:1.972595px;}
.ws90{word-spacing:2.032370px;}
.wsa3{word-spacing:2.092146px;}
.ws51{word-spacing:2.151922px;}
.ws8a{word-spacing:2.211697px;}
.ws54{word-spacing:2.271473px;}
.ws50{word-spacing:2.331248px;}
.ws27{word-spacing:2.391024px;}
.ws2a{word-spacing:2.450800px;}
.ws4a{word-spacing:2.510575px;}
.wsb8{word-spacing:2.528525px;}
.ws66{word-spacing:2.570351px;}
.ws3c{word-spacing:2.630126px;}
.ws48{word-spacing:2.689902px;}
.wsb7{word-spacing:2.743718px;}
.ws3a{word-spacing:2.749678px;}
.ws59{word-spacing:2.809453px;}
.ws7d{word-spacing:2.869229px;}
.wsbb{word-spacing:2.955466px;}
.wsba{word-spacing:2.958912px;}
.ws31{word-spacing:2.988780px;}
.wsa8{word-spacing:3.048556px;}
.wsf{word-spacing:3.066509px;}
.ws5b{word-spacing:3.108331px;}
.ws6f{word-spacing:3.168107px;}
.ws2e{word-spacing:3.227882px;}
.wsbd{word-spacing:3.227904px;}
.wsad{word-spacing:3.287658px;}
.ws16{word-spacing:3.389299px;}
.ws49{word-spacing:3.407209px;}
.wsa4{word-spacing:3.466985px;}
.wsa6{word-spacing:3.526760px;}
.ws12{word-spacing:3.550694px;}
.ws87{word-spacing:3.586536px;}
.ws7c{word-spacing:3.620209px;}
.ws6e{word-spacing:3.646312px;}
.ws9b{word-spacing:3.706087px;}
.ws69{word-spacing:3.765863px;}
.ws86{word-spacing:3.825638px;}
.ws1f{word-spacing:3.885414px;}
.ws6{word-spacing:3.927283px;}
.ws4d{word-spacing:3.945190px;}
.wsaf{word-spacing:4.004965px;}
.ws37{word-spacing:4.064741px;}
.ws7{word-spacing:4.142477px;}
.ws47{word-spacing:4.184292px;}
.ws6a{word-spacing:4.238305px;}
.ws2c{word-spacing:4.244068px;}
.ws72{word-spacing:4.303843px;}
.wsb4{word-spacing:4.363619px;}
.ws88{word-spacing:4.423394px;}
.ws74{word-spacing:4.483170px;}
.wsae{word-spacing:4.542946px;}
.ws9{word-spacing:4.572864px;}
.ws44{word-spacing:4.662497px;}
.ws4f{word-spacing:4.722272px;}
.wse{word-spacing:4.734259px;}
.ws5c{word-spacing:4.782048px;}
.wsa{word-spacing:4.788058px;}
.wsb1{word-spacing:4.901599px;}
.wsb2{word-spacing:4.961375px;}
.wsc3{word-spacing:5.003251px;}
.ws20{word-spacing:5.080926px;}
.ws70{word-spacing:5.140702px;}
.ws3b{word-spacing:5.200477px;}
.ws9d{word-spacing:5.439580px;}
.wsc0{word-spacing:5.487437px;}
.ws53{word-spacing:5.499355px;}
.ws85{word-spacing:5.559131px;}
.ws56{word-spacing:5.618906px;}
.ws8b{word-spacing:5.738458px;}
.ws6c{word-spacing:5.917784px;}
.ws84{word-spacing:6.037336px;}
.wsb{word-spacing:6.133018px;}
.ws42{word-spacing:6.156887px;}
.wsc4{word-spacing:6.240614px;}
.wsb5{word-spacing:6.336214px;}
.wsc8{word-spacing:6.348211px;}
.wsc9{word-spacing:6.402010px;}
.ws9c{word-spacing:6.455765px;}
.wsb9{word-spacing:6.509606px;}
.wsb3{word-spacing:6.635092px;}
.ws43{word-spacing:6.694867px;}
.ws22{word-spacing:6.814418px;}
.wsbe{word-spacing:6.832397px;}
.ws55{word-spacing:6.874194px;}
.ws3d{word-spacing:6.933970px;}
.ws6d{word-spacing:6.993745px;}
.ws73{word-spacing:7.053521px;}
.ws1e{word-spacing:7.232848px;}
.ws80{word-spacing:7.292623px;}
.ws8{word-spacing:7.424179px;}
.ws32{word-spacing:7.531726px;}
.ws21{word-spacing:7.950155px;}
.ws67{word-spacing:8.189257px;}
.ws33{word-spacing:8.428360px;}
.wsac{word-spacing:8.727238px;}
.ws34{word-spacing:8.846789px;}
.ws4e{word-spacing:9.384769px;}
.ws79{word-spacing:13.210408px;}
.ws95{word-spacing:13.224824px;}
.ws17{word-spacing:14.633165px;}
.ws57{word-spacing:14.884124px;}
.ws7a{word-spacing:16.557841px;}
.ws3{word-spacing:17.888724px;}
.ws4{word-spacing:20.093702px;}
.ws5{word-spacing:29.828755px;}
.ws9e{word-spacing:71.670865px;}
.ws93{word-spacing:71.671458px;}
.ws91{word-spacing:81.594208px;}
.ws19{word-spacing:83.602514px;}
.wscb{word-spacing:103.077734px;}
.wsa2{word-spacing:202.101224px;}
.wsa1{word-spacing:231.989024px;}
.ws94{word-spacing:247.710086px;}
.ws9f{word-spacing:261.876824px;}
.ws92{word-spacing:277.597886px;}
.wsa0{word-spacing:296.486976px;}
._5{margin-left:-8.069760px;}
._1{margin-left:-6.635092px;}
._4{margin-left:-4.599763px;}
._0{margin-left:-3.108331px;}
._3{margin-left:-1.452557px;}
._1d{width:1.853044px;}
._2{width:2.986793px;}
._24{width:12.851754px;}
._e{width:13.987584px;}
._16{width:15.738925px;}
._a{width:16.946496px;}
._f{width:18.231558px;}
._b{width:19.528819px;}
._9{width:21.088973px;}
._7{width:22.272538px;}
._14{width:23.372260px;}
._10{width:24.463205px;}
._c{width:25.877030px;}
._d{width:27.221990px;}
._6{width:29.051136px;}
._8{width:30.960979px;}
._18{width:32.458151px;}
._12{width:33.713438px;}
._1a{width:35.267604px;}
._17{width:36.941321px;}
._13{width:38.854140px;}
._1c{width:39.888268px;}
._11{width:41.083780px;}
._1f{width:42.817272px;}
._1e{width:44.051659px;}
._15{width:45.070802px;}
._19{width:46.284257px;}
._1b{width:59.775600px;}
._20{width:71.730720px;}
._21{width:422.015736px;}
._23{width:473.933008px;}
._22{width:509.801308px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs1{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:80.697600px;}
.fs7{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y63{bottom:109.513500px;}
.y2f{bottom:109.515000px;}
.y62{bottom:154.345500px;}
.y9c{bottom:154.347000px;}
.y2e{bottom:156.583500px;}
.y17f{bottom:170.784000px;}
.y61{bottom:172.279500px;}
.y155{bottom:174.450000px;}
.yaf{bottom:179.211000px;}
.y2d{bottom:180.793500px;}
.y60{bottom:190.212000px;}
.yf7{bottom:190.300500px;}
.y154{bottom:192.382500px;}
.y17e{bottom:193.252500px;}
.y2c{bottom:198.727500px;}
.y5f{bottom:208.144500px;}
.yf6{bottom:208.233000px;}
.y17d{bottom:209.691000px;}
.y153{bottom:210.315000px;}
.y2b{bottom:216.660000px;}
.y125{bottom:223.113000px;}
.y109{bottom:224.295000px;}
.y5e{bottom:226.077000px;}
.yf5{bottom:226.167000px;}
.y152{bottom:228.249000px;}
.y124{bottom:229.221000px;}
.y17c{bottom:232.159500px;}
.y2a{bottom:234.592500px;}
.y5d{bottom:244.009500px;}
.yf4{bottom:244.099500px;}
.y151{bottom:246.181500px;}
.y123{bottom:247.153500px;}
.y17b{bottom:248.598000px;}
.y29{bottom:252.525000px;}
.y85{bottom:261.943500px;}
.yf3{bottom:262.032000px;}
.y5c{bottom:262.192500px;}
.y150{bottom:264.114000px;}
.y122{bottom:265.086000px;}
.y28{bottom:270.457500px;}
.y17a{bottom:271.065000px;}
.y108{bottom:276.708000px;}
.y84{bottom:279.876000px;}
.yf2{bottom:279.964500px;}
.y5b{bottom:280.125000px;}
.y14f{bottom:282.046500px;}
.y117{bottom:282.595500px;}
.y121{bottom:283.018500px;}
.y179{bottom:287.503500px;}
.y27{bottom:288.390000px;}
.y107{bottom:294.640500px;}
.y83{bottom:297.808500px;}
.yf1{bottom:297.987000px;}
.y5a{bottom:298.057500px;}
.y9b{bottom:298.356000px;}
.y14e{bottom:299.979000px;}
.y116{bottom:300.528000px;}
.y120{bottom:300.952500px;}
.y26{bottom:306.324000px;}
.y178{bottom:309.972000px;}
.y106{bottom:312.574500px;}
.yf0{bottom:315.919500px;}
.y59{bottom:315.990000px;}
.y9a{bottom:316.288500px;}
.y14d{bottom:317.911500px;}
.y115{bottom:318.462000px;}
.y11f{bottom:318.885000px;}
.yc9{bottom:321.591000px;}
.y25{bottom:324.256500px;}
.y82{bottom:325.243500px;}
.y177{bottom:326.410500px;}
.y105{bottom:330.865500px;}
.yef{bottom:333.852000px;}
.y58{bottom:333.922500px;}
.y99{bottom:334.221000px;}
.y14c{bottom:335.845500px;}
.y114{bottom:336.394500px;}
.y11e{bottom:336.817500px;}
.y24{bottom:342.189000px;}
.y104{bottom:348.799500px;}
.y176{bottom:348.877500px;}
.yee{bottom:351.784500px;}
.y57{bottom:351.856500px;}
.y98{bottom:352.155000px;}
.y81{bottom:353.904000px;}
.y113{bottom:354.327000px;}
.y11d{bottom:354.750000px;}
.y14b{bottom:355.948500px;}
.y23{bottom:360.121500px;}
.y175{bottom:365.316000px;}
.y103{bottom:366.732000px;}
.yed{bottom:369.718500px;}
.y56{bottom:370.038000px;}
.y97{bottom:370.087500px;}
.y112{bottom:372.259500px;}
.y11c{bottom:372.682500px;}
.y14a{bottom:373.881000px;}
.y22{bottom:378.054000px;}
.y80{bottom:382.566000px;}
.yec{bottom:387.739500px;}
.y55{bottom:387.970500px;}
.y96{bottom:388.020000px;}
.y111{bottom:390.192000px;}
.y11b{bottom:390.615000px;}
.y149{bottom:391.815000px;}
.y21{bottom:395.986500px;}
.y174{bottom:397.270500px;}
.yeb{bottom:405.672000px;}
.y54{bottom:405.903000px;}
.y95{bottom:405.952500px;}
.y110{bottom:408.124500px;}
.y148{bottom:409.747500px;}
.y7f{bottom:411.228000px;}
.y20{bottom:413.920500px;}
.y102{bottom:417.663000px;}
.yea{bottom:423.606000px;}
.y53{bottom:423.837000px;}
.y10f{bottom:426.058500px;}
.y147{bottom:427.680000px;}
.y7e{bottom:429.160500px;}
.y1f{bottom:431.853000px;}
.y94{bottom:435.013500px;}
.y101{bottom:435.595500px;}
.ye9{bottom:441.538500px;}
.y52{bottom:441.769500px;}
.y146{bottom:445.612500px;}
.y10e{bottom:446.710500px;}
.y11a{bottom:447.114000px;}
.y173{bottom:447.850500px;}
.y1e{bottom:449.785500px;}
.y100{bottom:453.528000px;}
.y7d{bottom:457.821000px;}
.ye8{bottom:459.471000px;}
.y51{bottom:459.702000px;}
.y145{bottom:463.545000px;}
.y10d{bottom:464.643000px;}
.y172{bottom:465.783000px;}
.y1d{bottom:467.718000px;}
.yff{bottom:471.460500px;}
.ye7{bottom:477.403500px;}
.y50{bottom:477.634500px;}
.y144{bottom:481.477500px;}
.y7c{bottom:485.256000px;}
.y1c{bottom:485.650500px;}
.yfe{bottom:489.393000px;}
.y171{bottom:493.852500px;}
.ye6{bottom:495.336000px;}
.y4f{bottom:495.567000px;}
.y93{bottom:498.439500px;}
.y143{bottom:499.411500px;}
.y7b{bottom:503.190000px;}
.yfd{bottom:507.924000px;}
.yae{bottom:512.397000px;}
.ye5{bottom:513.358500px;}
.y4e{bottom:513.750000px;}
.y1b{bottom:519.051000px;}
.y142{bottom:519.514500px;}
.y10c{bottom:520.296000px;}
.y7a{bottom:521.122500px;}
.yfc{bottom:525.856500px;}
.yad{bottom:530.329500px;}
.ye4{bottom:531.291000px;}
.y4d{bottom:531.682500px;}
.y170{bottom:533.784000px;}
.y141{bottom:537.447000px;}
.yfb{bottom:543.789000px;}
.yac{bottom:548.263500px;}
.y79{bottom:549.142500px;}
.y4c{bottom:549.615000px;}
.y16f{bottom:551.716500px;}
.y10b{bottom:552.051000px;}
.y140{bottom:555.381000px;}
.y1a{bottom:558.532500px;}
.yfa{bottom:561.723000px;}
.ye3{bottom:564.861000px;}
.yab{bottom:566.196000px;}
.y4b{bottom:567.547500px;}
.y16e{bottom:569.649000px;}
.y13f{bottom:573.313500px;}
.y19{bottom:574.971000px;}
.yaa{bottom:584.128500px;}
.y4a{bottom:585.481500px;}
.y16d{bottom:587.581500px;}
.y78{bottom:588.378000px;}
.y13e{bottom:591.246000px;}
.y18{bottom:601.032000px;}
.ya9{bottom:602.061000px;}
.y49{bottom:603.414000px;}
.y16c{bottom:605.514000px;}
.y77{bottom:606.310500px;}
.y13d{bottom:609.178500px;}
.yf9{bottom:613.251000px;}
.ye2{bottom:615.787500px;}
.y17{bottom:617.470500px;}
.y48{bottom:621.346500px;}
.y16b{bottom:623.448000px;}
.y76{bottom:624.244500px;}
.y13c{bottom:629.283000px;}
.ye1{bottom:633.720000px;}
.y16{bottom:633.909000px;}
.ya8{bottom:635.169000px;}
.yc8{bottom:636.417000px;}
.y16a{bottom:641.380500px;}
.y13b{bottom:647.215500px;}
.y15{bottom:650.347500px;}
.ye0{bottom:651.652500px;}
.yc7{bottom:654.349500px;}
.y47{bottom:655.219500px;}
.y75{bottom:657.643500px;}
.y169{bottom:659.313000px;}
.y13a{bottom:665.148000px;}
.y14{bottom:666.786000px;}
.ydf{bottom:669.585000px;}
.yc6{bottom:672.282000px;}
.y168{bottom:677.271000px;}
.y139{bottom:683.080500px;}
.y13{bottom:683.224500px;}
.yde{bottom:687.517500px;}
.yc5{bottom:690.214500px;}
.ya7{bottom:690.867000px;}
.y167{bottom:695.205000px;}
.y12{bottom:699.661500px;}
.y138{bottom:701.013000px;}
.ydd{bottom:705.451500px;}
.y46{bottom:707.028000px;}
.y74{bottom:707.527500px;}
.yc4{bottom:708.147000px;}
.y166{bottom:713.137500px;}
.y11{bottom:716.100000px;}
.y137{bottom:718.947000px;}
.y191{bottom:719.482500px;}
.ydc{bottom:723.384000px;}
.y45{bottom:724.960500px;}
.y73{bottom:725.460000px;}
.yc3{bottom:726.081000px;}
.y165{bottom:731.070000px;}
.y10{bottom:732.538500px;}
.y136{bottom:739.050000px;}
.ydb{bottom:741.316500px;}
.y190{bottom:741.898500px;}
.y44{bottom:742.894500px;}
.y72{bottom:743.392500px;}
.yc2{bottom:744.013500px;}
.ya6{bottom:746.563500px;}
.yf{bottom:748.977000px;}
.y164{bottom:749.002500px;}
.y135{bottom:756.982500px;}
.y18f{bottom:758.337000px;}
.yda{bottom:759.339000px;}
.y43{bottom:760.827000px;}
.y71{bottom:761.325000px;}
.yc1{bottom:761.946000px;}
.ye{bottom:765.415500px;}
.y163{bottom:766.935000px;}
.y134{bottom:774.916500px;}
.yd9{bottom:777.271500px;}
.y42{bottom:778.759500px;}
.y70{bottom:779.259000px;}
.yc0{bottom:779.878500px;}
.y18e{bottom:780.753000px;}
.yd{bottom:781.854000px;}
.y92{bottom:783.294000px;}
.y162{bottom:784.867500px;}
.y119{bottom:787.710000px;}
.y133{bottom:792.849000px;}
.yd8{bottom:795.204000px;}
.y41{bottom:796.692000px;}
.y6f{bottom:797.191500px;}
.ybf{bottom:797.811000px;}
.yc{bottom:798.292500px;}
.y91{bottom:801.226500px;}
.ya5{bottom:802.261500px;}
.y161{bottom:802.801500px;}
.y118{bottom:805.642500px;}
.ya4{bottom:806.080500px;}
.y132{bottom:810.781500px;}
.yd7{bottom:813.136500px;}
.y40{bottom:814.624500px;}
.yb{bottom:814.731000px;}
.y6e{bottom:815.124000px;}
.ybe{bottom:815.743500px;}
.y90{bottom:819.160500px;}
.y18d{bottom:819.607500px;}
.y160{bottom:820.734000px;}
.y131{bottom:828.714000px;}
.yd6{bottom:831.069000px;}
.ya{bottom:831.169500px;}
.y3f{bottom:832.557000px;}
.y6d{bottom:833.056500px;}
.ybd{bottom:835.530000px;}
.y18c{bottom:836.046000px;}
.y8f{bottom:837.093000px;}
.y10a{bottom:837.399000px;}
.y15f{bottom:838.692000px;}
.y9{bottom:847.608000px;}
.y130{bottom:848.818500px;}
.yd5{bottom:849.091500px;}
.y3e{bottom:850.491000px;}
.y6c{bottom:850.989000px;}
.ybc{bottom:853.462500px;}
.y8e{bottom:855.025500px;}
.y15e{bottom:856.624500px;}
.ya3{bottom:857.958000px;}
.y18b{bottom:858.462000px;}
.y8{bottom:864.045000px;}
.y12f{bottom:866.751000px;}
.yd4{bottom:867.024000px;}
.y3d{bottom:868.423500px;}
.y6b{bottom:868.923000px;}
.ybb{bottom:871.395000px;}
.y8d{bottom:872.958000px;}
.y15d{bottom:874.558500px;}
.y18a{bottom:874.900500px;}
.yf8{bottom:877.137000px;}
.y7{bottom:880.483500px;}
.y12e{bottom:884.683500px;}
.yd3{bottom:884.956500px;}
.y3c{bottom:886.605000px;}
.y6a{bottom:886.855500px;}
.yba{bottom:889.327500px;}
.y8c{bottom:891.438000px;}
.y15c{bottom:892.491000px;}
.y189{bottom:897.316500px;}
.y12d{bottom:902.616000px;}
.y3b{bottom:904.537500px;}
.y69{bottom:904.788000px;}
.yb9{bottom:907.260000px;}
.y8b{bottom:909.372000px;}
.y15b{bottom:910.423500px;}
.yd2{bottom:912.213000px;}
.ya2{bottom:913.656000px;}
.y188{bottom:913.753500px;}
.y12c{bottom:920.550000px;}
.y3a{bottom:922.471500px;}
.y68{bottom:922.720500px;}
.yb8{bottom:925.194000px;}
.y8a{bottom:927.304500px;}
.y15a{bottom:928.356000px;}
.y187{bottom:936.169500px;}
.y12b{bottom:938.482500px;}
.y39{bottom:940.404000px;}
.y67{bottom:940.653000px;}
.yb7{bottom:943.126500px;}
.y89{bottom:945.237000px;}
.y159{bottom:946.288500px;}
.y6{bottom:946.531500px;}
.yd1{bottom:947.419500px;}
.y186{bottom:952.608000px;}
.ya1{bottom:955.729500px;}
.y12a{bottom:956.415000px;}
.yce{bottom:957.670500px;}
.y38{bottom:958.336500px;}
.y66{bottom:958.585500px;}
.yb6{bottom:961.059000px;}
.y88{bottom:963.169500px;}
.ycf{bottom:963.498000px;}
.y158{bottom:964.222500px;}
.y185{bottom:969.046500px;}
.ya0{bottom:973.663500px;}
.y129{bottom:974.347500px;}
.y5{bottom:975.024000px;}
.yd0{bottom:976.206000px;}
.y37{bottom:976.269000px;}
.y65{bottom:976.519500px;}
.yb5{bottom:978.991500px;}
.y87{bottom:981.102000px;}
.y157{bottom:982.155000px;}
.y184{bottom:991.462500px;}
.y9f{bottom:991.596000px;}
.y128{bottom:992.280000px;}
.y36{bottom:994.201500px;}
.y64{bottom:994.452000px;}
.yb4{bottom:996.924000px;}
.y183{bottom:1007.901000px;}
.y9e{bottom:1009.528500px;}
.y86{bottom:1010.193000px;}
.y127{bottom:1010.212500px;}
.y35{bottom:1012.384500px;}
.y156{bottom:1015.603500px;}
.yb3{bottom:1016.710500px;}
.y4{bottom:1018.362000px;}
.y126{bottom:1028.146500px;}
.y34{bottom:1030.317000px;}
.yb2{bottom:1034.643000px;}
.ycd{bottom:1035.099000px;}
.y9d{bottom:1035.790500px;}
.y3{bottom:1045.261500px;}
.y182{bottom:1046.755500px;}
.y33{bottom:1048.249500px;}
.yb1{bottom:1052.575500px;}
.ycc{bottom:1053.031500px;}
.y181{bottom:1063.194000px;}
.y32{bottom:1066.182000px;}
.yb0{bottom:1070.508000px;}
.ycb{bottom:1071.562500px;}
.y31{bottom:1084.116000px;}
.y180{bottom:1085.610000px;}
.yca{bottom:1089.495000px;}
.y30{bottom:1102.048500px;}
.y2{bottom:1118.487000px;}
.y1{bottom:1154.352000px;}
.h14{height:19.905275px;}
.h6{height:23.850624px;}
.hc{height:24.675533px;}
.h15{height:29.038903px;}
.h19{height:32.900573px;}
.h9{height:36.905702px;}
.h8{height:37.013299px;}
.h1a{height:37.277299px;}
.h1b{height:37.283299px;}
.h7{height:37.336090px;}
.h2{height:41.006062px;}
.hb{height:41.125613px;}
.hd{height:41.484266px;}
.hf{height:41.842920px;}
.h10{height:42.141798px;}
.h11{height:44.831700px;}
.h3{height:50.728903px;}
.he{height:53.716903px;}
.h4{height:56.004134px;}
.h5{height:57.834699px;}
.ha{height:58.078223px;}
.h12{height:60.107700px;}
.h18{height:76.752266px;}
.h17{height:94.720903px;}
.h13{height:97.277700px;}
.h16{height:126.269700px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.558500px;}
.x17{left:133.300500px;}
.x2{left:141.162000px;}
.x9{left:143.848500px;}
.xb{left:146.239500px;}
.x8{left:149.974500px;}
.x28{left:157.438500px;}
.x27{left:163.152000px;}
.xc{left:164.919000px;}
.x6{left:170.079000px;}
.x18{left:185.478000px;}
.x23{left:188.464500px;}
.x22{left:191.452500px;}
.x7{left:192.495000px;}
.x25{left:193.615500px;}
.x2a{left:223.192500px;}
.x24{left:238.887000px;}
.x1a{left:252.702000px;}
.x4{left:285.090000px;}
.x16{left:295.344000px;}
.xe{left:301.360500px;}
.x1b{left:306.268500px;}
.x5{left:318.028500px;}
.x29{left:330.184500px;}
.x19{left:337.045500px;}
.x12{left:338.974500px;}
.x11{left:341.443500px;}
.xf{left:355.264500px;}
.x10{left:358.275000px;}
.xd{left:360.556500px;}
.x13{left:364.665000px;}
.x3{left:382.192500px;}
.x15{left:383.437500px;}
.x1e{left:384.850500px;}
.x20{left:396.463500px;}
.x1c{left:414.112500px;}
.x1d{left:421.738500px;}
.x26{left:438.984000px;}
.x21{left:441.219000px;}
.xa{left:443.094000px;}
.x14{left:510.576000px;}
.x1f{left:513.237000px;}
@media print{
.v4{vertical-align:-20.314667pt;}
.v3{vertical-align:-9.397333pt;}
.v5{vertical-align:-7.952000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.578667pt;}
.v1{vertical-align:19.280000pt;}
.v6{vertical-align:21.936000pt;}
.v2{vertical-align:23.141333pt;}
.vc{vertical-align:31.349333pt;}
.va{vertical-align:36.448000pt;}
.v8{vertical-align:46.618667pt;}
.v9{vertical-align:47.802667pt;}
.vb{vertical-align:58.384000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000015pt;}
.ls1a{letter-spacing:0.000344pt;}
.ls8{letter-spacing:0.000479pt;}
.ls25{letter-spacing:0.000501pt;}
.ls24{letter-spacing:0.000576pt;}
.ls1e{letter-spacing:0.000759pt;}
.ls2f{letter-spacing:0.002079pt;}
.ls1f{letter-spacing:0.002694pt;}
.lsc{letter-spacing:0.002906pt;}
.ls15{letter-spacing:0.003230pt;}
.ls28{letter-spacing:0.003723pt;}
.ls1d{letter-spacing:0.005043pt;}
.ls4a{letter-spacing:1.900168pt;}
.ls43{letter-spacing:1.905501pt;}
.lse{letter-spacing:1.905799pt;}
.ls21{letter-spacing:1.905975pt;}
.ls1b{letter-spacing:2.651242pt;}
.ls26{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.653258pt;}
.ls1c{letter-spacing:2.656576pt;}
.ls2c{letter-spacing:2.657014pt;}
.ls4{letter-spacing:2.657067pt;}
.ls3f{letter-spacing:2.657253pt;}
.ls37{letter-spacing:2.658529pt;}
.ls1{letter-spacing:2.661459pt;}
.lsb{letter-spacing:3.042140pt;}
.ls42{letter-spacing:5.072100pt;}
.ls30{letter-spacing:5.256897pt;}
.ls47{letter-spacing:6.376239pt;}
.ls29{letter-spacing:6.826112pt;}
.ls4d{letter-spacing:7.375235pt;}
.ls45{letter-spacing:7.380568pt;}
.ls27{letter-spacing:8.855412pt;}
.ls2{letter-spacing:10.623733pt;}
.ls44{letter-spacing:10.693817pt;}
.lsa{letter-spacing:11.803145pt;}
.lsd{letter-spacing:11.804662pt;}
.ls23{letter-spacing:11.804745pt;}
.ls9{letter-spacing:11.808479pt;}
.ls49{letter-spacing:11.810079pt;}
.ls40{letter-spacing:14.177867pt;}
.ls39{letter-spacing:14.459242pt;}
.ls33{letter-spacing:14.460911pt;}
.ls32{letter-spacing:14.464576pt;}
.ls2b{letter-spacing:14.465014pt;}
.ls36{letter-spacing:14.466529pt;}
.ls3{letter-spacing:14.608473pt;}
.ls6{letter-spacing:14.757667pt;}
.ls7{letter-spacing:14.757812pt;}
.ls12{letter-spacing:14.885348pt;}
.ls10{letter-spacing:14.888563pt;}
.ls11{letter-spacing:15.048563pt;}
.ls3e{letter-spacing:15.856479pt;}
.ls3c{letter-spacing:16.497867pt;}
.ls14{letter-spacing:16.616563pt;}
.ls41{letter-spacing:16.657253pt;}
.ls18{letter-spacing:17.059230pt;}
.ls2e{letter-spacing:17.070231pt;}
.ls19{letter-spacing:17.219230pt;}
.ls20{letter-spacing:17.413909pt;}
.ls4c{letter-spacing:17.415578pt;}
.ls13{letter-spacing:17.517897pt;}
.ls3d{letter-spacing:17.767309pt;}
.ls16{letter-spacing:18.001867pt;}
.ls3b{letter-spacing:18.507242pt;}
.ls22{letter-spacing:18.634112pt;}
.ls34{letter-spacing:20.587145pt;}
.ls48{letter-spacing:38.300911pt;}
.ls46{letter-spacing:89.730245pt;}
.ls4b{letter-spacing:573.458906pt;}
.ls31{letter-spacing:689.746906pt;}
.ls38{letter-spacing:745.640239pt;}
.ls2a{letter-spacing:747.666906pt;}
.ls2d{letter-spacing:758.370906pt;}
.lsf{letter-spacing:769.138245pt;}
.ls35{letter-spacing:783.744576pt;}
.ls3a{letter-spacing:847.837573pt;}
.ls4e{letter-spacing:896.811356pt;}
.ws7e{word-spacing:-34.611401pt;}
.ws7b{word-spacing:-28.118362pt;}
.ws63{word-spacing:-22.776713pt;}
.ws64{word-spacing:-20.872910pt;}
.ws2{word-spacing:-13.283467pt;}
.ws18{word-spacing:-11.955200pt;}
.ws89{word-spacing:-3.134898pt;}
.wsa7{word-spacing:-2.497292pt;}
.ws75{word-spacing:-2.391024pt;}
.ws3f{word-spacing:-2.337890pt;}
.ws82{word-spacing:-2.231622pt;}
.ws36{word-spacing:-2.125355pt;}
.ws26{word-spacing:-2.072221pt;}
.ws71{word-spacing:-1.965953pt;}
.ws98{word-spacing:-1.859685pt;}
.ws5f{word-spacing:-1.594016pt;}
.ws8f{word-spacing:-1.540882pt;}
.ws25{word-spacing:-1.381481pt;}
.ws78{word-spacing:-1.275213pt;}
.ws3e{word-spacing:-1.222079pt;}
.wsa9{word-spacing:-1.115811pt;}
.ws38{word-spacing:-1.062677pt;}
.ws61{word-spacing:-1.009543pt;}
.wsa5{word-spacing:-0.956410pt;}
.ws97{word-spacing:-0.903276pt;}
.ws35{word-spacing:-0.850142pt;}
.ws5d{word-spacing:-0.797008pt;}
.wsab{word-spacing:-0.743874pt;}
.ws8c{word-spacing:-0.690740pt;}
.ws96{word-spacing:-0.637606pt;}
.ws46{word-spacing:-0.584473pt;}
.ws83{word-spacing:-0.531339pt;}
.ws23{word-spacing:-0.478205pt;}
.ws5e{word-spacing:-0.371937pt;}
.wsc{word-spacing:-0.334746pt;}
.ws1b{word-spacing:-0.318803pt;}
.ws2b{word-spacing:-0.265669pt;}
.wsca{word-spacing:-0.191283pt;}
.ws4b{word-spacing:-0.159402pt;}
.ws6b{word-spacing:-0.106268pt;}
.wsd{word-spacing:-0.095642pt;}
.wsb6{word-spacing:-0.074388pt;}
.ws40{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.037194pt;}
.wsbc{word-spacing:-0.002313pt;}
.wscc{word-spacing:-0.002082pt;}
.ws0{word-spacing:0.000000pt;}
.ws76{word-spacing:0.007983pt;}
.ws77{word-spacing:0.053134pt;}
.wsc2{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.wsc1{word-spacing:0.143462pt;}
.ws81{word-spacing:0.159402pt;}
.wsc6{word-spacing:0.191283pt;}
.ws60{word-spacing:0.212535pt;}
.wsc7{word-spacing:0.239104pt;}
.ws8d{word-spacing:0.265669pt;}
.ws24{word-spacing:0.318803pt;}
.wsc5{word-spacing:0.334746pt;}
.ws30{word-spacing:0.371937pt;}
.ws1d{word-spacing:0.425071pt;}
.ws5a{word-spacing:0.478205pt;}
.ws10{word-spacing:0.478208pt;}
.ws41{word-spacing:0.531339pt;}
.ws29{word-spacing:0.690740pt;}
.ws7f{word-spacing:0.709851pt;}
.ws1c{word-spacing:0.743874pt;}
.ws13{word-spacing:0.765133pt;}
.ws8e{word-spacing:0.797008pt;}
.ws9a{word-spacing:0.850142pt;}
.wsaa{word-spacing:0.903276pt;}
.ws11{word-spacing:1.004237pt;}
.ws99{word-spacing:1.009543pt;}
.ws65{word-spacing:1.062677pt;}
.ws15{word-spacing:1.099878pt;}
.ws2d{word-spacing:1.115811pt;}
.ws52{word-spacing:1.168945pt;}
.wsbf{word-spacing:1.243341pt;}
.ws28{word-spacing:1.275213pt;}
.ws1a{word-spacing:1.328347pt;}
.ws58{word-spacing:1.381481pt;}
.ws14{word-spacing:1.386803pt;}
.ws4c{word-spacing:1.487748pt;}
.ws45{word-spacing:1.540882pt;}
.ws68{word-spacing:1.594016pt;}
.ws39{word-spacing:1.647150pt;}
.wsb0{word-spacing:1.700284pt;}
.ws62{word-spacing:1.753418pt;}
.ws90{word-spacing:1.806551pt;}
.wsa3{word-spacing:1.859685pt;}
.ws51{word-spacing:1.912819pt;}
.ws8a{word-spacing:1.965953pt;}
.ws54{word-spacing:2.019087pt;}
.ws50{word-spacing:2.072221pt;}
.ws27{word-spacing:2.125355pt;}
.ws2a{word-spacing:2.178489pt;}
.ws4a{word-spacing:2.231622pt;}
.wsb8{word-spacing:2.247578pt;}
.ws66{word-spacing:2.284756pt;}
.ws3c{word-spacing:2.337890pt;}
.ws48{word-spacing:2.391024pt;}
.wsb7{word-spacing:2.438861pt;}
.ws3a{word-spacing:2.444158pt;}
.ws59{word-spacing:2.497292pt;}
.ws7d{word-spacing:2.550426pt;}
.wsbb{word-spacing:2.627081pt;}
.wsba{word-spacing:2.630144pt;}
.ws31{word-spacing:2.656693pt;}
.wsa8{word-spacing:2.709827pt;}
.wsf{word-spacing:2.725786pt;}
.ws5b{word-spacing:2.762961pt;}
.ws6f{word-spacing:2.816095pt;}
.ws2e{word-spacing:2.869229pt;}
.wsbd{word-spacing:2.869248pt;}
.wsad{word-spacing:2.922363pt;}
.ws16{word-spacing:3.012710pt;}
.ws49{word-spacing:3.028630pt;}
.wsa4{word-spacing:3.081764pt;}
.wsa6{word-spacing:3.134898pt;}
.ws12{word-spacing:3.156173pt;}
.ws87{word-spacing:3.188032pt;}
.ws7c{word-spacing:3.217964pt;}
.ws6e{word-spacing:3.241166pt;}
.ws9b{word-spacing:3.294300pt;}
.ws69{word-spacing:3.347434pt;}
.ws86{word-spacing:3.400567pt;}
.ws1f{word-spacing:3.453701pt;}
.ws6{word-spacing:3.490918pt;}
.ws4d{word-spacing:3.506835pt;}
.wsaf{word-spacing:3.559969pt;}
.ws37{word-spacing:3.613103pt;}
.ws7{word-spacing:3.682202pt;}
.ws47{word-spacing:3.719371pt;}
.ws6a{word-spacing:3.767382pt;}
.ws2c{word-spacing:3.772505pt;}
.ws72{word-spacing:3.825638pt;}
.wsb4{word-spacing:3.878772pt;}
.ws88{word-spacing:3.931906pt;}
.ws74{word-spacing:3.985040pt;}
.wsae{word-spacing:4.038174pt;}
.ws9{word-spacing:4.064768pt;}
.ws44{word-spacing:4.144442pt;}
.ws4f{word-spacing:4.197575pt;}
.wse{word-spacing:4.208230pt;}
.ws5c{word-spacing:4.250709pt;}
.wsa{word-spacing:4.256051pt;}
.wsb1{word-spacing:4.356977pt;}
.wsb2{word-spacing:4.410111pt;}
.wsc3{word-spacing:4.447334pt;}
.ws20{word-spacing:4.516379pt;}
.ws70{word-spacing:4.569513pt;}
.ws3b{word-spacing:4.622646pt;}
.ws9d{word-spacing:4.835182pt;}
.wsc0{word-spacing:4.877722pt;}
.ws53{word-spacing:4.888316pt;}
.ws85{word-spacing:4.941450pt;}
.ws56{word-spacing:4.994583pt;}
.ws8b{word-spacing:5.100851pt;}
.ws6c{word-spacing:5.260253pt;}
.ws84{word-spacing:5.366521pt;}
.wsb{word-spacing:5.451571pt;}
.ws42{word-spacing:5.472788pt;}
.wsc4{word-spacing:5.547213pt;}
.wsb5{word-spacing:5.632190pt;}
.wsc8{word-spacing:5.642854pt;}
.wsc9{word-spacing:5.690675pt;}
.ws9c{word-spacing:5.738458pt;}
.wsb9{word-spacing:5.786317pt;}
.wsb3{word-spacing:5.897859pt;}
.ws43{word-spacing:5.950993pt;}
.ws22{word-spacing:6.057261pt;}
.wsbe{word-spacing:6.073242pt;}
.ws55{word-spacing:6.110395pt;}
.ws3d{word-spacing:6.163529pt;}
.ws6d{word-spacing:6.216662pt;}
.ws73{word-spacing:6.269796pt;}
.ws1e{word-spacing:6.429198pt;}
.ws80{word-spacing:6.482332pt;}
.ws8{word-spacing:6.599270pt;}
.ws32{word-spacing:6.694867pt;}
.ws21{word-spacing:7.066804pt;}
.ws67{word-spacing:7.279340pt;}
.ws33{word-spacing:7.491875pt;}
.wsac{word-spacing:7.757545pt;}
.ws34{word-spacing:7.863812pt;}
.ws4e{word-spacing:8.342017pt;}
.ws79{word-spacing:11.742585pt;}
.ws95{word-spacing:11.755399pt;}
.ws17{word-spacing:13.007258pt;}
.ws57{word-spacing:13.230333pt;}
.ws7a{word-spacing:14.718081pt;}
.ws3{word-spacing:15.901088pt;}
.ws4{word-spacing:17.861069pt;}
.ws5{word-spacing:26.514449pt;}
.ws9e{word-spacing:63.707436pt;}
.ws93{word-spacing:63.707963pt;}
.ws91{word-spacing:72.528185pt;}
.ws19{word-spacing:74.313346pt;}
.wscb{word-spacing:91.624653pt;}
.wsa2{word-spacing:179.645533pt;}
.wsa1{word-spacing:206.212466pt;}
.ws94{word-spacing:220.186743pt;}
.ws9f{word-spacing:232.779399pt;}
.ws92{word-spacing:246.753677pt;}
.wsa0{word-spacing:263.543979pt;}
._5{margin-left:-7.173120pt;}
._1{margin-left:-5.897859pt;}
._4{margin-left:-4.088678pt;}
._0{margin-left:-2.762961pt;}
._3{margin-left:-1.291162pt;}
._1d{width:1.647150pt;}
._2{width:2.654927pt;}
._24{width:11.423781pt;}
._e{width:12.433408pt;}
._16{width:13.990156pt;}
._a{width:15.063552pt;}
._f{width:16.205829pt;}
._b{width:17.358950pt;}
._9{width:18.745754pt;}
._7{width:19.797811pt;}
._14{width:20.775342pt;}
._10{width:21.745071pt;}
._c{width:23.001805pt;}
._d{width:24.197325pt;}
._6{width:25.823232pt;}
._8{width:27.520870pt;}
._18{width:28.851690pt;}
._12{width:29.967501pt;}
._1a{width:31.348981pt;}
._17{width:32.836730pt;}
._13{width:34.537013pt;}
._1c{width:35.456238pt;}
._11{width:36.518915pt;}
._1f{width:38.059797pt;}
._1e{width:39.157030pt;}
._15{width:40.062935pt;}
._19{width:41.141562pt;}
._1b{width:53.133867pt;}
._20{width:63.760640pt;}
._21{width:375.125099pt;}
._23{width:421.273785pt;}
._22{width:453.156718pt;}
.fs8{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs1{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:71.731200pt;}
.fs7{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:97.345333pt;}
.y2f{bottom:97.346667pt;}
.y62{bottom:137.196000pt;}
.y9c{bottom:137.197333pt;}
.y2e{bottom:139.185333pt;}
.y17f{bottom:151.808000pt;}
.y61{bottom:153.137333pt;}
.y155{bottom:155.066667pt;}
.yaf{bottom:159.298667pt;}
.y2d{bottom:160.705333pt;}
.y60{bottom:169.077333pt;}
.yf7{bottom:169.156000pt;}
.y154{bottom:171.006667pt;}
.y17e{bottom:171.780000pt;}
.y2c{bottom:176.646667pt;}
.y5f{bottom:185.017333pt;}
.yf6{bottom:185.096000pt;}
.y17d{bottom:186.392000pt;}
.y153{bottom:186.946667pt;}
.y2b{bottom:192.586667pt;}
.y125{bottom:198.322667pt;}
.y109{bottom:199.373333pt;}
.y5e{bottom:200.957333pt;}
.yf5{bottom:201.037333pt;}
.y152{bottom:202.888000pt;}
.y124{bottom:203.752000pt;}
.y17c{bottom:206.364000pt;}
.y2a{bottom:208.526667pt;}
.y5d{bottom:216.897333pt;}
.yf4{bottom:216.977333pt;}
.y151{bottom:218.828000pt;}
.y123{bottom:219.692000pt;}
.y17b{bottom:220.976000pt;}
.y29{bottom:224.466667pt;}
.y85{bottom:232.838667pt;}
.yf3{bottom:232.917333pt;}
.y5c{bottom:233.060000pt;}
.y150{bottom:234.768000pt;}
.y122{bottom:235.632000pt;}
.y28{bottom:240.406667pt;}
.y17a{bottom:240.946667pt;}
.y108{bottom:245.962667pt;}
.y84{bottom:248.778667pt;}
.yf2{bottom:248.857333pt;}
.y5b{bottom:249.000000pt;}
.y14f{bottom:250.708000pt;}
.y117{bottom:251.196000pt;}
.y121{bottom:251.572000pt;}
.y179{bottom:255.558667pt;}
.y27{bottom:256.346667pt;}
.y107{bottom:261.902667pt;}
.y83{bottom:264.718667pt;}
.yf1{bottom:264.877333pt;}
.y5a{bottom:264.940000pt;}
.y9b{bottom:265.205333pt;}
.y14e{bottom:266.648000pt;}
.y116{bottom:267.136000pt;}
.y120{bottom:267.513333pt;}
.y26{bottom:272.288000pt;}
.y178{bottom:275.530667pt;}
.y106{bottom:277.844000pt;}
.yf0{bottom:280.817333pt;}
.y59{bottom:280.880000pt;}
.y9a{bottom:281.145333pt;}
.y14d{bottom:282.588000pt;}
.y115{bottom:283.077333pt;}
.y11f{bottom:283.453333pt;}
.yc9{bottom:285.858667pt;}
.y25{bottom:288.228000pt;}
.y82{bottom:289.105333pt;}
.y177{bottom:290.142667pt;}
.y105{bottom:294.102667pt;}
.yef{bottom:296.757333pt;}
.y58{bottom:296.820000pt;}
.y99{bottom:297.085333pt;}
.y14c{bottom:298.529333pt;}
.y114{bottom:299.017333pt;}
.y11e{bottom:299.393333pt;}
.y24{bottom:304.168000pt;}
.y104{bottom:310.044000pt;}
.y176{bottom:310.113333pt;}
.yee{bottom:312.697333pt;}
.y57{bottom:312.761333pt;}
.y98{bottom:313.026667pt;}
.y81{bottom:314.581333pt;}
.y113{bottom:314.957333pt;}
.y11d{bottom:315.333333pt;}
.y14b{bottom:316.398667pt;}
.y23{bottom:320.108000pt;}
.y175{bottom:324.725333pt;}
.y103{bottom:325.984000pt;}
.yed{bottom:328.638667pt;}
.y56{bottom:328.922667pt;}
.y97{bottom:328.966667pt;}
.y112{bottom:330.897333pt;}
.y11c{bottom:331.273333pt;}
.y14a{bottom:332.338667pt;}
.y22{bottom:336.048000pt;}
.y80{bottom:340.058667pt;}
.yec{bottom:344.657333pt;}
.y55{bottom:344.862667pt;}
.y96{bottom:344.906667pt;}
.y111{bottom:346.837333pt;}
.y11b{bottom:347.213333pt;}
.y149{bottom:348.280000pt;}
.y21{bottom:351.988000pt;}
.y174{bottom:353.129333pt;}
.yeb{bottom:360.597333pt;}
.y54{bottom:360.802667pt;}
.y95{bottom:360.846667pt;}
.y110{bottom:362.777333pt;}
.y148{bottom:364.220000pt;}
.y7f{bottom:365.536000pt;}
.y20{bottom:367.929333pt;}
.y102{bottom:371.256000pt;}
.yea{bottom:376.538667pt;}
.y53{bottom:376.744000pt;}
.y10f{bottom:378.718667pt;}
.y147{bottom:380.160000pt;}
.y7e{bottom:381.476000pt;}
.y1f{bottom:383.869333pt;}
.y94{bottom:386.678667pt;}
.y101{bottom:387.196000pt;}
.ye9{bottom:392.478667pt;}
.y52{bottom:392.684000pt;}
.y146{bottom:396.100000pt;}
.y10e{bottom:397.076000pt;}
.y11a{bottom:397.434667pt;}
.y173{bottom:398.089333pt;}
.y1e{bottom:399.809333pt;}
.y100{bottom:403.136000pt;}
.y7d{bottom:406.952000pt;}
.ye8{bottom:408.418667pt;}
.y51{bottom:408.624000pt;}
.y145{bottom:412.040000pt;}
.y10d{bottom:413.016000pt;}
.y172{bottom:414.029333pt;}
.y1d{bottom:415.749333pt;}
.yff{bottom:419.076000pt;}
.ye7{bottom:424.358667pt;}
.y50{bottom:424.564000pt;}
.y144{bottom:427.980000pt;}
.y7c{bottom:431.338667pt;}
.y1c{bottom:431.689333pt;}
.yfe{bottom:435.016000pt;}
.y171{bottom:438.980000pt;}
.ye6{bottom:440.298667pt;}
.y4f{bottom:440.504000pt;}
.y93{bottom:443.057333pt;}
.y143{bottom:443.921333pt;}
.y7b{bottom:447.280000pt;}
.yfd{bottom:451.488000pt;}
.yae{bottom:455.464000pt;}
.ye5{bottom:456.318667pt;}
.y4e{bottom:456.666667pt;}
.y1b{bottom:461.378667pt;}
.y142{bottom:461.790667pt;}
.y10c{bottom:462.485333pt;}
.y7a{bottom:463.220000pt;}
.yfc{bottom:467.428000pt;}
.yad{bottom:471.404000pt;}
.ye4{bottom:472.258667pt;}
.y4d{bottom:472.606667pt;}
.y170{bottom:474.474667pt;}
.y141{bottom:477.730667pt;}
.yfb{bottom:483.368000pt;}
.yac{bottom:487.345333pt;}
.y79{bottom:488.126667pt;}
.y4c{bottom:488.546667pt;}
.y16f{bottom:490.414667pt;}
.y10b{bottom:490.712000pt;}
.y140{bottom:493.672000pt;}
.y1a{bottom:496.473333pt;}
.yfa{bottom:499.309333pt;}
.ye3{bottom:502.098667pt;}
.yab{bottom:503.285333pt;}
.y4b{bottom:504.486667pt;}
.y16e{bottom:506.354667pt;}
.y13f{bottom:509.612000pt;}
.y19{bottom:511.085333pt;}
.yaa{bottom:519.225333pt;}
.y4a{bottom:520.428000pt;}
.y16d{bottom:522.294667pt;}
.y78{bottom:523.002667pt;}
.y13e{bottom:525.552000pt;}
.y18{bottom:534.250667pt;}
.ya9{bottom:535.165333pt;}
.y49{bottom:536.368000pt;}
.y16c{bottom:538.234667pt;}
.y77{bottom:538.942667pt;}
.y13d{bottom:541.492000pt;}
.yf9{bottom:545.112000pt;}
.ye2{bottom:547.366667pt;}
.y17{bottom:548.862667pt;}
.y48{bottom:552.308000pt;}
.y16b{bottom:554.176000pt;}
.y76{bottom:554.884000pt;}
.y13c{bottom:559.362667pt;}
.ye1{bottom:563.306667pt;}
.y16{bottom:563.474667pt;}
.ya8{bottom:564.594667pt;}
.yc8{bottom:565.704000pt;}
.y16a{bottom:570.116000pt;}
.y13b{bottom:575.302667pt;}
.y15{bottom:578.086667pt;}
.ye0{bottom:579.246667pt;}
.yc7{bottom:581.644000pt;}
.y47{bottom:582.417333pt;}
.y75{bottom:584.572000pt;}
.y169{bottom:586.056000pt;}
.y13a{bottom:591.242667pt;}
.y14{bottom:592.698667pt;}
.ydf{bottom:595.186667pt;}
.yc6{bottom:597.584000pt;}
.y168{bottom:602.018667pt;}
.y139{bottom:607.182667pt;}
.y13{bottom:607.310667pt;}
.yde{bottom:611.126667pt;}
.yc5{bottom:613.524000pt;}
.ya7{bottom:614.104000pt;}
.y167{bottom:617.960000pt;}
.y12{bottom:621.921333pt;}
.y138{bottom:623.122667pt;}
.ydd{bottom:627.068000pt;}
.y46{bottom:628.469333pt;}
.y74{bottom:628.913333pt;}
.yc4{bottom:629.464000pt;}
.y166{bottom:633.900000pt;}
.y11{bottom:636.533333pt;}
.y137{bottom:639.064000pt;}
.y191{bottom:639.540000pt;}
.ydc{bottom:643.008000pt;}
.y45{bottom:644.409333pt;}
.y73{bottom:644.853333pt;}
.yc3{bottom:645.405333pt;}
.y165{bottom:649.840000pt;}
.y10{bottom:651.145333pt;}
.y136{bottom:656.933333pt;}
.ydb{bottom:658.948000pt;}
.y190{bottom:659.465333pt;}
.y44{bottom:660.350667pt;}
.y72{bottom:660.793333pt;}
.yc2{bottom:661.345333pt;}
.ya6{bottom:663.612000pt;}
.yf{bottom:665.757333pt;}
.y164{bottom:665.780000pt;}
.y135{bottom:672.873333pt;}
.y18f{bottom:674.077333pt;}
.yda{bottom:674.968000pt;}
.y43{bottom:676.290667pt;}
.y71{bottom:676.733333pt;}
.yc1{bottom:677.285333pt;}
.ye{bottom:680.369333pt;}
.y163{bottom:681.720000pt;}
.y134{bottom:688.814667pt;}
.yd9{bottom:690.908000pt;}
.y42{bottom:692.230667pt;}
.y70{bottom:692.674667pt;}
.yc0{bottom:693.225333pt;}
.y18e{bottom:694.002667pt;}
.yd{bottom:694.981333pt;}
.y92{bottom:696.261333pt;}
.y162{bottom:697.660000pt;}
.y119{bottom:700.186667pt;}
.y133{bottom:704.754667pt;}
.yd8{bottom:706.848000pt;}
.y41{bottom:708.170667pt;}
.y6f{bottom:708.614667pt;}
.ybf{bottom:709.165333pt;}
.yc{bottom:709.593333pt;}
.y91{bottom:712.201333pt;}
.ya5{bottom:713.121333pt;}
.y161{bottom:713.601333pt;}
.y118{bottom:716.126667pt;}
.ya4{bottom:716.516000pt;}
.y132{bottom:720.694667pt;}
.yd7{bottom:722.788000pt;}
.y40{bottom:724.110667pt;}
.yb{bottom:724.205333pt;}
.y6e{bottom:724.554667pt;}
.ybe{bottom:725.105333pt;}
.y90{bottom:728.142667pt;}
.y18d{bottom:728.540000pt;}
.y160{bottom:729.541333pt;}
.y131{bottom:736.634667pt;}
.yd6{bottom:738.728000pt;}
.ya{bottom:738.817333pt;}
.y3f{bottom:740.050667pt;}
.y6d{bottom:740.494667pt;}
.ybd{bottom:742.693333pt;}
.y18c{bottom:743.152000pt;}
.y8f{bottom:744.082667pt;}
.y10a{bottom:744.354667pt;}
.y15f{bottom:745.504000pt;}
.y9{bottom:753.429333pt;}
.y130{bottom:754.505333pt;}
.yd5{bottom:754.748000pt;}
.y3e{bottom:755.992000pt;}
.y6c{bottom:756.434667pt;}
.ybc{bottom:758.633333pt;}
.y8e{bottom:760.022667pt;}
.y15e{bottom:761.444000pt;}
.ya3{bottom:762.629333pt;}
.y18b{bottom:763.077333pt;}
.y8{bottom:768.040000pt;}
.y12f{bottom:770.445333pt;}
.yd4{bottom:770.688000pt;}
.y3d{bottom:771.932000pt;}
.y6b{bottom:772.376000pt;}
.ybb{bottom:774.573333pt;}
.y8d{bottom:775.962667pt;}
.y15d{bottom:777.385333pt;}
.y18a{bottom:777.689333pt;}
.yf8{bottom:779.677333pt;}
.y7{bottom:782.652000pt;}
.y12e{bottom:786.385333pt;}
.yd3{bottom:786.628000pt;}
.y3c{bottom:788.093333pt;}
.y6a{bottom:788.316000pt;}
.yba{bottom:790.513333pt;}
.y8c{bottom:792.389333pt;}
.y15c{bottom:793.325333pt;}
.y189{bottom:797.614667pt;}
.y12d{bottom:802.325333pt;}
.y3b{bottom:804.033333pt;}
.y69{bottom:804.256000pt;}
.yb9{bottom:806.453333pt;}
.y8b{bottom:808.330667pt;}
.y15b{bottom:809.265333pt;}
.yd2{bottom:810.856000pt;}
.ya2{bottom:812.138667pt;}
.y188{bottom:812.225333pt;}
.y12c{bottom:818.266667pt;}
.y3a{bottom:819.974667pt;}
.y68{bottom:820.196000pt;}
.yb8{bottom:822.394667pt;}
.y8a{bottom:824.270667pt;}
.y15a{bottom:825.205333pt;}
.y187{bottom:832.150667pt;}
.y12b{bottom:834.206667pt;}
.y39{bottom:835.914667pt;}
.y67{bottom:836.136000pt;}
.yb7{bottom:838.334667pt;}
.y89{bottom:840.210667pt;}
.y159{bottom:841.145333pt;}
.y6{bottom:841.361333pt;}
.yd1{bottom:842.150667pt;}
.y186{bottom:846.762667pt;}
.ya1{bottom:849.537333pt;}
.y12a{bottom:850.146667pt;}
.yce{bottom:851.262667pt;}
.y38{bottom:851.854667pt;}
.y66{bottom:852.076000pt;}
.yb6{bottom:854.274667pt;}
.y88{bottom:856.150667pt;}
.ycf{bottom:856.442667pt;}
.y158{bottom:857.086667pt;}
.y185{bottom:861.374667pt;}
.ya0{bottom:865.478667pt;}
.y129{bottom:866.086667pt;}
.y5{bottom:866.688000pt;}
.yd0{bottom:867.738667pt;}
.y37{bottom:867.794667pt;}
.y65{bottom:868.017333pt;}
.yb5{bottom:870.214667pt;}
.y87{bottom:872.090667pt;}
.y157{bottom:873.026667pt;}
.y184{bottom:881.300000pt;}
.y9f{bottom:881.418667pt;}
.y128{bottom:882.026667pt;}
.y36{bottom:883.734667pt;}
.y64{bottom:883.957333pt;}
.yb4{bottom:886.154667pt;}
.y183{bottom:895.912000pt;}
.y9e{bottom:897.358667pt;}
.y86{bottom:897.949333pt;}
.y127{bottom:897.966667pt;}
.y35{bottom:899.897333pt;}
.y156{bottom:902.758667pt;}
.yb3{bottom:903.742667pt;}
.y4{bottom:905.210667pt;}
.y126{bottom:913.908000pt;}
.y34{bottom:915.837333pt;}
.yb2{bottom:919.682667pt;}
.ycd{bottom:920.088000pt;}
.y9d{bottom:920.702667pt;}
.y3{bottom:929.121333pt;}
.y182{bottom:930.449333pt;}
.y33{bottom:931.777333pt;}
.yb1{bottom:935.622667pt;}
.ycc{bottom:936.028000pt;}
.y181{bottom:945.061333pt;}
.y32{bottom:947.717333pt;}
.yb0{bottom:951.562667pt;}
.ycb{bottom:952.500000pt;}
.y31{bottom:963.658667pt;}
.y180{bottom:964.986667pt;}
.yca{bottom:968.440000pt;}
.y30{bottom:979.598667pt;}
.y2{bottom:994.210667pt;}
.y1{bottom:1026.090667pt;}
.h14{height:17.693578pt;}
.h6{height:21.200555pt;}
.hc{height:21.933807pt;}
.h15{height:25.812358pt;}
.h19{height:29.244954pt;}
.h9{height:32.805069pt;}
.h8{height:32.900710pt;}
.h1a{height:33.135377pt;}
.h1b{height:33.140710pt;}
.h7{height:33.187635pt;}
.h2{height:36.449833pt;}
.hb{height:36.556100pt;}
.hd{height:36.874903pt;}
.hf{height:37.193707pt;}
.h10{height:37.459376pt;}
.h11{height:39.850400pt;}
.h3{height:45.092358pt;}
.he{height:47.748358pt;}
.h4{height:49.781453pt;}
.h5{height:51.408621pt;}
.ha{height:51.625087pt;}
.h12{height:53.429067pt;}
.h18{height:68.224237pt;}
.h17{height:84.196358pt;}
.h13{height:86.469067pt;}
.h16{height:112.239733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.385333pt;}
.x17{left:118.489333pt;}
.x2{left:125.477333pt;}
.x9{left:127.865333pt;}
.xb{left:129.990667pt;}
.x8{left:133.310667pt;}
.x28{left:139.945333pt;}
.x27{left:145.024000pt;}
.xc{left:146.594667pt;}
.x6{left:151.181333pt;}
.x18{left:164.869333pt;}
.x23{left:167.524000pt;}
.x22{left:170.180000pt;}
.x7{left:171.106667pt;}
.x25{left:172.102667pt;}
.x2a{left:198.393333pt;}
.x24{left:212.344000pt;}
.x1a{left:224.624000pt;}
.x4{left:253.413333pt;}
.x16{left:262.528000pt;}
.xe{left:267.876000pt;}
.x1b{left:272.238667pt;}
.x5{left:282.692000pt;}
.x29{left:293.497333pt;}
.x19{left:299.596000pt;}
.x12{left:301.310667pt;}
.x11{left:303.505333pt;}
.xf{left:315.790667pt;}
.x10{left:318.466667pt;}
.xd{left:320.494667pt;}
.x13{left:324.146667pt;}
.x3{left:339.726667pt;}
.x15{left:340.833333pt;}
.x1e{left:342.089333pt;}
.x20{left:352.412000pt;}
.x1c{left:368.100000pt;}
.x1d{left:374.878667pt;}
.x26{left:390.208000pt;}
.x21{left:392.194667pt;}
.xa{left:393.861333pt;}
.x14{left:453.845333pt;}
.x1f{left:456.210667pt;}
}




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