
    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_b3b93cd52ce05f4c408a92f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_e0d0a05c53e92e8fc282fcf9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979004;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_1c8928ba6af1fb1e872480f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963379;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_7f2ea3b3a89a63cf7f877e55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963379;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_4e0a1d72a2002580c41a01a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_e6a0ef8bb4392c61562d5c8a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_9cee61c06ffc51a3b91cc287.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_f458c47064e83f89596aad2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_b8f8f92195d8e714bfe07236.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_29a3f4c3bf5564f16f1f0551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_0a3ed7c60e19bf57608cd80f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_66aa8077a5f219942b01e794.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.983398;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_4384a9c1bb89c16cc14e2b49.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.983398;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_86d69c9aee24fa46e93f2187.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.859375;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_27c65a05f93578073baa8f8e.woff2')format("woff");}.fff{font-family:fff;line-height:0.940918;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_34f9d00220792100e03b93d3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.202148;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_6f022b2e92b82e5cafb5a133.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-70.560000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls3a{letter-spacing:-12.120000px;}
.ls56{letter-spacing:-10.200000px;}
.ls27{letter-spacing:-1.440000px;}
.ls26{letter-spacing:-0.936000px;}
.ls41{letter-spacing:-0.852000px;}
.ls31{letter-spacing:-0.768000px;}
.ls25{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.702000px;}
.ls2e{letter-spacing:-0.690000px;}
.ls4a{letter-spacing:-0.648000px;}
.ls2a{letter-spacing:-0.587400px;}
.ls40{letter-spacing:-0.529800px;}
.ls32{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.450600px;}
.ls42{letter-spacing:-0.366000px;}
.ls2b{letter-spacing:-0.348600px;}
.ls57{letter-spacing:-0.322800px;}
.ls20{letter-spacing:-0.313200px;}
.ls49{letter-spacing:-0.310800px;}
.ls16{letter-spacing:-0.302400px;}
.ls21{letter-spacing:-0.295200px;}
.ls29{letter-spacing:-0.291000px;}
.ls7{letter-spacing:-0.238800px;}
.ls24{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.207600px;}
.ls60{letter-spacing:-0.198600px;}
.ls3f{letter-spacing:-0.193200px;}
.ls17{letter-spacing:-0.181200px;}
.ls3e{letter-spacing:-0.164400px;}
.ls53{letter-spacing:-0.147600px;}
.ls2d{letter-spacing:-0.132600px;}
.ls54{letter-spacing:-0.126000px;}
.ls45{letter-spacing:-0.115200px;}
.ls51{letter-spacing:-0.109200px;}
.ls59{letter-spacing:-0.102000px;}
.ls38{letter-spacing:-0.048960px;}
.ls5f{letter-spacing:-0.025920px;}
.ls1{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.008640px;}
.ls55{letter-spacing:0.015120px;}
.ls39{letter-spacing:0.020160px;}
.ls22{letter-spacing:0.069000px;}
.ls2{letter-spacing:0.072000px;}
.ls3d{letter-spacing:0.075000px;}
.ls5a{letter-spacing:0.083400px;}
.ls5{letter-spacing:0.085200px;}
.ls6{letter-spacing:0.087000px;}
.ls18{letter-spacing:0.123000px;}
.ls46{letter-spacing:0.129600px;}
.ls5c{letter-spacing:0.132480px;}
.ls2f{letter-spacing:0.132600px;}
.ls47{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.149760px;}
.ls4d{letter-spacing:0.150000px;}
.ls58{letter-spacing:0.177600px;}
.ls50{letter-spacing:0.208200px;}
.ls19{letter-spacing:0.216000px;}
.ls5d{letter-spacing:0.244800px;}
.ls28{letter-spacing:0.247800px;}
.ls4{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.256200px;}
.ls5e{letter-spacing:0.265200px;}
.ls3{letter-spacing:0.288000px;}
.ls52{letter-spacing:0.309000px;}
.ls3b{letter-spacing:0.354000px;}
.ls8{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.371400px;}
.ls1c{letter-spacing:0.391680px;}
.ls36{letter-spacing:0.672000px;}
.ls44{letter-spacing:0.869760px;}
.ls34{letter-spacing:2.309760px;}
.ls3c{letter-spacing:5.189760px;}
.ls1e{letter-spacing:5.909760px;}
.ls48{letter-spacing:8.069760px;}
.ls1a{letter-spacing:10.229760px;}
.ls43{letter-spacing:13.829760px;}
.ls4b{letter-spacing:15.989760px;}
.ls4f{letter-spacing:16.829280px;}
.ls4e{letter-spacing:17.549280px;}
.ls1b{letter-spacing:18.869760px;}
.ls33{letter-spacing:21.029760px;}
.ls1d{letter-spacing:29.825280px;}
.ls1f{letter-spacing:56.465280px;}
.ls0{letter-spacing:805.260000px;}
.ls5b{letter-spacing:850.794240px;}
.lsb{letter-spacing:1661.340000px;}
.lsd{letter-spacing:1858.620000px;}
.lsf{letter-spacing:1888.860000px;}
.ls11{letter-spacing:2063.100000px;}
.lsc{letter-spacing:2200.080000px;}
.ls10{letter-spacing:2220.240000px;}
.ls12{letter-spacing:2267.040000px;}
.ls14{letter-spacing:2352.000000px;}
.lse{letter-spacing:2359.920000px;}
.ls9{letter-spacing:2400.960000px;}
.lsa{letter-spacing:2447.760000px;}
.ls13{letter-spacing:2480.160000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-144.000000px;}
.ws14{word-spacing:-66.240000px;}
.ws7{word-spacing:-48.240000px;}
.ws1{word-spacing:-32.904000px;}
.ws2{word-spacing:-32.868000px;}
.ws3{word-spacing:-29.006520px;}
.ws4{word-spacing:-28.680720px;}
.ws8{word-spacing:-19.161240px;}
.wsf{word-spacing:-19.038240px;}
.ws2a{word-spacing:-18.305520px;}
.wsa{word-spacing:-16.488000px;}
.ws9{word-spacing:-16.272000px;}
.ws32{word-spacing:-16.056000px;}
.ws1e{word-spacing:-15.341640px;}
.ws1f{word-spacing:-15.324240px;}
.ws35{word-spacing:-15.235440px;}
.ws15{word-spacing:-15.226440px;}
.ws33{word-spacing:-15.215040px;}
.ws27{word-spacing:-15.102840px;}
.ws25{word-spacing:-15.099840px;}
.ws20{word-spacing:-15.045240px;}
.ws1d{word-spacing:-14.990400px;}
.ws1b{word-spacing:-14.978880px;}
.ws13{word-spacing:-14.970240px;}
.ws36{word-spacing:-14.944320px;}
.ws1c{word-spacing:-14.921280px;}
.ws34{word-spacing:-14.861040px;}
.ws24{word-spacing:-14.855040px;}
.ws21{word-spacing:-14.805840px;}
.ws22{word-spacing:-14.777040px;}
.ws37{word-spacing:-14.771640px;}
.ws29{word-spacing:-14.762640px;}
.ws10{word-spacing:-14.754240px;}
.ws16{word-spacing:-14.679240px;}
.ws26{word-spacing:-14.659440px;}
.ws17{word-spacing:-14.621640px;}
.ws23{word-spacing:-14.604240px;}
.ws1a{word-spacing:-14.506440px;}
.ws28{word-spacing:-14.322240px;}
.ws18{word-spacing:-14.280240px;}
.ws19{word-spacing:-14.268240px;}
.ws11{word-spacing:-14.034240px;}
.ws2b{word-spacing:-13.814760px;}
.ws6{word-spacing:-13.229520px;}
.ws31{word-spacing:-11.110440px;}
.ws30{word-spacing:-11.079840px;}
.ws2e{word-spacing:-10.917360px;}
.wsc{word-spacing:-10.902240px;}
.ws2d{word-spacing:-10.776240px;}
.ws2c{word-spacing:-10.754640px;}
.wse{word-spacing:-10.607040px;}
.wsd{word-spacing:-10.589040px;}
.ws2f{word-spacing:-10.579440px;}
.ws12{word-spacing:-9.437760px;}
.wsb{word-spacing:-6.834240px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-17.315520px;}
._1b{margin-left:-12.247680px;}
._1e{margin-left:-9.896640px;}
._5{margin-left:-3.456000px;}
._1{margin-left:-2.184000px;}
._3{margin-left:-1.008000px;}
._2{width:1.332000px;}
._f{width:2.443680px;}
._1a{width:4.239360px;}
._19{width:5.770320px;}
._11{width:6.955200px;}
._7{width:8.222160px;}
._6{width:9.440880px;}
._15{width:10.584480px;}
._13{width:11.896320px;}
._12{width:12.997440px;}
._14{width:15.972000px;}
._10{width:17.347680px;}
._e{width:18.679680px;}
._8{width:20.600640px;}
._9{width:21.722880px;}
._18{width:23.798400px;}
._17{width:25.798800px;}
._16{width:27.422400px;}
._c{width:29.557440px;}
._d{width:31.277280px;}
._1c{width:33.120000px;}
._a{width:34.368960px;}
._b{width:35.600400px;}
._1d{width:36.756480px;}
._1f{width:195.074640px;}
._20{width:848.028000px;}
._0{width:1573.212000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(75,172,198);}
.fc3{color:transparent;}
.fc4{color:rgb(255,192,0);}
.fc2{color:rgb(241,194,50);}
.fc8{color:rgb(33,33,33);}
.fc7{color:rgb(32,32,32);}
.fc1{color:rgb(182,182,182);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:12.240000px;}
.fs13{font-size:15.120000px;}
.fsf{font-size:18.000000px;}
.fse{font-size:23.760000px;}
.fsb{font-size:27.360000px;}
.fs9{font-size:30.240000px;}
.fs12{font-size:33.120000px;}
.fs10{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs11{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsd{font-size:69.120000px;}
.fs8{font-size:72.000000px;}
.fs14{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs15{font-size:113.760000px;}
.fs3{font-size:144.000000px;}
.y1b{bottom:-13.140000px;}
.y0{bottom:0.000000px;}
.y170{bottom:3.240000px;}
.y1a{bottom:3.600000px;}
.y30{bottom:4.500000px;}
.y1d{bottom:4.860000px;}
.y16b{bottom:6.480000px;}
.y153{bottom:9.540000px;}
.y141{bottom:15.840000px;}
.y16f{bottom:18.000000px;}
.y165{bottom:19.080000px;}
.y120{bottom:21.060000px;}
.y19{bottom:21.240000px;}
.y143{bottom:24.660000px;}
.y152{bottom:26.460000px;}
.y15e{bottom:26.640000px;}
.y172{bottom:30.240000px;}
.y140{bottom:31.860000px;}
.y16e{bottom:32.580000px;}
.y164{bottom:33.660000px;}
.y2f{bottom:34.560000px;}
.y16a{bottom:37.845000px;}
.y177{bottom:39.420000px;}
.y15d{bottom:43.380000px;}
.y134{bottom:43.740000px;}
.y142{bottom:46.260000px;}
.y13f{bottom:46.980000px;}
.y147{bottom:47.160000px;}
.y149{bottom:47.340000px;}
.y163{bottom:50.400000px;}
.y2e{bottom:50.580000px;}
.y151{bottom:52.785000px;}
.y169{bottom:54.765000px;}
.y1c{bottom:55.800000px;}
.y133{bottom:60.480000px;}
.y174{bottom:60.690000px;}
.y1f{bottom:60.840000px;}
.y176{bottom:61.560000px;}
.y16d{bottom:61.920000px;}
.y146{bottom:63.900000px;}
.y148{bottom:64.080000px;}
.y13e{bottom:64.260000px;}
.y167{bottom:64.305000px;}
.y15c{bottom:69.660000px;}
.y168{bottom:71.685000px;}
.y132{bottom:77.760000px;}
.y150{bottom:78.885000px;}
.yca{bottom:79.020000px;}
.y137{bottom:79.380000px;}
.y14a{bottom:80.820000px;}
.y13a{bottom:80.850000px;}
.y14e{bottom:80.865000px;}
.y145{bottom:81.000000px;}
.y13d{bottom:81.030000px;}
.y96{bottom:81.540000px;}
.y13b{bottom:83.190000px;}
.yb1{bottom:84.780000px;}
.y19e{bottom:86.220000px;}
.y15b{bottom:86.400000px;}
.y131{bottom:94.320000px;}
.y14f{bottom:95.805000px;}
.y15f{bottom:95.940000px;}
.y12f{bottom:96.480000px;}
.y14d{bottom:96.525000px;}
.y136{bottom:96.660000px;}
.y13c{bottom:97.590000px;}
.y139{bottom:97.770000px;}
.y14c{bottom:97.965000px;}
.yee{bottom:100.440000px;}
.y71{bottom:103.680000px;}
.y10b{bottom:106.920000px;}
.y11a{bottom:107.280000px;}
.yc9{bottom:107.460000px;}
.y130{bottom:111.240000px;}
.y95{bottom:111.780000px;}
.y15a{bottom:112.680000px;}
.y19d{bottom:113.040000px;}
.y135{bottom:113.220000px;}
.y12e{bottom:113.400000px;}
.y156{bottom:114.660000px;}
.yb0{bottom:115.020000px;}
.y51{bottom:115.740000px;}
.y158{bottom:122.220000px;}
.y70{bottom:123.300000px;}
.y159{bottom:129.420000px;}
.yed{bottom:130.680000px;}
.y155{bottom:131.580000px;}
.y157{bottom:136.800000px;}
.y50{bottom:136.980000px;}
.y10a{bottom:137.160000px;}
.y119{bottom:137.340000px;}
.yc8{bottom:137.700000px;}
.y19c{bottom:139.860000px;}
.y94{bottom:142.020000px;}
.y6f{bottom:143.460000px;}
.yaf{bottom:145.260000px;}
.yec{bottom:160.920000px;}
.y19b{bottom:166.680000px;}
.y4f{bottom:167.220000px;}
.y109{bottom:167.400000px;}
.y118{bottom:167.580000px;}
.yc7{bottom:167.940000px;}
.y93{bottom:172.080000px;}
.y6e{bottom:175.320000px;}
.yae{bottom:175.500000px;}
.yeb{bottom:191.160000px;}
.y19a{bottom:193.500000px;}
.y17{bottom:197.640000px;}
.y117{bottom:197.820000px;}
.yc6{bottom:198.000000px;}
.y4e{bottom:198.360000px;}
.y92{bottom:202.320000px;}
.yad{bottom:205.740000px;}
.y6d{bottom:209.340000px;}
.y199{bottom:220.530000px;}
.yea{bottom:221.430000px;}
.y108{bottom:227.730000px;}
.y116{bottom:228.090000px;}
.yc5{bottom:228.270000px;}
.y4d{bottom:228.630000px;}
.y91{bottom:232.590000px;}
.yac{bottom:236.010000px;}
.y6c{bottom:239.610000px;}
.y154{bottom:245.730000px;}
.y198{bottom:247.350000px;}
.ye9{bottom:251.670000px;}
.y90{bottom:252.210000px;}
.y107{bottom:257.970000px;}
.y115{bottom:258.330000px;}
.yc4{bottom:258.510000px;}
.y4c{bottom:258.690000px;}
.y16{bottom:261.930000px;}
.yab{bottom:266.070000px;}
.y6b{bottom:269.850000px;}
.y8f{bottom:272.370000px;}
.y197{bottom:274.170000px;}
.ye8{bottom:281.910000px;}
.y106{bottom:288.210000px;}
.y114{bottom:288.570000px;}
.yc3{bottom:288.750000px;}
.y4b{bottom:288.930000px;}
.y6a{bottom:299.910000px;}
.yaa{bottom:300.090000px;}
.y196{bottom:300.990000px;}
.y8e{bottom:302.790000px;}
.y15{bottom:304.590000px;}
.ye7{bottom:310.710000px;}
.y105{bottom:318.450000px;}
.y113{bottom:318.810000px;}
.yc2{bottom:318.990000px;}
.y195{bottom:327.810000px;}
.y4a{bottom:329.070000px;}
.y69{bottom:330.150000px;}
.y8d{bottom:331.770000px;}
.ya9{bottom:338.070000px;}
.ye6{bottom:339.870000px;}
.y104{bottom:348.870000px;}
.yc1{bottom:349.230000px;}
.y14{bottom:354.630000px;}
.y49{bottom:359.310000px;}
.y68{bottom:360.390000px;}
.y8c{bottom:362.010000px;}
.ya8{bottom:368.310000px;}
.ye5{bottom:370.110000px;}
.y103{bottom:378.930000px;}
.y112{bottom:379.110000px;}
.yc0{bottom:379.290000px;}
.y194{bottom:381.450000px;}
.y48{bottom:389.550000px;}
.y67{bottom:390.630000px;}
.y8b{bottom:392.070000px;}
.y14b{bottom:397.650000px;}
.ya7{bottom:398.550000px;}
.ye4{bottom:400.350000px;}
.y13{bottom:407.910000px;}
.y193{bottom:408.450000px;}
.y102{bottom:409.170000px;}
.ybf{bottom:409.530000px;}
.y2d{bottom:413.310000px;}
.y47{bottom:419.610000px;}
.y66{bottom:420.870000px;}
.y8a{bottom:422.310000px;}
.ya6{bottom:428.790000px;}
.ye3{bottom:430.590000px;}
.y192{bottom:435.270000px;}
.y101{bottom:439.410000px;}
.y111{bottom:439.590000px;}
.ybe{bottom:439.770000px;}
.y46{bottom:449.895000px;}
.y65{bottom:451.155000px;}
.y89{bottom:452.595000px;}
.ya5{bottom:459.075000px;}
.ye2{bottom:460.695000px;}
.y12{bottom:461.415000px;}
.y191{bottom:462.135000px;}
.y100{bottom:469.695000px;}
.y110{bottom:469.875000px;}
.ybd{bottom:470.055000px;}
.y2c{bottom:471.855000px;}
.y64{bottom:472.035000px;}
.y45{bottom:480.135000px;}
.y88{bottom:482.835000px;}
.y190{bottom:488.955000px;}
.ya4{bottom:489.135000px;}
.ye1{bottom:490.935000px;}
.y63{bottom:493.635000px;}
.y11{bottom:494.175000px;}
.yff{bottom:499.935000px;}
.y10f{bottom:500.115000px;}
.ybc{bottom:500.295000px;}
.y44{bottom:510.375000px;}
.y87{bottom:513.075000px;}
.y18f{bottom:515.775000px;}
.y144{bottom:515.955000px;}
.ya3{bottom:519.375000px;}
.ye0{bottom:521.175000px;}
.y62{bottom:525.315000px;}
.yfe{bottom:530.175000px;}
.y2b{bottom:530.355000px;}
.ybb{bottom:530.535000px;}
.y10{bottom:535.395000px;}
.y43{bottom:541.515000px;}
.y18e{bottom:542.595000px;}
.y86{bottom:543.315000px;}
.ya2{bottom:549.615000px;}
.ydf{bottom:551.415000px;}
.y61{bottom:555.555000px;}
.yfd{bottom:560.235000px;}
.y10e{bottom:560.595000px;}
.yba{bottom:560.775000px;}
.y175{bottom:565.635000px;}
.y18d{bottom:569.595000px;}
.yf{bottom:570.495000px;}
.y42{bottom:571.755000px;}
.y85{bottom:573.375000px;}
.ya1{bottom:579.855000px;}
.yde{bottom:581.655000px;}
.y60{bottom:585.615000px;}
.y2a{bottom:588.855000px;}
.yfc{bottom:590.475000px;}
.yb9{bottom:590.835000px;}
.y18c{bottom:596.415000px;}
.y41{bottom:601.995000px;}
.y84{bottom:603.615000px;}
.ya0{bottom:610.095000px;}
.ye{bottom:611.355000px;}
.ydd{bottom:611.895000px;}
.y5f{bottom:615.855000px;}
.y138{bottom:617.295000px;}
.yfb{bottom:620.895000px;}
.yb8{bottom:621.075000px;}
.y18b{bottom:623.235000px;}
.y40{bottom:632.235000px;}
.y83{bottom:633.855000px;}
.y9f{bottom:640.335000px;}
.ydc{bottom:640.695000px;}
.y5e{bottom:646.095000px;}
.y29{bottom:646.275000px;}
.y173{bottom:647.535000px;}
.y18a{bottom:650.055000px;}
.yfa{bottom:650.955000px;}
.yb7{bottom:651.315000px;}
.yd{bottom:652.035000px;}
.y82{bottom:664.095000px;}
.y3f{bottom:666.255000px;}
.ydb{bottom:669.675000px;}
.y9e{bottom:670.575000px;}
.y5d{bottom:676.335000px;}
.y189{bottom:676.875000px;}
.yf9{bottom:681.195000px;}
.yb6{bottom:681.555000px;}
.yc{bottom:692.925000px;}
.y28{bottom:693.825000px;}
.y81{bottom:694.365000px;}
.y3e{bottom:699.585000px;}
.yda{bottom:699.945000px;}
.y9d{bottom:700.665000px;}
.y188{bottom:703.725000px;}
.y5c{bottom:706.605000px;}
.yf8{bottom:711.645000px;}
.yb5{bottom:711.825000px;}
.y80{bottom:724.605000px;}
.y171{bottom:728.565000px;}
.y3d{bottom:728.745000px;}
.yd9{bottom:730.185000px;}
.y187{bottom:730.545000px;}
.y9c{bottom:730.905000px;}
.yb{bottom:733.785000px;}
.y12d{bottom:735.585000px;}
.y5b{bottom:736.845000px;}
.y27{bottom:740.985000px;}
.yf7{bottom:741.705000px;}
.y10d{bottom:741.885000px;}
.yb4{bottom:742.065000px;}
.y7f{bottom:748.185000px;}
.y186{bottom:757.545000px;}
.y3c{bottom:758.805000px;}
.yd8{bottom:760.245000px;}
.y9b{bottom:761.145000px;}
.y5a{bottom:766.905000px;}
.yf6{bottom:771.945000px;}
.y10c{bottom:772.125000px;}
.yb3{bottom:772.305000px;}
.y7e{bottom:773.025000px;}
.ya{bottom:774.465000px;}
.y185{bottom:784.365000px;}
.y26{bottom:788.325000px;}
.y3b{bottom:789.045000px;}
.yd7{bottom:790.485000px;}
.y9a{bottom:791.385000px;}
.y59{bottom:797.145000px;}
.yb2{bottom:802.365000px;}
.y7d{bottom:803.445000px;}
.y184{bottom:811.185000px;}
.y16c{bottom:812.985000px;}
.y9{bottom:815.325000px;}
.y3a{bottom:819.285000px;}
.yd6{bottom:820.725000px;}
.y99{bottom:821.625000px;}
.yf5{bottom:832.425000px;}
.y7c{bottom:832.605000px;}
.y58{bottom:834.225000px;}
.y25{bottom:835.485000px;}
.y183{bottom:838.005000px;}
.y98{bottom:841.245000px;}
.y39{bottom:849.525000px;}
.yd5{bottom:850.965000px;}
.y8{bottom:856.185000px;}
.y97{bottom:861.405000px;}
.yf4{bottom:862.665000px;}
.y7b{bottom:862.845000px;}
.y182{bottom:864.825000px;}
.yd4{bottom:873.105000px;}
.y12c{bottom:874.005000px;}
.y57{bottom:876.165000px;}
.y38{bottom:879.765000px;}
.y24{bottom:882.825000px;}
.y181{bottom:891.645000px;}
.yf3{bottom:892.905000px;}
.y7a{bottom:893.085000px;}
.y128{bottom:894.885000px;}
.y166{bottom:895.245000px;}
.y7{bottom:896.865000px;}
.yd3{bottom:898.845000px;}
.y37{bottom:910.005000px;}
.y127{bottom:911.625000px;}
.y56{bottom:918.285000px;}
.y180{bottom:918.645000px;}
.yf2{bottom:923.190000px;}
.y79{bottom:923.370000px;}
.y126{bottom:928.950000px;}
.y23{bottom:931.290000px;}
.yd2{bottom:931.470000px;}
.y6{bottom:937.770000px;}
.y36{bottom:940.110000px;}
.y12b{bottom:943.710000px;}
.y125{bottom:945.510000px;}
.yf1{bottom:953.430000px;}
.y78{bottom:953.610000px;}
.yd1{bottom:958.110000px;}
.y124{bottom:959.730000px;}
.y55{bottom:960.090000px;}
.y12a{bottom:960.630000px;}
.y1a5{bottom:960.810000px;}
.y123{bottom:962.250000px;}
.y35{bottom:970.350000px;}
.y17f{bottom:972.330000px;}
.y5{bottom:978.630000px;}
.y122{bottom:979.170000px;}
.y129{bottom:979.890000px;}
.y1a4{bottom:983.310000px;}
.y77{bottom:983.670000px;}
.yd0{bottom:986.910000px;}
.y22{bottom:989.970000px;}
.y121{bottom:994.290000px;}
.y17e{bottom:999.150000px;}
.y11f{bottom:999.870000px;}
.y34{bottom:1000.590000px;}
.y54{bottom:1001.850000px;}
.y1a3{bottom:1003.830000px;}
.yf0{bottom:1013.730000px;}
.y76{bottom:1013.910000px;}
.ycf{bottom:1017.150000px;}
.y4{bottom:1019.310000px;}
.y17d{bottom:1025.970000px;}
.y1a2{bottom:1028.310000px;}
.y33{bottom:1030.830000px;}
.y53{bottom:1043.610000px;}
.yef{bottom:1043.970000px;}
.y75{bottom:1044.150000px;}
.y11e{bottom:1045.950000px;}
.yce{bottom:1047.210000px;}
.y21{bottom:1048.470000px;}
.y162{bottom:1050.810000px;}
.y17c{bottom:1052.790000px;}
.y11d{bottom:1058.370000px;}
.y3{bottom:1061.070000px;}
.y1a1{bottom:1074.210000px;}
.y74{bottom:1074.390000px;}
.ycd{bottom:1077.630000px;}
.y17b{bottom:1079.610000px;}
.y52{bottom:1085.370000px;}
.y178{bottom:1085.550000px;}
.y32{bottom:1091.310000px;}
.y2{bottom:1096.530000px;}
.y161{bottom:1096.890000px;}
.y11c{bottom:1101.210000px;}
.y73{bottom:1104.630000px;}
.y179{bottom:1106.610000px;}
.y1a0{bottom:1106.970000px;}
.ycc{bottom:1108.770000px;}
.y160{bottom:1109.310000px;}
.y19f{bottom:1111.470000px;}
.y31{bottom:1125.150000px;}
.y20{bottom:1127.130000px;}
.y1{bottom:1128.570000px;}
.y11b{bottom:1130.370000px;}
.y17a{bottom:1133.430000px;}
.y72{bottom:1134.870000px;}
.ycb{bottom:1136.850000px;}
.y18{bottom:1178.280000px;}
.y1e{bottom:1209.240000px;}
.h18{height:12.174258px;}
.h22{height:15.481758px;}
.h1b{height:17.903320px;}
.ha{height:21.420000px;}
.h1a{height:24.328477px;}
.h15{height:27.213047px;}
.h1e{height:30.963516px;}
.h11{height:32.860898px;}
.h8{height:33.300000px;}
.h20{height:33.912422px;}
.h1c{height:35.806641px;}
.h21{height:42.300000px;}
.h2{height:46.622932px;}
.h10{height:47.700000px;}
.h24{height:47.980898px;}
.h23{height:49.394180px;}
.h9{height:50.312812px;}
.h1d{height:56.574492px;}
.hc{height:59.439023px;}
.h1f{height:61.189805px;}
.h7{height:63.180000px;}
.h12{height:65.884219px;}
.h14{height:67.824844px;}
.h1{height:68.084282px;}
.h19{height:68.748750px;}
.hb{height:69.086250px;}
.h2a{height:69.300000px;}
.h33{height:71.613281px;}
.h6{height:71.820000px;}
.h31{height:73.722656px;}
.he{height:74.953125px;}
.hf{height:75.093750px;}
.h2e{height:79.596000px;}
.h2f{height:80.460000px;}
.h2c{height:80.820000px;}
.h5{height:81.000000px;}
.h2d{height:82.980000px;}
.h2b{height:83.196000px;}
.h30{height:83.306602px;}
.hd{height:86.255508px;}
.h13{height:87.695156px;}
.h17{height:98.051133px;}
.h27{height:99.900000px;}
.h4{height:105.820312px;}
.h3{height:108.000000px;}
.h16{height:110.583984px;}
.h32{height:116.481797px;}
.h26{height:116.676000px;}
.h28{height:116.856000px;}
.h25{height:132.300000px;}
.h29{height:150.480000px;}
.h0{height:1264.500000px;}
.w4{width:27.180000px;}
.w7{width:75.060000px;}
.w9{width:78.300000px;}
.w6{width:91.980000px;}
.w8{width:116.676000px;}
.wb{width:166.350000px;}
.wc{width:177.510000px;}
.wd{width:244.650000px;}
.wf{width:249.510000px;}
.w3{width:304.590000px;}
.wa{width:346.575000px;}
.we{width:437.295000px;}
.w10{width:442.335000px;}
.w5{width:708.270000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x10{left:4.500000px;}
.x37{left:6.840000px;}
.x2a{left:9.360000px;}
.x14{left:10.836000px;}
.x33{left:12.600000px;}
.x2b{left:13.680000px;}
.x36{left:14.760000px;}
.x1e{left:17.145000px;}
.x31{left:18.180000px;}
.x34{left:19.305000px;}
.x13{left:21.096000px;}
.x1b{left:22.680000px;}
.x2c{left:24.660000px;}
.x2f{left:25.965000px;}
.x2d{left:27.210000px;}
.x21{left:30.630000px;}
.x30{left:35.145000px;}
.x32{left:40.725000px;}
.x38{left:41.805000px;}
.x35{left:42.885000px;}
.x48{left:64.254000px;}
.x44{left:65.334000px;}
.x3f{left:67.140000px;}
.x1{left:75.059987px;}
.x9{left:80.099987px;}
.x3b{left:84.234000px;}
.x11{left:85.319987px;}
.x1a{left:86.976000px;}
.x6{left:89.495987px;}
.x3d{left:92.154000px;}
.x15{left:95.255987px;}
.x16{left:99.935987px;}
.x19{left:102.095987px;}
.x40{left:104.214000px;}
.x17{left:108.755987px;}
.x12{left:112.355987px;}
.x22{left:113.615987px;}
.x18{left:129.095987px;}
.x41{left:139.890000px;}
.x45{left:148.170000px;}
.xc{left:152.685000px;}
.x3a{left:155.010000px;}
.x2{left:158.789987px;}
.xe{left:162.765000px;}
.xd{left:168.525000px;}
.x43{left:178.590000px;}
.x1c{left:180.570000px;}
.x46{left:184.350000px;}
.x42{left:186.870000px;}
.x8{left:191.009987px;}
.x23{left:197.489987px;}
.x7{left:199.829987px;}
.x47{left:206.310000px;}
.x3e{left:221.250000px;}
.x1d{left:257.070000px;}
.x24{left:268.769987px;}
.x25{left:294.734987px;}
.x3c{left:338.835000px;}
.x39{left:341.355000px;}
.xa{left:343.334987px;}
.x1f{left:375.375000px;}
.x4{left:445.574987px;}
.x3{left:446.654987px;}
.x20{left:455.295000px;}
.x26{left:468.104987px;}
.x27{left:481.784987px;}
.xb{left:505.005000px;}
.x2e{left:623.085000px;}
.x29{left:635.864987px;}
.x28{left:649.409987px;}
.xf{left:784.770000px;}
.x5{left:816.269987px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls3a{letter-spacing:-10.773333pt;}
.ls56{letter-spacing:-9.066667pt;}
.ls27{letter-spacing:-1.280000pt;}
.ls26{letter-spacing:-0.832000pt;}
.ls41{letter-spacing:-0.757333pt;}
.ls31{letter-spacing:-0.682667pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.624000pt;}
.ls2e{letter-spacing:-0.613333pt;}
.ls4a{letter-spacing:-0.576000pt;}
.ls2a{letter-spacing:-0.522133pt;}
.ls40{letter-spacing:-0.470933pt;}
.ls32{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.400533pt;}
.ls42{letter-spacing:-0.325333pt;}
.ls2b{letter-spacing:-0.309867pt;}
.ls57{letter-spacing:-0.286933pt;}
.ls20{letter-spacing:-0.278400pt;}
.ls49{letter-spacing:-0.276267pt;}
.ls16{letter-spacing:-0.268800pt;}
.ls21{letter-spacing:-0.262400pt;}
.ls29{letter-spacing:-0.258667pt;}
.ls7{letter-spacing:-0.212267pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.184533pt;}
.ls60{letter-spacing:-0.176533pt;}
.ls3f{letter-spacing:-0.171733pt;}
.ls17{letter-spacing:-0.161067pt;}
.ls3e{letter-spacing:-0.146133pt;}
.ls53{letter-spacing:-0.131200pt;}
.ls2d{letter-spacing:-0.117867pt;}
.ls54{letter-spacing:-0.112000pt;}
.ls45{letter-spacing:-0.102400pt;}
.ls51{letter-spacing:-0.097067pt;}
.ls59{letter-spacing:-0.090667pt;}
.ls38{letter-spacing:-0.043520pt;}
.ls5f{letter-spacing:-0.023040pt;}
.ls1{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.007680pt;}
.ls55{letter-spacing:0.013440pt;}
.ls39{letter-spacing:0.017920pt;}
.ls22{letter-spacing:0.061333pt;}
.ls2{letter-spacing:0.064000pt;}
.ls3d{letter-spacing:0.066667pt;}
.ls5a{letter-spacing:0.074133pt;}
.ls5{letter-spacing:0.075733pt;}
.ls6{letter-spacing:0.077333pt;}
.ls18{letter-spacing:0.109333pt;}
.ls46{letter-spacing:0.115200pt;}
.ls5c{letter-spacing:0.117760pt;}
.ls2f{letter-spacing:0.117867pt;}
.ls47{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.133120pt;}
.ls4d{letter-spacing:0.133333pt;}
.ls58{letter-spacing:0.157867pt;}
.ls50{letter-spacing:0.185067pt;}
.ls19{letter-spacing:0.192000pt;}
.ls5d{letter-spacing:0.217600pt;}
.ls28{letter-spacing:0.220267pt;}
.ls4{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.227733pt;}
.ls5e{letter-spacing:0.235733pt;}
.ls3{letter-spacing:0.256000pt;}
.ls52{letter-spacing:0.274667pt;}
.ls3b{letter-spacing:0.314667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.330133pt;}
.ls1c{letter-spacing:0.348160pt;}
.ls36{letter-spacing:0.597333pt;}
.ls44{letter-spacing:0.773120pt;}
.ls34{letter-spacing:2.053120pt;}
.ls3c{letter-spacing:4.613120pt;}
.ls1e{letter-spacing:5.253120pt;}
.ls48{letter-spacing:7.173120pt;}
.ls1a{letter-spacing:9.093120pt;}
.ls43{letter-spacing:12.293120pt;}
.ls4b{letter-spacing:14.213120pt;}
.ls4f{letter-spacing:14.959360pt;}
.ls4e{letter-spacing:15.599360pt;}
.ls1b{letter-spacing:16.773120pt;}
.ls33{letter-spacing:18.693120pt;}
.ls1d{letter-spacing:26.511360pt;}
.ls1f{letter-spacing:50.191360pt;}
.ls0{letter-spacing:715.786667pt;}
.ls5b{letter-spacing:756.261547pt;}
.lsb{letter-spacing:1476.746667pt;}
.lsd{letter-spacing:1652.106667pt;}
.lsf{letter-spacing:1678.986667pt;}
.ls11{letter-spacing:1833.866667pt;}
.lsc{letter-spacing:1955.626667pt;}
.ls10{letter-spacing:1973.546667pt;}
.ls12{letter-spacing:2015.146667pt;}
.ls14{letter-spacing:2090.666667pt;}
.lse{letter-spacing:2097.706667pt;}
.ls9{letter-spacing:2134.186667pt;}
.lsa{letter-spacing:2175.786667pt;}
.ls13{letter-spacing:2204.586667pt;}
.ws0{word-spacing:-128.000000pt;}
.ws14{word-spacing:-58.880000pt;}
.ws7{word-spacing:-42.880000pt;}
.ws1{word-spacing:-29.248000pt;}
.ws2{word-spacing:-29.216000pt;}
.ws3{word-spacing:-25.783573pt;}
.ws4{word-spacing:-25.493973pt;}
.ws8{word-spacing:-17.032213pt;}
.wsf{word-spacing:-16.922880pt;}
.ws2a{word-spacing:-16.271573pt;}
.wsa{word-spacing:-14.656000pt;}
.ws9{word-spacing:-14.464000pt;}
.ws32{word-spacing:-14.272000pt;}
.ws1e{word-spacing:-13.637013pt;}
.ws1f{word-spacing:-13.621547pt;}
.ws35{word-spacing:-13.542613pt;}
.ws15{word-spacing:-13.534613pt;}
.ws33{word-spacing:-13.524480pt;}
.ws27{word-spacing:-13.424747pt;}
.ws25{word-spacing:-13.422080pt;}
.ws20{word-spacing:-13.373547pt;}
.ws1d{word-spacing:-13.324800pt;}
.ws1b{word-spacing:-13.314560pt;}
.ws13{word-spacing:-13.306880pt;}
.ws36{word-spacing:-13.283840pt;}
.ws1c{word-spacing:-13.263360pt;}
.ws34{word-spacing:-13.209813pt;}
.ws24{word-spacing:-13.204480pt;}
.ws21{word-spacing:-13.160747pt;}
.ws22{word-spacing:-13.135147pt;}
.ws37{word-spacing:-13.130347pt;}
.ws29{word-spacing:-13.122347pt;}
.ws10{word-spacing:-13.114880pt;}
.ws16{word-spacing:-13.048213pt;}
.ws26{word-spacing:-13.030613pt;}
.ws17{word-spacing:-12.997013pt;}
.ws23{word-spacing:-12.981547pt;}
.ws1a{word-spacing:-12.894613pt;}
.ws28{word-spacing:-12.730880pt;}
.ws18{word-spacing:-12.693547pt;}
.ws19{word-spacing:-12.682880pt;}
.ws11{word-spacing:-12.474880pt;}
.ws2b{word-spacing:-12.279787pt;}
.ws6{word-spacing:-11.759573pt;}
.ws31{word-spacing:-9.875947pt;}
.ws30{word-spacing:-9.848747pt;}
.ws2e{word-spacing:-9.704320pt;}
.wsc{word-spacing:-9.690880pt;}
.ws2d{word-spacing:-9.578880pt;}
.ws2c{word-spacing:-9.559680pt;}
.wse{word-spacing:-9.428480pt;}
.wsd{word-spacing:-9.412480pt;}
.ws2f{word-spacing:-9.403947pt;}
.ws12{word-spacing:-8.389120pt;}
.wsb{word-spacing:-6.074880pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-15.391573pt;}
._1b{margin-left:-10.886827pt;}
._1e{margin-left:-8.797013pt;}
._5{margin-left:-3.072000pt;}
._1{margin-left:-1.941333pt;}
._3{margin-left:-0.896000pt;}
._2{width:1.184000pt;}
._f{width:2.172160pt;}
._1a{width:3.768320pt;}
._19{width:5.129173pt;}
._11{width:6.182400pt;}
._7{width:7.308587pt;}
._6{width:8.391893pt;}
._15{width:9.408427pt;}
._13{width:10.574507pt;}
._12{width:11.553280pt;}
._14{width:14.197333pt;}
._10{width:15.420160pt;}
._e{width:16.604160pt;}
._8{width:18.311680pt;}
._9{width:19.309227pt;}
._18{width:21.154133pt;}
._17{width:22.932267pt;}
._16{width:24.375467pt;}
._c{width:26.273280pt;}
._d{width:27.802027pt;}
._1c{width:29.440000pt;}
._a{width:30.550187pt;}
._b{width:31.644800pt;}
._1d{width:32.672427pt;}
._1f{width:173.399680pt;}
._20{width:753.802667pt;}
._0{width:1398.410667pt;}
.fsc{font-size:10.880000pt;}
.fs13{font-size:13.440000pt;}
.fsf{font-size:16.000000pt;}
.fse{font-size:21.120000pt;}
.fsb{font-size:24.320000pt;}
.fs9{font-size:26.880000pt;}
.fs12{font-size:29.440000pt;}
.fs10{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs11{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsd{font-size:61.440000pt;}
.fs8{font-size:64.000000pt;}
.fs14{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs15{font-size:101.120000pt;}
.fs3{font-size:128.000000pt;}
.y1b{bottom:-11.680000pt;}
.y0{bottom:0.000000pt;}
.y170{bottom:2.880000pt;}
.y1a{bottom:3.200000pt;}
.y30{bottom:4.000000pt;}
.y1d{bottom:4.320000pt;}
.y16b{bottom:5.760000pt;}
.y153{bottom:8.480000pt;}
.y141{bottom:14.080000pt;}
.y16f{bottom:16.000000pt;}
.y165{bottom:16.960000pt;}
.y120{bottom:18.720000pt;}
.y19{bottom:18.880000pt;}
.y143{bottom:21.920000pt;}
.y152{bottom:23.520000pt;}
.y15e{bottom:23.680000pt;}
.y172{bottom:26.880000pt;}
.y140{bottom:28.320000pt;}
.y16e{bottom:28.960000pt;}
.y164{bottom:29.920000pt;}
.y2f{bottom:30.720000pt;}
.y16a{bottom:33.640000pt;}
.y177{bottom:35.040000pt;}
.y15d{bottom:38.560000pt;}
.y134{bottom:38.880000pt;}
.y142{bottom:41.120000pt;}
.y13f{bottom:41.760000pt;}
.y147{bottom:41.920000pt;}
.y149{bottom:42.080000pt;}
.y163{bottom:44.800000pt;}
.y2e{bottom:44.960000pt;}
.y151{bottom:46.920000pt;}
.y169{bottom:48.680000pt;}
.y1c{bottom:49.600000pt;}
.y133{bottom:53.760000pt;}
.y174{bottom:53.946667pt;}
.y1f{bottom:54.080000pt;}
.y176{bottom:54.720000pt;}
.y16d{bottom:55.040000pt;}
.y146{bottom:56.800000pt;}
.y148{bottom:56.960000pt;}
.y13e{bottom:57.120000pt;}
.y167{bottom:57.160000pt;}
.y15c{bottom:61.920000pt;}
.y168{bottom:63.720000pt;}
.y132{bottom:69.120000pt;}
.y150{bottom:70.120000pt;}
.yca{bottom:70.240000pt;}
.y137{bottom:70.560000pt;}
.y14a{bottom:71.840000pt;}
.y13a{bottom:71.866667pt;}
.y14e{bottom:71.880000pt;}
.y145{bottom:72.000000pt;}
.y13d{bottom:72.026667pt;}
.y96{bottom:72.480000pt;}
.y13b{bottom:73.946667pt;}
.yb1{bottom:75.360000pt;}
.y19e{bottom:76.640000pt;}
.y15b{bottom:76.800000pt;}
.y131{bottom:83.840000pt;}
.y14f{bottom:85.160000pt;}
.y15f{bottom:85.280000pt;}
.y12f{bottom:85.760000pt;}
.y14d{bottom:85.800000pt;}
.y136{bottom:85.920000pt;}
.y13c{bottom:86.746667pt;}
.y139{bottom:86.906667pt;}
.y14c{bottom:87.080000pt;}
.yee{bottom:89.280000pt;}
.y71{bottom:92.160000pt;}
.y10b{bottom:95.040000pt;}
.y11a{bottom:95.360000pt;}
.yc9{bottom:95.520000pt;}
.y130{bottom:98.880000pt;}
.y95{bottom:99.360000pt;}
.y15a{bottom:100.160000pt;}
.y19d{bottom:100.480000pt;}
.y135{bottom:100.640000pt;}
.y12e{bottom:100.800000pt;}
.y156{bottom:101.920000pt;}
.yb0{bottom:102.240000pt;}
.y51{bottom:102.880000pt;}
.y158{bottom:108.640000pt;}
.y70{bottom:109.600000pt;}
.y159{bottom:115.040000pt;}
.yed{bottom:116.160000pt;}
.y155{bottom:116.960000pt;}
.y157{bottom:121.600000pt;}
.y50{bottom:121.760000pt;}
.y10a{bottom:121.920000pt;}
.y119{bottom:122.080000pt;}
.yc8{bottom:122.400000pt;}
.y19c{bottom:124.320000pt;}
.y94{bottom:126.240000pt;}
.y6f{bottom:127.520000pt;}
.yaf{bottom:129.120000pt;}
.yec{bottom:143.040000pt;}
.y19b{bottom:148.160000pt;}
.y4f{bottom:148.640000pt;}
.y109{bottom:148.800000pt;}
.y118{bottom:148.960000pt;}
.yc7{bottom:149.280000pt;}
.y93{bottom:152.960000pt;}
.y6e{bottom:155.840000pt;}
.yae{bottom:156.000000pt;}
.yeb{bottom:169.920000pt;}
.y19a{bottom:172.000000pt;}
.y17{bottom:175.680000pt;}
.y117{bottom:175.840000pt;}
.yc6{bottom:176.000000pt;}
.y4e{bottom:176.320000pt;}
.y92{bottom:179.840000pt;}
.yad{bottom:182.880000pt;}
.y6d{bottom:186.080000pt;}
.y199{bottom:196.026667pt;}
.yea{bottom:196.826667pt;}
.y108{bottom:202.426667pt;}
.y116{bottom:202.746667pt;}
.yc5{bottom:202.906667pt;}
.y4d{bottom:203.226667pt;}
.y91{bottom:206.746667pt;}
.yac{bottom:209.786667pt;}
.y6c{bottom:212.986667pt;}
.y154{bottom:218.426667pt;}
.y198{bottom:219.866667pt;}
.ye9{bottom:223.706667pt;}
.y90{bottom:224.186667pt;}
.y107{bottom:229.306667pt;}
.y115{bottom:229.626667pt;}
.yc4{bottom:229.786667pt;}
.y4c{bottom:229.946667pt;}
.y16{bottom:232.826667pt;}
.yab{bottom:236.506667pt;}
.y6b{bottom:239.866667pt;}
.y8f{bottom:242.106667pt;}
.y197{bottom:243.706667pt;}
.ye8{bottom:250.586667pt;}
.y106{bottom:256.186667pt;}
.y114{bottom:256.506667pt;}
.yc3{bottom:256.666667pt;}
.y4b{bottom:256.826667pt;}
.y6a{bottom:266.586667pt;}
.yaa{bottom:266.746667pt;}
.y196{bottom:267.546667pt;}
.y8e{bottom:269.146667pt;}
.y15{bottom:270.746667pt;}
.ye7{bottom:276.186667pt;}
.y105{bottom:283.066667pt;}
.y113{bottom:283.386667pt;}
.yc2{bottom:283.546667pt;}
.y195{bottom:291.386667pt;}
.y4a{bottom:292.506667pt;}
.y69{bottom:293.466667pt;}
.y8d{bottom:294.906667pt;}
.ya9{bottom:300.506667pt;}
.ye6{bottom:302.106667pt;}
.y104{bottom:310.106667pt;}
.yc1{bottom:310.426667pt;}
.y14{bottom:315.226667pt;}
.y49{bottom:319.386667pt;}
.y68{bottom:320.346667pt;}
.y8c{bottom:321.786667pt;}
.ya8{bottom:327.386667pt;}
.ye5{bottom:328.986667pt;}
.y103{bottom:336.826667pt;}
.y112{bottom:336.986667pt;}
.yc0{bottom:337.146667pt;}
.y194{bottom:339.066667pt;}
.y48{bottom:346.266667pt;}
.y67{bottom:347.226667pt;}
.y8b{bottom:348.506667pt;}
.y14b{bottom:353.466667pt;}
.ya7{bottom:354.266667pt;}
.ye4{bottom:355.866667pt;}
.y13{bottom:362.586667pt;}
.y193{bottom:363.066667pt;}
.y102{bottom:363.706667pt;}
.ybf{bottom:364.026667pt;}
.y2d{bottom:367.386667pt;}
.y47{bottom:372.986667pt;}
.y66{bottom:374.106667pt;}
.y8a{bottom:375.386667pt;}
.ya6{bottom:381.146667pt;}
.ye3{bottom:382.746667pt;}
.y192{bottom:386.906667pt;}
.y101{bottom:390.586667pt;}
.y111{bottom:390.746667pt;}
.ybe{bottom:390.906667pt;}
.y46{bottom:399.906667pt;}
.y65{bottom:401.026667pt;}
.y89{bottom:402.306667pt;}
.ya5{bottom:408.066667pt;}
.ye2{bottom:409.506667pt;}
.y12{bottom:410.146667pt;}
.y191{bottom:410.786667pt;}
.y100{bottom:417.506667pt;}
.y110{bottom:417.666667pt;}
.ybd{bottom:417.826667pt;}
.y2c{bottom:419.426667pt;}
.y64{bottom:419.586667pt;}
.y45{bottom:426.786667pt;}
.y88{bottom:429.186667pt;}
.y190{bottom:434.626667pt;}
.ya4{bottom:434.786667pt;}
.ye1{bottom:436.386667pt;}
.y63{bottom:438.786667pt;}
.y11{bottom:439.266667pt;}
.yff{bottom:444.386667pt;}
.y10f{bottom:444.546667pt;}
.ybc{bottom:444.706667pt;}
.y44{bottom:453.666667pt;}
.y87{bottom:456.066667pt;}
.y18f{bottom:458.466667pt;}
.y144{bottom:458.626667pt;}
.ya3{bottom:461.666667pt;}
.ye0{bottom:463.266667pt;}
.y62{bottom:466.946667pt;}
.yfe{bottom:471.266667pt;}
.y2b{bottom:471.426667pt;}
.ybb{bottom:471.586667pt;}
.y10{bottom:475.906667pt;}
.y43{bottom:481.346667pt;}
.y18e{bottom:482.306667pt;}
.y86{bottom:482.946667pt;}
.ya2{bottom:488.546667pt;}
.ydf{bottom:490.146667pt;}
.y61{bottom:493.826667pt;}
.yfd{bottom:497.986667pt;}
.y10e{bottom:498.306667pt;}
.yba{bottom:498.466667pt;}
.y175{bottom:502.786667pt;}
.y18d{bottom:506.306667pt;}
.yf{bottom:507.106667pt;}
.y42{bottom:508.226667pt;}
.y85{bottom:509.666667pt;}
.ya1{bottom:515.426667pt;}
.yde{bottom:517.026667pt;}
.y60{bottom:520.546667pt;}
.y2a{bottom:523.426667pt;}
.yfc{bottom:524.866667pt;}
.yb9{bottom:525.186667pt;}
.y18c{bottom:530.146667pt;}
.y41{bottom:535.106667pt;}
.y84{bottom:536.546667pt;}
.ya0{bottom:542.306667pt;}
.ye{bottom:543.426667pt;}
.ydd{bottom:543.906667pt;}
.y5f{bottom:547.426667pt;}
.y138{bottom:548.706667pt;}
.yfb{bottom:551.906667pt;}
.yb8{bottom:552.066667pt;}
.y18b{bottom:553.986667pt;}
.y40{bottom:561.986667pt;}
.y83{bottom:563.426667pt;}
.y9f{bottom:569.186667pt;}
.ydc{bottom:569.506667pt;}
.y5e{bottom:574.306667pt;}
.y29{bottom:574.466667pt;}
.y173{bottom:575.586667pt;}
.y18a{bottom:577.826667pt;}
.yfa{bottom:578.626667pt;}
.yb7{bottom:578.946667pt;}
.yd{bottom:579.586667pt;}
.y82{bottom:590.306667pt;}
.y3f{bottom:592.226667pt;}
.ydb{bottom:595.266667pt;}
.y9e{bottom:596.066667pt;}
.y5d{bottom:601.186667pt;}
.y189{bottom:601.666667pt;}
.yf9{bottom:605.506667pt;}
.yb6{bottom:605.826667pt;}
.yc{bottom:615.933333pt;}
.y28{bottom:616.733333pt;}
.y81{bottom:617.213333pt;}
.y3e{bottom:621.853333pt;}
.yda{bottom:622.173333pt;}
.y9d{bottom:622.813333pt;}
.y188{bottom:625.533333pt;}
.y5c{bottom:628.093333pt;}
.yf8{bottom:632.573333pt;}
.yb5{bottom:632.733333pt;}
.y80{bottom:644.093333pt;}
.y171{bottom:647.613333pt;}
.y3d{bottom:647.773333pt;}
.yd9{bottom:649.053333pt;}
.y187{bottom:649.373333pt;}
.y9c{bottom:649.693333pt;}
.yb{bottom:652.253333pt;}
.y12d{bottom:653.853333pt;}
.y5b{bottom:654.973333pt;}
.y27{bottom:658.653333pt;}
.yf7{bottom:659.293333pt;}
.y10d{bottom:659.453333pt;}
.yb4{bottom:659.613333pt;}
.y7f{bottom:665.053333pt;}
.y186{bottom:673.373333pt;}
.y3c{bottom:674.493333pt;}
.yd8{bottom:675.773333pt;}
.y9b{bottom:676.573333pt;}
.y5a{bottom:681.693333pt;}
.yf6{bottom:686.173333pt;}
.y10c{bottom:686.333333pt;}
.yb3{bottom:686.493333pt;}
.y7e{bottom:687.133333pt;}
.ya{bottom:688.413333pt;}
.y185{bottom:697.213333pt;}
.y26{bottom:700.733333pt;}
.y3b{bottom:701.373333pt;}
.yd7{bottom:702.653333pt;}
.y9a{bottom:703.453333pt;}
.y59{bottom:708.573333pt;}
.yb2{bottom:713.213333pt;}
.y7d{bottom:714.173333pt;}
.y184{bottom:721.053333pt;}
.y16c{bottom:722.653333pt;}
.y9{bottom:724.733333pt;}
.y3a{bottom:728.253333pt;}
.yd6{bottom:729.533333pt;}
.y99{bottom:730.333333pt;}
.yf5{bottom:739.933333pt;}
.y7c{bottom:740.093333pt;}
.y58{bottom:741.533333pt;}
.y25{bottom:742.653333pt;}
.y183{bottom:744.893333pt;}
.y98{bottom:747.773333pt;}
.y39{bottom:755.133333pt;}
.yd5{bottom:756.413333pt;}
.y8{bottom:761.053333pt;}
.y97{bottom:765.693333pt;}
.yf4{bottom:766.813333pt;}
.y7b{bottom:766.973333pt;}
.y182{bottom:768.733333pt;}
.yd4{bottom:776.093333pt;}
.y12c{bottom:776.893333pt;}
.y57{bottom:778.813333pt;}
.y38{bottom:782.013333pt;}
.y24{bottom:784.733333pt;}
.y181{bottom:792.573333pt;}
.yf3{bottom:793.693333pt;}
.y7a{bottom:793.853333pt;}
.y128{bottom:795.453333pt;}
.y166{bottom:795.773333pt;}
.y7{bottom:797.213333pt;}
.yd3{bottom:798.973333pt;}
.y37{bottom:808.893333pt;}
.y127{bottom:810.333333pt;}
.y56{bottom:816.253333pt;}
.y180{bottom:816.573333pt;}
.yf2{bottom:820.613333pt;}
.y79{bottom:820.773333pt;}
.y126{bottom:825.733333pt;}
.y23{bottom:827.813333pt;}
.yd2{bottom:827.973333pt;}
.y6{bottom:833.573333pt;}
.y36{bottom:835.653333pt;}
.y12b{bottom:838.853333pt;}
.y125{bottom:840.453333pt;}
.yf1{bottom:847.493333pt;}
.y78{bottom:847.653333pt;}
.yd1{bottom:851.653333pt;}
.y124{bottom:853.093333pt;}
.y55{bottom:853.413333pt;}
.y12a{bottom:853.893333pt;}
.y1a5{bottom:854.053333pt;}
.y123{bottom:855.333333pt;}
.y35{bottom:862.533333pt;}
.y17f{bottom:864.293333pt;}
.y5{bottom:869.893333pt;}
.y122{bottom:870.373333pt;}
.y129{bottom:871.013333pt;}
.y1a4{bottom:874.053333pt;}
.y77{bottom:874.373333pt;}
.yd0{bottom:877.253333pt;}
.y22{bottom:879.973333pt;}
.y121{bottom:883.813333pt;}
.y17e{bottom:888.133333pt;}
.y11f{bottom:888.773333pt;}
.y34{bottom:889.413333pt;}
.y54{bottom:890.533333pt;}
.y1a3{bottom:892.293333pt;}
.yf0{bottom:901.093333pt;}
.y76{bottom:901.253333pt;}
.ycf{bottom:904.133333pt;}
.y4{bottom:906.053333pt;}
.y17d{bottom:911.973333pt;}
.y1a2{bottom:914.053333pt;}
.y33{bottom:916.293333pt;}
.y53{bottom:927.653333pt;}
.yef{bottom:927.973333pt;}
.y75{bottom:928.133333pt;}
.y11e{bottom:929.733333pt;}
.yce{bottom:930.853333pt;}
.y21{bottom:931.973333pt;}
.y162{bottom:934.053333pt;}
.y17c{bottom:935.813333pt;}
.y11d{bottom:940.773333pt;}
.y3{bottom:943.173333pt;}
.y1a1{bottom:954.853333pt;}
.y74{bottom:955.013333pt;}
.ycd{bottom:957.893333pt;}
.y17b{bottom:959.653333pt;}
.y52{bottom:964.773333pt;}
.y178{bottom:964.933333pt;}
.y32{bottom:970.053333pt;}
.y2{bottom:974.693333pt;}
.y161{bottom:975.013333pt;}
.y11c{bottom:978.853333pt;}
.y73{bottom:981.893333pt;}
.y179{bottom:983.653333pt;}
.y1a0{bottom:983.973333pt;}
.ycc{bottom:985.573333pt;}
.y160{bottom:986.053333pt;}
.y19f{bottom:987.973333pt;}
.y31{bottom:1000.133333pt;}
.y20{bottom:1001.893333pt;}
.y1{bottom:1003.173333pt;}
.y11b{bottom:1004.773333pt;}
.y17a{bottom:1007.493333pt;}
.y72{bottom:1008.773333pt;}
.ycb{bottom:1010.533333pt;}
.y18{bottom:1047.360000pt;}
.y1e{bottom:1074.880000pt;}
.h18{height:10.821563pt;}
.h22{height:13.761563pt;}
.h1b{height:15.914062pt;}
.ha{height:19.040000pt;}
.h1a{height:21.625312pt;}
.h15{height:24.189375pt;}
.h1e{height:27.523125pt;}
.h11{height:29.209687pt;}
.h8{height:29.600000pt;}
.h20{height:30.144375pt;}
.h1c{height:31.828125pt;}
.h21{height:37.600000pt;}
.h2{height:41.442606pt;}
.h10{height:42.400000pt;}
.h24{height:42.649687pt;}
.h23{height:43.905937pt;}
.h9{height:44.722500pt;}
.h1d{height:50.288438pt;}
.hc{height:52.834688pt;}
.h1f{height:54.390938pt;}
.h7{height:56.160000pt;}
.h12{height:58.563750pt;}
.h14{height:60.288750pt;}
.h1{height:60.519362pt;}
.h19{height:61.110000pt;}
.hb{height:61.410000pt;}
.h2a{height:61.600000pt;}
.h33{height:63.656250pt;}
.h6{height:63.840000pt;}
.h31{height:65.531250pt;}
.he{height:66.625000pt;}
.hf{height:66.750000pt;}
.h2e{height:70.752000pt;}
.h2f{height:71.520000pt;}
.h2c{height:71.840000pt;}
.h5{height:72.000000pt;}
.h2d{height:73.760000pt;}
.h2b{height:73.952000pt;}
.h30{height:74.050313pt;}
.hd{height:76.671562pt;}
.h13{height:77.951250pt;}
.h17{height:87.156562pt;}
.h27{height:88.800000pt;}
.h4{height:94.062500pt;}
.h3{height:96.000000pt;}
.h16{height:98.296875pt;}
.h32{height:103.539375pt;}
.h26{height:103.712000pt;}
.h28{height:103.872000pt;}
.h25{height:117.600000pt;}
.h29{height:133.760000pt;}
.h0{height:1124.000000pt;}
.w4{width:24.160000pt;}
.w7{width:66.720000pt;}
.w9{width:69.600000pt;}
.w6{width:81.760000pt;}
.w8{width:103.712000pt;}
.wb{width:147.866667pt;}
.wc{width:157.786667pt;}
.wd{width:217.466667pt;}
.wf{width:221.786667pt;}
.w3{width:270.746667pt;}
.wa{width:308.066667pt;}
.we{width:388.706667pt;}
.w10{width:393.186667pt;}
.w5{width:629.573333pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x10{left:4.000000pt;}
.x37{left:6.080000pt;}
.x2a{left:8.320000pt;}
.x14{left:9.632000pt;}
.x33{left:11.200000pt;}
.x2b{left:12.160000pt;}
.x36{left:13.120000pt;}
.x1e{left:15.240000pt;}
.x31{left:16.160000pt;}
.x34{left:17.160000pt;}
.x13{left:18.752000pt;}
.x1b{left:20.160000pt;}
.x2c{left:21.920000pt;}
.x2f{left:23.080000pt;}
.x2d{left:24.186667pt;}
.x21{left:27.226667pt;}
.x30{left:31.240000pt;}
.x32{left:36.200000pt;}
.x38{left:37.160000pt;}
.x35{left:38.120000pt;}
.x48{left:57.114667pt;}
.x44{left:58.074667pt;}
.x3f{left:59.680000pt;}
.x1{left:66.719988pt;}
.x9{left:71.199988pt;}
.x3b{left:74.874667pt;}
.x11{left:75.839988pt;}
.x1a{left:77.312000pt;}
.x6{left:79.551988pt;}
.x3d{left:81.914667pt;}
.x15{left:84.671988pt;}
.x16{left:88.831988pt;}
.x19{left:90.751988pt;}
.x40{left:92.634667pt;}
.x17{left:96.671988pt;}
.x12{left:99.871988pt;}
.x22{left:100.991988pt;}
.x18{left:114.751988pt;}
.x41{left:124.346667pt;}
.x45{left:131.706667pt;}
.xc{left:135.720000pt;}
.x3a{left:137.786667pt;}
.x2{left:141.146655pt;}
.xe{left:144.680000pt;}
.xd{left:149.800000pt;}
.x43{left:158.746667pt;}
.x1c{left:160.506667pt;}
.x46{left:163.866667pt;}
.x42{left:166.106667pt;}
.x8{left:169.786655pt;}
.x23{left:175.546655pt;}
.x7{left:177.626655pt;}
.x47{left:183.386667pt;}
.x3e{left:196.666667pt;}
.x1d{left:228.506667pt;}
.x24{left:238.906655pt;}
.x25{left:261.986655pt;}
.x3c{left:301.186667pt;}
.x39{left:303.426667pt;}
.xa{left:305.186655pt;}
.x1f{left:333.666667pt;}
.x4{left:396.066655pt;}
.x3{left:397.026655pt;}
.x20{left:404.706667pt;}
.x26{left:416.093321pt;}
.x27{left:428.253321pt;}
.xb{left:448.893333pt;}
.x2e{left:553.853333pt;}
.x29{left:565.213321pt;}
.x28{left:577.253321pt;}
.xf{left:697.573333pt;}
.x5{left:725.573321pt;}
}




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