
    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_b0650bc685d184935812a6ab.woff')format("woff");}.ff1{font-family:ff1;line-height:1.117000;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_22c88e9c0c5cde70be7f6434.woff')format("woff");}.ff2{font-family:ff2;line-height:0.902000;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_d58a92afdccb2cb5dedabf97.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_938f5193ac43dc93a2469175.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a61e42cdfba5aa596cb18e06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_09a540052417f8901c081234.woff')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_40d86370f40f02e37587f844.woff')format("woff");}.ff7{font-family:ff7;line-height:0.707000;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_bdcbe501da98d8ea469ebae1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_e7c8fbe01dc74b679ce97593.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_28d1688ff772a480edc8b5eb.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1259f2f0b74fad2d79c47c7c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.117000;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_b3c369ebb76f6ed051e256a6.woff')format("woff");}.ffc{font-family:ffc;line-height:1.058000;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_f613329c12e7708b402a64c5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923000;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_8d42f08eb5cfbc0cd24ca020.woff')format("woff");}.ffe{font-family:ffe;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ec568e03e54cb7283612ece0.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0a09a69fe5168e35a47badb2.woff')format("woff");}.ff10{font-family:ff10;line-height:0.528000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7bd1d389ae4786b9237def53.woff')format("woff");}.ff11{font-family:ff11;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-26.034000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002338px;}
.ls3{letter-spacing:0.004200px;}
.ls0{letter-spacing:2.991113px;}
.ls4{letter-spacing:9.956338px;}
.ls1{letter-spacing:9.962338px;}
.lse{letter-spacing:17.216316px;}
.ls5{letter-spacing:18.269781px;}
.lsd{letter-spacing:19.922316px;}
.ls8{letter-spacing:23.458200px;}
.lsc{letter-spacing:23.738316px;}
.ls9{letter-spacing:25.772316px;}
.lsa{letter-spacing:25.778316px;}
.lsf{letter-spacing:26.738316px;}
.ls6{letter-spacing:29.890178px;}
.lsb{letter-spacing:30.548316px;}
.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;}
}
.ws36{word-spacing:-34.364992px;}
.ws66{word-spacing:-30.545332px;}
.ws1{word-spacing:-16.196248px;}
.ws24{word-spacing:-15.829597px;}
.ws43{word-spacing:-15.795158px;}
.ws47{word-spacing:-15.743520px;}
.wsc{word-spacing:-14.514808px;}
.ws2a{word-spacing:-14.070444px;}
.ws52{word-spacing:-13.323981px;}
.ws1d{word-spacing:-13.144654px;}
.ws5c{word-spacing:-12.666450px;}
.ws69{word-spacing:-12.653753px;}
.ws29{word-spacing:-12.307796px;}
.ws49{word-spacing:-12.221732px;}
.ws2e{word-spacing:-12.188245px;}
.ws30{word-spacing:-11.829591px;}
.ws1b{word-spacing:-11.710040px;}
.ws6a{word-spacing:-11.656242px;}
.ws53{word-spacing:-11.590489px;}
.ws54{word-spacing:-11.470938px;}
.ws57{word-spacing:-11.351386px;}
.ws42{word-spacing:-11.291611px;}
.ws8d{word-spacing:-11.231835px;}
.ws4e{word-spacing:-11.172060px;}
.ws26{word-spacing:-10.997732px;}
.ws1f{word-spacing:-10.932957px;}
.ws28{word-spacing:-10.693855px;}
.ws2d{word-spacing:-10.634079px;}
.ws33{word-spacing:-10.574304px;}
.wse{word-spacing:-10.514528px;}
.ws5d{word-spacing:-10.454752px;}
.ws5b{word-spacing:-10.335201px;}
.ws23{word-spacing:-10.275426px;}
.ws11{word-spacing:-10.124030px;}
.ws16{word-spacing:-10.096099px;}
.ws0{word-spacing:-9.976548px;}
.ws67{word-spacing:-9.953753px;}
.ws55{word-spacing:-9.916772px;}
.ws4d{word-spacing:-9.856996px;}
.ws21{word-spacing:-9.737445px;}
.ws2b{word-spacing:-9.558118px;}
.ws20{word-spacing:-9.498343px;}
.ws6{word-spacing:-9.457759px;}
.ws4f{word-spacing:-9.319016px;}
.ws1e{word-spacing:-9.259240px;}
.ws3{word-spacing:-9.242565px;}
.ws4b{word-spacing:-9.222444px;}
.ws34{word-spacing:-9.199465px;}
.ws68{word-spacing:-9.145667px;}
.ws5e{word-spacing:-9.079914px;}
.ws22{word-spacing:-8.900587px;}
.ws2c{word-spacing:-8.840811px;}
.ws35{word-spacing:-8.781036px;}
.ws4c{word-spacing:-8.422382px;}
.ws50{word-spacing:-8.123504px;}
.ws9{word-spacing:-8.005202px;}
.ws31{word-spacing:-8.003953px;}
.ws3d{word-spacing:-7.944177px;}
.ws25{word-spacing:-7.927227px;}
.wsf{word-spacing:-7.764850px;}
.ws48{word-spacing:-7.705075px;}
.ws60{word-spacing:-7.645299px;}
.ws10{word-spacing:-7.226870px;}
.ws58{word-spacing:-7.167094px;}
.wsb{word-spacing:-6.875436px;}
.ws27{word-spacing:-6.509563px;}
.ws8{word-spacing:-6.498847px;}
.ws3f{word-spacing:-6.449787px;}
.ws40{word-spacing:-6.390012px;}
.ws59{word-spacing:-6.270460px;}
.ws65{word-spacing:-6.150909px;}
.ws5a{word-spacing:-6.031358px;}
.ws3a{word-spacing:-5.911807px;}
.ws1c{word-spacing:-5.553153px;}
.ws46{word-spacing:-5.254275px;}
.wsa{word-spacing:-4.831096px;}
.ws1a{word-spacing:-4.716295px;}
.ws3c{word-spacing:-4.238090px;}
.ws18{word-spacing:-3.879436px;}
.ws38{word-spacing:-3.461007px;}
.ws17{word-spacing:-3.401232px;}
.ws45{word-spacing:-3.247227px;}
.ws6b{word-spacing:-3.162129px;}
.ws39{word-spacing:-2.982802px;}
.ws6c{word-spacing:-2.929004px;}
.ws5{word-spacing:-2.840556px;}
.ws44{word-spacing:-2.803476px;}
.ws7{word-spacing:-2.087378px;}
.ws3b{word-spacing:-1.787290px;}
.ws14{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws2f{word-spacing:0.000000px;}
.ws37{word-spacing:0.125529px;}
.ws62{word-spacing:0.537980px;}
.ws63{word-spacing:0.663509px;}
.ws61{word-spacing:0.676654px;}
.ws6d{word-spacing:0.783060px;}
.ws19{word-spacing:9.922750px;}
.ws64{word-spacing:10.520506px;}
.ws12{word-spacing:16.534251px;}
.ws13{word-spacing:16.557841px;}
.ws75{word-spacing:16.880672px;}
.ws15{word-spacing:19.696963px;}
.ws3e{word-spacing:21.880271px;}
.ws5f{word-spacing:22.171800px;}
.ws2{word-spacing:23.312640px;}
.ws41{word-spacing:25.387549px;}
.ws51{word-spacing:26.827469px;}
.ws32{word-spacing:31.322414px;}
.ws4a{word-spacing:37.365728px;}
.ws93{word-spacing:41.848898px;}
.wsd{word-spacing:47.351068px;}
.ws92{word-spacing:58.944719px;}
.ws71{word-spacing:96.151710px;}
.ws73{word-spacing:97.729785px;}
.ws56{word-spacing:178.735022px;}
.ws87{word-spacing:182.321558px;}
.ws8e{word-spacing:182.620436px;}
.ws8a{word-spacing:189.933648px;}
.ws7d{word-spacing:208.323944px;}
.ws91{word-spacing:209.220578px;}
.ws8c{word-spacing:218.485796px;}
.ws78{word-spacing:219.980186px;}
.ws90{word-spacing:229.125852px;}
.ws8b{word-spacing:242.396036px;}
.ws8f{word-spacing:249.031127px;}
.ws86{word-spacing:262.865858px;}
.ws80{word-spacing:268.018515px;}
.ws72{word-spacing:268.757075px;}
.ws74{word-spacing:268.936402px;}
.ws84{word-spacing:272.788608px;}
.ws7e{word-spacing:279.471520px;}
.ws70{word-spacing:282.206585px;}
.ws7b{word-spacing:287.110841px;}
.ws82{word-spacing:295.072951px;}
.ws76{word-spacing:299.508301px;}
.ws88{word-spacing:304.864194px;}
.ws79{word-spacing:316.693786px;}
.ws6e{word-spacing:326.440529px;}
.ws81{word-spacing:368.881205px;}
.ws85{word-spacing:373.842580px;}
.ws89{word-spacing:375.217419px;}
.ws7f{word-spacing:380.477672px;}
.ws7c{word-spacing:385.498822px;}
.ws83{word-spacing:395.302020px;}
.ws77{word-spacing:397.095288px;}
.ws6f{word-spacing:404.516097px;}
.ws7a{word-spacing:412.039188px;}
._2{margin-left:-8.056807px;}
._0{margin-left:-4.961375px;}
._7{margin-left:-3.786433px;}
._4{margin-left:-2.685602px;}
._1{margin-left:-1.673717px;}
._5{width:1.506355px;}
._d{width:2.685602px;}
._46{width:3.838537px;}
._17{width:5.714527px;}
._47{width:6.827758px;}
._27{width:10.281403px;}
._35{width:19.004922px;}
._a{width:22.403989px;}
._6{width:24.655895px;}
._e{width:26.480591px;}
._11{width:27.556552px;}
._b{width:28.806010px;}
._12{width:30.126902px;}
._28{width:31.262639px;}
._9{width:33.157714px;}
._14{width:37.052273px;}
._c{width:38.107166px;}
._10{width:39.714761px;}
._19{width:40.859755px;}
._3{width:43.072931px;}
._f{width:44.771924px;}
._8{width:46.278557px;}
._18{width:48.665944px;}
._16{width:60.441253px;}
._22{width:71.790496px;}
._5e{width:75.078154px;}
._25{width:76.512768px;}
._29{width:80.697600px;}
._66{width:81.713245px;}
._1c{width:83.207635px;}
._4c{width:86.471363px;}
._55{width:89.842727px;}
._1d{width:91.456668px;}
._13{width:94.684920px;}
._48{width:110.046880px;}
._4a{width:112.557455px;}
._54{width:116.084215px;}
._6d{width:121.882448px;}
._49{width:138.798943px;}
._53{width:142.325704px;}
._45{width:151.232268px;}
._ae{width:152.475590px;}
._26{width:153.623292px;}
._2b{width:157.811884px;}
._2d{width:161.991876px;}
._c1{width:164.382900px;}
._4e{width:184.168624px;}
._38{width:187.037852px;}
._51{width:191.102593px;}
._1e{width:196.888861px;}
._b1{width:201.981752px;}
._4b{width:209.668874px;}
._1f{width:211.187195px;}
._44{width:214.654180px;}
._50{width:217.344082px;}
._2f{width:218.539594px;}
._96{width:221.647925px;}
._43{width:223.321642px;}
._31{width:225.234461px;}
._a5{width:226.609300px;}
._41{width:229.956733px;}
._91{width:233.244391px;}
._40{width:234.918108px;}
._89{width:238.205766px;}
._23{width:239.580605px;}
._42{width:244.721306px;}
._3e{width:246.681936px;}
._9a{width:248.008964px;}
._7b{width:250.029370px;}
._3c{width:252.009630px;}
._9c{width:254.345178px;}
._3f{width:261.458474px;}
._52{width:265.463440px;}
._80{width:271.261673px;}
._36{width:285.301273px;}
._1b{width:291.824479px;}
._2e{width:295.283798px;}
._20{width:297.148807px;}
._b9{width:301.555937px;}
._6c{width:302.643863px;}
._4d{width:307.306360px;}
._b4{width:327.797425px;}
._21{width:331.575253px;}
._af{width:336.584438px;}
._3d{width:337.851691px;}
._4f{width:340.541593px;}
._86{width:346.220275px;}
._24{width:347.834216px;}
._2c{width:350.033948px;}
._76{width:356.262576px;}
._a4{width:361.630415px;}
._c2{width:365.169140px;}
._c3{width:370.190291px;}
._99{width:373.717051px;}
._ac{width:377.949154px;}
._72{width:384.835313px;}
._ab{width:394.865648px;}
._b3{width:402.170237px;}
._77{width:406.294753px;}
._c0{width:407.370714px;}
._8f{width:430.563647px;}
._bb{width:432.536242px;}
._6f{width:434.628388px;}
._b7{width:443.435971px;}
._3a{width:445.567322px;}
._a8{width:446.918231px;}
._a3{width:451.054712px;}
._1a{width:454.529363px;}
._aa{width:461.455667px;}
._71{width:463.021798px;}
._b2{width:466.070353px;}
._b0{width:470.912177px;}
._6b{width:472.645669px;}
._b6{width:476.013673px;}
._98{width:483.285726px;}
._30{width:485.074694px;}
._be{width:487.051589px;}
._33{width:488.191625px;}
._bf{width:490.339247px;}
._6a{width:494.392022px;}
._70{width:499.365362px;}
._a9{width:502.115040px;}
._7f{width:504.370248px;}
._39{width:506.427489px;}
._a1{width:507.853498px;}
._6e{width:512.814872px;}
._82{width:514.476624px;}
._b8{width:519.210862px;}
._60{width:522.797398px;}
._8e{width:526.802363px;}
._9b{width:529.245497px;}
._95{width:535.888254px;}
._83{width:537.263093px;}
._bd{width:539.534566px;}
._a2{width:540.897439px;}
._5f{width:543.364504px;}
._78{width:544.543751px;}
._8b{width:546.886964px;}
._56{width:548.544416px;}
._79{width:554.526276px;}
._bc{width:559.439840px;}
._61{width:562.966601px;}
._64{width:566.254259px;}
._5c{width:570.199448px;}
._69{width:571.215634px;}
._59{width:572.709484px;}
._88{width:579.046237px;}
._85{width:580.421076px;}
._81{width:582.274120px;}
._90{width:590.822030px;}
._ba{width:591.897991px;}
._65{width:596.680039px;}
._9d{width:605.646379px;}
._5d{width:611.564164px;}
._8c{width:613.297656px;}
._a0{width:619.036114px;}
._8d{width:622.921528px;}
._b5{width:625.611430px;}
._a6{width:626.871017px;}
._97{width:628.002454px;}
._87{width:629.006674px;}
._62{width:636.012384px;}
._68{width:641.452504px;}
._93{width:643.608185px;}
._a7{width:644.679846px;}
._7a{width:648.792397px;}
._7d{width:652.203906px;}
._63{width:654.781922px;}
._75{width:665.063326px;}
._92{width:671.220212px;}
._74{width:673.671012px;}
._5a{width:675.344729px;}
._5b{width:678.512836px;}
._9e{width:687.658502px;}
._9f{width:694.281629px;}
._84{width:700.091827px;}
._7e{width:702.423076px;}
._94{width:705.890060px;}
._67{width:707.026337px;}
._8a{width:709.596148px;}
._57{width:737.511353px;}
._ad{width:741.695645px;}
._2a{width:745.640834px;}
._7c{width:751.845532px;}
._73{width:754.846277px;}
._15{width:756.639545px;}
._32{width:758.193710px;}
._58{width:788.389285px;}
._34{width:806.193517px;}
._37{width:817.371554px;}
._3b{width:985.938746px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2e{bottom:40.207500px;}
.y2d{bottom:85.039500px;}
.y11f{bottom:88.056000px;}
.y151{bottom:94.008000px;}
.y5c{bottom:95.407500px;}
.yae{bottom:99.322500px;}
.y104{bottom:102.402000px;}
.y2c{bottom:102.972000px;}
.y11e{bottom:110.173500px;}
.y19a{bottom:111.940500px;}
.ye3{bottom:112.296000px;}
.y5b{bottom:113.340000px;}
.y150{bottom:116.125500px;}
.yad{bottom:117.255000px;}
.y2b{bottom:120.904500px;}
.y103{bottom:124.519500px;}
.y5a{bottom:131.272500px;}
.y11d{bottom:131.692500px;}
.y199{bottom:134.058000px;}
.ye2{bottom:134.413500px;}
.y14f{bottom:137.644500px;}
.y2a{bottom:138.837000px;}
.yac{bottom:141.033000px;}
.y102{bottom:146.038500px;}
.y59{bottom:149.205000px;}
.y11c{bottom:153.211500px;}
.y198{bottom:155.577000px;}
.ye1{bottom:155.932500px;}
.y14e{bottom:159.163500px;}
.yab{bottom:164.811000px;}
.y58{bottom:167.137500px;}
.y101{bottom:167.557500px;}
.y29{bottom:168.207000px;}
.y11b{bottom:174.730500px;}
.y197{bottom:177.096000px;}
.ye0{bottom:177.451500px;}
.y14d{bottom:180.682500px;}
.y57{bottom:185.071500px;}
.y28{bottom:186.139500px;}
.y81{bottom:186.552000px;}
.yaa{bottom:188.589000px;}
.y100{bottom:189.076500px;}
.y16a{bottom:193.171500px;}
.y11a{bottom:196.249500px;}
.y196{bottom:198.615000px;}
.ydf{bottom:198.970500px;}
.y14c{bottom:202.201500px;}
.y56{bottom:203.004000px;}
.y27{bottom:204.073500px;}
.y80{bottom:204.484500px;}
.yff{bottom:210.597000px;}
.ya9{bottom:212.367000px;}
.y169{bottom:214.690500px;}
.y119{bottom:217.768500px;}
.y195{bottom:220.134000px;}
.yde{bottom:220.489500px;}
.y55{bottom:220.936500px;}
.y7f{bottom:222.417000px;}
.y14b{bottom:223.720500px;}
.yfe{bottom:232.116000px;}
.y26{bottom:233.443500px;}
.ya8{bottom:236.145000px;}
.y168{bottom:236.209500px;}
.y118{bottom:239.289000px;}
.y194{bottom:241.654500px;}
.ydd{bottom:242.008500px;}
.y14a{bottom:245.241000px;}
.y7e{bottom:249.999000px;}
.yfd{bottom:253.635000px;}
.y54{bottom:253.665000px;}
.ya7{bottom:254.077500px;}
.y117{bottom:257.221500px;}
.y167{bottom:257.728500px;}
.y25{bottom:262.294500px;}
.y193{bottom:263.173500px;}
.ydc{bottom:263.529000px;}
.y149{bottom:266.760000px;}
.yfc{bottom:275.154000px;}
.ya6{bottom:277.857000px;}
.y116{bottom:278.740500px;}
.y166{bottom:279.249000px;}
.y192{bottom:284.692500px;}
.ydb{bottom:285.048000px;}
.y148{bottom:288.279000px;}
.y24{bottom:295.023000px;}
.y7d{bottom:295.561500px;}
.ya5{bottom:295.789500px;}
.yfb{bottom:296.673000px;}
.y115{bottom:300.259500px;}
.y165{bottom:300.768000px;}
.y191{bottom:306.211500px;}
.yda{bottom:306.567000px;}
.y53{bottom:306.813000px;}
.y147{bottom:309.798000px;}
.yfa{bottom:318.192000px;}
.y114{bottom:321.778500px;}
.y164{bottom:322.287000px;}
.y190{bottom:327.730500px;}
.yd9{bottom:328.086000px;}
.ya4{bottom:328.516500px;}
.y7c{bottom:330.259500px;}
.y146{bottom:331.317000px;}
.yf9{bottom:339.711000px;}
.y52{bottom:341.509500px;}
.y113{bottom:343.297500px;}
.y163{bottom:343.806000px;}
.y23{bottom:344.212500px;}
.y18f{bottom:349.249500px;}
.yd8{bottom:349.605000px;}
.y7b{bottom:351.778500px;}
.y145{bottom:352.836000px;}
.yf8{bottom:361.231500px;}
.y22{bottom:362.145000px;}
.y51{bottom:363.028500px;}
.y112{bottom:364.818000px;}
.y162{bottom:365.325000px;}
.y18e{bottom:370.768500px;}
.yd7{bottom:371.124000px;}
.y7a{bottom:373.297500px;}
.y144{bottom:374.355000px;}
.ya3{bottom:377.817000px;}
.y21{bottom:380.079000px;}
.yf7{bottom:382.750500px;}
.y50{bottom:384.549000px;}
.y111{bottom:386.337000px;}
.y161{bottom:386.844000px;}
.y18d{bottom:392.289000px;}
.yd6{bottom:392.643000px;}
.y79{bottom:394.816500px;}
.ya2{bottom:395.749500px;}
.y143{bottom:395.875500px;}
.y20{bottom:398.011500px;}
.yf6{bottom:404.269500px;}
.y4f{bottom:406.068000px;}
.y110{bottom:407.856000px;}
.y160{bottom:408.364500px;}
.y18c{bottom:413.808000px;}
.yd5{bottom:414.163500px;}
.y1f{bottom:415.944000px;}
.y78{bottom:416.335500px;}
.y142{bottom:417.394500px;}
.ya1{bottom:425.107500px;}
.yf5{bottom:425.788500px;}
.y4e{bottom:427.587000px;}
.y10f{bottom:429.375000px;}
.y15f{bottom:429.883500px;}
.y1e{bottom:433.876500px;}
.y18b{bottom:435.327000px;}
.yd4{bottom:435.682500px;}
.y77{bottom:437.854500px;}
.y141{bottom:438.913500px;}
.ya0{bottom:443.041500px;}
.yf4{bottom:447.307500px;}
.y4d{bottom:449.106000px;}
.y10e{bottom:450.894000px;}
.y15e{bottom:451.402500px;}
.y1d{bottom:451.809000px;}
.y18a{bottom:456.846000px;}
.yd3{bottom:457.201500px;}
.y76{bottom:459.375000px;}
.y140{bottom:460.432500px;}
.y9f{bottom:460.974000px;}
.yf3{bottom:468.826500px;}
.y1c{bottom:469.741500px;}
.y4c{bottom:470.625000px;}
.y10d{bottom:472.413000px;}
.y15d{bottom:472.921500px;}
.y189{bottom:478.365000px;}
.yd2{bottom:478.720500px;}
.y75{bottom:481.491000px;}
.y13f{bottom:481.951500px;}
.y1b{bottom:487.675500px;}
.yf2{bottom:490.345500px;}
.y4b{bottom:492.144000px;}
.y10c{bottom:493.932000px;}
.y15c{bottom:494.440500px;}
.y9e{bottom:499.698000px;}
.y188{bottom:499.884000px;}
.yd1{bottom:500.239500px;}
.y13e{bottom:503.470500px;}
.y1a{bottom:505.608000px;}
.yf1{bottom:511.866000px;}
.y4a{bottom:513.663000px;}
.yc3{bottom:515.410500px;}
.y10b{bottom:515.452500px;}
.y15b{bottom:515.959500px;}
.y74{bottom:519.484500px;}
.y187{bottom:521.403000px;}
.yd0{bottom:521.758500px;}
.y19{bottom:523.540500px;}
.y13d{bottom:524.989500px;}
.y9d{bottom:529.057500px;}
.yf0{bottom:533.385000px;}
.y49{bottom:535.183500px;}
.y10a{bottom:536.971500px;}
.y73{bottom:537.417000px;}
.y15a{bottom:537.478500px;}
.y18{bottom:541.473000px;}
.y186{bottom:542.923500px;}
.ycf{bottom:543.277500px;}
.y13c{bottom:546.510000px;}
.yef{bottom:554.904000px;}
.y72{bottom:555.349500px;}
.y48{bottom:556.702500px;}
.y109{bottom:558.490500px;}
.y159{bottom:558.999000px;}
.y17{bottom:559.405500px;}
.y185{bottom:564.442500px;}
.yce{bottom:564.798000px;}
.y9c{bottom:567.783000px;}
.y13b{bottom:568.029000px;}
.yee{bottom:576.423000px;}
.y16{bottom:577.338000px;}
.y47{bottom:578.221500px;}
.y108{bottom:580.009500px;}
.y158{bottom:580.518000px;}
.y9b{bottom:585.715500px;}
.y184{bottom:585.961500px;}
.ycd{bottom:586.317000px;}
.y13a{bottom:589.548000px;}
.y15{bottom:595.272000px;}
.y71{bottom:597.924000px;}
.yed{bottom:597.942000px;}
.y46{bottom:600.339000px;}
.y107{bottom:601.528500px;}
.y157{bottom:602.037000px;}
.y9a{bottom:603.648000px;}
.y183{bottom:607.480500px;}
.ycc{bottom:607.836000px;}
.y139{bottom:611.067000px;}
.y14{bottom:613.204500px;}
.yec{bottom:619.461000px;}
.y106{bottom:623.047500px;}
.y156{bottom:623.556000px;}
.y182{bottom:628.999500px;}
.ycb{bottom:629.355000px;}
.y13{bottom:631.137000px;}
.y99{bottom:631.230000px;}
.y138{bottom:632.586000px;}
.y70{bottom:632.622000px;}
.y45{bottom:635.427000px;}
.yeb{bottom:640.980000px;}
.y105{bottom:644.566500px;}
.y155{bottom:645.075000px;}
.y181{bottom:650.518500px;}
.yca{bottom:650.874000px;}
.y44{bottom:653.359500px;}
.y137{bottom:654.105000px;}
.y6f{bottom:654.141000px;}
.yea{bottom:662.500500px;}
.y12{bottom:663.864000px;}
.y154{bottom:666.594000px;}
.y180{bottom:672.039000px;}
.yc9{bottom:672.393000px;}
.y136{bottom:675.624000px;}
.y6e{bottom:675.660000px;}
.y98{bottom:675.849000px;}
.ye9{bottom:684.019500px;}
.y43{bottom:686.086500px;}
.yc2{bottom:687.637500px;}
.y153{bottom:688.113000px;}
.y17f{bottom:693.558000px;}
.yc8{bottom:693.912000px;}
.y135{bottom:697.144500px;}
.y6d{bottom:697.179000px;}
.ye8{bottom:705.538500px;}
.y97{bottom:709.633500px;}
.y11{bottom:713.055000px;}
.y17e{bottom:715.077000px;}
.yc7{bottom:715.432500px;}
.y134{bottom:718.663500px;}
.y6c{bottom:718.698000px;}
.yc1{bottom:722.335500px;}
.ye7{bottom:727.057500px;}
.y10{bottom:729.493500px;}
.y96{bottom:731.152500px;}
.y42{bottom:735.501000px;}
.y17d{bottom:736.596000px;}
.yc6{bottom:737.548500px;}
.y133{bottom:740.182500px;}
.y6b{bottom:740.815500px;}
.yc0{bottom:743.854500px;}
.yf{bottom:745.932000px;}
.ye6{bottom:748.576500px;}
.y95{bottom:752.671500px;}
.y41{bottom:753.433500px;}
.y17c{bottom:758.115000px;}
.y132{bottom:761.701500px;}
.ye{bottom:762.370500px;}
.ybf{bottom:765.373500px;}
.ye5{bottom:770.694000px;}
.y40{bottom:771.366000px;}
.y94{bottom:774.190500px;}
.yc5{bottom:774.877500px;}
.yd{bottom:778.809000px;}
.y17b{bottom:779.634000px;}
.y6a{bottom:779.638500px;}
.y131{bottom:783.220500px;}
.ybe{bottom:786.892500px;}
.y3f{bottom:789.298500px;}
.yc4{bottom:792.810000px;}
.yc{bottom:795.247500px;}
.y93{bottom:795.709500px;}
.y69{bottom:797.571000px;}
.y17a{bottom:801.153000px;}
.y130{bottom:804.739500px;}
.ye4{bottom:807.874500px;}
.ybd{bottom:808.413000px;}
.yb{bottom:811.684500px;}
.y92{bottom:817.228500px;}
.y179{bottom:822.673500px;}
.y12f{bottom:826.258500px;}
.ya{bottom:828.123000px;}
.y3e{bottom:828.138000px;}
.ybc{bottom:829.932000px;}
.y91{bottom:838.747500px;}
.y68{bottom:840.145500px;}
.y178{bottom:844.192500px;}
.y9{bottom:844.561500px;}
.y3d{bottom:846.070500px;}
.y12e{bottom:847.779000px;}
.ybb{bottom:851.451000px;}
.y90{bottom:860.268000px;}
.y3c{bottom:864.003000px;}
.y177{bottom:865.711500px;}
.y8{bottom:866.694000px;}
.y12d{bottom:869.298000px;}
.yba{bottom:872.970000px;}
.y67{bottom:874.842000px;}
.y8f{bottom:881.787000px;}
.y3b{bottom:881.935500px;}
.y176{bottom:887.230500px;}
.y12c{bottom:890.817000px;}
.yb9{bottom:894.489000px;}
.y66{bottom:896.361000px;}
.y3a{bottom:899.868000px;}
.y8e{bottom:903.306000px;}
.y175{bottom:908.749500px;}
.y12b{bottom:912.336000px;}
.yb8{bottom:916.008000px;}
.y39{bottom:917.802000px;}
.y65{bottom:917.881500px;}
.y7{bottom:919.191000px;}
.y8d{bottom:924.825000px;}
.y174{bottom:930.268500px;}
.y12a{bottom:933.855000px;}
.y38{bottom:935.734500px;}
.yb7{bottom:937.527000px;}
.y64{bottom:939.400500px;}
.y8c{bottom:946.344000px;}
.y173{bottom:951.787500px;}
.y6{bottom:954.718500px;}
.y129{bottom:955.374000px;}
.yb6{bottom:959.047500px;}
.y63{bottom:960.919500px;}
.y8b{bottom:967.863000px;}
.y172{bottom:973.308000px;}
.y37{bottom:974.572500px;}
.y128{bottom:976.894500px;}
.yb5{bottom:980.566500px;}
.y62{bottom:982.438500px;}
.y8a{bottom:989.382000px;}
.y36{bottom:992.505000px;}
.y171{bottom:994.827000px;}
.y5{bottom:994.836000px;}
.y127{bottom:998.413500px;}
.yb4{bottom:1002.085500px;}
.y61{bottom:1004.556000px;}
.y89{bottom:1010.902500px;}
.y4{bottom:1013.434500px;}
.y170{bottom:1016.346000px;}
.y126{bottom:1019.932500px;}
.y35{bottom:1022.394000px;}
.yb3{bottom:1023.604500px;}
.y88{bottom:1032.421500px;}
.y16f{bottom:1037.865000px;}
.y60{bottom:1039.644000px;}
.y34{bottom:1040.326500px;}
.y125{bottom:1041.451500px;}
.yb2{bottom:1045.123500px;}
.y87{bottom:1053.940500px;}
.y5f{bottom:1057.576500px;}
.y33{bottom:1058.259000px;}
.y16e{bottom:1059.384000px;}
.y124{bottom:1062.970500px;}
.yb1{bottom:1066.642500px;}
.y3{bottom:1067.217000px;}
.y86{bottom:1075.459500px;}
.y5e{bottom:1075.509000px;}
.y16d{bottom:1080.903000px;}
.y123{bottom:1084.489500px;}
.yb0{bottom:1088.161500px;}
.y85{bottom:1096.978500px;}
.y32{bottom:1097.098500px;}
.y2{bottom:1100.094000px;}
.y16c{bottom:1102.422000px;}
.y5d{bottom:1103.091000px;}
.y122{bottom:1106.607000px;}
.yaf{bottom:1110.279000px;}
.y84{bottom:1118.497500px;}
.y16b{bottom:1124.539500px;}
.y31{bottom:1126.986000px;}
.y83{bottom:1140.016500px;}
.y152{bottom:1140.615000px;}
.y121{bottom:1144.798500px;}
.y30{bottom:1144.918500px;}
.y82{bottom:1162.134000px;}
.y120{bottom:1162.732500px;}
.y2f{bottom:1162.851000px;}
.y1{bottom:1220.535000px;}
.h5{height:33.665702px;}
.hf{height:33.713523px;}
.h8{height:37.712678px;}
.h6{height:40.402598px;}
.ha{height:41.544042px;}
.hb{height:44.891476px;}
.hc{height:50.283571px;}
.h7{height:51.287808px;}
.h2{height:51.825445px;}
.h4{height:59.693702px;}
.h9{height:60.426194px;}
.h3{height:72.304680px;}
.hd{height:892.914000px;}
.he{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x19{left:40.207500px;}
.xb{left:85.039500px;}
.xc{left:107.457000px;}
.x2{left:109.467000px;}
.xe{left:115.756500px;}
.xa{left:122.400000px;}
.x1d{left:123.495000px;}
.xd{left:126.933000px;}
.x9{left:143.128500px;}
.x12{left:153.246000px;}
.xf{left:194.665500px;}
.x14{left:203.632500px;}
.x13{left:225.340500px;}
.x1c{left:227.967000px;}
.x20{left:233.632500px;}
.x10{left:268.107000px;}
.x5{left:269.206500px;}
.x15{left:270.597000px;}
.x6{left:279.078000px;}
.x11{left:282.549000px;}
.x3{left:287.287500px;}
.x1f{left:319.588500px;}
.x1{left:377.503500px;}
.x4{left:389.746500px;}
.x7{left:405.495000px;}
.x17{left:412.927500px;}
.x8{left:416.023500px;}
.x1a{left:504.549000px;}
.x1b{left:635.136000px;}
.x1e{left:636.429000px;}
.x18{left:1008.129000px;}
.x16{left:1220.535000px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002079pt;}
.ls3{letter-spacing:0.003733pt;}
.ls0{letter-spacing:2.658767pt;}
.ls4{letter-spacing:8.850079pt;}
.ls1{letter-spacing:8.855412pt;}
.lse{letter-spacing:15.303392pt;}
.ls5{letter-spacing:16.239805pt;}
.lsd{letter-spacing:17.708725pt;}
.ls8{letter-spacing:20.851733pt;}
.lsc{letter-spacing:21.100725pt;}
.ls9{letter-spacing:22.908725pt;}
.lsa{letter-spacing:22.914059pt;}
.lsf{letter-spacing:23.767392pt;}
.ls6{letter-spacing:26.569047pt;}
.lsb{letter-spacing:27.154059pt;}
.ws36{word-spacing:-30.546660pt;}
.ws66{word-spacing:-27.151406pt;}
.ws1{word-spacing:-14.396665pt;}
.ws24{word-spacing:-14.070753pt;}
.ws43{word-spacing:-14.040141pt;}
.ws47{word-spacing:-13.994240pt;}
.wsc{word-spacing:-12.902052pt;}
.ws2a{word-spacing:-12.507062pt;}
.ws52{word-spacing:-11.843539pt;}
.ws1d{word-spacing:-11.684137pt;}
.ws5c{word-spacing:-11.259066pt;}
.ws69{word-spacing:-11.247781pt;}
.ws29{word-spacing:-10.940263pt;}
.ws49{word-spacing:-10.863761pt;}
.ws2e{word-spacing:-10.833995pt;}
.ws30{word-spacing:-10.515192pt;}
.ws1b{word-spacing:-10.408924pt;}
.ws6a{word-spacing:-10.361104pt;}
.ws53{word-spacing:-10.302657pt;}
.ws54{word-spacing:-10.196389pt;}
.ws57{word-spacing:-10.090121pt;}
.ws42{word-spacing:-10.036987pt;}
.ws8d{word-spacing:-9.983854pt;}
.ws4e{word-spacing:-9.930720pt;}
.ws26{word-spacing:-9.775761pt;}
.ws1f{word-spacing:-9.718184pt;}
.ws28{word-spacing:-9.505649pt;}
.ws2d{word-spacing:-9.452515pt;}
.ws33{word-spacing:-9.399381pt;}
.wse{word-spacing:-9.346247pt;}
.ws5d{word-spacing:-9.293113pt;}
.ws5b{word-spacing:-9.186846pt;}
.ws23{word-spacing:-9.133712pt;}
.ws11{word-spacing:-8.999137pt;}
.ws16{word-spacing:-8.974310pt;}
.ws0{word-spacing:-8.868042pt;}
.ws67{word-spacing:-8.847781pt;}
.ws55{word-spacing:-8.814908pt;}
.ws4d{word-spacing:-8.761775pt;}
.ws21{word-spacing:-8.655507pt;}
.ws2b{word-spacing:-8.496105pt;}
.ws20{word-spacing:-8.442971pt;}
.ws6{word-spacing:-8.406897pt;}
.ws4f{word-spacing:-8.283570pt;}
.ws1e{word-spacing:-8.230436pt;}
.ws3{word-spacing:-8.215613pt;}
.ws4b{word-spacing:-8.197728pt;}
.ws34{word-spacing:-8.177302pt;}
.ws68{word-spacing:-8.129482pt;}
.ws5e{word-spacing:-8.071034pt;}
.ws22{word-spacing:-7.911633pt;}
.ws2c{word-spacing:-7.858499pt;}
.ws35{word-spacing:-7.805365pt;}
.ws4c{word-spacing:-7.486562pt;}
.ws50{word-spacing:-7.220892pt;}
.ws9{word-spacing:-7.115735pt;}
.ws31{word-spacing:-7.114625pt;}
.ws3d{word-spacing:-7.061491pt;}
.ws25{word-spacing:-7.046424pt;}
.wsf{word-spacing:-6.902089pt;}
.ws48{word-spacing:-6.848955pt;}
.ws60{word-spacing:-6.795822pt;}
.ws10{word-spacing:-6.423884pt;}
.ws58{word-spacing:-6.370751pt;}
.wsb{word-spacing:-6.111498pt;}
.ws27{word-spacing:-5.786278pt;}
.ws8{word-spacing:-5.776753pt;}
.ws3f{word-spacing:-5.733144pt;}
.ws40{word-spacing:-5.680010pt;}
.ws59{word-spacing:-5.573743pt;}
.ws65{word-spacing:-5.467475pt;}
.ws5a{word-spacing:-5.361207pt;}
.ws3a{word-spacing:-5.254939pt;}
.ws1c{word-spacing:-4.936136pt;}
.ws46{word-spacing:-4.670467pt;}
.wsa{word-spacing:-4.294308pt;}
.ws1a{word-spacing:-4.192262pt;}
.ws3c{word-spacing:-3.767191pt;}
.ws18{word-spacing:-3.448388pt;}
.ws38{word-spacing:-3.076451pt;}
.ws17{word-spacing:-3.023317pt;}
.ws45{word-spacing:-2.886424pt;}
.ws6b{word-spacing:-2.810782pt;}
.ws39{word-spacing:-2.651380pt;}
.ws6c{word-spacing:-2.603559pt;}
.ws5{word-spacing:-2.524938pt;}
.ws44{word-spacing:-2.491978pt;}
.ws7{word-spacing:-1.855447pt;}
.ws3b{word-spacing:-1.588703pt;}
.ws14{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws2f{word-spacing:0.000000pt;}
.ws37{word-spacing:0.111581pt;}
.ws62{word-spacing:0.478205pt;}
.ws63{word-spacing:0.589786pt;}
.ws61{word-spacing:0.601471pt;}
.ws6d{word-spacing:0.696054pt;}
.ws19{word-spacing:8.820222pt;}
.ws64{word-spacing:9.351561pt;}
.ws12{word-spacing:14.697112pt;}
.ws13{word-spacing:14.718081pt;}
.ws75{word-spacing:15.005042pt;}
.ws15{word-spacing:17.508411pt;}
.ws3e{word-spacing:19.449130pt;}
.ws5f{word-spacing:19.708266pt;}
.ws2{word-spacing:20.722347pt;}
.ws41{word-spacing:22.566710pt;}
.ws51{word-spacing:23.846639pt;}
.ws32{word-spacing:27.842146pt;}
.ws4a{word-spacing:33.213980pt;}
.ws93{word-spacing:37.199020pt;}
.wsd{word-spacing:42.089838pt;}
.ws92{word-spacing:52.395306pt;}
.ws71{word-spacing:85.468186pt;}
.ws73{word-spacing:86.870920pt;}
.ws56{word-spacing:158.875575pt;}
.ws87{word-spacing:162.063607pt;}
.ws8e{word-spacing:162.329276pt;}
.ws8a{word-spacing:168.829910pt;}
.ws7d{word-spacing:185.176839pt;}
.ws91{word-spacing:185.973847pt;}
.ws8c{word-spacing:194.209596pt;}
.ws78{word-spacing:195.537943pt;}
.ws90{word-spacing:203.667424pt;}
.ws8b{word-spacing:215.463143pt;}
.ws8f{word-spacing:221.361002pt;}
.ws86{word-spacing:233.658540pt;}
.ws80{word-spacing:238.238680pt;}
.ws72{word-spacing:238.895178pt;}
.ws74{word-spacing:239.054580pt;}
.ws84{word-spacing:242.478762pt;}
.ws7e{word-spacing:248.419129pt;}
.ws70{word-spacing:250.850298pt;}
.ws7b{word-spacing:255.209637pt;}
.ws82{word-spacing:262.287068pt;}
.ws76{word-spacing:266.229601pt;}
.ws88{word-spacing:270.990395pt;}
.ws79{word-spacing:281.505587pt;}
.ws6e{word-spacing:290.169359pt;}
.ws81{word-spacing:327.894405pt;}
.ws85{word-spacing:332.304516pt;}
.ws89{word-spacing:333.526594pt;}
.ws7f{word-spacing:338.202375pt;}
.ws7c{word-spacing:342.665620pt;}
.ws83{word-spacing:351.379574pt;}
.ws77{word-spacing:352.973590pt;}
.ws6f{word-spacing:359.569864pt;}
.ws7a{word-spacing:366.257056pt;}
._2{margin-left:-7.161606pt;}
._0{margin-left:-4.410111pt;}
._7{margin-left:-3.365719pt;}
._4{margin-left:-2.387202pt;}
._1{margin-left:-1.487748pt;}
._5{width:1.338982pt;}
._d{width:2.387202pt;}
._46{width:3.412033pt;}
._17{width:5.079580pt;}
._47{width:6.069119pt;}
._27{width:9.139025pt;}
._35{width:16.893264pt;}
._a{width:19.914657pt;}
._6{width:21.916351pt;}
._e{width:23.538303pt;}
._11{width:24.494713pt;}
._b{width:25.605342pt;}
._12{width:26.779469pt;}
._28{width:27.789012pt;}
._9{width:29.473523pt;}
._14{width:32.935354pt;}
._c{width:33.873037pt;}
._10{width:35.302009pt;}
._19{width:36.319782pt;}
._3{width:38.287050pt;}
._f{width:39.797266pt;}
._8{width:41.136495pt;}
._18{width:43.258617pt;}
._16{width:53.725558pt;}
._22{width:63.813774pt;}
._5e{width:66.736137pt;}
._25{width:68.011349pt;}
._29{width:71.731200pt;}
._66{width:72.633996pt;}
._1c{width:73.962342pt;}
._4c{width:76.863434pt;}
._55{width:79.860202pt;}
._1d{width:81.294816pt;}
._13{width:84.164373pt;}
._48{width:97.819449pt;}
._4a{width:100.051071pt;}
._54{width:103.185969pt;}
._6d{width:108.339954pt;}
._49{width:123.376838pt;}
._53{width:126.511737pt;}
._45{width:134.428683pt;}
._ae{width:135.533858pt;}
._26{width:136.554037pt;}
._2b{width:140.277230pt;}
._2d{width:143.992779pt;}
._c1{width:146.118133pt;}
._4e{width:163.705443pt;}
._38{width:166.255869pt;}
._51{width:169.868972pt;}
._1e{width:175.012321pt;}
._b1{width:179.539335pt;}
._4b{width:186.372333pt;}
._1f{width:187.721951pt;}
._44{width:190.803715pt;}
._50{width:193.194739pt;}
._2f{width:194.257417pt;}
._96{width:197.020378pt;}
._43{width:198.508126pt;}
._31{width:200.208410pt;}
._a5{width:201.430489pt;}
._41{width:204.405985pt;}
._91{width:207.328348pt;}
._40{width:208.816096pt;}
._89{width:211.738459pt;}
._23{width:212.960538pt;}
._42{width:217.530050pt;}
._3e{width:219.272832pt;}
._9a{width:220.452413pt;}
._7b{width:222.248329pt;}
._3c{width:224.008560pt;}
._9c{width:226.084603pt;}
._3f{width:232.407533pt;}
._52{width:235.967502pt;}
._80{width:241.121487pt;}
._36{width:253.601132pt;}
._1b{width:259.399537pt;}
._2e{width:262.474487pt;}
._20{width:264.132273pt;}
._b9{width:268.049722pt;}
._6c{width:269.016767pt;}
._4d{width:273.161209pt;}
._b4{width:291.375489pt;}
._21{width:294.733558pt;}
._af{width:299.186167pt;}
._3d{width:300.312614pt;}
._4f{width:302.703638pt;}
._86{width:307.751356pt;}
._24{width:309.185970pt;}
._2c{width:311.141287pt;}
._76{width:316.677845pt;}
._a4{width:321.449258pt;}
._c2{width:324.594791pt;}
._c3{width:329.058036pt;}
._99{width:332.192934pt;}
._ac{width:335.954803pt;}
._72{width:342.075834pt;}
._ab{width:350.991687pt;}
._b3{width:357.484655pt;}
._77{width:361.150892pt;}
._c0{width:362.107301pt;}
._8f{width:382.723242pt;}
._bb{width:384.476659pt;}
._6f{width:386.336345pt;}
._b7{width:394.165308pt;}
._3a{width:396.059842pt;}
._a8{width:397.260650pt;}
._a3{width:400.937522pt;}
._1a{width:404.026100pt;}
._aa{width:410.182815pt;}
._71{width:411.574931pt;}
._b2{width:414.284758pt;}
._b0{width:418.588602pt;}
._6b{width:420.129484pt;}
._b6{width:423.123265pt;}
._98{width:429.587312pt;}
._30{width:431.177506pt;}
._be{width:432.934746pt;}
._33{width:433.948111pt;}
._bf{width:435.857108pt;}
._6a{width:439.459575pt;}
._70{width:443.880322pt;}
._a9{width:446.324480pt;}
._7f{width:448.329109pt;}
._39{width:450.157768pt;}
._a1{width:451.425331pt;}
._6e{width:455.835442pt;}
._82{width:457.312555pt;}
._b8{width:461.520766pt;}
._60{width:464.708798pt;}
._8e{width:468.268767pt;}
._9b{width:470.440442pt;}
._95{width:476.345115pt;}
._83{width:477.567194pt;}
._bd{width:479.586281pt;}
._a2{width:480.797724pt;}
._5f{width:482.990670pt;}
._78{width:484.038890pt;}
._8b{width:486.121746pt;}
._56{width:487.595037pt;}
._79{width:492.912245pt;}
._bc{width:497.279858pt;}
._61{width:500.414756pt;}
._64{width:503.337119pt;}
._5c{width:506.843954pt;}
._69{width:507.747230pt;}
._59{width:509.075097pt;}
._88{width:514.707766pt;}
._85{width:515.929845pt;}
._81{width:517.576995pt;}
._90{width:525.175138pt;}
._ba{width:526.131548pt;}
._65{width:530.382257pt;}
._9d{width:538.352337pt;}
._5d{width:543.612590pt;}
._8c{width:545.153472pt;}
._a0{width:550.254323pt;}
._8d{width:553.708025pt;}
._b5{width:556.099049pt;}
._a6{width:557.218682pt;}
._97{width:558.224403pt;}
._87{width:559.117043pt;}
._62{width:565.344341pt;}
._68{width:570.180003pt;}
._93{width:572.096164pt;}
._a7{width:573.048752pt;}
._7a{width:576.704353pt;}
._7d{width:579.736805pt;}
._63{width:582.028375pt;}
._75{width:591.167401pt;}
._92{width:596.640189pt;}
._74{width:598.818677pt;}
._5a{width:600.306426pt;}
._5b{width:603.122521pt;}
._9e{width:611.252002pt;}
._9f{width:617.139226pt;}
._84{width:622.303846pt;}
._7e{width:624.376067pt;}
._94{width:627.457831pt;}
._67{width:628.467855pt;}
._8a{width:630.752131pt;}
._57{width:655.565647pt;}
._ad{width:659.285018pt;}
._2a{width:662.791853pt;}
._7c{width:668.307139pt;}
._73{width:670.974468pt;}
._15{width:672.568484pt;}
._32{width:673.949965pt;}
._58{width:700.790476pt;}
._34{width:716.616460pt;}
._37{width:726.552493pt;}
._3b{width:876.389997pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:35.740000pt;}
.y2d{bottom:75.590667pt;}
.y11f{bottom:78.272000pt;}
.y151{bottom:83.562667pt;}
.y5c{bottom:84.806667pt;}
.yae{bottom:88.286667pt;}
.y104{bottom:91.024000pt;}
.y2c{bottom:91.530667pt;}
.y11e{bottom:97.932000pt;}
.y19a{bottom:99.502667pt;}
.ye3{bottom:99.818667pt;}
.y5b{bottom:100.746667pt;}
.y150{bottom:103.222667pt;}
.yad{bottom:104.226667pt;}
.y2b{bottom:107.470667pt;}
.y103{bottom:110.684000pt;}
.y5a{bottom:116.686667pt;}
.y11d{bottom:117.060000pt;}
.y199{bottom:119.162667pt;}
.ye2{bottom:119.478667pt;}
.y14f{bottom:122.350667pt;}
.y2a{bottom:123.410667pt;}
.yac{bottom:125.362667pt;}
.y102{bottom:129.812000pt;}
.y59{bottom:132.626667pt;}
.y11c{bottom:136.188000pt;}
.y198{bottom:138.290667pt;}
.ye1{bottom:138.606667pt;}
.y14e{bottom:141.478667pt;}
.yab{bottom:146.498667pt;}
.y58{bottom:148.566667pt;}
.y101{bottom:148.940000pt;}
.y29{bottom:149.517333pt;}
.y11b{bottom:155.316000pt;}
.y197{bottom:157.418667pt;}
.ye0{bottom:157.734667pt;}
.y14d{bottom:160.606667pt;}
.y57{bottom:164.508000pt;}
.y28{bottom:165.457333pt;}
.y81{bottom:165.824000pt;}
.yaa{bottom:167.634667pt;}
.y100{bottom:168.068000pt;}
.y16a{bottom:171.708000pt;}
.y11a{bottom:174.444000pt;}
.y196{bottom:176.546667pt;}
.ydf{bottom:176.862667pt;}
.y14c{bottom:179.734667pt;}
.y56{bottom:180.448000pt;}
.y27{bottom:181.398667pt;}
.y80{bottom:181.764000pt;}
.yff{bottom:187.197333pt;}
.ya9{bottom:188.770667pt;}
.y169{bottom:190.836000pt;}
.y119{bottom:193.572000pt;}
.y195{bottom:195.674667pt;}
.yde{bottom:195.990667pt;}
.y55{bottom:196.388000pt;}
.y7f{bottom:197.704000pt;}
.y14b{bottom:198.862667pt;}
.yfe{bottom:206.325333pt;}
.y26{bottom:207.505333pt;}
.ya8{bottom:209.906667pt;}
.y168{bottom:209.964000pt;}
.y118{bottom:212.701333pt;}
.y194{bottom:214.804000pt;}
.ydd{bottom:215.118667pt;}
.y14a{bottom:217.992000pt;}
.y7e{bottom:222.221333pt;}
.yfd{bottom:225.453333pt;}
.y54{bottom:225.480000pt;}
.ya7{bottom:225.846667pt;}
.y117{bottom:228.641333pt;}
.y167{bottom:229.092000pt;}
.y25{bottom:233.150667pt;}
.y193{bottom:233.932000pt;}
.ydc{bottom:234.248000pt;}
.y149{bottom:237.120000pt;}
.yfc{bottom:244.581333pt;}
.ya6{bottom:246.984000pt;}
.y116{bottom:247.769333pt;}
.y166{bottom:248.221333pt;}
.y192{bottom:253.060000pt;}
.ydb{bottom:253.376000pt;}
.y148{bottom:256.248000pt;}
.y24{bottom:262.242667pt;}
.y7d{bottom:262.721333pt;}
.ya5{bottom:262.924000pt;}
.yfb{bottom:263.709333pt;}
.y115{bottom:266.897333pt;}
.y165{bottom:267.349333pt;}
.y191{bottom:272.188000pt;}
.yda{bottom:272.504000pt;}
.y53{bottom:272.722667pt;}
.y147{bottom:275.376000pt;}
.yfa{bottom:282.837333pt;}
.y114{bottom:286.025333pt;}
.y164{bottom:286.477333pt;}
.y190{bottom:291.316000pt;}
.yd9{bottom:291.632000pt;}
.ya4{bottom:292.014667pt;}
.y7c{bottom:293.564000pt;}
.y146{bottom:294.504000pt;}
.yf9{bottom:301.965333pt;}
.y52{bottom:303.564000pt;}
.y113{bottom:305.153333pt;}
.y163{bottom:305.605333pt;}
.y23{bottom:305.966667pt;}
.y18f{bottom:310.444000pt;}
.yd8{bottom:310.760000pt;}
.y7b{bottom:312.692000pt;}
.y145{bottom:313.632000pt;}
.yf8{bottom:321.094667pt;}
.y22{bottom:321.906667pt;}
.y51{bottom:322.692000pt;}
.y112{bottom:324.282667pt;}
.y162{bottom:324.733333pt;}
.y18e{bottom:329.572000pt;}
.yd7{bottom:329.888000pt;}
.y7a{bottom:331.820000pt;}
.y144{bottom:332.760000pt;}
.ya3{bottom:335.837333pt;}
.y21{bottom:337.848000pt;}
.yf7{bottom:340.222667pt;}
.y50{bottom:341.821333pt;}
.y111{bottom:343.410667pt;}
.y161{bottom:343.861333pt;}
.y18d{bottom:348.701333pt;}
.yd6{bottom:349.016000pt;}
.y79{bottom:350.948000pt;}
.ya2{bottom:351.777333pt;}
.y143{bottom:351.889333pt;}
.y20{bottom:353.788000pt;}
.yf6{bottom:359.350667pt;}
.y4f{bottom:360.949333pt;}
.y110{bottom:362.538667pt;}
.y160{bottom:362.990667pt;}
.y18c{bottom:367.829333pt;}
.yd5{bottom:368.145333pt;}
.y1f{bottom:369.728000pt;}
.y78{bottom:370.076000pt;}
.y142{bottom:371.017333pt;}
.ya1{bottom:377.873333pt;}
.yf5{bottom:378.478667pt;}
.y4e{bottom:380.077333pt;}
.y10f{bottom:381.666667pt;}
.y15f{bottom:382.118667pt;}
.y1e{bottom:385.668000pt;}
.y18b{bottom:386.957333pt;}
.yd4{bottom:387.273333pt;}
.y77{bottom:389.204000pt;}
.y141{bottom:390.145333pt;}
.ya0{bottom:393.814667pt;}
.yf4{bottom:397.606667pt;}
.y4d{bottom:399.205333pt;}
.y10e{bottom:400.794667pt;}
.y15e{bottom:401.246667pt;}
.y1d{bottom:401.608000pt;}
.y18a{bottom:406.085333pt;}
.yd3{bottom:406.401333pt;}
.y76{bottom:408.333333pt;}
.y140{bottom:409.273333pt;}
.y9f{bottom:409.754667pt;}
.yf3{bottom:416.734667pt;}
.y1c{bottom:417.548000pt;}
.y4c{bottom:418.333333pt;}
.y10d{bottom:419.922667pt;}
.y15d{bottom:420.374667pt;}
.y189{bottom:425.213333pt;}
.yd2{bottom:425.529333pt;}
.y75{bottom:427.992000pt;}
.y13f{bottom:428.401333pt;}
.y1b{bottom:433.489333pt;}
.yf2{bottom:435.862667pt;}
.y4b{bottom:437.461333pt;}
.y10c{bottom:439.050667pt;}
.y15c{bottom:439.502667pt;}
.y9e{bottom:444.176000pt;}
.y188{bottom:444.341333pt;}
.yd1{bottom:444.657333pt;}
.y13e{bottom:447.529333pt;}
.y1a{bottom:449.429333pt;}
.yf1{bottom:454.992000pt;}
.y4a{bottom:456.589333pt;}
.yc3{bottom:458.142667pt;}
.y10b{bottom:458.180000pt;}
.y15b{bottom:458.630667pt;}
.y74{bottom:461.764000pt;}
.y187{bottom:463.469333pt;}
.yd0{bottom:463.785333pt;}
.y19{bottom:465.369333pt;}
.y13d{bottom:466.657333pt;}
.y9d{bottom:470.273333pt;}
.yf0{bottom:474.120000pt;}
.y49{bottom:475.718667pt;}
.y10a{bottom:477.308000pt;}
.y73{bottom:477.704000pt;}
.y15a{bottom:477.758667pt;}
.y18{bottom:481.309333pt;}
.y186{bottom:482.598667pt;}
.ycf{bottom:482.913333pt;}
.y13c{bottom:485.786667pt;}
.yef{bottom:493.248000pt;}
.y72{bottom:493.644000pt;}
.y48{bottom:494.846667pt;}
.y109{bottom:496.436000pt;}
.y159{bottom:496.888000pt;}
.y17{bottom:497.249333pt;}
.y185{bottom:501.726667pt;}
.yce{bottom:502.042667pt;}
.y9c{bottom:504.696000pt;}
.y13b{bottom:504.914667pt;}
.yee{bottom:512.376000pt;}
.y16{bottom:513.189333pt;}
.y47{bottom:513.974667pt;}
.y108{bottom:515.564000pt;}
.y158{bottom:516.016000pt;}
.y9b{bottom:520.636000pt;}
.y184{bottom:520.854667pt;}
.ycd{bottom:521.170667pt;}
.y13a{bottom:524.042667pt;}
.y15{bottom:529.130667pt;}
.y71{bottom:531.488000pt;}
.yed{bottom:531.504000pt;}
.y46{bottom:533.634667pt;}
.y107{bottom:534.692000pt;}
.y157{bottom:535.144000pt;}
.y9a{bottom:536.576000pt;}
.y183{bottom:539.982667pt;}
.ycc{bottom:540.298667pt;}
.y139{bottom:543.170667pt;}
.y14{bottom:545.070667pt;}
.yec{bottom:550.632000pt;}
.y106{bottom:553.820000pt;}
.y156{bottom:554.272000pt;}
.y182{bottom:559.110667pt;}
.ycb{bottom:559.426667pt;}
.y13{bottom:561.010667pt;}
.y99{bottom:561.093333pt;}
.y138{bottom:562.298667pt;}
.y70{bottom:562.330667pt;}
.y45{bottom:564.824000pt;}
.yeb{bottom:569.760000pt;}
.y105{bottom:572.948000pt;}
.y155{bottom:573.400000pt;}
.y181{bottom:578.238667pt;}
.yca{bottom:578.554667pt;}
.y44{bottom:580.764000pt;}
.y137{bottom:581.426667pt;}
.y6f{bottom:581.458667pt;}
.yea{bottom:588.889333pt;}
.y12{bottom:590.101333pt;}
.y154{bottom:592.528000pt;}
.y180{bottom:597.368000pt;}
.yc9{bottom:597.682667pt;}
.y136{bottom:600.554667pt;}
.y6e{bottom:600.586667pt;}
.y98{bottom:600.754667pt;}
.ye9{bottom:608.017333pt;}
.y43{bottom:609.854667pt;}
.yc2{bottom:611.233333pt;}
.y153{bottom:611.656000pt;}
.y17f{bottom:616.496000pt;}
.yc8{bottom:616.810667pt;}
.y135{bottom:619.684000pt;}
.y6d{bottom:619.714667pt;}
.ye8{bottom:627.145333pt;}
.y97{bottom:630.785333pt;}
.y11{bottom:633.826667pt;}
.y17e{bottom:635.624000pt;}
.yc7{bottom:635.940000pt;}
.y134{bottom:638.812000pt;}
.y6c{bottom:638.842667pt;}
.yc1{bottom:642.076000pt;}
.ye7{bottom:646.273333pt;}
.y10{bottom:648.438667pt;}
.y96{bottom:649.913333pt;}
.y42{bottom:653.778667pt;}
.y17d{bottom:654.752000pt;}
.yc6{bottom:655.598667pt;}
.y133{bottom:657.940000pt;}
.y6b{bottom:658.502667pt;}
.yc0{bottom:661.204000pt;}
.yf{bottom:663.050667pt;}
.ye6{bottom:665.401333pt;}
.y95{bottom:669.041333pt;}
.y41{bottom:669.718667pt;}
.y17c{bottom:673.880000pt;}
.y132{bottom:677.068000pt;}
.ye{bottom:677.662667pt;}
.ybf{bottom:680.332000pt;}
.ye5{bottom:685.061333pt;}
.y40{bottom:685.658667pt;}
.y94{bottom:688.169333pt;}
.yc5{bottom:688.780000pt;}
.yd{bottom:692.274667pt;}
.y17b{bottom:693.008000pt;}
.y6a{bottom:693.012000pt;}
.y131{bottom:696.196000pt;}
.ybe{bottom:699.460000pt;}
.y3f{bottom:701.598667pt;}
.yc4{bottom:704.720000pt;}
.yc{bottom:706.886667pt;}
.y93{bottom:707.297333pt;}
.y69{bottom:708.952000pt;}
.y17a{bottom:712.136000pt;}
.y130{bottom:715.324000pt;}
.ye4{bottom:718.110667pt;}
.ybd{bottom:718.589333pt;}
.yb{bottom:721.497333pt;}
.y92{bottom:726.425333pt;}
.y179{bottom:731.265333pt;}
.y12f{bottom:734.452000pt;}
.ya{bottom:736.109333pt;}
.y3e{bottom:736.122667pt;}
.ybc{bottom:737.717333pt;}
.y91{bottom:745.553333pt;}
.y68{bottom:746.796000pt;}
.y178{bottom:750.393333pt;}
.y9{bottom:750.721333pt;}
.y3d{bottom:752.062667pt;}
.y12e{bottom:753.581333pt;}
.ybb{bottom:756.845333pt;}
.y90{bottom:764.682667pt;}
.y3c{bottom:768.002667pt;}
.y177{bottom:769.521333pt;}
.y8{bottom:770.394667pt;}
.y12d{bottom:772.709333pt;}
.yba{bottom:775.973333pt;}
.y67{bottom:777.637333pt;}
.y8f{bottom:783.810667pt;}
.y3b{bottom:783.942667pt;}
.y176{bottom:788.649333pt;}
.y12c{bottom:791.837333pt;}
.yb9{bottom:795.101333pt;}
.y66{bottom:796.765333pt;}
.y3a{bottom:799.882667pt;}
.y8e{bottom:802.938667pt;}
.y175{bottom:807.777333pt;}
.y12b{bottom:810.965333pt;}
.yb8{bottom:814.229333pt;}
.y39{bottom:815.824000pt;}
.y65{bottom:815.894667pt;}
.y7{bottom:817.058667pt;}
.y8d{bottom:822.066667pt;}
.y174{bottom:826.905333pt;}
.y12a{bottom:830.093333pt;}
.y38{bottom:831.764000pt;}
.yb7{bottom:833.357333pt;}
.y64{bottom:835.022667pt;}
.y8c{bottom:841.194667pt;}
.y173{bottom:846.033333pt;}
.y6{bottom:848.638667pt;}
.y129{bottom:849.221333pt;}
.yb6{bottom:852.486667pt;}
.y63{bottom:854.150667pt;}
.y8b{bottom:860.322667pt;}
.y172{bottom:865.162667pt;}
.y37{bottom:866.286667pt;}
.y128{bottom:868.350667pt;}
.yb5{bottom:871.614667pt;}
.y62{bottom:873.278667pt;}
.y8a{bottom:879.450667pt;}
.y36{bottom:882.226667pt;}
.y171{bottom:884.290667pt;}
.y5{bottom:884.298667pt;}
.y127{bottom:887.478667pt;}
.yb4{bottom:890.742667pt;}
.y61{bottom:892.938667pt;}
.y89{bottom:898.580000pt;}
.y4{bottom:900.830667pt;}
.y170{bottom:903.418667pt;}
.y126{bottom:906.606667pt;}
.y35{bottom:908.794667pt;}
.yb3{bottom:909.870667pt;}
.y88{bottom:917.708000pt;}
.y16f{bottom:922.546667pt;}
.y60{bottom:924.128000pt;}
.y34{bottom:924.734667pt;}
.y125{bottom:925.734667pt;}
.yb2{bottom:928.998667pt;}
.y87{bottom:936.836000pt;}
.y5f{bottom:940.068000pt;}
.y33{bottom:940.674667pt;}
.y16e{bottom:941.674667pt;}
.y124{bottom:944.862667pt;}
.yb1{bottom:948.126667pt;}
.y3{bottom:948.637333pt;}
.y86{bottom:955.964000pt;}
.y5e{bottom:956.008000pt;}
.y16d{bottom:960.802667pt;}
.y123{bottom:963.990667pt;}
.yb0{bottom:967.254667pt;}
.y85{bottom:975.092000pt;}
.y32{bottom:975.198667pt;}
.y2{bottom:977.861333pt;}
.y16c{bottom:979.930667pt;}
.y5d{bottom:980.525333pt;}
.y122{bottom:983.650667pt;}
.yaf{bottom:986.914667pt;}
.y84{bottom:994.220000pt;}
.y16b{bottom:999.590667pt;}
.y31{bottom:1001.765333pt;}
.y83{bottom:1013.348000pt;}
.y152{bottom:1013.880000pt;}
.y121{bottom:1017.598667pt;}
.y30{bottom:1017.705333pt;}
.y82{bottom:1033.008000pt;}
.y120{bottom:1033.540000pt;}
.y2f{bottom:1033.645333pt;}
.y1{bottom:1084.920000pt;}
.h5{height:29.925069pt;}
.hf{height:29.967576pt;}
.h8{height:33.522381pt;}
.h6{height:35.913421pt;}
.ha{height:36.928037pt;}
.hb{height:39.903534pt;}
.hc{height:44.696508pt;}
.h7{height:45.589163pt;}
.h2{height:46.067062pt;}
.h4{height:53.061069pt;}
.h9{height:53.712173pt;}
.h3{height:64.270827pt;}
.hd{height:793.701333pt;}
.he{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x19{left:35.740000pt;}
.xb{left:75.590667pt;}
.xc{left:95.517333pt;}
.x2{left:97.304000pt;}
.xe{left:102.894667pt;}
.xa{left:108.800000pt;}
.x1d{left:109.773333pt;}
.xd{left:112.829333pt;}
.x9{left:127.225333pt;}
.x12{left:136.218667pt;}
.xf{left:173.036000pt;}
.x14{left:181.006667pt;}
.x13{left:200.302667pt;}
.x1c{left:202.637333pt;}
.x20{left:207.673333pt;}
.x10{left:238.317333pt;}
.x5{left:239.294667pt;}
.x15{left:240.530667pt;}
.x6{left:248.069333pt;}
.x11{left:251.154667pt;}
.x3{left:255.366667pt;}
.x1f{left:284.078667pt;}
.x1{left:335.558667pt;}
.x4{left:346.441333pt;}
.x7{left:360.440000pt;}
.x17{left:367.046667pt;}
.x8{left:369.798667pt;}
.x1a{left:448.488000pt;}
.x1b{left:564.565333pt;}
.x1e{left:565.714667pt;}
.x18{left:896.114667pt;}
.x16{left:1084.920000pt;}
}




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