
    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_e09ee303223389ddcb569beb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_bcb491752504b24809c9d530.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b7d2a0c8ed4fcfd44a0c2506.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_7e1e79ab3fdb8e1079d1e567.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_92a897455582e3660d458d37.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_021ea4b280b3a4814e75b445.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a8925f33284823f7958423cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.050400px;}
.v2{vertical-align:39.632400px;}
.ls8{letter-spacing:-9.240000px;}
.ls17{letter-spacing:-8.901000px;}
.ls9{letter-spacing:-4.950000px;}
.lse{letter-spacing:-2.829000px;}
.ls19{letter-spacing:-2.553000px;}
.lsf{letter-spacing:-2.070000px;}
.ls1a{letter-spacing:-1.725000px;}
.lsa{letter-spacing:-1.716000px;}
.ls30{letter-spacing:-1.518000px;}
.ls1c{letter-spacing:-0.897000px;}
.ls7{letter-spacing:-0.594000px;}
.ls4{letter-spacing:-0.546000px;}
.ls3{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000309px;}
.ls10{letter-spacing:0.000600px;}
.ls11{letter-spacing:0.010800px;}
.lsc{letter-spacing:0.011400px;}
.ls33{letter-spacing:0.828000px;}
.ls2d{letter-spacing:0.969000px;}
.ls31{letter-spacing:1.380000px;}
.ls26{letter-spacing:1.438200px;}
.ls1d{letter-spacing:1.825800px;}
.ls2e{letter-spacing:1.863000px;}
.ls22{letter-spacing:1.999800px;}
.ls34{letter-spacing:2.458485px;}
.ls12{letter-spacing:2.562000px;}
.ls3a{letter-spacing:2.935800px;}
.ls39{letter-spacing:2.947800px;}
.ls38{letter-spacing:2.967000px;}
.ls37{letter-spacing:3.606600px;}
.ls36{letter-spacing:4.552887px;}
.ls2{letter-spacing:4.837200px;}
.ls13{letter-spacing:5.271000px;}
.ls25{letter-spacing:5.371200px;}
.ls32{letter-spacing:5.796000px;}
.ls2c{letter-spacing:5.809200px;}
.ls20{letter-spacing:6.053400px;}
.ls21{letter-spacing:6.054000px;}
.ls28{letter-spacing:6.536400px;}
.lsb{letter-spacing:6.577800px;}
.ls2b{letter-spacing:8.147400px;}
.ls24{letter-spacing:8.148600px;}
.lsd{letter-spacing:8.309400px;}
.ls1{letter-spacing:10.519200px;}
.ls1f{letter-spacing:11.163600px;}
.ls1e{letter-spacing:11.164200px;}
.ls14{letter-spacing:12.345600px;}
.ls23{letter-spacing:12.453000px;}
.ls2f{letter-spacing:12.489000px;}
.ls18{letter-spacing:12.558000px;}
.ls2a{letter-spacing:14.077800px;}
.ls29{letter-spacing:14.078400px;}
.ls1b{letter-spacing:17.112000px;}
.ls15{letter-spacing:19.752600px;}
.ls27{letter-spacing:22.908788px;}
.ls0{letter-spacing:25.593600px;}
.ls16{letter-spacing:54.429600px;}
.ls5{letter-spacing:425.371800px;}
.ls6{letter-spacing:511.835400px;}
.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;}
}
.ws2a{word-spacing:-20.217000px;}
.ws1{word-spacing:-18.954000px;}
.ws4{word-spacing:-17.250000px;}
.ws23{word-spacing:-17.112000px;}
.ws8{word-spacing:-16.500000px;}
.ws1f{word-spacing:-16.353000px;}
.ws1e{word-spacing:-15.525000px;}
.ws3{word-spacing:-15.000000px;}
.ws17{word-spacing:-14.784000px;}
.ws21{word-spacing:-12.558000px;}
.ws25{word-spacing:-12.489000px;}
.wsa{word-spacing:-7.260000px;}
.ws28{word-spacing:-5.796000px;}
.ws24{word-spacing:-1.863000px;}
.ws27{word-spacing:-1.380000px;}
.ws29{word-spacing:-0.828000px;}
.ws5{word-spacing:-0.069000px;}
.ws7{word-spacing:-0.066000px;}
.ws2{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws18{word-spacing:0.594000px;}
.ws26{word-spacing:1.518000px;}
.ws1d{word-spacing:2.070000px;}
.ws22{word-spacing:2.553000px;}
.ws1c{word-spacing:2.829000px;}
.ws20{word-spacing:8.901000px;}
.ws9{word-spacing:116.194200px;}
.wsf{word-spacing:344.494800px;}
.ws19{word-spacing:347.190600px;}
.ws11{word-spacing:353.647200px;}
.ws13{word-spacing:386.057400px;}
.ws10{word-spacing:388.806000px;}
.ws14{word-spacing:402.432000px;}
.wsd{word-spacing:409.321200px;}
.wse{word-spacing:415.524600px;}
.ws1b{word-spacing:420.183600px;}
.ws16{word-spacing:444.579000px;}
.ws12{word-spacing:465.682200px;}
.wsc{word-spacing:469.617000px;}
.ws1a{word-spacing:469.617600px;}
.wsb{word-spacing:511.533600px;}
.ws15{word-spacing:532.794000px;}
.ws0{word-spacing:1508.274600px;}
._17{margin-left:-17.349172px;}
._1e{margin-left:-15.946200px;}
._a{margin-left:-14.085000px;}
._56{margin-left:-12.466800px;}
._5{margin-left:-10.759200px;}
._25{margin-left:-9.248700px;}
._7{margin-left:-7.349400px;}
._b{margin-left:-6.081600px;}
._4{margin-left:-5.025000px;}
._2{margin-left:-3.653400px;}
._0{margin-left:-2.501400px;}
._3{margin-left:-1.268400px;}
._1{width:1.663200px;}
._9{width:2.755200px;}
._18{width:3.801900px;}
._6{width:4.824000px;}
._e{width:5.840400px;}
._16{width:7.066200px;}
._12{width:8.287800px;}
._10{width:9.874800px;}
._f{width:11.213400px;}
._1f{width:12.499200px;}
._1d{width:13.572300px;}
._1b{width:15.304200px;}
._8{width:16.722000px;}
._c{width:17.857200px;}
._11{width:19.706400px;}
._d{width:21.206400px;}
._20{width:22.288500px;}
._23{width:23.645100px;}
._13{width:24.780000px;}
._14{width:26.550000px;}
._24{width:27.720900px;}
._5a{width:29.259300px;}
._1a{width:30.291000px;}
._19{width:31.305300px;}
._15{width:32.367600px;}
._22{width:33.506400px;}
._21{width:34.564200px;}
._53{width:35.602800px;}
._54{width:37.085400px;}
._55{width:38.791800px;}
._58{width:41.134200px;}
._59{width:43.145700px;}
._1c{width:44.180700px;}
._5e{width:45.691500px;}
._5f{width:47.644200px;}
._5b{width:48.691200px;}
._5c{width:49.976700px;}
._57{width:53.516400px;}
._52{width:55.248300px;}
._3a{width:73.044000px;}
._5d{width:74.581200px;}
._28{width:95.160000px;}
._41{width:198.762300px;}
._27{width:209.631600px;}
._2a{width:239.611200px;}
._49{width:253.825200px;}
._42{width:257.166000px;}
._40{width:264.883200px;}
._36{width:273.902400px;}
._39{width:280.503900px;}
._46{width:282.229800px;}
._38{width:283.668000px;}
._48{width:297.226800px;}
._2d{width:302.875200px;}
._4e{width:311.145600px;}
._47{width:319.081200px;}
._29{width:334.284000px;}
._2c{width:346.311600px;}
._37{width:353.893200px;}
._2b{width:357.933000px;}
._4f{width:363.707400px;}
._44{width:365.144400px;}
._43{width:417.125400px;}
._3b{width:429.205200px;}
._4b{width:430.966800px;}
._35{width:447.458400px;}
._34{width:459.307200px;}
._4a{width:474.577800px;}
._3e{width:477.278700px;}
._3d{width:486.289200px;}
._2e{width:515.971800px;}
._45{width:523.240800px;}
._4d{width:527.002800px;}
._4c{width:530.590200px;}
._31{width:536.887200px;}
._51{width:543.224400px;}
._33{width:556.363800px;}
._3c{width:573.072600px;}
._2f{width:576.224400px;}
._30{width:591.865200px;}
._32{width:600.475200px;}
._26{width:688.923600px;}
._50{width:826.717200px;}
._3f{width:1110.037800px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:69.000000px;}
.fs2{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:110.975700px;}
.y3c{bottom:111.082050px;}
.y9c{bottom:111.637950px;}
.y164{bottom:111.850650px;}
.y3e{bottom:112.488300px;}
.y1c3{bottom:113.232450px;}
.y133{bottom:113.338800px;}
.y1c1{bottom:141.334500px;}
.y131{bottom:144.312150px;}
.y192{bottom:145.587750px;}
.y162{bottom:145.604700px;}
.yf3{bottom:146.157300px;}
.y6d{bottom:147.021900px;}
.y9a{bottom:147.299850px;}
.y3a{bottom:147.998550px;}
.y2a{bottom:148.276650px;}
.yc2{bottom:151.283700px;}
.y1c0{bottom:162.034350px;}
.y130{bottom:165.012150px;}
.y191{bottom:166.287750px;}
.y161{bottom:166.304700px;}
.y101{bottom:166.857300px;}
.yf2{bottom:166.857450px;}
.y6c{bottom:167.721900px;}
.y99{bottom:167.999850px;}
.y39{bottom:168.698550px;}
.y29{bottom:168.976650px;}
.yc1{bottom:172.756050px;}
.y1bf{bottom:182.734350px;}
.y12f{bottom:185.712000px;}
.y190{bottom:186.987750px;}
.y160{bottom:187.004550px;}
.yf1{bottom:187.557300px;}
.y6b{bottom:188.421900px;}
.y98{bottom:188.699850px;}
.y38{bottom:189.398550px;}
.y28{bottom:189.676650px;}
.yc0{bottom:195.517800px;}
.y1be{bottom:203.434350px;}
.y12e{bottom:206.412000px;}
.y18f{bottom:207.687750px;}
.y15f{bottom:207.704550px;}
.y100{bottom:208.257300px;}
.yf0{bottom:208.257450px;}
.y6a{bottom:209.121900px;}
.y97{bottom:209.399850px;}
.y37{bottom:210.098550px;}
.y27{bottom:210.376650px;}
.ybf{bottom:218.279550px;}
.y1bd{bottom:224.134500px;}
.y12d{bottom:227.112150px;}
.y18e{bottom:228.387750px;}
.y15e{bottom:228.404700px;}
.yef{bottom:228.957300px;}
.y69{bottom:229.821900px;}
.y96{bottom:230.099850px;}
.y36{bottom:230.798550px;}
.y26{bottom:231.076650px;}
.ybe{bottom:239.547450px;}
.y1bc{bottom:244.834500px;}
.y12c{bottom:247.812150px;}
.y18d{bottom:249.087750px;}
.y15d{bottom:249.104700px;}
.yee{bottom:249.657300px;}
.y68{bottom:250.521900px;}
.y95{bottom:250.799850px;}
.y35{bottom:251.498550px;}
.y25{bottom:251.776650px;}
.ybd{bottom:263.890200px;}
.y1bb{bottom:265.534350px;}
.y1ec{bottom:265.551300px;}
.y12b{bottom:268.512150px;}
.y18c{bottom:269.787750px;}
.y15c{bottom:269.804700px;}
.yff{bottom:270.357300px;}
.yed{bottom:270.357450px;}
.y67{bottom:271.221900px;}
.y94{bottom:271.499850px;}
.y34{bottom:272.198550px;}
.y24{bottom:272.476650px;}
.ybc{bottom:273.782100px;}
.y1ba{bottom:286.234350px;}
.y1eb{bottom:286.251300px;}
.y12a{bottom:289.212000px;}
.y18b{bottom:290.487750px;}
.y15b{bottom:290.504550px;}
.yec{bottom:291.057300px;}
.y66{bottom:291.921900px;}
.y33{bottom:292.898550px;}
.y23{bottom:293.176650px;}
.y1b9{bottom:306.934350px;}
.y1ea{bottom:306.951300px;}
.ybb{bottom:308.032800px;}
.y129{bottom:309.912000px;}
.y18a{bottom:311.187750px;}
.y15a{bottom:311.204550px;}
.yfe{bottom:311.757300px;}
.yeb{bottom:311.757450px;}
.y65{bottom:312.621900px;}
.y93{bottom:312.899850px;}
.y32{bottom:313.598550px;}
.y22{bottom:313.876650px;}
.y1b8{bottom:327.634500px;}
.y1e9{bottom:327.651300px;}
.yba{bottom:329.284650px;}
.y128{bottom:330.612150px;}
.y189{bottom:331.887750px;}
.y159{bottom:331.904700px;}
.yea{bottom:332.457300px;}
.y64{bottom:333.321900px;}
.y92{bottom:333.599850px;}
.y31{bottom:334.298550px;}
.y21{bottom:334.576650px;}
.y1b7{bottom:348.334500px;}
.y1e8{bottom:348.351300px;}
.yb9{bottom:349.581600px;}
.y127{bottom:351.312150px;}
.y188{bottom:352.587750px;}
.y158{bottom:352.604700px;}
.ye9{bottom:353.157300px;}
.y63{bottom:354.021900px;}
.y91{bottom:354.299850px;}
.y30{bottom:354.998550px;}
.y20{bottom:355.276650px;}
.yb8{bottom:359.473500px;}
.y1b6{bottom:369.034350px;}
.y1e7{bottom:369.051300px;}
.y126{bottom:372.012150px;}
.y187{bottom:373.287750px;}
.y157{bottom:373.304700px;}
.yfd{bottom:373.857300px;}
.ye8{bottom:373.857450px;}
.y62{bottom:374.721900px;}
.y90{bottom:374.999850px;}
.y2f{bottom:375.698550px;}
.y1f{bottom:375.976650px;}
.yb7{bottom:389.662500px;}
.y1b5{bottom:389.734350px;}
.y1e6{bottom:389.751300px;}
.y125{bottom:392.712000px;}
.y186{bottom:393.987750px;}
.y156{bottom:394.004550px;}
.ye7{bottom:394.557300px;}
.y61{bottom:395.421900px;}
.y8f{bottom:395.699850px;}
.y2e{bottom:396.398550px;}
.y1e{bottom:396.676650px;}
.y1b4{bottom:410.434500px;}
.y1e5{bottom:410.451300px;}
.yb6{bottom:410.930400px;}
.y124{bottom:413.412150px;}
.y185{bottom:414.687750px;}
.y155{bottom:414.704700px;}
.yfc{bottom:415.257300px;}
.ye6{bottom:415.257450px;}
.y60{bottom:416.121900px;}
.y8e{bottom:416.399850px;}
.y2d{bottom:417.098550px;}
.y1d{bottom:417.376650px;}
.y1b3{bottom:431.134350px;}
.y1e4{bottom:431.151300px;}
.yb5{bottom:432.190350px;}
.y123{bottom:434.112150px;}
.y184{bottom:435.387750px;}
.y154{bottom:435.404550px;}
.ye5{bottom:435.957300px;}
.y5f{bottom:436.821900px;}
.y8d{bottom:437.099850px;}
.y2c{bottom:437.798700px;}
.y1c{bottom:438.076650px;}
.yb4{bottom:451.819050px;}
.y1b2{bottom:451.834500px;}
.y1e3{bottom:451.851300px;}
.y122{bottom:454.812150px;}
.y183{bottom:456.087750px;}
.y153{bottom:456.104700px;}
.ye4{bottom:456.657300px;}
.y5e{bottom:457.521900px;}
.y8c{bottom:457.799850px;}
.y2b{bottom:458.498550px;}
.y1b{bottom:458.776650px;}
.yb3{bottom:471.619050px;}
.y1b1{bottom:472.534350px;}
.y1e2{bottom:472.551300px;}
.y121{bottom:475.512150px;}
.y152{bottom:476.804700px;}
.yfb{bottom:477.357300px;}
.ye3{bottom:477.357450px;}
.y5d{bottom:478.221900px;}
.y8b{bottom:478.499850px;}
.yb2{bottom:491.256000px;}
.y1b0{bottom:493.234350px;}
.y1e1{bottom:493.251300px;}
.y120{bottom:496.212000px;}
.y204{bottom:497.486550px;}
.y182{bottom:497.487750px;}
.y151{bottom:497.504550px;}
.ye2{bottom:498.057300px;}
.y5c{bottom:498.921900px;}
.y8a{bottom:499.199850px;}
.yb1{bottom:512.515800px;}
.y1af{bottom:513.934500px;}
.y1e0{bottom:513.951300px;}
.y11f{bottom:516.912150px;}
.y203{bottom:518.186550px;}
.y181{bottom:518.187750px;}
.y150{bottom:518.204700px;}
.yfa{bottom:518.757300px;}
.ye1{bottom:518.757450px;}
.y5b{bottom:519.621900px;}
.y89{bottom:519.899850px;}
.y1a{bottom:520.647750px;}
.yb0{bottom:533.775750px;}
.y1ae{bottom:534.634350px;}
.y1df{bottom:534.651300px;}
.y11e{bottom:537.612150px;}
.y19{bottom:538.647750px;}
.y202{bottom:538.886550px;}
.y180{bottom:538.887750px;}
.y14f{bottom:538.904550px;}
.ye0{bottom:539.457300px;}
.y5a{bottom:540.321900px;}
.y88{bottom:540.599850px;}
.yaf{bottom:555.035550px;}
.y1ad{bottom:555.334500px;}
.y1de{bottom:555.351300px;}
.y18{bottom:556.647750px;}
.y11d{bottom:558.312150px;}
.y17f{bottom:559.587750px;}
.y14e{bottom:559.604700px;}
.ydf{bottom:560.157300px;}
.y59{bottom:561.021900px;}
.y87{bottom:561.299850px;}
.y1ac{bottom:576.034350px;}
.y1dd{bottom:576.051300px;}
.yae{bottom:576.295350px;}
.y11c{bottom:579.012150px;}
.y201{bottom:580.286550px;}
.y17e{bottom:580.287750px;}
.y14d{bottom:580.304700px;}
.yf9{bottom:580.857300px;}
.yde{bottom:580.857450px;}
.y58{bottom:581.721900px;}
.y86{bottom:581.999850px;}
.y17{bottom:586.647750px;}
.y1ab{bottom:596.734350px;}
.y1dc{bottom:596.751300px;}
.yad{bottom:598.754400px;}
.y11b{bottom:599.712000px;}
.y200{bottom:600.986550px;}
.y17d{bottom:600.987750px;}
.y14c{bottom:601.004550px;}
.ydd{bottom:601.557300px;}
.y57{bottom:602.421900px;}
.y85{bottom:602.699850px;}
.y16{bottom:604.647750px;}
.yac{bottom:608.646300px;}
.y1aa{bottom:617.434500px;}
.y1db{bottom:617.451300px;}
.y11a{bottom:620.412150px;}
.y17c{bottom:621.687750px;}
.y14b{bottom:621.704700px;}
.yf8{bottom:622.257300px;}
.ydc{bottom:622.257450px;}
.y56{bottom:623.121900px;}
.y84{bottom:623.399850px;}
.y15{bottom:631.647750px;}
.y1a9{bottom:638.134350px;}
.y1da{bottom:638.151300px;}
.yab{bottom:640.997250px;}
.y119{bottom:641.112150px;}
.y1ff{bottom:642.386550px;}
.y17b{bottom:642.387750px;}
.y14a{bottom:642.404550px;}
.ydb{bottom:642.957300px;}
.y55{bottom:643.821900px;}
.y83{bottom:644.099850px;}
.y14{bottom:649.647750px;}
.y1a8{bottom:658.834500px;}
.y1d9{bottom:658.851300px;}
.y118{bottom:661.812150px;}
.yaa{bottom:662.257200px;}
.y1fe{bottom:663.086550px;}
.y17a{bottom:663.087750px;}
.y149{bottom:663.104700px;}
.yda{bottom:663.657300px;}
.y54{bottom:664.521900px;}
.y82{bottom:664.799850px;}
.y13{bottom:667.647750px;}
.y1a7{bottom:679.534350px;}
.y1d8{bottom:679.551300px;}
.y117{bottom:682.512150px;}
.ya9{bottom:683.517000px;}
.y1fd{bottom:683.786550px;}
.y179{bottom:683.787750px;}
.y148{bottom:683.804700px;}
.yf7{bottom:684.357300px;}
.yd9{bottom:684.357450px;}
.y53{bottom:685.221900px;}
.y81{bottom:685.499850px;}
.y12{bottom:685.647750px;}
.y1a6{bottom:700.234350px;}
.y1d7{bottom:700.251300px;}
.y116{bottom:703.212000px;}
.y11{bottom:703.647750px;}
.y1fc{bottom:704.486550px;}
.y178{bottom:704.487750px;}
.y147{bottom:704.504550px;}
.ya8{bottom:704.776950px;}
.yd8{bottom:705.057300px;}
.y52{bottom:705.921900px;}
.y80{bottom:706.199850px;}
.y1a5{bottom:720.934500px;}
.y1d6{bottom:720.951300px;}
.y10{bottom:721.647750px;}
.y115{bottom:723.912150px;}
.y1fb{bottom:725.186550px;}
.y177{bottom:725.187750px;}
.y146{bottom:725.204700px;}
.yf6{bottom:725.757300px;}
.yd7{bottom:725.757450px;}
.ya7{bottom:726.036750px;}
.y51{bottom:726.621900px;}
.y7f{bottom:726.899850px;}
.yf{bottom:739.647750px;}
.y1a4{bottom:741.634350px;}
.y1d5{bottom:741.651300px;}
.y114{bottom:744.612150px;}
.y1fa{bottom:745.886550px;}
.y176{bottom:745.887750px;}
.y145{bottom:745.904550px;}
.yd6{bottom:746.457300px;}
.ya6{bottom:747.296550px;}
.y50{bottom:747.321900px;}
.y7e{bottom:747.599850px;}
.ye{bottom:757.647750px;}
.y1a3{bottom:762.334500px;}
.y1d4{bottom:762.351300px;}
.y113{bottom:765.312150px;}
.y1f9{bottom:766.586550px;}
.y175{bottom:766.587750px;}
.y144{bottom:766.604700px;}
.yd5{bottom:767.157300px;}
.y4f{bottom:768.021900px;}
.y7d{bottom:768.299850px;}
.ya5{bottom:768.564450px;}
.yd{bottom:775.647750px;}
.y1a2{bottom:783.034350px;}
.y1d3{bottom:783.051300px;}
.y112{bottom:786.012150px;}
.y1f8{bottom:787.286550px;}
.y174{bottom:787.287750px;}
.y143{bottom:787.304700px;}
.yd4{bottom:787.857300px;}
.y4e{bottom:788.721900px;}
.y7c{bottom:788.999850px;}
.ya4{bottom:789.816150px;}
.yc{bottom:793.647750px;}
.y1a1{bottom:803.734350px;}
.y1d2{bottom:803.751300px;}
.y111{bottom:806.712000px;}
.y1f7{bottom:807.986550px;}
.y173{bottom:807.987750px;}
.y142{bottom:808.004550px;}
.yf5{bottom:808.557300px;}
.yd3{bottom:808.557450px;}
.y4d{bottom:809.421900px;}
.y7b{bottom:809.699850px;}
.ya3{bottom:811.075950px;}
.yb{bottom:811.647750px;}
.y1a0{bottom:824.434350px;}
.y1d1{bottom:824.451300px;}
.y110{bottom:827.412000px;}
.y1f6{bottom:828.686400px;}
.y172{bottom:828.687750px;}
.y141{bottom:828.704550px;}
.yf4{bottom:829.257300px;}
.yd2{bottom:829.257450px;}
.ya{bottom:829.647750px;}
.y4c{bottom:830.121900px;}
.ya2{bottom:832.335900px;}
.y19f{bottom:845.134500px;}
.y1d0{bottom:845.151300px;}
.y9{bottom:847.647750px;}
.y10f{bottom:848.112150px;}
.y1f5{bottom:849.386550px;}
.y171{bottom:849.387750px;}
.y140{bottom:849.404700px;}
.yd1{bottom:849.957300px;}
.y4b{bottom:850.821900px;}
.y7a{bottom:851.099850px;}
.ya1{bottom:853.603800px;}
.y19e{bottom:865.834500px;}
.y1cf{bottom:865.851450px;}
.y10e{bottom:868.812150px;}
.y1f4{bottom:870.086550px;}
.y170{bottom:870.087750px;}
.y13f{bottom:870.104700px;}
.y4a{bottom:871.521900px;}
.y79{bottom:871.799850px;}
.ya0{bottom:874.863600px;}
.yd0{bottom:877.341000px;}
.y19d{bottom:886.534500px;}
.y1ce{bottom:886.551300px;}
.y10d{bottom:889.512150px;}
.y16f{bottom:890.787750px;}
.y13e{bottom:890.804700px;}
.y8{bottom:891.139050px;}
.y49{bottom:892.221900px;}
.y78{bottom:892.499850px;}
.ycf{bottom:895.341000px;}
.y9f{bottom:901.038450px;}
.y19c{bottom:907.234500px;}
.y1cd{bottom:907.251300px;}
.y10c{bottom:910.212000px;}
.y1f3{bottom:911.486550px;}
.y16e{bottom:911.487750px;}
.y13d{bottom:911.504550px;}
.y7{bottom:911.839050px;}
.y48{bottom:912.921900px;}
.y77{bottom:913.199850px;}
.yce{bottom:913.341000px;}
.y19b{bottom:927.934500px;}
.y1cc{bottom:927.951300px;}
.y10b{bottom:930.912000px;}
.y1f2{bottom:932.186400px;}
.y16d{bottom:932.187750px;}
.y13c{bottom:932.204550px;}
.y47{bottom:933.621900px;}
.y76{bottom:933.899850px;}
.y9e{bottom:937.067850px;}
.ycc{bottom:940.250550px;}
.y19a{bottom:948.634500px;}
.y1cb{bottom:948.651450px;}
.y10a{bottom:951.612150px;}
.y16c{bottom:952.887750px;}
.y13b{bottom:952.904700px;}
.y6{bottom:953.239050px;}
.y46{bottom:954.321900px;}
.y75{bottom:954.599850px;}
.y9d{bottom:957.767700px;}
.yc9{bottom:961.194300px;}
.ycb{bottom:961.202400px;}
.y199{bottom:969.334500px;}
.y1ca{bottom:969.351450px;}
.y109{bottom:972.312150px;}
.y1f1{bottom:973.586550px;}
.y16b{bottom:973.587750px;}
.y13a{bottom:973.604700px;}
.y45{bottom:975.021900px;}
.y74{bottom:975.299850px;}
.y5{bottom:978.439050px;}
.yc8{bottom:980.994300px;}
.yca{bottom:981.002400px;}
.y198{bottom:990.034500px;}
.y1c9{bottom:990.051300px;}
.y108{bottom:993.012150px;}
.y16a{bottom:994.287750px;}
.y139{bottom:994.304700px;}
.y44{bottom:995.721900px;}
.y73{bottom:995.999850px;}
.yc7{bottom:1002.796650px;}
.y4{bottom:1003.639050px;}
.y197{bottom:1010.734500px;}
.y1c8{bottom:1010.751300px;}
.y107{bottom:1013.712000px;}
.y1f0{bottom:1014.986550px;}
.y169{bottom:1014.987750px;}
.y138{bottom:1015.004550px;}
.y43{bottom:1016.421900px;}
.y72{bottom:1016.699850px;}
.yc6{bottom:1025.879100px;}
.y196{bottom:1031.434500px;}
.y1c7{bottom:1031.451300px;}
.y106{bottom:1034.412000px;}
.y1ef{bottom:1035.686400px;}
.y168{bottom:1035.687750px;}
.y137{bottom:1035.704550px;}
.yc5{bottom:1035.771000px;}
.y42{bottom:1037.121900px;}
.y71{bottom:1037.399850px;}
.y195{bottom:1052.134500px;}
.y1c6{bottom:1052.151450px;}
.y3{bottom:1054.039050px;}
.y105{bottom:1055.112150px;}
.y1ee{bottom:1056.386550px;}
.y167{bottom:1056.387750px;}
.y136{bottom:1056.404700px;}
.y41{bottom:1057.821900px;}
.y70{bottom:1058.099850px;}
.yc4{bottom:1068.987750px;}
.y194{bottom:1072.834500px;}
.y1c5{bottom:1072.851450px;}
.y104{bottom:1075.812150px;}
.y166{bottom:1077.087750px;}
.y135{bottom:1077.104700px;}
.y40{bottom:1078.521900px;}
.y6f{bottom:1078.799850px;}
.y193{bottom:1093.534500px;}
.y1c4{bottom:1093.551300px;}
.y103{bottom:1096.512150px;}
.y1ed{bottom:1097.786550px;}
.y165{bottom:1097.787750px;}
.y134{bottom:1097.804700px;}
.y3f{bottom:1099.221900px;}
.y6e{bottom:1099.499850px;}
.ycd{bottom:1103.329650px;}
.y3b{bottom:1106.290350px;}
.yc3{bottom:1134.026850px;}
.y163{bottom:1134.242850px;}
.y3d{bottom:1134.453750px;}
.y102{bottom:1134.880500px;}
.y1c2{bottom:1135.300650px;}
.y9b{bottom:1135.307400px;}
.y132{bottom:1135.730850px;}
.y2{bottom:1140.322950px;}
.h3{height:45.826172px;}
.ha{height:47.437500px;}
.h4{height:47.909180px;}
.h2{height:51.876572px;}
.h7{height:52.646484px;}
.hb{height:57.911133px;}
.hd{height:57.942933px;}
.hc{height:57.943533px;}
.h8{height:59.667480px;}
.h9{height:60.543457px;}
.h5{height:67.450195px;}
.h6{height:72.638672px;}
.hf{height:97.511133px;}
.he{height:97.543533px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:63.779550px;}
.x1d{left:68.406450px;}
.x10{left:75.326400px;}
.x24{left:77.027250px;}
.x12{left:89.291400px;}
.x1{left:106.299150px;}
.x2{left:111.188850px;}
.x26{left:115.075800px;}
.xc{left:131.811000px;}
.xb{left:148.181100px;}
.x2b{left:172.241850px;}
.x9{left:173.662350px;}
.x7{left:184.402800px;}
.x2e{left:185.410950px;}
.x21{left:198.933600px;}
.x2a{left:229.167600px;}
.x17{left:231.640200px;}
.x6{left:241.922100px;}
.xa{left:258.547800px;}
.x2c{left:276.718800px;}
.x2f{left:330.094500px;}
.x2d{left:368.064750px;}
.x8{left:369.219150px;}
.x1c{left:378.460350px;}
.x1f{left:398.279850px;}
.x1a{left:407.706600px;}
.x20{left:413.374050px;}
.x18{left:415.751100px;}
.x19{left:417.769200px;}
.x5{left:419.102250px;}
.x15{left:421.558950px;}
.x23{left:423.259800px;}
.x1e{left:434.313150px;}
.x14{left:435.826800px;}
.x25{left:445.058250px;}
.x1b{left:456.260250px;}
.x13{left:461.338650px;}
.x3{left:477.113400px;}
.xd{left:478.346400px;}
.x4{left:485.393400px;}
.x16{left:501.732300px;}
.xe{left:503.858250px;}
.x29{left:573.584550px;}
.x27{left:612.331950px;}
.x22{left:639.618750px;}
.xf{left:766.985550px;}
.x28{left:829.133850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.378133pt;}
.v2{vertical-align:35.228800pt;}
.ls8{letter-spacing:-8.213333pt;}
.ls17{letter-spacing:-7.912000pt;}
.ls9{letter-spacing:-4.400000pt;}
.lse{letter-spacing:-2.514667pt;}
.ls19{letter-spacing:-2.269333pt;}
.lsf{letter-spacing:-1.840000pt;}
.ls1a{letter-spacing:-1.533333pt;}
.lsa{letter-spacing:-1.525333pt;}
.ls30{letter-spacing:-1.349333pt;}
.ls1c{letter-spacing:-0.797333pt;}
.ls7{letter-spacing:-0.528000pt;}
.ls4{letter-spacing:-0.485333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000275pt;}
.ls10{letter-spacing:0.000533pt;}
.ls11{letter-spacing:0.009600pt;}
.lsc{letter-spacing:0.010133pt;}
.ls33{letter-spacing:0.736000pt;}
.ls2d{letter-spacing:0.861333pt;}
.ls31{letter-spacing:1.226667pt;}
.ls26{letter-spacing:1.278400pt;}
.ls1d{letter-spacing:1.622933pt;}
.ls2e{letter-spacing:1.656000pt;}
.ls22{letter-spacing:1.777600pt;}
.ls34{letter-spacing:2.185320pt;}
.ls12{letter-spacing:2.277333pt;}
.ls3a{letter-spacing:2.609600pt;}
.ls39{letter-spacing:2.620267pt;}
.ls38{letter-spacing:2.637333pt;}
.ls37{letter-spacing:3.205867pt;}
.ls36{letter-spacing:4.047010pt;}
.ls2{letter-spacing:4.299733pt;}
.ls13{letter-spacing:4.685333pt;}
.ls25{letter-spacing:4.774400pt;}
.ls32{letter-spacing:5.152000pt;}
.ls2c{letter-spacing:5.163733pt;}
.ls20{letter-spacing:5.380800pt;}
.ls21{letter-spacing:5.381333pt;}
.ls28{letter-spacing:5.810133pt;}
.lsb{letter-spacing:5.846933pt;}
.ls2b{letter-spacing:7.242133pt;}
.ls24{letter-spacing:7.243200pt;}
.lsd{letter-spacing:7.386133pt;}
.ls1{letter-spacing:9.350400pt;}
.ls1f{letter-spacing:9.923200pt;}
.ls1e{letter-spacing:9.923733pt;}
.ls14{letter-spacing:10.973867pt;}
.ls23{letter-spacing:11.069333pt;}
.ls2f{letter-spacing:11.101333pt;}
.ls18{letter-spacing:11.162667pt;}
.ls2a{letter-spacing:12.513600pt;}
.ls29{letter-spacing:12.514133pt;}
.ls1b{letter-spacing:15.210667pt;}
.ls15{letter-spacing:17.557867pt;}
.ls27{letter-spacing:20.363367pt;}
.ls0{letter-spacing:22.749867pt;}
.ls16{letter-spacing:48.381867pt;}
.ls5{letter-spacing:378.108267pt;}
.ls6{letter-spacing:454.964800pt;}
.ws2a{word-spacing:-17.970667pt;}
.ws1{word-spacing:-16.848000pt;}
.ws4{word-spacing:-15.333333pt;}
.ws23{word-spacing:-15.210667pt;}
.ws8{word-spacing:-14.666667pt;}
.ws1f{word-spacing:-14.536000pt;}
.ws1e{word-spacing:-13.800000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws17{word-spacing:-13.141333pt;}
.ws21{word-spacing:-11.162667pt;}
.ws25{word-spacing:-11.101333pt;}
.wsa{word-spacing:-6.453333pt;}
.ws28{word-spacing:-5.152000pt;}
.ws24{word-spacing:-1.656000pt;}
.ws27{word-spacing:-1.226667pt;}
.ws29{word-spacing:-0.736000pt;}
.ws5{word-spacing:-0.061333pt;}
.ws7{word-spacing:-0.058667pt;}
.ws2{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws18{word-spacing:0.528000pt;}
.ws26{word-spacing:1.349333pt;}
.ws1d{word-spacing:1.840000pt;}
.ws22{word-spacing:2.269333pt;}
.ws1c{word-spacing:2.514667pt;}
.ws20{word-spacing:7.912000pt;}
.ws9{word-spacing:103.283733pt;}
.wsf{word-spacing:306.217600pt;}
.ws19{word-spacing:308.613867pt;}
.ws11{word-spacing:314.353067pt;}
.ws13{word-spacing:343.162133pt;}
.ws10{word-spacing:345.605333pt;}
.ws14{word-spacing:357.717333pt;}
.wsd{word-spacing:363.841067pt;}
.wse{word-spacing:369.355200pt;}
.ws1b{word-spacing:373.496533pt;}
.ws16{word-spacing:395.181333pt;}
.ws12{word-spacing:413.939733pt;}
.wsc{word-spacing:417.437333pt;}
.ws1a{word-spacing:417.437867pt;}
.wsb{word-spacing:454.696533pt;}
.ws15{word-spacing:473.594667pt;}
.ws0{word-spacing:1340.688533pt;}
._17{margin-left:-15.421486pt;}
._1e{margin-left:-14.174400pt;}
._a{margin-left:-12.520000pt;}
._56{margin-left:-11.081600pt;}
._5{margin-left:-9.563733pt;}
._25{margin-left:-8.221067pt;}
._7{margin-left:-6.532800pt;}
._b{margin-left:-5.405867pt;}
._4{margin-left:-4.466667pt;}
._2{margin-left:-3.247467pt;}
._0{margin-left:-2.223467pt;}
._3{margin-left:-1.127467pt;}
._1{width:1.478400pt;}
._9{width:2.449067pt;}
._18{width:3.379467pt;}
._6{width:4.288000pt;}
._e{width:5.191467pt;}
._16{width:6.281067pt;}
._12{width:7.366933pt;}
._10{width:8.777600pt;}
._f{width:9.967467pt;}
._1f{width:11.110400pt;}
._1d{width:12.064267pt;}
._1b{width:13.603733pt;}
._8{width:14.864000pt;}
._c{width:15.873067pt;}
._11{width:17.516800pt;}
._d{width:18.850133pt;}
._20{width:19.812000pt;}
._23{width:21.017867pt;}
._13{width:22.026667pt;}
._14{width:23.600000pt;}
._24{width:24.640800pt;}
._5a{width:26.008267pt;}
._1a{width:26.925333pt;}
._19{width:27.826933pt;}
._15{width:28.771200pt;}
._22{width:29.783467pt;}
._21{width:30.723733pt;}
._53{width:31.646933pt;}
._54{width:32.964800pt;}
._55{width:34.481600pt;}
._58{width:36.563733pt;}
._59{width:38.351733pt;}
._1c{width:39.271733pt;}
._5e{width:40.614667pt;}
._5f{width:42.350400pt;}
._5b{width:43.281067pt;}
._5c{width:44.423733pt;}
._57{width:47.570133pt;}
._52{width:49.109600pt;}
._3a{width:64.928000pt;}
._5d{width:66.294400pt;}
._28{width:84.586667pt;}
._41{width:176.677600pt;}
._27{width:186.339200pt;}
._2a{width:212.987733pt;}
._49{width:225.622400pt;}
._42{width:228.592000pt;}
._40{width:235.451733pt;}
._36{width:243.468800pt;}
._39{width:249.336800pt;}
._46{width:250.870933pt;}
._38{width:252.149333pt;}
._48{width:264.201600pt;}
._2d{width:269.222400pt;}
._4e{width:276.573867pt;}
._47{width:283.627733pt;}
._29{width:297.141333pt;}
._2c{width:307.832533pt;}
._37{width:314.571733pt;}
._2b{width:318.162667pt;}
._4f{width:323.295467pt;}
._44{width:324.572800pt;}
._43{width:370.778133pt;}
._3b{width:381.515733pt;}
._4b{width:383.081600pt;}
._35{width:397.740800pt;}
._34{width:408.273067pt;}
._4a{width:421.846933pt;}
._3e{width:424.247733pt;}
._3d{width:432.257067pt;}
._2e{width:458.641600pt;}
._45{width:465.102933pt;}
._4d{width:468.446933pt;}
._4c{width:471.635733pt;}
._31{width:477.233067pt;}
._51{width:482.866133pt;}
._33{width:494.545600pt;}
._3c{width:509.397867pt;}
._2f{width:512.199467pt;}
._30{width:526.102400pt;}
._32{width:533.755733pt;}
._26{width:612.376533pt;}
._50{width:734.859733pt;}
._3f{width:986.700267pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:61.333333pt;}
.fs2{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:98.645067pt;}
.y3c{bottom:98.739600pt;}
.y9c{bottom:99.233733pt;}
.y164{bottom:99.422800pt;}
.y3e{bottom:99.989600pt;}
.y1c3{bottom:100.651067pt;}
.y133{bottom:100.745600pt;}
.y1c1{bottom:125.630667pt;}
.y131{bottom:128.277467pt;}
.y192{bottom:129.411333pt;}
.y162{bottom:129.426400pt;}
.yf3{bottom:129.917600pt;}
.y6d{bottom:130.686133pt;}
.y9a{bottom:130.933200pt;}
.y3a{bottom:131.554267pt;}
.y2a{bottom:131.801467pt;}
.yc2{bottom:134.474400pt;}
.y1c0{bottom:144.030533pt;}
.y130{bottom:146.677467pt;}
.y191{bottom:147.811333pt;}
.y161{bottom:147.826400pt;}
.y101{bottom:148.317600pt;}
.yf2{bottom:148.317733pt;}
.y6c{bottom:149.086133pt;}
.y99{bottom:149.333200pt;}
.y39{bottom:149.954267pt;}
.y29{bottom:150.201467pt;}
.yc1{bottom:153.560933pt;}
.y1bf{bottom:162.430533pt;}
.y12f{bottom:165.077333pt;}
.y190{bottom:166.211333pt;}
.y160{bottom:166.226267pt;}
.yf1{bottom:166.717600pt;}
.y6b{bottom:167.486133pt;}
.y98{bottom:167.733200pt;}
.y38{bottom:168.354267pt;}
.y28{bottom:168.601467pt;}
.yc0{bottom:173.793600pt;}
.y1be{bottom:180.830533pt;}
.y12e{bottom:183.477333pt;}
.y18f{bottom:184.611333pt;}
.y15f{bottom:184.626267pt;}
.y100{bottom:185.117600pt;}
.yf0{bottom:185.117733pt;}
.y6a{bottom:185.886133pt;}
.y97{bottom:186.133200pt;}
.y37{bottom:186.754267pt;}
.y27{bottom:187.001467pt;}
.ybf{bottom:194.026267pt;}
.y1bd{bottom:199.230667pt;}
.y12d{bottom:201.877467pt;}
.y18e{bottom:203.011333pt;}
.y15e{bottom:203.026400pt;}
.yef{bottom:203.517600pt;}
.y69{bottom:204.286133pt;}
.y96{bottom:204.533200pt;}
.y36{bottom:205.154267pt;}
.y26{bottom:205.401467pt;}
.ybe{bottom:212.931067pt;}
.y1bc{bottom:217.630667pt;}
.y12c{bottom:220.277467pt;}
.y18d{bottom:221.411333pt;}
.y15d{bottom:221.426400pt;}
.yee{bottom:221.917600pt;}
.y68{bottom:222.686133pt;}
.y95{bottom:222.933200pt;}
.y35{bottom:223.554267pt;}
.y25{bottom:223.801467pt;}
.ybd{bottom:234.569067pt;}
.y1bb{bottom:236.030533pt;}
.y1ec{bottom:236.045600pt;}
.y12b{bottom:238.677467pt;}
.y18c{bottom:239.811333pt;}
.y15c{bottom:239.826400pt;}
.yff{bottom:240.317600pt;}
.yed{bottom:240.317733pt;}
.y67{bottom:241.086133pt;}
.y94{bottom:241.333200pt;}
.y34{bottom:241.954267pt;}
.y24{bottom:242.201467pt;}
.ybc{bottom:243.361867pt;}
.y1ba{bottom:254.430533pt;}
.y1eb{bottom:254.445600pt;}
.y12a{bottom:257.077333pt;}
.y18b{bottom:258.211333pt;}
.y15b{bottom:258.226267pt;}
.yec{bottom:258.717600pt;}
.y66{bottom:259.486133pt;}
.y33{bottom:260.354267pt;}
.y23{bottom:260.601467pt;}
.y1b9{bottom:272.830533pt;}
.y1ea{bottom:272.845600pt;}
.ybb{bottom:273.806933pt;}
.y129{bottom:275.477333pt;}
.y18a{bottom:276.611333pt;}
.y15a{bottom:276.626267pt;}
.yfe{bottom:277.117600pt;}
.yeb{bottom:277.117733pt;}
.y65{bottom:277.886133pt;}
.y93{bottom:278.133200pt;}
.y32{bottom:278.754267pt;}
.y22{bottom:279.001467pt;}
.y1b8{bottom:291.230667pt;}
.y1e9{bottom:291.245600pt;}
.yba{bottom:292.697467pt;}
.y128{bottom:293.877467pt;}
.y189{bottom:295.011333pt;}
.y159{bottom:295.026400pt;}
.yea{bottom:295.517600pt;}
.y64{bottom:296.286133pt;}
.y92{bottom:296.533200pt;}
.y31{bottom:297.154267pt;}
.y21{bottom:297.401467pt;}
.y1b7{bottom:309.630667pt;}
.y1e8{bottom:309.645600pt;}
.yb9{bottom:310.739200pt;}
.y127{bottom:312.277467pt;}
.y188{bottom:313.411333pt;}
.y158{bottom:313.426400pt;}
.ye9{bottom:313.917600pt;}
.y63{bottom:314.686133pt;}
.y91{bottom:314.933200pt;}
.y30{bottom:315.554267pt;}
.y20{bottom:315.801467pt;}
.yb8{bottom:319.532000pt;}
.y1b6{bottom:328.030533pt;}
.y1e7{bottom:328.045600pt;}
.y126{bottom:330.677467pt;}
.y187{bottom:331.811333pt;}
.y157{bottom:331.826400pt;}
.yfd{bottom:332.317600pt;}
.ye8{bottom:332.317733pt;}
.y62{bottom:333.086133pt;}
.y90{bottom:333.333200pt;}
.y2f{bottom:333.954267pt;}
.y1f{bottom:334.201467pt;}
.yb7{bottom:346.366667pt;}
.y1b5{bottom:346.430533pt;}
.y1e6{bottom:346.445600pt;}
.y125{bottom:349.077333pt;}
.y186{bottom:350.211333pt;}
.y156{bottom:350.226267pt;}
.ye7{bottom:350.717600pt;}
.y61{bottom:351.486133pt;}
.y8f{bottom:351.733200pt;}
.y2e{bottom:352.354267pt;}
.y1e{bottom:352.601467pt;}
.y1b4{bottom:364.830667pt;}
.y1e5{bottom:364.845600pt;}
.yb6{bottom:365.271467pt;}
.y124{bottom:367.477467pt;}
.y185{bottom:368.611333pt;}
.y155{bottom:368.626400pt;}
.yfc{bottom:369.117600pt;}
.ye6{bottom:369.117733pt;}
.y60{bottom:369.886133pt;}
.y8e{bottom:370.133200pt;}
.y2d{bottom:370.754267pt;}
.y1d{bottom:371.001467pt;}
.y1b3{bottom:383.230533pt;}
.y1e4{bottom:383.245600pt;}
.yb5{bottom:384.169200pt;}
.y123{bottom:385.877467pt;}
.y184{bottom:387.011333pt;}
.y154{bottom:387.026267pt;}
.ye5{bottom:387.517600pt;}
.y5f{bottom:388.286133pt;}
.y8d{bottom:388.533200pt;}
.y2c{bottom:389.154400pt;}
.y1c{bottom:389.401467pt;}
.yb4{bottom:401.616933pt;}
.y1b2{bottom:401.630667pt;}
.y1e3{bottom:401.645600pt;}
.y122{bottom:404.277467pt;}
.y183{bottom:405.411333pt;}
.y153{bottom:405.426400pt;}
.ye4{bottom:405.917600pt;}
.y5e{bottom:406.686133pt;}
.y8c{bottom:406.933200pt;}
.y2b{bottom:407.554267pt;}
.y1b{bottom:407.801467pt;}
.yb3{bottom:419.216933pt;}
.y1b1{bottom:420.030533pt;}
.y1e2{bottom:420.045600pt;}
.y121{bottom:422.677467pt;}
.y152{bottom:423.826400pt;}
.yfb{bottom:424.317600pt;}
.ye3{bottom:424.317733pt;}
.y5d{bottom:425.086133pt;}
.y8b{bottom:425.333200pt;}
.yb2{bottom:436.672000pt;}
.y1b0{bottom:438.430533pt;}
.y1e1{bottom:438.445600pt;}
.y120{bottom:441.077333pt;}
.y204{bottom:442.210267pt;}
.y182{bottom:442.211333pt;}
.y151{bottom:442.226267pt;}
.ye2{bottom:442.717600pt;}
.y5c{bottom:443.486133pt;}
.y8a{bottom:443.733200pt;}
.yb1{bottom:455.569600pt;}
.y1af{bottom:456.830667pt;}
.y1e0{bottom:456.845600pt;}
.y11f{bottom:459.477467pt;}
.y203{bottom:460.610267pt;}
.y181{bottom:460.611333pt;}
.y150{bottom:460.626400pt;}
.yfa{bottom:461.117600pt;}
.ye1{bottom:461.117733pt;}
.y5b{bottom:461.886133pt;}
.y89{bottom:462.133200pt;}
.y1a{bottom:462.798000pt;}
.yb0{bottom:474.467333pt;}
.y1ae{bottom:475.230533pt;}
.y1df{bottom:475.245600pt;}
.y11e{bottom:477.877467pt;}
.y19{bottom:478.798000pt;}
.y202{bottom:479.010267pt;}
.y180{bottom:479.011333pt;}
.y14f{bottom:479.026267pt;}
.ye0{bottom:479.517600pt;}
.y5a{bottom:480.286133pt;}
.y88{bottom:480.533200pt;}
.yaf{bottom:493.364933pt;}
.y1ad{bottom:493.630667pt;}
.y1de{bottom:493.645600pt;}
.y18{bottom:494.798000pt;}
.y11d{bottom:496.277467pt;}
.y17f{bottom:497.411333pt;}
.y14e{bottom:497.426400pt;}
.ydf{bottom:497.917600pt;}
.y59{bottom:498.686133pt;}
.y87{bottom:498.933200pt;}
.y1ac{bottom:512.030533pt;}
.y1dd{bottom:512.045600pt;}
.yae{bottom:512.262533pt;}
.y11c{bottom:514.677467pt;}
.y201{bottom:515.810267pt;}
.y17e{bottom:515.811333pt;}
.y14d{bottom:515.826400pt;}
.yf9{bottom:516.317600pt;}
.yde{bottom:516.317733pt;}
.y58{bottom:517.086133pt;}
.y86{bottom:517.333200pt;}
.y17{bottom:521.464667pt;}
.y1ab{bottom:530.430533pt;}
.y1dc{bottom:530.445600pt;}
.yad{bottom:532.226133pt;}
.y11b{bottom:533.077333pt;}
.y200{bottom:534.210267pt;}
.y17d{bottom:534.211333pt;}
.y14c{bottom:534.226267pt;}
.ydd{bottom:534.717600pt;}
.y57{bottom:535.486133pt;}
.y85{bottom:535.733200pt;}
.y16{bottom:537.464667pt;}
.yac{bottom:541.018933pt;}
.y1aa{bottom:548.830667pt;}
.y1db{bottom:548.845600pt;}
.y11a{bottom:551.477467pt;}
.y17c{bottom:552.611333pt;}
.y14b{bottom:552.626400pt;}
.yf8{bottom:553.117600pt;}
.ydc{bottom:553.117733pt;}
.y56{bottom:553.886133pt;}
.y84{bottom:554.133200pt;}
.y15{bottom:561.464667pt;}
.y1a9{bottom:567.230533pt;}
.y1da{bottom:567.245600pt;}
.yab{bottom:569.775333pt;}
.y119{bottom:569.877467pt;}
.y1ff{bottom:571.010267pt;}
.y17b{bottom:571.011333pt;}
.y14a{bottom:571.026267pt;}
.ydb{bottom:571.517600pt;}
.y55{bottom:572.286133pt;}
.y83{bottom:572.533200pt;}
.y14{bottom:577.464667pt;}
.y1a8{bottom:585.630667pt;}
.y1d9{bottom:585.645600pt;}
.y118{bottom:588.277467pt;}
.yaa{bottom:588.673067pt;}
.y1fe{bottom:589.410267pt;}
.y17a{bottom:589.411333pt;}
.y149{bottom:589.426400pt;}
.yda{bottom:589.917600pt;}
.y54{bottom:590.686133pt;}
.y82{bottom:590.933200pt;}
.y13{bottom:593.464667pt;}
.y1a7{bottom:604.030533pt;}
.y1d8{bottom:604.045600pt;}
.y117{bottom:606.677467pt;}
.ya9{bottom:607.570667pt;}
.y1fd{bottom:607.810267pt;}
.y179{bottom:607.811333pt;}
.y148{bottom:607.826400pt;}
.yf7{bottom:608.317600pt;}
.yd9{bottom:608.317733pt;}
.y53{bottom:609.086133pt;}
.y81{bottom:609.333200pt;}
.y12{bottom:609.464667pt;}
.y1a6{bottom:622.430533pt;}
.y1d7{bottom:622.445600pt;}
.y116{bottom:625.077333pt;}
.y11{bottom:625.464667pt;}
.y1fc{bottom:626.210267pt;}
.y178{bottom:626.211333pt;}
.y147{bottom:626.226267pt;}
.ya8{bottom:626.468400pt;}
.yd8{bottom:626.717600pt;}
.y52{bottom:627.486133pt;}
.y80{bottom:627.733200pt;}
.y1a5{bottom:640.830667pt;}
.y1d6{bottom:640.845600pt;}
.y10{bottom:641.464667pt;}
.y115{bottom:643.477467pt;}
.y1fb{bottom:644.610267pt;}
.y177{bottom:644.611333pt;}
.y146{bottom:644.626400pt;}
.yf6{bottom:645.117600pt;}
.yd7{bottom:645.117733pt;}
.ya7{bottom:645.366000pt;}
.y51{bottom:645.886133pt;}
.y7f{bottom:646.133200pt;}
.yf{bottom:657.464667pt;}
.y1a4{bottom:659.230533pt;}
.y1d5{bottom:659.245600pt;}
.y114{bottom:661.877467pt;}
.y1fa{bottom:663.010267pt;}
.y176{bottom:663.011333pt;}
.y145{bottom:663.026267pt;}
.yd6{bottom:663.517600pt;}
.ya6{bottom:664.263600pt;}
.y50{bottom:664.286133pt;}
.y7e{bottom:664.533200pt;}
.ye{bottom:673.464667pt;}
.y1a3{bottom:677.630667pt;}
.y1d4{bottom:677.645600pt;}
.y113{bottom:680.277467pt;}
.y1f9{bottom:681.410267pt;}
.y175{bottom:681.411333pt;}
.y144{bottom:681.426400pt;}
.yd5{bottom:681.917600pt;}
.y4f{bottom:682.686133pt;}
.y7d{bottom:682.933200pt;}
.ya5{bottom:683.168400pt;}
.yd{bottom:689.464667pt;}
.y1a2{bottom:696.030533pt;}
.y1d3{bottom:696.045600pt;}
.y112{bottom:698.677467pt;}
.y1f8{bottom:699.810267pt;}
.y174{bottom:699.811333pt;}
.y143{bottom:699.826400pt;}
.yd4{bottom:700.317600pt;}
.y4e{bottom:701.086133pt;}
.y7c{bottom:701.333200pt;}
.ya4{bottom:702.058800pt;}
.yc{bottom:705.464667pt;}
.y1a1{bottom:714.430533pt;}
.y1d2{bottom:714.445600pt;}
.y111{bottom:717.077333pt;}
.y1f7{bottom:718.210267pt;}
.y173{bottom:718.211333pt;}
.y142{bottom:718.226267pt;}
.yf5{bottom:718.717600pt;}
.yd3{bottom:718.717733pt;}
.y4d{bottom:719.486133pt;}
.y7b{bottom:719.733200pt;}
.ya3{bottom:720.956400pt;}
.yb{bottom:721.464667pt;}
.y1a0{bottom:732.830533pt;}
.y1d1{bottom:732.845600pt;}
.y110{bottom:735.477333pt;}
.y1f6{bottom:736.610133pt;}
.y172{bottom:736.611333pt;}
.y141{bottom:736.626267pt;}
.yf4{bottom:737.117600pt;}
.yd2{bottom:737.117733pt;}
.ya{bottom:737.464667pt;}
.y4c{bottom:737.886133pt;}
.ya2{bottom:739.854133pt;}
.y19f{bottom:751.230667pt;}
.y1d0{bottom:751.245600pt;}
.y9{bottom:753.464667pt;}
.y10f{bottom:753.877467pt;}
.y1f5{bottom:755.010267pt;}
.y171{bottom:755.011333pt;}
.y140{bottom:755.026400pt;}
.yd1{bottom:755.517600pt;}
.y4b{bottom:756.286133pt;}
.y7a{bottom:756.533200pt;}
.ya1{bottom:758.758933pt;}
.y19e{bottom:769.630667pt;}
.y1cf{bottom:769.645733pt;}
.y10e{bottom:772.277467pt;}
.y1f4{bottom:773.410267pt;}
.y170{bottom:773.411333pt;}
.y13f{bottom:773.426400pt;}
.y4a{bottom:774.686133pt;}
.y79{bottom:774.933200pt;}
.ya0{bottom:777.656533pt;}
.yd0{bottom:779.858667pt;}
.y19d{bottom:788.030667pt;}
.y1ce{bottom:788.045600pt;}
.y10d{bottom:790.677467pt;}
.y16f{bottom:791.811333pt;}
.y13e{bottom:791.826400pt;}
.y8{bottom:792.123600pt;}
.y49{bottom:793.086133pt;}
.y78{bottom:793.333200pt;}
.ycf{bottom:795.858667pt;}
.y9f{bottom:800.923067pt;}
.y19c{bottom:806.430667pt;}
.y1cd{bottom:806.445600pt;}
.y10c{bottom:809.077333pt;}
.y1f3{bottom:810.210267pt;}
.y16e{bottom:810.211333pt;}
.y13d{bottom:810.226267pt;}
.y7{bottom:810.523600pt;}
.y48{bottom:811.486133pt;}
.y77{bottom:811.733200pt;}
.yce{bottom:811.858667pt;}
.y19b{bottom:824.830667pt;}
.y1cc{bottom:824.845600pt;}
.y10b{bottom:827.477333pt;}
.y1f2{bottom:828.610133pt;}
.y16d{bottom:828.611333pt;}
.y13c{bottom:828.626267pt;}
.y47{bottom:829.886133pt;}
.y76{bottom:830.133200pt;}
.y9e{bottom:832.949200pt;}
.ycc{bottom:835.778267pt;}
.y19a{bottom:843.230667pt;}
.y1cb{bottom:843.245733pt;}
.y10a{bottom:845.877467pt;}
.y16c{bottom:847.011333pt;}
.y13b{bottom:847.026400pt;}
.y6{bottom:847.323600pt;}
.y46{bottom:848.286133pt;}
.y75{bottom:848.533200pt;}
.y9d{bottom:851.349067pt;}
.yc9{bottom:854.394933pt;}
.ycb{bottom:854.402133pt;}
.y199{bottom:861.630667pt;}
.y1ca{bottom:861.645733pt;}
.y109{bottom:864.277467pt;}
.y1f1{bottom:865.410267pt;}
.y16b{bottom:865.411333pt;}
.y13a{bottom:865.426400pt;}
.y45{bottom:866.686133pt;}
.y74{bottom:866.933200pt;}
.y5{bottom:869.723600pt;}
.yc8{bottom:871.994933pt;}
.yca{bottom:872.002133pt;}
.y198{bottom:880.030667pt;}
.y1c9{bottom:880.045600pt;}
.y108{bottom:882.677467pt;}
.y16a{bottom:883.811333pt;}
.y139{bottom:883.826400pt;}
.y44{bottom:885.086133pt;}
.y73{bottom:885.333200pt;}
.yc7{bottom:891.374800pt;}
.y4{bottom:892.123600pt;}
.y197{bottom:898.430667pt;}
.y1c8{bottom:898.445600pt;}
.y107{bottom:901.077333pt;}
.y1f0{bottom:902.210267pt;}
.y169{bottom:902.211333pt;}
.y138{bottom:902.226267pt;}
.y43{bottom:903.486133pt;}
.y72{bottom:903.733200pt;}
.yc6{bottom:911.892533pt;}
.y196{bottom:916.830667pt;}
.y1c7{bottom:916.845600pt;}
.y106{bottom:919.477333pt;}
.y1ef{bottom:920.610133pt;}
.y168{bottom:920.611333pt;}
.y137{bottom:920.626267pt;}
.yc5{bottom:920.685333pt;}
.y42{bottom:921.886133pt;}
.y71{bottom:922.133200pt;}
.y195{bottom:935.230667pt;}
.y1c6{bottom:935.245733pt;}
.y3{bottom:936.923600pt;}
.y105{bottom:937.877467pt;}
.y1ee{bottom:939.010267pt;}
.y167{bottom:939.011333pt;}
.y136{bottom:939.026400pt;}
.y41{bottom:940.286133pt;}
.y70{bottom:940.533200pt;}
.yc4{bottom:950.211333pt;}
.y194{bottom:953.630667pt;}
.y1c5{bottom:953.645733pt;}
.y104{bottom:956.277467pt;}
.y166{bottom:957.411333pt;}
.y135{bottom:957.426400pt;}
.y40{bottom:958.686133pt;}
.y6f{bottom:958.933200pt;}
.y193{bottom:972.030667pt;}
.y1c4{bottom:972.045600pt;}
.y103{bottom:974.677467pt;}
.y1ed{bottom:975.810267pt;}
.y165{bottom:975.811333pt;}
.y134{bottom:975.826400pt;}
.y3f{bottom:977.086133pt;}
.y6e{bottom:977.333200pt;}
.ycd{bottom:980.737467pt;}
.y3b{bottom:983.369200pt;}
.yc3{bottom:1008.023867pt;}
.y163{bottom:1008.215867pt;}
.y3d{bottom:1008.403333pt;}
.y102{bottom:1008.782667pt;}
.y1c2{bottom:1009.156133pt;}
.y9b{bottom:1009.162133pt;}
.y132{bottom:1009.538533pt;}
.y2{bottom:1013.620400pt;}
.h3{height:40.734375pt;}
.ha{height:42.166667pt;}
.h4{height:42.585938pt;}
.h2{height:46.112508pt;}
.h7{height:46.796875pt;}
.hb{height:51.476562pt;}
.hd{height:51.504829pt;}
.hc{height:51.505363pt;}
.h8{height:53.037760pt;}
.h9{height:53.816406pt;}
.h5{height:59.955729pt;}
.h6{height:64.567708pt;}
.hf{height:86.676562pt;}
.he{height:86.705363pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:56.692933pt;}
.x1d{left:60.805733pt;}
.x10{left:66.956800pt;}
.x24{left:68.468667pt;}
.x12{left:79.370133pt;}
.x1{left:94.488133pt;}
.x2{left:98.834533pt;}
.x26{left:102.289600pt;}
.xc{left:117.165333pt;}
.xb{left:131.716533pt;}
.x2b{left:153.103867pt;}
.x9{left:154.366533pt;}
.x7{left:163.913600pt;}
.x2e{left:164.809733pt;}
.x21{left:176.829867pt;}
.x2a{left:203.704533pt;}
.x17{left:205.902400pt;}
.x6{left:215.041867pt;}
.xa{left:229.820267pt;}
.x2c{left:245.972267pt;}
.x2f{left:293.417333pt;}
.x2d{left:327.168667pt;}
.x8{left:328.194800pt;}
.x1c{left:336.409200pt;}
.x1f{left:354.026533pt;}
.x1a{left:362.405867pt;}
.x20{left:367.443600pt;}
.x18{left:369.556533pt;}
.x19{left:371.350400pt;}
.x5{left:372.535333pt;}
.x15{left:374.719067pt;}
.x23{left:376.230933pt;}
.x1e{left:386.056133pt;}
.x14{left:387.401600pt;}
.x25{left:395.607333pt;}
.x1b{left:405.564667pt;}
.x13{left:410.078800pt;}
.x3{left:424.100800pt;}
.xd{left:425.196800pt;}
.x4{left:431.460800pt;}
.x16{left:445.984267pt;}
.xe{left:447.874000pt;}
.x29{left:509.852933pt;}
.x27{left:544.295067pt;}
.x22{left:568.550000pt;}
.xf{left:681.764933pt;}
.x28{left:737.007867pt;}
}




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