
    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_7bc1fe2395ba61b609d196eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_c90aef900e36f49809c8bf03.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_1b8804711315139675a3c20d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ac015ea98f6709b6a09ec84e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_d04c46839835fa95792a1fe1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;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_b9bdb81bb0e1265128acf537.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113281;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_68fe536ed2c75c25bf1a0661.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ea5fa36e1626ffa44d37a973.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8403ee4783e11f531df61bb3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eb4dea3ae1155d58467bf3bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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_01cf6ababf7e263e1801704d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687500;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_a72795332c5ffae684ea5332.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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_2e93ed36c469b0117abf75bd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.844727;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);}
.m2{transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.946200px;}
.ls33{letter-spacing:-1.295026px;}
.ls25{letter-spacing:-1.202753px;}
.ls3c{letter-spacing:-1.145477px;}
.ls27{letter-spacing:-1.116843px;}
.ls24{letter-spacing:-1.113660px;}
.ls2c{letter-spacing:-0.986382px;}
.ls28{letter-spacing:-0.945021px;}
.ls23{letter-spacing:-0.941837px;}
.ls1f{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.758160px;}
.ls40{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.706378px;}
.ls26{letter-spacing:-0.668196px;}
.ls30{letter-spacing:-0.509102px;}
.ls39{letter-spacing:-0.471544px;}
.ls22{letter-spacing:-0.470918px;}
.ls20{letter-spacing:-0.336960px;}
.ls10{letter-spacing:-0.298800px;}
.ls2d{letter-spacing:-0.295915px;}
.ls11{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.264960px;}
.ls9{letter-spacing:-0.252720px;}
.lsc{letter-spacing:-0.233280px;}
.ls8{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.191520px;}
.lsd{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.085911px;}
.ls19{letter-spacing:-0.084240px;}
.lsa{letter-spacing:-0.077760px;}
.ls12{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.054000px;}
.ls3f{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.077760px;}
.ls0{letter-spacing:0.132480px;}
.ls13{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.155520px;}
.ls6{letter-spacing:0.179280px;}
.ls1a{letter-spacing:0.216000px;}
.lse{letter-spacing:0.239040px;}
.ls17{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.336706px;}
.ls3d{letter-spacing:0.421200px;}
.ls2e{letter-spacing:0.509102px;}
.ls38{letter-spacing:0.523938px;}
.ls37{letter-spacing:0.546721px;}
.ls1c{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.763654px;}
.ls29{letter-spacing:0.945021px;}
.ls1d{letter-spacing:2.160000px;}
.ls1b{letter-spacing:2.880000px;}
.ls15{letter-spacing:3.600000px;}
.ls32{letter-spacing:4.320000px;}
.ls1e{letter-spacing:5.040000px;}
.ls3a{letter-spacing:5.047200px;}
.ls2{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.465600px;}
.ls31{letter-spacing:6.480000px;}
.ls2b{letter-spacing:7.920000px;}
.ls3e{letter-spacing:8.640000px;}
.ls35{letter-spacing:11.520000px;}
.ls16{letter-spacing:54.864000px;}
.ls18{letter-spacing:65.664000px;}
.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;}
}
.ws46{word-spacing:-43.432740px;}
.ws50{word-spacing:-28.255183px;}
.ws3{word-spacing:-26.671680px;}
.ws6d{word-spacing:-26.429760px;}
.ws57{word-spacing:-26.135971px;}
.ws5f{word-spacing:-23.334480px;}
.ws37{word-spacing:-19.944000px;}
.ws36{word-spacing:-19.800000px;}
.ws3c{word-spacing:-18.288000px;}
.ws33{word-spacing:-18.216000px;}
.ws1e{word-spacing:-18.144000px;}
.ws86{word-spacing:-18.072000px;}
.ws1f{word-spacing:-18.000000px;}
.ws6e{word-spacing:-17.928000px;}
.ws60{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws3d{word-spacing:-17.064000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-11.934000px;}
.ws20{word-spacing:-4.320000px;}
.ws72{word-spacing:-4.032000px;}
.ws16{word-spacing:-3.600000px;}
.ws15{word-spacing:-3.312000px;}
.ws3f{word-spacing:-2.880000px;}
.ws3e{word-spacing:-2.592000px;}
.ws1d{word-spacing:-2.160000px;}
.ws34{word-spacing:-1.872000px;}
.ws4f{word-spacing:-1.754785px;}
.ws51{word-spacing:-1.584000px;}
.ws27{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.152000px;}
.ws4e{word-spacing:-0.945021px;}
.ws5a{word-spacing:-0.864000px;}
.ws54{word-spacing:-0.763654px;}
.ws78{word-spacing:-0.758160px;}
.ws13{word-spacing:-0.720000px;}
.ws6b{word-spacing:-0.637841px;}
.ws43{word-spacing:-0.565736px;}
.ws55{word-spacing:-0.564537px;}
.ws6c{word-spacing:-0.523938px;}
.ws71{word-spacing:-0.504000px;}
.ws14{word-spacing:-0.432000px;}
.ws9{word-spacing:-0.421200px;}
.ws6a{word-spacing:-0.420882px;}
.ws35{word-spacing:-0.288000px;}
.ws32{word-spacing:-0.252720px;}
.wsf{word-spacing:-0.239040px;}
.ws76{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.179280px;}
.wsb{word-spacing:-0.155520px;}
.ws1a{word-spacing:-0.144000px;}
.ws83{word-spacing:-0.084240px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.054000px;}
.ws11{word-spacing:0.059760px;}
.ws12{word-spacing:0.072000px;}
.ws38{word-spacing:0.144000px;}
.wsa{word-spacing:0.155520px;}
.ws2{word-spacing:0.162000px;}
.ws80{word-spacing:0.191520px;}
.ws2f{word-spacing:0.216000px;}
.wsc{word-spacing:0.233280px;}
.ws8{word-spacing:0.252720px;}
.ws6{word-spacing:0.264960px;}
.ws18{word-spacing:0.288000px;}
.ws53{word-spacing:0.295915px;}
.wse{word-spacing:0.383040px;}
.ws62{word-spacing:0.419150px;}
.ws75{word-spacing:0.421200px;}
.ws4a{word-spacing:0.470918px;}
.ws2b{word-spacing:0.576000px;}
.ws4b{word-spacing:0.579103px;}
.ws48{word-spacing:0.648213px;}
.ws5e{word-spacing:0.706378px;}
.ws21{word-spacing:0.720000px;}
.ws7d{word-spacing:0.766080px;}
.ws4d{word-spacing:0.773199px;}
.wsd{word-spacing:0.855360px;}
.ws5d{word-spacing:0.941837px;}
.ws6f{word-spacing:0.957600px;}
.ws52{word-spacing:0.986382px;}
.ws56{word-spacing:0.998545px;}
.ws2c{word-spacing:1.008000px;}
.ws42{word-spacing:1.095120px;}
.ws4c{word-spacing:1.113660px;}
.ws73{word-spacing:1.145477px;}
.ws29{word-spacing:1.440000px;}
.ws28{word-spacing:1.728000px;}
.ws40{word-spacing:2.016000px;}
.ws3b{word-spacing:2.160000px;}
.ws47{word-spacing:2.418457px;}
.ws2a{word-spacing:2.448000px;}
.ws3a{word-spacing:2.736000px;}
.ws24{word-spacing:2.880000px;}
.ws39{word-spacing:3.168000px;}
.ws31{word-spacing:3.600000px;}
.ws2e{word-spacing:3.888000px;}
.ws59{word-spacing:4.320000px;}
.ws58{word-spacing:4.608000px;}
.ws49{word-spacing:4.896000px;}
.ws25{word-spacing:5.040000px;}
.ws2d{word-spacing:5.328000px;}
.ws79{word-spacing:5.472000px;}
.ws45{word-spacing:5.749807px;}
.ws1b{word-spacing:5.760000px;}
.ws1c{word-spacing:6.048000px;}
.ws85{word-spacing:6.336000px;}
.ws22{word-spacing:6.480000px;}
.ws23{word-spacing:6.768000px;}
.ws17{word-spacing:7.200000px;}
.ws19{word-spacing:7.488000px;}
.ws74{word-spacing:7.776000px;}
.ws30{word-spacing:7.920000px;}
.ws41{word-spacing:8.208000px;}
.ws65{word-spacing:8.640000px;}
.ws70{word-spacing:8.928000px;}
.ws5b{word-spacing:9.360000px;}
.ws5c{word-spacing:9.648000px;}
.ws44{word-spacing:9.927191px;}
.ws63{word-spacing:10.080000px;}
.ws69{word-spacing:11.520000px;}
.ws68{word-spacing:11.808000px;}
.ws64{word-spacing:13.248000px;}
.ws81{word-spacing:14.256000px;}
.ws82{word-spacing:14.688000px;}
.ws7a{word-spacing:15.408000px;}
.ws7e{word-spacing:16.416000px;}
.ws7f{word-spacing:16.848000px;}
.ws7c{word-spacing:18.720000px;}
.ws7b{word-spacing:19.008000px;}
.ws84{word-spacing:19.440000px;}
.ws77{word-spacing:20.160000px;}
.ws66{word-spacing:24.480000px;}
.ws67{word-spacing:29.376000px;}
.ws61{word-spacing:541.584361px;}
._f{margin-left:-9.072000px;}
._e{margin-left:-7.323347px;}
._6{margin-left:-4.104000px;}
._4{margin-left:-2.647800px;}
._2{margin-left:-1.063800px;}
._3{width:1.078920px;}
._7{width:3.009960px;}
._8{width:4.582440px;}
._5{width:5.817960px;}
._a{width:8.712000px;}
._d{width:10.657080px;}
._c{width:11.666160px;}
._9{width:14.716224px;}
._b{width:24.336000px;}
._1{width:94.338000px;}
._0{width:731.538000px;}
.fc7{color:rgb(0,0,255);}
.fc4{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:44.546400px;}
.fse{font-size:52.393800px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fsc{font-size:84.176400px;}
.fs4{font-size:84.240000px;}
.fs9{font-size:85.911000px;}
.fsd{font-size:91.120200px;}
.fs6{font-size:95.760000px;}
.fsa{font-size:98.638200px;}
.fs7{font-size:117.729600px;}
.fsb{font-size:127.275600px;}
.fsf{font-size:143.184600px;}
.y0{bottom:0.000000px;}
.y13b{bottom:3.240000px;}
.y9{bottom:16.200000px;}
.yf4{bottom:47.350050px;}
.y8{bottom:48.960000px;}
.y130{bottom:50.760000px;}
.yd3{bottom:63.637500px;}
.yf6{bottom:64.923750px;}
.y6{bottom:79.920000px;}
.y7{bottom:80.820000px;}
.y137{bottom:91.080000px;}
.yd2{bottom:95.456400px;}
.ya7{bottom:95.457450px;}
.ya{bottom:97.020000px;}
.y5{bottom:112.680000px;}
.ybe{bottom:121.706850px;}
.ya9{bottom:127.276350px;}
.y135{bottom:130.320000px;}
.yf8{bottom:132.124800px;}
.yf7{bottom:132.694350px;}
.ya8{bottom:139.208400px;}
.y4{bottom:145.440000px;}
.ybd{bottom:155.912100px;}
.ybb{bottom:167.844300px;}
.y81{bottom:168.300000px;}
.y19a{bottom:173.700000px;}
.y76{bottom:177.660000px;}
.yad{bottom:178.980750px;}
.yb8{bottom:179.820000px;}
.ybc{bottom:179.980500px;}
.y12c{bottom:180.180000px;}
.y69{bottom:180.360000px;}
.y9c{bottom:182.340000px;}
.y44{bottom:189.540000px;}
.y17a{bottom:191.520000px;}
.y80{bottom:192.060000px;}
.y12e{bottom:192.600000px;}
.yba{bottom:194.094750px;}
.y199{bottom:194.400000px;}
.y1ad{bottom:196.380000px;}
.y148{bottom:199.440000px;}
.yac{bottom:201.253950px;}
.y75{bottom:201.600000px;}
.y21{bottom:203.760000px;}
.y68{bottom:204.120000px;}
.y9b{bottom:206.100000px;}
.yf2{bottom:208.440000px;}
.y43{bottom:211.860000px;}
.y179{bottom:212.220000px;}
.y5b{bottom:212.760000px;}
.y198{bottom:215.100000px;}
.y1ac{bottom:218.700000px;}
.y7f{bottom:220.860000px;}
.yab{bottom:224.322600px;}
.y74{bottom:225.360000px;}
.y139{bottom:225.540000px;}
.y20{bottom:227.520000px;}
.y67{bottom:227.880000px;}
.y9a{bottom:229.860000px;}
.yf1{bottom:232.380000px;}
.y178{bottom:232.920000px;}
.ya5{bottom:233.280000px;}
.yaa{bottom:233.389500px;}
.y136{bottom:237.600000px;}
.y12d{bottom:240.660000px;}
.y1ab{bottom:241.380000px;}
.y134{bottom:242.280000px;}
.y42{bottom:246.060000px;}
.y1f{bottom:251.460000px;}
.y13a{bottom:252.540000px;}
.y109{bottom:253.080000px;}
.y99{bottom:253.620000px;}
.y73{bottom:254.160000px;}
.y66{bottom:256.680000px;}
.y197{bottom:256.860000px;}
.y1aa{bottom:263.700000px;}
.yf0{bottom:266.580000px;}
.y116{bottom:267.660000px;}
.y177{bottom:274.320000px;}
.y1e{bottom:275.220000px;}
.y41{bottom:275.400000px;}
.y108{bottom:276.840000px;}
.y196{bottom:277.560000px;}
.y98{bottom:284.046300px;}
.y1a9{bottom:286.020000px;}
.yef{bottom:288.900000px;}
.y176{bottom:295.020000px;}
.yd0{bottom:298.080000px;}
.y195{bottom:298.260000px;}
.y10b{bottom:298.302150px;}
.y1d{bottom:298.980000px;}
.y115{bottom:300.420000px;}
.y138{bottom:304.920000px;}
.y97{bottom:308.160000px;}
.y1a8{bottom:308.340000px;}
.y107{bottom:309.600000px;}
.yee{bottom:311.580000px;}
.y175{bottom:315.720000px;}
.y194{bottom:318.960000px;}
.y40{bottom:320.580000px;}
.ycf{bottom:321.840000px;}
.y1c{bottom:322.740000px;}
.y114{bottom:324.360000px;}
.y156{bottom:324.540000px;}
.y106{bottom:333.360000px;}
.yed{bottom:333.900000px;}
.y193{bottom:339.660000px;}
.y1a7{bottom:341.460000px;}
.y3f{bottom:344.340000px;}
.y155{bottom:345.240000px;}
.yce{bottom:345.600000px;}
.y1b{bottom:346.680000px;}
.y113{bottom:348.120000px;}
.y96{bottom:355.860000px;}
.yec{bottom:356.580000px;}
.y105{bottom:357.300000px;}
.y174{bottom:357.480000px;}
.y154{bottom:365.940000px;}
.y3e{bottom:368.100000px;}
.y1a{bottom:370.440000px;}
.y112{bottom:371.880000px;}
.y1a6{bottom:372.240000px;}
.ycd{bottom:375.840000px;}
.y173{bottom:378.180000px;}
.y95{bottom:379.620000px;}
.y104{bottom:381.060000px;}
.y192{bottom:381.240000px;}
.yeb{bottom:389.700000px;}
.y3d{bottom:391.860000px;}
.y19{bottom:394.200000px;}
.y111{bottom:395.640000px;}
.y172{bottom:398.880000px;}
.y191{bottom:401.940000px;}
.y94{bottom:403.380000px;}
.y153{bottom:403.560000px;}
.y103{bottom:404.820000px;}
.y3c{bottom:415.800000px;}
.y18{bottom:417.960000px;}
.y171{bottom:419.580000px;}
.yea{bottom:422.640000px;}
.ycc{bottom:423.540000px;}
.yf3{bottom:424.081500px;}
.y93{bottom:427.140000px;}
.y102{bottom:428.580000px;}
.y1a5{bottom:434.880000px;}
.ye9{bottom:446.400000px;}
.ycb{bottom:447.480000px;}
.y3b{bottom:448.560000px;}
.y17{bottom:450.900000px;}
.y110{bottom:452.340000px;}
.y1a4{bottom:455.580000px;}
.y92{bottom:457.380000px;}
.y101{bottom:461.520000px;}
.y170{bottom:462.240000px;}
.y190{bottom:464.940000px;}
.ye8{bottom:470.160000px;}
.yca{bottom:471.240000px;}
.y3a{bottom:472.320000px;}
.y10f{bottom:476.100000px;}
.y1a3{bottom:476.280000px;}
.y16{bottom:479.700000px;}
.y100{bottom:485.280000px;}
.ye7{bottom:493.920000px;}
.yc9{bottom:495.000000px;}
.y39{bottom:496.080000px;}
.y91{bottom:505.080000px;}
.y10e{bottom:508.860000px;}
.yff{bottom:509.040000px;}
.y18f{bottom:510.660000px;}
.y5a{bottom:517.860000px;}
.yc8{bottom:518.760000px;}
.y12b{bottom:522.540000px;}
.y16f{bottom:524.880000px;}
.y38{bottom:529.020000px;}
.y147{bottom:534.960000px;}
.y10d{bottom:537.660000px;}
.y1a2{bottom:538.560000px;}
.yfe{bottom:541.800000px;}
.yc7{bottom:542.520000px;}
.y16e{bottom:545.580000px;}
.y7e{bottom:546.300000px;}
.ye6{bottom:550.620000px;}
.y37{bottom:552.780000px;}
.yb7{bottom:554.760000px;}
.y12a{bottom:555.300000px;}
.y146{bottom:555.660000px;}
.y1a1{bottom:559.260000px;}
.y65{bottom:562.320000px;}
.y59{bottom:562.860000px;}
.yc6{bottom:571.320000px;}
.yd1{bottom:571.491000px;}
.y18e{bottom:573.120000px;}
.ye5{bottom:574.380000px;}
.yfd{bottom:574.740000px;}
.y145{bottom:576.360000px;}
.yb6{bottom:578.520000px;}
.y129{bottom:579.060000px;}
.y7d{bottom:579.240000px;}
.y1a0{bottom:579.960000px;}
.y36{bottom:585.540000px;}
.y16d{bottom:587.340000px;}
.y18d{bottom:593.820000px;}
.y58{bottom:595.800000px;}
.y144{bottom:597.060000px;}
.ye4{bottom:598.140000px;}
.yfc{bottom:598.500000px;}
.y19f{bottom:600.660000px;}
.yb5{bottom:602.460000px;}
.y7c{bottom:603.000000px;}
.y1bf{bottom:603.540000px;}
.y72{bottom:606.600000px;}
.y64{bottom:607.500000px;}
.y16c{bottom:608.040000px;}
.ya4{bottom:608.220000px;}
.y35{bottom:609.300000px;}
.y19e{bottom:621.360000px;}
.ye3{bottom:622.080000px;}
.y57{bottom:626.040000px;}
.yb4{bottom:626.220000px;}
.y7b{bottom:626.760000px;}
.y1be{bottom:627.300000px;}
.y16b{bottom:628.740000px;}
.y63{bottom:631.260000px;}
.ya3{bottom:631.980000px;}
.y90{bottom:633.240000px;}
.y18c{bottom:635.580000px;}
.y128{bottom:635.760000px;}
.y143{bottom:639.180000px;}
.y19d{bottom:642.060000px;}
.y34{bottom:642.240000px;}
.ye2{bottom:645.840000px;}
.y16a{bottom:649.440000px;}
.yb3{bottom:649.980000px;}
.y7a{bottom:650.520000px;}
.y1bd{bottom:651.240000px;}
.y71{bottom:651.780000px;}
.y131{bottom:653.220000px;}
.y62{bottom:655.020000px;}
.y133{bottom:655.380000px;}
.ya2{bottom:655.740000px;}
.y18b{bottom:656.280000px;}
.y12f{bottom:656.460000px;}
.yfb{bottom:656.997120px;}
.y8f{bottom:657.000000px;}
.y10a{bottom:657.046500px;}
.y33{bottom:666.000000px;}
.y127{bottom:668.520000px;}
.y169{bottom:670.140000px;}
.y56{bottom:671.760000px;}
.y1bc{bottom:675.000000px;}
.y70{bottom:675.540000px;}
.ye1{bottom:676.080000px;}
.y18a{bottom:676.980000px;}
.y61{bottom:678.780000px;}
.yb9{bottom:678.900000px;}
.ya1{bottom:679.680000px;}
.y132{bottom:680.220000px;}
.y8e{bottom:680.760000px;}
.y79{bottom:683.460000px;}
.y142{bottom:684.900000px;}
.y32{bottom:689.760000px;}
.y168{bottom:690.660000px;}
.y189{bottom:697.680000px;}
.y1bb{bottom:698.760000px;}
.y6f{bottom:699.300000px;}
.y126{bottom:701.280000px;}
.ya0{bottom:703.440000px;}
.y8d{bottom:704.520000px;}
.y78{bottom:707.220000px;}
.y60{bottom:707.580000px;}
.y167{bottom:711.360000px;}
.y31{bottom:720.540000px;}
.y6e{bottom:723.060000px;}
.ye0{bottom:723.780000px;}
.y9f{bottom:727.200000px;}
.y8c{bottom:728.460000px;}
.y1ba{bottom:731.520000px;}
.y166{bottom:732.060000px;}
.y125{bottom:734.220000px;}
.y77{bottom:736.020000px;}
.y55{bottom:737.280000px;}
.y188{bottom:739.260000px;}
.y19c{bottom:743.400000px;}
.y141{bottom:746.640000px;}
.y6d{bottom:746.820000px;}
.ydf{bottom:747.540000px;}
.y8b{bottom:752.220000px;}
.y165{bottom:752.760000px;}
.y1b9{bottom:755.460000px;}
.y9e{bottom:755.820000px;}
.y187{bottom:759.960000px;}
.y124{bottom:766.980000px;}
.y10c{bottom:768.780000px;}
.y6c{bottom:770.760000px;}
.y54{bottom:771.660000px;}
.y1b8{bottom:779.220000px;}
.yde{bottom:780.300000px;}
.y186{bottom:780.660000px;}
.y8a{bottom:784.980000px;}
.y30{bottom:786.240000px;}
.y123{bottom:790.740000px;}
.y53{bottom:793.980000px;}
.y164{bottom:795.600000px;}
.y6b{bottom:799.560000px;}
.y185{bottom:801.360000px;}
.ydd{bottom:804.240000px;}
.y89{bottom:808.740000px;}
.y2f{bottom:810.000000px;}
.y1b7{bottom:811.980000px;}
.y9d{bottom:813.240000px;}
.ya6{bottom:813.397500px;}
.y122{bottom:814.500000px;}
.y52{bottom:816.660000px;}
.y184{bottom:822.060000px;}
.ydc{bottom:828.000000px;}
.y88{bottom:832.680000px;}
.y1b6{bottom:835.740000px;}
.y51{bottom:839.340000px;}
.y2e{bottom:842.760000px;}
.y121{bottom:844.740000px;}
.y163{bottom:858.060000px;}
.y15{bottom:860.220000px;}
.ydb{bottom:860.760000px;}
.y50{bottom:862.020000px;}
.y183{bottom:863.460000px;}
.y87{bottom:865.440000px;}
.y2d{bottom:866.520000px;}
.y1b5{bottom:868.500000px;}
.y14{bottom:882.900000px;}
.y182{bottom:884.160000px;}
.yda{bottom:884.520000px;}
.y152{bottom:885.420000px;}
.y2c{bottom:890.460000px;}
.y120{bottom:892.440000px;}
.y4f{bottom:895.140000px;}
.y86{bottom:898.200000px;}
.y162{bottom:899.820000px;}
.y181{bottom:904.860000px;}
.y151{bottom:906.120000px;}
.yd9{bottom:908.460000px;}
.y13{bottom:914.040000px;}
.y2b{bottom:914.220000px;}
.yf5{bottom:915.310500px;}
.y1b4{bottom:916.200000px;}
.y161{bottom:920.520000px;}
.y85{bottom:921.960000px;}
.y11f{bottom:925.380000px;}
.y150{bottom:926.820000px;}
.y4e{bottom:929.520000px;}
.yd8{bottom:932.220000px;}
.y12{bottom:936.540000px;}
.y2a{bottom:937.980000px;}
.y160{bottom:941.220000px;}
.yc5{bottom:946.260000px;}
.y14f{bottom:947.520000px;}
.y180{bottom:947.700000px;}
.y1b3{bottom:948.960000px;}
.y11e{bottom:949.140000px;}
.y4d{bottom:951.840000px;}
.y84{bottom:954.720000px;}
.yd7{bottom:955.980000px;}
.y140{bottom:957.240000px;}
.y11{bottom:958.680000px;}
.y29{bottom:961.740000px;}
.y15f{bottom:961.920000px;}
.y14e{bottom:968.220000px;}
.yc4{bottom:970.200000px;}
.y11d{bottom:972.900000px;}
.y4c{bottom:974.160000px;}
.yd6{bottom:979.740000px;}
.y1b2{bottom:981.720000px;}
.y15e{bottom:982.620000px;}
.y28{bottom:985.680000px;}
.y83{bottom:987.660000px;}
.y13f{bottom:990.000000px;}
.yc3{bottom:993.960000px;}
.y4b{bottom:996.480000px;}
.y11c{bottom:996.660000px;}
.y10{bottom:1001.528640px;}
.y15d{bottom:1003.320000px;}
.y27{bottom:1009.440000px;}
.y14d{bottom:1009.980000px;}
.y17f{bottom:1010.160000px;}
.yd5{bottom:1012.680000px;}
.y13e{bottom:1013.940000px;}
.y5f{bottom:1015.200000px;}
.y1b1{bottom:1016.100000px;}
.yc2{bottom:1017.720000px;}
.y82{bottom:1018.440000px;}
.y4a{bottom:1018.620000px;}
.yfa{bottom:1020.240000px;}
.y15c{bottom:1024.020000px;}
.yf{bottom:1025.284320px;}
.y11b{bottom:1026.900000px;}
.y14c{bottom:1030.680000px;}
.y17e{bottom:1030.860000px;}
.y26{bottom:1033.200000px;}
.yd4{bottom:1036.440000px;}
.y1b0{bottom:1038.780000px;}
.yc1{bottom:1041.480000px;}
.y49{bottom:1042.380000px;}
.y13d{bottom:1044.000000px;}
.y15b{bottom:1044.720000px;}
.ye{bottom:1049.040000px;}
.y14b{bottom:1051.380000px;}
.y17d{bottom:1051.560000px;}
.yb2{bottom:1053.720000px;}
.y5e{bottom:1060.200000px;}
.y48{bottom:1064.700000px;}
.yc0{bottom:1065.240000px;}
.y15a{bottom:1065.420000px;}
.y25{bottom:1065.960000px;}
.yf9{bottom:1066.140000px;}
.y1af{bottom:1071.900000px;}
.y17c{bottom:1072.260000px;}
.y11a{bottom:1074.600000px;}
.yb1{bottom:1077.480000px;}
.y5d{bottom:1083.960000px;}
.y159{bottom:1086.120000px;}
.y47{bottom:1087.200000px;}
.y13c{bottom:1089.900000px;}
.y14a{bottom:1092.960000px;}
.ybf{bottom:1094.040000px;}
.y119{bottom:1098.540000px;}
.y24{bottom:1098.900000px;}
.yd{bottom:1099.975860px;}
.yb0{bottom:1101.240000px;}
.y158{bottom:1106.820000px;}
.y5c{bottom:1107.900000px;}
.y46{bottom:1109.340000px;}
.y1ae{bottom:1110.780000px;}
.y149{bottom:1113.660000px;}
.y19b{bottom:1114.020000px;}
.y118{bottom:1122.300000px;}
.yaf{bottom:1125.180000px;}
.yc{bottom:1125.353160px;}
.y23{bottom:1131.660000px;}
.y45{bottom:1133.100000px;}
.y17b{bottom:1134.720000px;}
.y157{bottom:1149.480000px;}
.yb{bottom:1150.920000px;}
.y117{bottom:1152.540000px;}
.yae{bottom:1153.800000px;}
.y6a{bottom:1155.240000px;}
.y22{bottom:1155.420000px;}
.y3{bottom:1188.180000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h12{height:31.974223px;}
.h1b{height:43.209535px;}
.h3{height:44.534180px;}
.h2{height:47.545312px;}
.ha{height:48.905156px;}
.hb{height:49.289062px;}
.h17{height:57.542461px;}
.h13{height:58.728223px;}
.h9{height:58.921875px;}
.h1a{height:59.155735px;}
.h19{height:62.289199px;}
.h4{height:63.175781px;}
.h7{height:63.635625px;}
.hd{height:65.003906px;}
.h5{height:65.698500px;}
.h14{height:67.428457px;}
.h1f{height:67.500000px;}
.h6{height:68.938594px;}
.hf{height:70.204219px;}
.he{height:76.054570px;}
.h8{height:78.331534px;}
.h11{height:80.479219px;}
.hc{height:86.455195px;}
.h15{height:87.004805px;}
.h1d{height:95.433095px;}
.h21{height:107.820000px;}
.h20{height:147.060000px;}
.h1e{height:209.338500px;}
.h16{height:236.745000px;}
.h18{height:256.276500px;}
.h10{height:357.961500px;}
.h1c{height:357.963000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:77.400000px;}
.w7{width:87.661500px;}
.w8{width:91.800000px;}
.w9{width:94.860000px;}
.wb{width:129.060000px;}
.wa{width:163.978500px;}
.w6{width:216.721500px;}
.w4{width:421.239000px;}
.w2{width:426.240000px;}
.w5{width:455.988000px;}
.w3{width:636.919500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:10.800000px;}
.x20{left:30.574800px;}
.x21{left:38.391900px;}
.x1f{left:68.203650px;}
.x1e{left:75.551400px;}
.x3{left:127.620000px;}
.x2f{left:138.420000px;}
.x1{left:139.860000px;}
.x29{left:147.054900px;}
.x30{left:149.220000px;}
.x12{left:154.620000px;}
.xe{left:161.100000px;}
.x2d{left:177.840000px;}
.x13{left:181.620000px;}
.x24{left:182.912400px;}
.x26{left:191.239350px;}
.x34{left:194.760000px;}
.x14{left:208.620000px;}
.x1d{left:220.445550px;}
.x27{left:226.723800px;}
.x35{left:230.220000px;}
.x7{left:235.800000px;}
.x36{left:241.020000px;}
.x8{left:246.772260px;}
.x22{left:247.920750px;}
.x31{left:276.300000px;}
.x37{left:277.920000px;}
.x32{left:287.100000px;}
.x38{left:288.720000px;}
.xb{left:292.146480px;}
.xa{left:293.760000px;}
.x4{left:297.180000px;}
.x25{left:371.520000px;}
.x23{left:407.776500px;}
.x33{left:427.860000px;}
.x2c{left:447.120000px;}
.x5{left:466.740000px;}
.x6{left:472.680000px;}
.x39{left:474.120000px;}
.x2{left:532.611000px;}
.xf{left:546.480000px;}
.xc{left:564.695280px;}
.x15{left:566.280000px;}
.x17{left:567.360000px;}
.x16{left:568.620000px;}
.x9{left:571.496400px;}
.x19{left:578.160000px;}
.x18{left:583.200000px;}
.xd{left:588.420000px;}
.x3c{left:616.680000px;}
.x3a{left:662.220000px;}
.x1b{left:677.520000px;}
.x1a{left:748.260000px;}
.x11{left:764.100000px;}
.x1c{left:765.360000px;}
.x2b{left:766.440000px;}
.x2a{left:769.140000px;}
.x3b{left:784.620000px;}
.x28{left:792.358920px;}
.x10{left:829.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.174400pt;}
.ls33{letter-spacing:-1.151134pt;}
.ls25{letter-spacing:-1.069114pt;}
.ls3c{letter-spacing:-1.018202pt;}
.ls27{letter-spacing:-0.992749pt;}
.ls24{letter-spacing:-0.989920pt;}
.ls2c{letter-spacing:-0.876784pt;}
.ls28{letter-spacing:-0.840019pt;}
.ls23{letter-spacing:-0.837188pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.673920pt;}
.ls40{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.627891pt;}
.ls26{letter-spacing:-0.593952pt;}
.ls30{letter-spacing:-0.452535pt;}
.ls39{letter-spacing:-0.419150pt;}
.ls22{letter-spacing:-0.418594pt;}
.ls20{letter-spacing:-0.299520pt;}
.ls10{letter-spacing:-0.265600pt;}
.ls2d{letter-spacing:-0.263035pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.235520pt;}
.ls9{letter-spacing:-0.224640pt;}
.lsc{letter-spacing:-0.207360pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.170240pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.076365pt;}
.ls19{letter-spacing:-0.074880pt;}
.lsa{letter-spacing:-0.069120pt;}
.ls12{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.048000pt;}
.ls3f{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.069120pt;}
.ls0{letter-spacing:0.117760pt;}
.ls13{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.138240pt;}
.ls6{letter-spacing:0.159360pt;}
.ls1a{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.212480pt;}
.ls17{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.299294pt;}
.ls3d{letter-spacing:0.374400pt;}
.ls2e{letter-spacing:0.452535pt;}
.ls38{letter-spacing:0.465723pt;}
.ls37{letter-spacing:0.485974pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.678803pt;}
.ls29{letter-spacing:0.840019pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls1b{letter-spacing:2.560000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls32{letter-spacing:3.840000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls3a{letter-spacing:4.486400pt;}
.ls2{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.747200pt;}
.ls31{letter-spacing:5.760000pt;}
.ls2b{letter-spacing:7.040000pt;}
.ls3e{letter-spacing:7.680000pt;}
.ls35{letter-spacing:10.240000pt;}
.ls16{letter-spacing:48.768000pt;}
.ls18{letter-spacing:58.368000pt;}
.ws46{word-spacing:-38.606880pt;}
.ws50{word-spacing:-25.115718pt;}
.ws3{word-spacing:-23.708160pt;}
.ws6d{word-spacing:-23.493120pt;}
.ws57{word-spacing:-23.231974pt;}
.ws5f{word-spacing:-20.741760pt;}
.ws37{word-spacing:-17.728000pt;}
.ws36{word-spacing:-17.600000pt;}
.ws3c{word-spacing:-16.256000pt;}
.ws33{word-spacing:-16.192000pt;}
.ws1e{word-spacing:-16.128000pt;}
.ws86{word-spacing:-16.064000pt;}
.ws1f{word-spacing:-16.000000pt;}
.ws6e{word-spacing:-15.936000pt;}
.ws60{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws3d{word-spacing:-15.168000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.608000pt;}
.ws20{word-spacing:-3.840000pt;}
.ws72{word-spacing:-3.584000pt;}
.ws16{word-spacing:-3.200000pt;}
.ws15{word-spacing:-2.944000pt;}
.ws3f{word-spacing:-2.560000pt;}
.ws3e{word-spacing:-2.304000pt;}
.ws1d{word-spacing:-1.920000pt;}
.ws34{word-spacing:-1.664000pt;}
.ws4f{word-spacing:-1.559809pt;}
.ws51{word-spacing:-1.408000pt;}
.ws27{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.024000pt;}
.ws4e{word-spacing:-0.840019pt;}
.ws5a{word-spacing:-0.768000pt;}
.ws54{word-spacing:-0.678803pt;}
.ws78{word-spacing:-0.673920pt;}
.ws13{word-spacing:-0.640000pt;}
.ws6b{word-spacing:-0.566970pt;}
.ws43{word-spacing:-0.502877pt;}
.ws55{word-spacing:-0.501811pt;}
.ws6c{word-spacing:-0.465723pt;}
.ws71{word-spacing:-0.448000pt;}
.ws14{word-spacing:-0.384000pt;}
.ws9{word-spacing:-0.374400pt;}
.ws6a{word-spacing:-0.374117pt;}
.ws35{word-spacing:-0.256000pt;}
.ws32{word-spacing:-0.224640pt;}
.wsf{word-spacing:-0.212480pt;}
.ws76{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.159360pt;}
.wsb{word-spacing:-0.138240pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws83{word-spacing:-0.074880pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.048000pt;}
.ws11{word-spacing:0.053120pt;}
.ws12{word-spacing:0.064000pt;}
.ws38{word-spacing:0.128000pt;}
.wsa{word-spacing:0.138240pt;}
.ws2{word-spacing:0.144000pt;}
.ws80{word-spacing:0.170240pt;}
.ws2f{word-spacing:0.192000pt;}
.wsc{word-spacing:0.207360pt;}
.ws8{word-spacing:0.224640pt;}
.ws6{word-spacing:0.235520pt;}
.ws18{word-spacing:0.256000pt;}
.ws53{word-spacing:0.263035pt;}
.wse{word-spacing:0.340480pt;}
.ws62{word-spacing:0.372578pt;}
.ws75{word-spacing:0.374400pt;}
.ws4a{word-spacing:0.418594pt;}
.ws2b{word-spacing:0.512000pt;}
.ws4b{word-spacing:0.514758pt;}
.ws48{word-spacing:0.576189pt;}
.ws5e{word-spacing:0.627891pt;}
.ws21{word-spacing:0.640000pt;}
.ws7d{word-spacing:0.680960pt;}
.ws4d{word-spacing:0.687288pt;}
.wsd{word-spacing:0.760320pt;}
.ws5d{word-spacing:0.837188pt;}
.ws6f{word-spacing:0.851200pt;}
.ws52{word-spacing:0.876784pt;}
.ws56{word-spacing:0.887596pt;}
.ws2c{word-spacing:0.896000pt;}
.ws42{word-spacing:0.973440pt;}
.ws4c{word-spacing:0.989920pt;}
.ws73{word-spacing:1.018202pt;}
.ws29{word-spacing:1.280000pt;}
.ws28{word-spacing:1.536000pt;}
.ws40{word-spacing:1.792000pt;}
.ws3b{word-spacing:1.920000pt;}
.ws47{word-spacing:2.149740pt;}
.ws2a{word-spacing:2.176000pt;}
.ws3a{word-spacing:2.432000pt;}
.ws24{word-spacing:2.560000pt;}
.ws39{word-spacing:2.816000pt;}
.ws31{word-spacing:3.200000pt;}
.ws2e{word-spacing:3.456000pt;}
.ws59{word-spacing:3.840000pt;}
.ws58{word-spacing:4.096000pt;}
.ws49{word-spacing:4.352000pt;}
.ws25{word-spacing:4.480000pt;}
.ws2d{word-spacing:4.736000pt;}
.ws79{word-spacing:4.864000pt;}
.ws45{word-spacing:5.110939pt;}
.ws1b{word-spacing:5.120000pt;}
.ws1c{word-spacing:5.376000pt;}
.ws85{word-spacing:5.632000pt;}
.ws22{word-spacing:5.760000pt;}
.ws23{word-spacing:6.016000pt;}
.ws17{word-spacing:6.400000pt;}
.ws19{word-spacing:6.656000pt;}
.ws74{word-spacing:6.912000pt;}
.ws30{word-spacing:7.040000pt;}
.ws41{word-spacing:7.296000pt;}
.ws65{word-spacing:7.680000pt;}
.ws70{word-spacing:7.936000pt;}
.ws5b{word-spacing:8.320000pt;}
.ws5c{word-spacing:8.576000pt;}
.ws44{word-spacing:8.824170pt;}
.ws63{word-spacing:8.960000pt;}
.ws69{word-spacing:10.240000pt;}
.ws68{word-spacing:10.496000pt;}
.ws64{word-spacing:11.776000pt;}
.ws81{word-spacing:12.672000pt;}
.ws82{word-spacing:13.056000pt;}
.ws7a{word-spacing:13.696000pt;}
.ws7e{word-spacing:14.592000pt;}
.ws7f{word-spacing:14.976000pt;}
.ws7c{word-spacing:16.640000pt;}
.ws7b{word-spacing:16.896000pt;}
.ws84{word-spacing:17.280000pt;}
.ws77{word-spacing:17.920000pt;}
.ws66{word-spacing:21.760000pt;}
.ws67{word-spacing:26.112000pt;}
.ws61{word-spacing:481.408321pt;}
._f{margin-left:-8.064000pt;}
._e{margin-left:-6.509642pt;}
._6{margin-left:-3.648000pt;}
._4{margin-left:-2.353600pt;}
._2{margin-left:-0.945600pt;}
._3{width:0.959040pt;}
._7{width:2.675520pt;}
._8{width:4.073280pt;}
._5{width:5.171520pt;}
._a{width:7.744000pt;}
._d{width:9.472960pt;}
._c{width:10.369920pt;}
._9{width:13.081088pt;}
._b{width:21.632000pt;}
._1{width:83.856000pt;}
._0{width:650.256000pt;}
.fs8{font-size:39.596800pt;}
.fse{font-size:46.572267pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fsc{font-size:74.823467pt;}
.fs4{font-size:74.880000pt;}
.fs9{font-size:76.365333pt;}
.fsd{font-size:80.995733pt;}
.fs6{font-size:85.120000pt;}
.fsa{font-size:87.678400pt;}
.fs7{font-size:104.648533pt;}
.fsb{font-size:113.133867pt;}
.fsf{font-size:127.275200pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:2.880000pt;}
.y9{bottom:14.400000pt;}
.yf4{bottom:42.088933pt;}
.y8{bottom:43.520000pt;}
.y130{bottom:45.120000pt;}
.yd3{bottom:56.566667pt;}
.yf6{bottom:57.710000pt;}
.y6{bottom:71.040000pt;}
.y7{bottom:71.840000pt;}
.y137{bottom:80.960000pt;}
.yd2{bottom:84.850133pt;}
.ya7{bottom:84.851067pt;}
.ya{bottom:86.240000pt;}
.y5{bottom:100.160000pt;}
.ybe{bottom:108.183867pt;}
.ya9{bottom:113.134533pt;}
.y135{bottom:115.840000pt;}
.yf8{bottom:117.444267pt;}
.yf7{bottom:117.950533pt;}
.ya8{bottom:123.740800pt;}
.y4{bottom:129.280000pt;}
.ybd{bottom:138.588533pt;}
.ybb{bottom:149.194933pt;}
.y81{bottom:149.600000pt;}
.y19a{bottom:154.400000pt;}
.y76{bottom:157.920000pt;}
.yad{bottom:159.094000pt;}
.yb8{bottom:159.840000pt;}
.ybc{bottom:159.982667pt;}
.y12c{bottom:160.160000pt;}
.y69{bottom:160.320000pt;}
.y9c{bottom:162.080000pt;}
.y44{bottom:168.480000pt;}
.y17a{bottom:170.240000pt;}
.y80{bottom:170.720000pt;}
.y12e{bottom:171.200000pt;}
.yba{bottom:172.528667pt;}
.y199{bottom:172.800000pt;}
.y1ad{bottom:174.560000pt;}
.y148{bottom:177.280000pt;}
.yac{bottom:178.892400pt;}
.y75{bottom:179.200000pt;}
.y21{bottom:181.120000pt;}
.y68{bottom:181.440000pt;}
.y9b{bottom:183.200000pt;}
.yf2{bottom:185.280000pt;}
.y43{bottom:188.320000pt;}
.y179{bottom:188.640000pt;}
.y5b{bottom:189.120000pt;}
.y198{bottom:191.200000pt;}
.y1ac{bottom:194.400000pt;}
.y7f{bottom:196.320000pt;}
.yab{bottom:199.397867pt;}
.y74{bottom:200.320000pt;}
.y139{bottom:200.480000pt;}
.y20{bottom:202.240000pt;}
.y67{bottom:202.560000pt;}
.y9a{bottom:204.320000pt;}
.yf1{bottom:206.560000pt;}
.y178{bottom:207.040000pt;}
.ya5{bottom:207.360000pt;}
.yaa{bottom:207.457333pt;}
.y136{bottom:211.200000pt;}
.y12d{bottom:213.920000pt;}
.y1ab{bottom:214.560000pt;}
.y134{bottom:215.360000pt;}
.y42{bottom:218.720000pt;}
.y1f{bottom:223.520000pt;}
.y13a{bottom:224.480000pt;}
.y109{bottom:224.960000pt;}
.y99{bottom:225.440000pt;}
.y73{bottom:225.920000pt;}
.y66{bottom:228.160000pt;}
.y197{bottom:228.320000pt;}
.y1aa{bottom:234.400000pt;}
.yf0{bottom:236.960000pt;}
.y116{bottom:237.920000pt;}
.y177{bottom:243.840000pt;}
.y1e{bottom:244.640000pt;}
.y41{bottom:244.800000pt;}
.y108{bottom:246.080000pt;}
.y196{bottom:246.720000pt;}
.y98{bottom:252.485600pt;}
.y1a9{bottom:254.240000pt;}
.yef{bottom:256.800000pt;}
.y176{bottom:262.240000pt;}
.yd0{bottom:264.960000pt;}
.y195{bottom:265.120000pt;}
.y10b{bottom:265.157467pt;}
.y1d{bottom:265.760000pt;}
.y115{bottom:267.040000pt;}
.y138{bottom:271.040000pt;}
.y97{bottom:273.920000pt;}
.y1a8{bottom:274.080000pt;}
.y107{bottom:275.200000pt;}
.yee{bottom:276.960000pt;}
.y175{bottom:280.640000pt;}
.y194{bottom:283.520000pt;}
.y40{bottom:284.960000pt;}
.ycf{bottom:286.080000pt;}
.y1c{bottom:286.880000pt;}
.y114{bottom:288.320000pt;}
.y156{bottom:288.480000pt;}
.y106{bottom:296.320000pt;}
.yed{bottom:296.800000pt;}
.y193{bottom:301.920000pt;}
.y1a7{bottom:303.520000pt;}
.y3f{bottom:306.080000pt;}
.y155{bottom:306.880000pt;}
.yce{bottom:307.200000pt;}
.y1b{bottom:308.160000pt;}
.y113{bottom:309.440000pt;}
.y96{bottom:316.320000pt;}
.yec{bottom:316.960000pt;}
.y105{bottom:317.600000pt;}
.y174{bottom:317.760000pt;}
.y154{bottom:325.280000pt;}
.y3e{bottom:327.200000pt;}
.y1a{bottom:329.280000pt;}
.y112{bottom:330.560000pt;}
.y1a6{bottom:330.880000pt;}
.ycd{bottom:334.080000pt;}
.y173{bottom:336.160000pt;}
.y95{bottom:337.440000pt;}
.y104{bottom:338.720000pt;}
.y192{bottom:338.880000pt;}
.yeb{bottom:346.400000pt;}
.y3d{bottom:348.320000pt;}
.y19{bottom:350.400000pt;}
.y111{bottom:351.680000pt;}
.y172{bottom:354.560000pt;}
.y191{bottom:357.280000pt;}
.y94{bottom:358.560000pt;}
.y153{bottom:358.720000pt;}
.y103{bottom:359.840000pt;}
.y3c{bottom:369.600000pt;}
.y18{bottom:371.520000pt;}
.y171{bottom:372.960000pt;}
.yea{bottom:375.680000pt;}
.ycc{bottom:376.480000pt;}
.yf3{bottom:376.961333pt;}
.y93{bottom:379.680000pt;}
.y102{bottom:380.960000pt;}
.y1a5{bottom:386.560000pt;}
.ye9{bottom:396.800000pt;}
.ycb{bottom:397.760000pt;}
.y3b{bottom:398.720000pt;}
.y17{bottom:400.800000pt;}
.y110{bottom:402.080000pt;}
.y1a4{bottom:404.960000pt;}
.y92{bottom:406.560000pt;}
.y101{bottom:410.240000pt;}
.y170{bottom:410.880000pt;}
.y190{bottom:413.280000pt;}
.ye8{bottom:417.920000pt;}
.yca{bottom:418.880000pt;}
.y3a{bottom:419.840000pt;}
.y10f{bottom:423.200000pt;}
.y1a3{bottom:423.360000pt;}
.y16{bottom:426.400000pt;}
.y100{bottom:431.360000pt;}
.ye7{bottom:439.040000pt;}
.yc9{bottom:440.000000pt;}
.y39{bottom:440.960000pt;}
.y91{bottom:448.960000pt;}
.y10e{bottom:452.320000pt;}
.yff{bottom:452.480000pt;}
.y18f{bottom:453.920000pt;}
.y5a{bottom:460.320000pt;}
.yc8{bottom:461.120000pt;}
.y12b{bottom:464.480000pt;}
.y16f{bottom:466.560000pt;}
.y38{bottom:470.240000pt;}
.y147{bottom:475.520000pt;}
.y10d{bottom:477.920000pt;}
.y1a2{bottom:478.720000pt;}
.yfe{bottom:481.600000pt;}
.yc7{bottom:482.240000pt;}
.y16e{bottom:484.960000pt;}
.y7e{bottom:485.600000pt;}
.ye6{bottom:489.440000pt;}
.y37{bottom:491.360000pt;}
.yb7{bottom:493.120000pt;}
.y12a{bottom:493.600000pt;}
.y146{bottom:493.920000pt;}
.y1a1{bottom:497.120000pt;}
.y65{bottom:499.840000pt;}
.y59{bottom:500.320000pt;}
.yc6{bottom:507.840000pt;}
.yd1{bottom:507.992000pt;}
.y18e{bottom:509.440000pt;}
.ye5{bottom:510.560000pt;}
.yfd{bottom:510.880000pt;}
.y145{bottom:512.320000pt;}
.yb6{bottom:514.240000pt;}
.y129{bottom:514.720000pt;}
.y7d{bottom:514.880000pt;}
.y1a0{bottom:515.520000pt;}
.y36{bottom:520.480000pt;}
.y16d{bottom:522.080000pt;}
.y18d{bottom:527.840000pt;}
.y58{bottom:529.600000pt;}
.y144{bottom:530.720000pt;}
.ye4{bottom:531.680000pt;}
.yfc{bottom:532.000000pt;}
.y19f{bottom:533.920000pt;}
.yb5{bottom:535.520000pt;}
.y7c{bottom:536.000000pt;}
.y1bf{bottom:536.480000pt;}
.y72{bottom:539.200000pt;}
.y64{bottom:540.000000pt;}
.y16c{bottom:540.480000pt;}
.ya4{bottom:540.640000pt;}
.y35{bottom:541.600000pt;}
.y19e{bottom:552.320000pt;}
.ye3{bottom:552.960000pt;}
.y57{bottom:556.480000pt;}
.yb4{bottom:556.640000pt;}
.y7b{bottom:557.120000pt;}
.y1be{bottom:557.600000pt;}
.y16b{bottom:558.880000pt;}
.y63{bottom:561.120000pt;}
.ya3{bottom:561.760000pt;}
.y90{bottom:562.880000pt;}
.y18c{bottom:564.960000pt;}
.y128{bottom:565.120000pt;}
.y143{bottom:568.160000pt;}
.y19d{bottom:570.720000pt;}
.y34{bottom:570.880000pt;}
.ye2{bottom:574.080000pt;}
.y16a{bottom:577.280000pt;}
.yb3{bottom:577.760000pt;}
.y7a{bottom:578.240000pt;}
.y1bd{bottom:578.880000pt;}
.y71{bottom:579.360000pt;}
.y131{bottom:580.640000pt;}
.y62{bottom:582.240000pt;}
.y133{bottom:582.560000pt;}
.ya2{bottom:582.880000pt;}
.y18b{bottom:583.360000pt;}
.y12f{bottom:583.520000pt;}
.yfb{bottom:583.997440pt;}
.y8f{bottom:584.000000pt;}
.y10a{bottom:584.041333pt;}
.y33{bottom:592.000000pt;}
.y127{bottom:594.240000pt;}
.y169{bottom:595.680000pt;}
.y56{bottom:597.120000pt;}
.y1bc{bottom:600.000000pt;}
.y70{bottom:600.480000pt;}
.ye1{bottom:600.960000pt;}
.y18a{bottom:601.760000pt;}
.y61{bottom:603.360000pt;}
.yb9{bottom:603.466667pt;}
.ya1{bottom:604.160000pt;}
.y132{bottom:604.640000pt;}
.y8e{bottom:605.120000pt;}
.y79{bottom:607.520000pt;}
.y142{bottom:608.800000pt;}
.y32{bottom:613.120000pt;}
.y168{bottom:613.920000pt;}
.y189{bottom:620.160000pt;}
.y1bb{bottom:621.120000pt;}
.y6f{bottom:621.600000pt;}
.y126{bottom:623.360000pt;}
.ya0{bottom:625.280000pt;}
.y8d{bottom:626.240000pt;}
.y78{bottom:628.640000pt;}
.y60{bottom:628.960000pt;}
.y167{bottom:632.320000pt;}
.y31{bottom:640.480000pt;}
.y6e{bottom:642.720000pt;}
.ye0{bottom:643.360000pt;}
.y9f{bottom:646.400000pt;}
.y8c{bottom:647.520000pt;}
.y1ba{bottom:650.240000pt;}
.y166{bottom:650.720000pt;}
.y125{bottom:652.640000pt;}
.y77{bottom:654.240000pt;}
.y55{bottom:655.360000pt;}
.y188{bottom:657.120000pt;}
.y19c{bottom:660.800000pt;}
.y141{bottom:663.680000pt;}
.y6d{bottom:663.840000pt;}
.ydf{bottom:664.480000pt;}
.y8b{bottom:668.640000pt;}
.y165{bottom:669.120000pt;}
.y1b9{bottom:671.520000pt;}
.y9e{bottom:671.840000pt;}
.y187{bottom:675.520000pt;}
.y124{bottom:681.760000pt;}
.y10c{bottom:683.360000pt;}
.y6c{bottom:685.120000pt;}
.y54{bottom:685.920000pt;}
.y1b8{bottom:692.640000pt;}
.yde{bottom:693.600000pt;}
.y186{bottom:693.920000pt;}
.y8a{bottom:697.760000pt;}
.y30{bottom:698.880000pt;}
.y123{bottom:702.880000pt;}
.y53{bottom:705.760000pt;}
.y164{bottom:707.200000pt;}
.y6b{bottom:710.720000pt;}
.y185{bottom:712.320000pt;}
.ydd{bottom:714.880000pt;}
.y89{bottom:718.880000pt;}
.y2f{bottom:720.000000pt;}
.y1b7{bottom:721.760000pt;}
.y9d{bottom:722.880000pt;}
.ya6{bottom:723.020000pt;}
.y122{bottom:724.000000pt;}
.y52{bottom:725.920000pt;}
.y184{bottom:730.720000pt;}
.ydc{bottom:736.000000pt;}
.y88{bottom:740.160000pt;}
.y1b6{bottom:742.880000pt;}
.y51{bottom:746.080000pt;}
.y2e{bottom:749.120000pt;}
.y121{bottom:750.880000pt;}
.y163{bottom:762.720000pt;}
.y15{bottom:764.640000pt;}
.ydb{bottom:765.120000pt;}
.y50{bottom:766.240000pt;}
.y183{bottom:767.520000pt;}
.y87{bottom:769.280000pt;}
.y2d{bottom:770.240000pt;}
.y1b5{bottom:772.000000pt;}
.y14{bottom:784.800000pt;}
.y182{bottom:785.920000pt;}
.yda{bottom:786.240000pt;}
.y152{bottom:787.040000pt;}
.y2c{bottom:791.520000pt;}
.y120{bottom:793.280000pt;}
.y4f{bottom:795.680000pt;}
.y86{bottom:798.400000pt;}
.y162{bottom:799.840000pt;}
.y181{bottom:804.320000pt;}
.y151{bottom:805.440000pt;}
.yd9{bottom:807.520000pt;}
.y13{bottom:812.480000pt;}
.y2b{bottom:812.640000pt;}
.yf5{bottom:813.609333pt;}
.y1b4{bottom:814.400000pt;}
.y161{bottom:818.240000pt;}
.y85{bottom:819.520000pt;}
.y11f{bottom:822.560000pt;}
.y150{bottom:823.840000pt;}
.y4e{bottom:826.240000pt;}
.yd8{bottom:828.640000pt;}
.y12{bottom:832.480000pt;}
.y2a{bottom:833.760000pt;}
.y160{bottom:836.640000pt;}
.yc5{bottom:841.120000pt;}
.y14f{bottom:842.240000pt;}
.y180{bottom:842.400000pt;}
.y1b3{bottom:843.520000pt;}
.y11e{bottom:843.680000pt;}
.y4d{bottom:846.080000pt;}
.y84{bottom:848.640000pt;}
.yd7{bottom:849.760000pt;}
.y140{bottom:850.880000pt;}
.y11{bottom:852.160000pt;}
.y29{bottom:854.880000pt;}
.y15f{bottom:855.040000pt;}
.y14e{bottom:860.640000pt;}
.yc4{bottom:862.400000pt;}
.y11d{bottom:864.800000pt;}
.y4c{bottom:865.920000pt;}
.yd6{bottom:870.880000pt;}
.y1b2{bottom:872.640000pt;}
.y15e{bottom:873.440000pt;}
.y28{bottom:876.160000pt;}
.y83{bottom:877.920000pt;}
.y13f{bottom:880.000000pt;}
.yc3{bottom:883.520000pt;}
.y4b{bottom:885.760000pt;}
.y11c{bottom:885.920000pt;}
.y10{bottom:890.247680pt;}
.y15d{bottom:891.840000pt;}
.y27{bottom:897.280000pt;}
.y14d{bottom:897.760000pt;}
.y17f{bottom:897.920000pt;}
.yd5{bottom:900.160000pt;}
.y13e{bottom:901.280000pt;}
.y5f{bottom:902.400000pt;}
.y1b1{bottom:903.200000pt;}
.yc2{bottom:904.640000pt;}
.y82{bottom:905.280000pt;}
.y4a{bottom:905.440000pt;}
.yfa{bottom:906.880000pt;}
.y15c{bottom:910.240000pt;}
.yf{bottom:911.363840pt;}
.y11b{bottom:912.800000pt;}
.y14c{bottom:916.160000pt;}
.y17e{bottom:916.320000pt;}
.y26{bottom:918.400000pt;}
.yd4{bottom:921.280000pt;}
.y1b0{bottom:923.360000pt;}
.yc1{bottom:925.760000pt;}
.y49{bottom:926.560000pt;}
.y13d{bottom:928.000000pt;}
.y15b{bottom:928.640000pt;}
.ye{bottom:932.480000pt;}
.y14b{bottom:934.560000pt;}
.y17d{bottom:934.720000pt;}
.yb2{bottom:936.640000pt;}
.y5e{bottom:942.400000pt;}
.y48{bottom:946.400000pt;}
.yc0{bottom:946.880000pt;}
.y15a{bottom:947.040000pt;}
.y25{bottom:947.520000pt;}
.yf9{bottom:947.680000pt;}
.y1af{bottom:952.800000pt;}
.y17c{bottom:953.120000pt;}
.y11a{bottom:955.200000pt;}
.yb1{bottom:957.760000pt;}
.y5d{bottom:963.520000pt;}
.y159{bottom:965.440000pt;}
.y47{bottom:966.400000pt;}
.y13c{bottom:968.800000pt;}
.y14a{bottom:971.520000pt;}
.ybf{bottom:972.480000pt;}
.y119{bottom:976.480000pt;}
.y24{bottom:976.800000pt;}
.yd{bottom:977.756320pt;}
.yb0{bottom:978.880000pt;}
.y158{bottom:983.840000pt;}
.y5c{bottom:984.800000pt;}
.y46{bottom:986.080000pt;}
.y1ae{bottom:987.360000pt;}
.y149{bottom:989.920000pt;}
.y19b{bottom:990.240000pt;}
.y118{bottom:997.600000pt;}
.yaf{bottom:1000.160000pt;}
.yc{bottom:1000.313920pt;}
.y23{bottom:1005.920000pt;}
.y45{bottom:1007.200000pt;}
.y17b{bottom:1008.640000pt;}
.y157{bottom:1021.760000pt;}
.yb{bottom:1023.040000pt;}
.y117{bottom:1024.480000pt;}
.yae{bottom:1025.600000pt;}
.y6a{bottom:1026.880000pt;}
.y22{bottom:1027.040000pt;}
.y3{bottom:1056.160000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h12{height:28.421531pt;}
.h1b{height:38.408476pt;}
.h3{height:39.585938pt;}
.h2{height:42.262500pt;}
.ha{height:43.471250pt;}
.hb{height:43.812500pt;}
.h17{height:51.148854pt;}
.h13{height:52.202865pt;}
.h9{height:52.375000pt;}
.h1a{height:52.582876pt;}
.h19{height:55.368177pt;}
.h4{height:56.156250pt;}
.h7{height:56.565000pt;}
.hd{height:57.781250pt;}
.h5{height:58.398667pt;}
.h14{height:59.936406pt;}
.h1f{height:60.000000pt;}
.h6{height:61.278750pt;}
.hf{height:62.403750pt;}
.he{height:67.604062pt;}
.h8{height:69.628030pt;}
.h11{height:71.537083pt;}
.hc{height:76.849063pt;}
.h15{height:77.337604pt;}
.h1d{height:84.829418pt;}
.h21{height:95.840000pt;}
.h20{height:130.720000pt;}
.h1e{height:186.078667pt;}
.h16{height:210.440000pt;}
.h18{height:227.801333pt;}
.h10{height:318.188000pt;}
.h1c{height:318.189333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:68.800000pt;}
.w7{width:77.921333pt;}
.w8{width:81.600000pt;}
.w9{width:84.320000pt;}
.wb{width:114.720000pt;}
.wa{width:145.758667pt;}
.w6{width:192.641333pt;}
.w4{width:374.434667pt;}
.w2{width:378.880000pt;}
.w5{width:405.322667pt;}
.w3{width:566.150667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:9.600000pt;}
.x20{left:27.177600pt;}
.x21{left:34.126133pt;}
.x1f{left:60.625467pt;}
.x1e{left:67.156800pt;}
.x3{left:113.440000pt;}
.x2f{left:123.040000pt;}
.x1{left:124.320000pt;}
.x29{left:130.715467pt;}
.x30{left:132.640000pt;}
.x12{left:137.440000pt;}
.xe{left:143.200000pt;}
.x2d{left:158.080000pt;}
.x13{left:161.440000pt;}
.x24{left:162.588800pt;}
.x26{left:169.990533pt;}
.x34{left:173.120000pt;}
.x14{left:185.440000pt;}
.x1d{left:195.951600pt;}
.x27{left:201.532267pt;}
.x35{left:204.640000pt;}
.x7{left:209.600000pt;}
.x36{left:214.240000pt;}
.x8{left:219.353120pt;}
.x22{left:220.374000pt;}
.x31{left:245.600000pt;}
.x37{left:247.040000pt;}
.x32{left:255.200000pt;}
.x38{left:256.640000pt;}
.xb{left:259.685760pt;}
.xa{left:261.120000pt;}
.x4{left:264.160000pt;}
.x25{left:330.240000pt;}
.x23{left:362.468000pt;}
.x33{left:380.320000pt;}
.x2c{left:397.440000pt;}
.x5{left:414.880000pt;}
.x6{left:420.160000pt;}
.x39{left:421.440000pt;}
.x2{left:473.432000pt;}
.xf{left:485.760000pt;}
.xc{left:501.951360pt;}
.x15{left:503.360000pt;}
.x17{left:504.320000pt;}
.x16{left:505.440000pt;}
.x9{left:507.996800pt;}
.x19{left:513.920000pt;}
.x18{left:518.400000pt;}
.xd{left:523.040000pt;}
.x3c{left:548.160000pt;}
.x3a{left:588.640000pt;}
.x1b{left:602.240000pt;}
.x1a{left:665.120000pt;}
.x11{left:679.200000pt;}
.x1c{left:680.320000pt;}
.x2b{left:681.280000pt;}
.x2a{left:683.680000pt;}
.x3b{left:697.440000pt;}
.x28{left:704.319040pt;}
.x10{left:736.960000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  