
    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_0f45d4164679e8b9c4598025.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.323866;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_f26d9913cdd8b54604d0d128.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976000;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_77ffa1e2b038fd2c564b5498.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_6f227ca3eb6ec30525b8f8eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_044a41eeace8f8620b812153.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_18aa9553db7c457e48acc14e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_3e60612cbc71925de24f2e41.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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_91aa862c3e1fb932cb0e9e0e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bcd21942440242f9bcdb622a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932000;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.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);}
.m0{transform:matrix(0.267158,0.000771,0.000000,0.250000,0,0);-ms-transform:matrix(0.267158,0.000771,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267158,0.000771,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.108000px;}
.v2{vertical-align:23.760000px;}
.v4{vertical-align:36.822000px;}
.v1{vertical-align:293.035937px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.988600px;}
.ls3{letter-spacing:3.246556px;}
.ls5{letter-spacing:14.118000px;}
.ls4{letter-spacing:16.360350px;}
.ls2{letter-spacing:23.279700px;}
.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;}
}
.ws0{word-spacing:-73.948328px;}
.ws5{word-spacing:-18.196379px;}
.ws14{word-spacing:-16.363650px;}
.ws64{word-spacing:-16.337506px;}
.ws6b{word-spacing:-5.432732px;}
.ws47{word-spacing:-3.076366px;}
.ws34{word-spacing:-2.225456px;}
.wse{word-spacing:-1.374547px;}
.ws46{word-spacing:-1.243637px;}
.ws18{word-spacing:-0.916364px;}
.ws53{word-spacing:-0.850910px;}
.ws13{word-spacing:-0.785455px;}
.ws10{word-spacing:-0.654546px;}
.ws1a{word-spacing:-0.589091px;}
.wsf{word-spacing:-0.523637px;}
.ws36{word-spacing:-0.392728px;}
.ws16{word-spacing:-0.327273px;}
.ws15{word-spacing:-0.268992px;}
.ws35{word-spacing:-0.261818px;}
.ws17{word-spacing:-0.196364px;}
.ws2{word-spacing:-0.086077px;}
.ws6{word-spacing:-0.065455px;}
.ws55{word-spacing:-0.013615px;}
.ws5f{word-spacing:-0.011968px;}
.ws4f{word-spacing:-0.011455px;}
.ws51{word-spacing:-0.011450px;}
.ws58{word-spacing:-0.011362px;}
.ws61{word-spacing:-0.008540px;}
.ws50{word-spacing:-0.008122px;}
.ws4d{word-spacing:-0.008027px;}
.ws52{word-spacing:-0.008020px;}
.ws66{word-spacing:-0.007979px;}
.ws68{word-spacing:-0.007560px;}
.ws5a{word-spacing:-0.007522px;}
.ws5e{word-spacing:-0.006208px;}
.ws4c{word-spacing:-0.005901px;}
.ws63{word-spacing:-0.005254px;}
.ws59{word-spacing:-0.005151px;}
.ws57{word-spacing:-0.005071px;}
.ws4b{word-spacing:-0.004874px;}
.ws4e{word-spacing:-0.004129px;}
.ws5c{word-spacing:-0.003774px;}
.ws5d{word-spacing:-0.003529px;}
.ws67{word-spacing:-0.003511px;}
.ws62{word-spacing:-0.003190px;}
.ws56{word-spacing:-0.001975px;}
.ws65{word-spacing:-0.001372px;}
.ws54{word-spacing:-0.001240px;}
.ws4a{word-spacing:-0.000817px;}
.ws60{word-spacing:-0.000229px;}
.ws4{word-spacing:0.000000px;}
.ws5b{word-spacing:0.000929px;}
.ws38{word-spacing:1.793268px;}
.ws6a{word-spacing:3.918849px;}
.ws20{word-spacing:4.542946px;}
.ws1d{word-spacing:4.662497px;}
.ws39{word-spacing:6.874194px;}
.ws22{word-spacing:13.395802px;}
.ws1e{word-spacing:14.884124px;}
.wsc{word-spacing:14.902157px;}
.ws37{word-spacing:16.677392px;}
.ws19{word-spacing:18.000015px;}
.ws1b{word-spacing:18.130924px;}
.ws12{word-spacing:19.255334px;}
.ws1f{word-spacing:19.427070px;}
.ws1c{word-spacing:19.546621px;}
.ws3{word-spacing:19.869542px;}
.ws1{word-spacing:23.843384px;}
.ws7{word-spacing:23.979557px;}
.ws9{word-spacing:23.980110px;}
.ws8{word-spacing:23.983939px;}
.wsd{word-spacing:32.851939px;}
.ws24{word-spacing:58.263667px;}
.ws29{word-spacing:58.317466px;}
.ws30{word-spacing:71.282880px;}
.ws2a{word-spacing:71.713267px;}
.ws21{word-spacing:77.684890px;}
.ws48{word-spacing:78.480065px;}
.ws2f{word-spacing:84.732480px;}
.ws26{word-spacing:85.162867px;}
.wsb{word-spacing:110.568154px;}
.ws45{word-spacing:262.996583px;}
.wsa{word-spacing:273.992956px;}
.ws28{word-spacing:300.254755px;}
.ws49{word-spacing:302.269343px;}
.ws27{word-spacing:310.693334px;}
.ws3e{word-spacing:391.469309px;}
.ws69{word-spacing:406.538521px;}
.ws40{word-spacing:415.009709px;}
.ws3f{word-spacing:421.435526px;}
.ws3d{word-spacing:431.036755px;}
.ws3c{word-spacing:441.475334px;}
.ws23{word-spacing:549.857021px;}
.ws31{word-spacing:573.287002px;}
.ws25{word-spacing:596.665037px;}
.ws33{word-spacing:618.124934px;}
.ws32{word-spacing:620.120016px;}
.ws2b{word-spacing:632.005334px;}
.ws2e{word-spacing:635.018755px;}
.ws2d{word-spacing:645.457334px;}
.ws2c{word-spacing:648.470755px;}
.ws3a{word-spacing:680.639021px;}
.ws3b{word-spacing:727.447037px;}
.ws41{word-spacing:762.787334px;}
.ws44{word-spacing:765.800755px;}
.ws43{word-spacing:776.239334px;}
.ws42{word-spacing:779.252755px;}
.ws11{word-spacing:1485.553152px;}
._41{margin-left:-2892.921934px;}
._7{margin-left:-1702.491058px;}
._0{margin-left:-20.157586px;}
._3f{margin-left:-9.098189px;}
._9{margin-left:-7.265461px;}
._d{margin-left:-6.021823px;}
._a{margin-left:-4.843640px;}
._13{margin-left:-3.777811px;}
._5{margin-left:-2.757159px;}
._2{margin-left:-1.721544px;}
._3{width:1.362888px;}
._6{width:2.429886px;}
._f{width:4.208819px;}
._c{width:16.064880px;}
._e{width:17.109666px;}
._b{width:19.448082px;}
._8{width:20.834287px;}
._4{width:22.359467px;}
._35{width:23.491811px;}
._34{width:24.622417px;}
._42{width:26.899200px;}
._1{width:29.180171px;}
._11{width:31.176114px;}
._12{width:32.518588px;}
._40{width:36.130939px;}
._36{width:39.738826px;}
._10{width:65.454600px;}
._17{width:71.713267px;}
._14{width:79.245043px;}
._1e{width:85.162867px;}
._1a{width:87.560006px;}
._19{width:98.612467px;}
._32{width:99.662362px;}
._16{width:117.286810px;}
._18{width:132.594528px;}
._20{width:209.014982px;}
._39{width:218.342006px;}
._37{width:248.068810px;}
._38{width:263.376528px;}
._1c{width:274.136909px;}
._1f{width:297.677309px;}
._1d{width:304.103126px;}
._3a{width:353.248982px;}
._2e{width:384.018230px;}
._21{width:391.526429px;}
._1b{width:398.708602px;}
._23{width:458.208643px;}
._2f{width:472.949741px;}
._24{width:483.604762px;}
._30{width:515.748624px;}
._33{width:520.509312px;}
._27{width:522.473021px;}
._2d{width:545.956598px;}
._3b{width:588.990643px;}
._26{width:593.892202px;}
._3c{width:614.386762px;}
._2c{width:619.663843px;}
._2b{width:633.111043px;}
._29{width:643.064822px;}
._3e{width:653.255021px;}
._31{width:702.156240px;}
._3d{width:724.674202px;}
._22{width:732.596765px;}
._15{width:770.160576px;}
._25{width:779.792822px;}
._2a{width:786.571286px;}
._28{width:941.940845px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,102,204);}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:52.363800px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fs8{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs1{font-size:195.630482px;}
.fs0{font-size:547.765390px;}
.y0{bottom:0.000000px;}
.y2{bottom:47.957836px;}
.y25{bottom:64.339500px;}
.y54{bottom:64.420500px;}
.y1da{bottom:104.185500px;}
.y24{bottom:108.612000px;}
.yab{bottom:111.135000px;}
.y131{bottom:112.542000px;}
.yf9{bottom:114.552000px;}
.ya5{bottom:116.215500px;}
.y1d9{bottom:120.624000px;}
.ya0{bottom:125.050500px;}
.yc1{bottom:126.378000px;}
.y23{bottom:128.935500px;}
.yaa{bottom:131.458500px;}
.y1c7{bottom:132.235500px;}
.y130{bottom:133.861500px;}
.yf8{bottom:134.875500px;}
.ya4{bottom:136.539000px;}
.y1d8{bottom:137.061000px;}
.y1d7{bottom:137.503500px;}
.y9f{bottom:141.487500px;}
.yc0{bottom:146.701500px;}
.y22{bottom:149.259000px;}
.ya9{bottom:151.782000px;}
.y53{bottom:152.071500px;}
.y1c6{bottom:152.559000px;}
.yf7{bottom:155.200500px;}
.y9e{bottom:157.926000px;}
.y12f{bottom:160.669500px;}
.ybf{bottom:167.025000px;}
.yd7{bottom:167.457000px;}
.y7b{bottom:167.992500px;}
.y52{bottom:168.510000px;}
.y157{bottom:168.888000px;}
.y21{bottom:169.582500px;}
.ya8{bottom:172.105500px;}
.y1c5{bottom:172.882500px;}
.y9d{bottom:174.364500px;}
.ya3{bottom:177.187500px;}
.y12e{bottom:180.993000px;}
.y51{bottom:184.948500px;}
.ybe{bottom:187.348500px;}
.yd6{bottom:187.782000px;}
.y7a{bottom:188.317500px;}
.y156{bottom:189.213000px;}
.y9c{bottom:190.803000px;}
.y1a2{bottom:192.429000px;}
.y175{bottom:192.430500px;}
.y1c4{bottom:193.207500px;}
.yf6{bottom:195.847500px;}
.y173{bottom:197.511000px;}
.y12d{bottom:201.316500px;}
.y50{bottom:206.269500px;}
.y9b{bottom:207.241500px;}
.ybd{bottom:207.672000px;}
.yd5{bottom:208.105500px;}
.y79{bottom:208.641000px;}
.y155{bottom:209.536500px;}
.y1a1{bottom:210.147000px;}
.y20{bottom:210.177000px;}
.ya7{bottom:212.754000px;}
.y1c3{bottom:213.531000px;}
.yf5{bottom:216.171000px;}
.y172{bottom:217.834500px;}
.y12c{bottom:221.641500px;}
.y9a{bottom:223.680000px;}
.yd4{bottom:228.429000px;}
.y78{bottom:228.964500px;}
.y154{bottom:229.860000px;}
.y1a0{bottom:230.472000px;}
.y1f{bottom:230.500500px;}
.y4f{bottom:233.077500px;}
.y1c2{bottom:233.854500px;}
.yf4{bottom:236.494500px;}
.y171{bottom:238.158000px;}
.y12b{bottom:241.965000px;}
.y99{bottom:245.001000px;}
.ybc{bottom:248.320500px;}
.yd3{bottom:248.752500px;}
.y77{bottom:249.288000px;}
.y153{bottom:250.183500px;}
.y19f{bottom:250.795500px;}
.y1e{bottom:250.825500px;}
.y4e{bottom:253.401000px;}
.y1c1{bottom:254.178000px;}
.yf3{bottom:256.818000px;}
.y170{bottom:258.481500px;}
.y12a{bottom:262.288500px;}
.y98{bottom:266.250000px;}
.yd2{bottom:269.076000px;}
.y76{bottom:269.611500px;}
.y152{bottom:270.507000px;}
.y19e{bottom:271.119000px;}
.y1d{bottom:271.149000px;}
.y4d{bottom:273.724500px;}
.y1c0{bottom:274.501500px;}
.yf2{bottom:277.143000px;}
.y16f{bottom:278.806500px;}
.y97{bottom:286.575000px;}
.yd1{bottom:289.401000px;}
.y75{bottom:289.935000px;}
.y151{bottom:290.830500px;}
.y19d{bottom:291.442500px;}
.y1c{bottom:291.472500px;}
.y4c{bottom:294.048000px;}
.y174{bottom:294.049500px;}
.y1bf{bottom:294.826500px;}
.yf1{bottom:297.466500px;}
.y16e{bottom:299.130000px;}
.ybb{bottom:304.210500px;}
.y96{bottom:306.898500px;}
.yd0{bottom:309.724500px;}
.y150{bottom:311.155500px;}
.y19c{bottom:311.766000px;}
.y1b{bottom:311.796000px;}
.y4b{bottom:314.373000px;}
.y129{bottom:314.532000px;}
.y1be{bottom:315.150000px;}
.yf0{bottom:317.790000px;}
.y16d{bottom:319.453500px;}
.yba{bottom:324.534000px;}
.y95{bottom:327.222000px;}
.y74{bottom:328.993500px;}
.y128{bottom:330.970500px;}
.y14f{bottom:331.479000px;}
.y19b{bottom:332.091000px;}
.y1a{bottom:332.119500px;}
.y4a{bottom:334.696500px;}
.y1bd{bottom:335.473500px;}
.yef{bottom:338.113500px;}
.y16c{bottom:339.777000px;}
.yb9{bottom:344.857500px;}
.y94{bottom:347.545500px;}
.y73{bottom:349.317000px;}
.y127{bottom:351.295500px;}
.y19a{bottom:352.414500px;}
.y19{bottom:352.444500px;}
.ycf{bottom:352.927500px;}
.y49{bottom:355.020000px;}
.y1bc{bottom:355.797000px;}
.yee{bottom:358.437000px;}
.y16b{bottom:360.100500px;}
.yb8{bottom:365.182500px;}
.y93{bottom:367.869000px;}
.y72{bottom:369.640500px;}
.y14e{bottom:370.737000px;}
.yce{bottom:370.860000px;}
.y126{bottom:371.020500px;}
.y124{bottom:371.677500px;}
.y199{bottom:372.738000px;}
.y18{bottom:372.768000px;}
.y48{bottom:375.343500px;}
.y1bb{bottom:376.120500px;}
.yed{bottom:378.762000px;}
.yb7{bottom:385.506000px;}
.y92{bottom:388.194000px;}
.y71{bottom:389.964000px;}
.y125{bottom:390.747000px;}
.y47{bottom:395.667000px;}
.y1ba{bottom:396.444000px;}
.yec{bottom:399.085500px;}
.y16a{bottom:400.749000px;}
.yb6{bottom:405.829500px;}
.y91{bottom:408.517500px;}
.y70{bottom:410.289000px;}
.y123{bottom:411.070500px;}
.y46{bottom:415.992000px;}
.y1b9{bottom:416.769000px;}
.yeb{bottom:419.409000px;}
.y169{bottom:421.072500px;}
.y122{bottom:421.591500px;}
.y14d{bottom:425.239500px;}
.yb5{bottom:426.153000px;}
.y6f{bottom:430.612500px;}
.ya2{bottom:436.315500px;}
.y1b8{bottom:437.092500px;}
.y168{bottom:441.396000px;}
.y198{bottom:443.581500px;}
.y14c{bottom:445.563000px;}
.yb4{bottom:446.476500px;}
.y90{bottom:447.870000px;}
.y6e{bottom:450.936000px;}
.y121{bottom:451.120500px;}
.y45{bottom:456.639000px;}
.y1b7{bottom:457.416000px;}
.yea{bottom:460.056000px;}
.y167{bottom:461.719500px;}
.y197{bottom:463.905000px;}
.y14b{bottom:465.886500px;}
.yb3{bottom:466.801500px;}
.y8f{bottom:468.193500px;}
.y120{bottom:470.845500px;}
.y6d{bottom:471.259500px;}
.y11e{bottom:471.504000px;}
.y17{bottom:473.407500px;}
.y44{bottom:476.962500px;}
.y1b6{bottom:477.739500px;}
.y166{bottom:482.043000px;}
.y196{bottom:484.228500px;}
.y14a{bottom:486.210000px;}
.yb2{bottom:487.125000px;}
.y8e{bottom:488.517000px;}
.y11f{bottom:490.572000px;}
.y6c{bottom:491.583000px;}
.y16{bottom:493.731000px;}
.y43{bottom:497.286000px;}
.y1b5{bottom:498.063000px;}
.y165{bottom:502.368000px;}
.y195{bottom:504.553500px;}
.y149{bottom:506.533500px;}
.yb1{bottom:507.448500px;}
.y8d{bottom:508.842000px;}
.y11d{bottom:510.895500px;}
.y6b{bottom:511.908000px;}
.y15{bottom:514.054500px;}
.ye9{bottom:515.947500px;}
.y42{bottom:517.611000px;}
.y1b4{bottom:518.388000px;}
.y148{bottom:526.858500px;}
.y1d6{bottom:527.772000px;}
.y8c{bottom:529.165500px;}
.y11c{bottom:530.622000px;}
.y11a{bottom:531.279000px;}
.ye8{bottom:536.271000px;}
.y41{bottom:537.934500px;}
.y1b3{bottom:538.711500px;}
.y164{bottom:543.015000px;}
.y147{bottom:547.182000px;}
.yb0{bottom:548.095500px;}
.y8b{bottom:549.489000px;}
.y11b{bottom:550.347000px;}
.y6a{bottom:550.965000px;}
.y14{bottom:554.649000px;}
.ye7{bottom:556.594500px;}
.y194{bottom:557.229000px;}
.y40{bottom:558.258000px;}
.y1b2{bottom:559.035000px;}
.y163{bottom:563.338500px;}
.y146{bottom:567.505500px;}
.y193{bottom:567.750000px;}
.yaf{bottom:568.420500px;}
.y8a{bottom:569.812500px;}
.y119{bottom:570.672000px;}
.y69{bottom:571.288500px;}
.ye6{bottom:576.918000px;}
.y3f{bottom:578.581500px;}
.y1b1{bottom:579.358500px;}
.y118{bottom:581.191500px;}
.y162{bottom:583.662000px;}
.ycd{bottom:585.468000px;}
.y145{bottom:587.829000px;}
.y13{bottom:588.637500px;}
.yae{bottom:588.744000px;}
.y89{bottom:590.136000px;}
.y68{bottom:591.612000px;}
.ye5{bottom:597.241500px;}
.y192{bottom:597.279000px;}
.y3e{bottom:598.905000px;}
.y1b0{bottom:599.682000px;}
.y161{bottom:603.987000px;}
.ycc{bottom:605.791500px;}
.y191{bottom:607.800000px;}
.y144{bottom:608.152500px;}
.y12{bottom:608.961000px;}
.yad{bottom:609.067500px;}
.y88{bottom:610.461000px;}
.y117{bottom:610.720500px;}
.y67{bottom:611.937000px;}
.ye4{bottom:617.566500px;}
.y3d{bottom:619.230000px;}
.y1af{bottom:620.007000px;}
.y116{bottom:621.241500px;}
.y160{bottom:624.310500px;}
.ycb{bottom:626.115000px;}
.y143{bottom:628.477500px;}
.yac{bottom:629.391000px;}
.y87{bottom:630.784500px;}
.y66{bottom:632.260500px;}
.y190{bottom:637.329000px;}
.ye3{bottom:637.890000px;}
.ya6{bottom:639.553500px;}
.y1ae{bottom:640.330500px;}
.y15f{bottom:644.634000px;}
.yca{bottom:646.438500px;}
.y18f{bottom:647.848500px;}
.y142{bottom:648.801000px;}
.y1d5{bottom:649.714500px;}
.y115{bottom:650.770500px;}
.y86{bottom:651.108000px;}
.y65{bottom:652.584000px;}
.y11{bottom:653.112000px;}
.ye2{bottom:658.213500px;}
.y3c{bottom:659.877000px;}
.y1ad{bottom:660.654000px;}
.y114{bottom:661.291500px;}
.y15e{bottom:664.957500px;}
.yc9{bottom:666.763500px;}
.y1d4{bottom:670.039500px;}
.y85{bottom:671.431500px;}
.y64{bottom:672.907500px;}
.y10{bottom:673.435500px;}
.y18e{bottom:677.377500px;}
.ye1{bottom:678.537000px;}
.yc7{bottom:679.602000px;}
.y3b{bottom:680.200500px;}
.y1ac{bottom:680.977500px;}
.y15d{bottom:685.281000px;}
.y18d{bottom:687.898500px;}
.y141{bottom:688.753500px;}
.y113{bottom:690.820500px;}
.y84{bottom:691.755000px;}
.y63{bottom:693.231000px;}
.yf{bottom:693.759000px;}
.yc6{bottom:699.925500px;}
.y3a{bottom:700.524000px;}
.y1ab{bottom:701.301000px;}
.y112{bottom:701.340000px;}
.yc8{bottom:703.159500px;}
.y140{bottom:709.077000px;}
.y1d3{bottom:710.686500px;}
.y83{bottom:712.080000px;}
.y62{bottom:713.556000px;}
.ye{bottom:714.084000px;}
.y18c{bottom:717.427500px;}
.ye0{bottom:719.185500px;}
.y39{bottom:720.849000px;}
.y1aa{bottom:721.626000px;}
.y15c{bottom:725.929500px;}
.y18b{bottom:727.948500px;}
.y13f{bottom:729.402000px;}
.y111{bottom:730.870500px;}
.y1d2{bottom:731.010000px;}
.y61{bottom:733.879500px;}
.yd{bottom:734.407500px;}
.ydf{bottom:739.509000px;}
.y38{bottom:741.172500px;}
.y110{bottom:741.390000px;}
.y1a9{bottom:741.949500px;}
.y15b{bottom:746.253000px;}
.y13e{bottom:749.725500px;}
.y82{bottom:750.138000px;}
.y1d1{bottom:751.333500px;}
.y60{bottom:754.203000px;}
.yc{bottom:754.731000px;}
.y18a{bottom:756.879000px;}
.yde{bottom:759.832500px;}
.y37{bottom:761.496000px;}
.y1a8{bottom:762.273000px;}
.yc5{bottom:763.621500px;}
.y15a{bottom:766.576500px;}
.y189{bottom:767.400000px;}
.y13d{bottom:770.049000px;}
.y10f{bottom:770.919000px;}
.y1d0{bottom:771.658500px;}
.y5f{bottom:774.526500px;}
.yb{bottom:775.054500px;}
.ydd{bottom:780.156000px;}
.y10e{bottom:781.440000px;}
.y36{bottom:781.819500px;}
.y1a7{bottom:782.596500px;}
.yc4{bottom:783.945000px;}
.y159{bottom:786.900000px;}
.y13c{bottom:790.372500px;}
.y1cf{bottom:791.982000px;}
.y5e{bottom:794.850000px;}
.ya{bottom:795.378000px;}
.y188{bottom:796.332000px;}
.ydc{bottom:800.479500px;}
.y35{bottom:802.143000px;}
.y1a6{bottom:802.920000px;}
.y81{bottom:803.437500px;}
.yc3{bottom:804.268500px;}
.y10d{bottom:810.372000px;}
.y13b{bottom:810.696000px;}
.y1ce{bottom:812.305500px;}
.y5d{bottom:815.175000px;}
.y9{bottom:815.703000px;}
.y187{bottom:816.057000px;}
.ydb{bottom:820.804500px;}
.y34{bottom:822.466500px;}
.ya1{bottom:822.468000px;}
.y1a5{bottom:823.245000px;}
.y80{bottom:823.762500px;}
.yc2{bottom:824.592000px;}
.y184{bottom:826.578000px;}
.y158{bottom:827.548500px;}
.y10c{bottom:830.097000px;}
.y1cd{bottom:832.629000px;}
.y5c{bottom:835.498500px;}
.y186{bottom:835.783500px;}
.y8{bottom:836.026500px;}
.y109{bottom:840.618000px;}
.yda{bottom:841.128000px;}
.y33{bottom:842.791500px;}
.y7f{bottom:844.086000px;}
.y10b{bottom:849.823500px;}
.y13a{bottom:850.650000px;}
.y185{bottom:855.510000px;}
.y5b{bottom:855.822000px;}
.y17d{bottom:856.167000px;}
.y7{bottom:856.350000px;}
.yd9{bottom:861.451500px;}
.y32{bottom:863.115000px;}
.y7e{bottom:864.409500px;}
.y10a{bottom:869.550000px;}
.y102{bottom:870.207000px;}
.y139{bottom:870.973500px;}
.y1cc{bottom:873.276000px;}
.y183{bottom:875.235000px;}
.y31{bottom:883.438500px;}
.y7d{bottom:884.733000px;}
.y182{bottom:885.756000px;}
.y108{bottom:889.275000px;}
.y138{bottom:891.297000px;}
.y1cb{bottom:893.601000px;}
.y5a{bottom:894.879000px;}
.y107{bottom:899.796000px;}
.y30{bottom:903.762000px;}
.y6{bottom:907.105500px;}
.y137{bottom:911.620500px;}
.y1a4{bottom:913.924500px;}
.y181{bottom:914.688000px;}
.y59{bottom:915.204000px;}
.yd8{bottom:919.464000px;}
.y2f{bottom:924.085500px;}
.y106{bottom:928.726500px;}
.y136{bottom:931.945500px;}
.y1a3{bottom:934.248000px;}
.y180{bottom:934.413000px;}
.y17e{bottom:935.071500px;}
.y58{bottom:935.527500px;}
.y2e{bottom:944.410500px;}
.y105{bottom:948.453000px;}
.y103{bottom:949.110000px;}
.y135{bottom:952.269000px;}
.y17f{bottom:954.139500px;}
.y1ca{bottom:954.571500px;}
.y57{bottom:955.851000px;}
.y7c{bottom:964.734000px;}
.y104{bottom:968.179500px;}
.y134{bottom:972.592500px;}
.y17c{bottom:974.463000px;}
.y1c9{bottom:974.895000px;}
.y56{bottom:976.174500px;}
.y1{bottom:983.616000px;}
.y17b{bottom:984.984000px;}
.y2d{bottom:985.057500px;}
.y101{bottom:988.503000px;}
.y5{bottom:988.893000px;}
.y133{bottom:992.916000px;}
.y1c8{bottom:995.220000px;}
.y100{bottom:999.024000px;}
.y2c{bottom:1005.381000px;}
.y55{bottom:1013.643000px;}
.y17a{bottom:1014.513000px;}
.y4{bottom:1015.792500px;}
.y2b{bottom:1025.704500px;}
.yff{bottom:1028.553000px;}
.y132{bottom:1032.175500px;}
.y179{bottom:1034.238000px;}
.y177{bottom:1034.896500px;}
.y3{bottom:1042.690500px;}
.y2a{bottom:1046.029500px;}
.yfe{bottom:1048.278000px;}
.yfc{bottom:1048.936500px;}
.y178{bottom:1053.964500px;}
.y29{bottom:1066.353000px;}
.yfd{bottom:1068.004500px;}
.y176{bottom:1082.140500px;}
.y28{bottom:1086.676500px;}
.yfb{bottom:1100.074500px;}
.y27{bottom:1107.000000px;}
.yfa{bottom:1118.007000px;}
.y26{bottom:1127.323500px;}
.hb{height:30.461558px;}
.h10{height:38.896243px;}
.hc{height:39.165235px;}
.hd{height:39.434227px;}
.h9{height:39.864614px;}
.h13{height:40.137528px;}
.hf{height:43.516637px;}
.h8{height:47.650949px;}
.he{height:47.978222px;}
.h6{height:48.501859px;}
.h7{height:49.549132px;}
.h12{height:50.758949px;}
.h5{height:54.300518px;}
.ha{height:58.573397px;}
.h4{height:65.160440px;}
.h11{height:76.256227px;}
.h2{height:182.924700px;}
.h3{height:541.566529px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:232.575690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:5.617048px;}
.x4{left:63.780000px;}
.x1{left:135.456000px;}
.x3d{left:190.318500px;}
.x1e{left:192.945000px;}
.x3{left:226.488000px;}
.x1f{left:228.822000px;}
.x20{left:229.938000px;}
.x24{left:237.975000px;}
.x39{left:240.754500px;}
.x1a{left:243.381000px;}
.x6{left:244.719000px;}
.x29{left:250.677000px;}
.x3e{left:251.892000px;}
.x2f{left:258.124500px;}
.xd{left:260.751000px;}
.x3b{left:265.038000px;}
.x1c{left:267.664500px;}
.x7{left:308.554500px;}
.x5{left:415.765500px;}
.x30{left:418.588500px;}
.xe{left:421.215000px;}
.x2b{left:425.257500px;}
.x8{left:427.884000px;}
.x34{left:438.204000px;}
.x38{left:439.393500px;}
.x13{left:440.830500px;}
.x18{left:442.020000px;}
.x11{left:443.815500px;}
.x25{left:495.679500px;}
.x28{left:499.599000px;}
.x26{left:517.911000px;}
.x19{left:520.224000px;}
.x27{left:528.367500px;}
.x2a{left:529.800000px;}
.x3a{left:530.919000px;}
.x1b{left:533.545500px;}
.x23{left:536.161500px;}
.x2e{left:549.223500px;}
.xc{left:551.850000px;}
.x22{left:554.344500px;}
.x21{left:557.707500px;}
.x3c{left:562.176000px;}
.x1d{left:564.802500px;}
.x32{left:585.970500px;}
.x10{left:588.597000px;}
.x31{left:597.004500px;}
.xf{left:599.631000px;}
.x37{left:619.693500px;}
.x17{left:622.320000px;}
.x35{left:635.974500px;}
.x14{left:638.601000px;}
.x36{left:640.104000px;}
.x16{left:641.122500px;}
.x15{left:642.730500px;}
.x33{left:645.867000px;}
.x12{left:648.493500px;}
.x2d{left:740.728500px;}
.xb{left:744.478500px;}
.x2c{left:749.754000px;}
.xa{left:751.066500px;}
.x9{left:753.252000px;}
@media print{
.v3{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.762667pt;}
.v2{vertical-align:21.120000pt;}
.v4{vertical-align:32.730667pt;}
.v1{vertical-align:260.476388pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.885827pt;}
.ls5{letter-spacing:12.549333pt;}
.ls4{letter-spacing:14.542533pt;}
.ls2{letter-spacing:20.693067pt;}
.ws0{word-spacing:-65.731847pt;}
.ws5{word-spacing:-16.174559pt;}
.ws14{word-spacing:-14.545467pt;}
.ws64{word-spacing:-14.522227pt;}
.ws6b{word-spacing:-4.829095pt;}
.ws47{word-spacing:-2.734548pt;}
.ws34{word-spacing:-1.978183pt;}
.wse{word-spacing:-1.221819pt;}
.ws46{word-spacing:-1.105455pt;}
.ws18{word-spacing:-0.814546pt;}
.ws53{word-spacing:-0.756364pt;}
.ws13{word-spacing:-0.698182pt;}
.ws10{word-spacing:-0.581819pt;}
.ws1a{word-spacing:-0.523637pt;}
.wsf{word-spacing:-0.465455pt;}
.ws36{word-spacing:-0.349091pt;}
.ws16{word-spacing:-0.290909pt;}
.ws15{word-spacing:-0.239104pt;}
.ws35{word-spacing:-0.232727pt;}
.ws17{word-spacing:-0.174546pt;}
.ws2{word-spacing:-0.076513pt;}
.ws6{word-spacing:-0.058182pt;}
.ws55{word-spacing:-0.012102pt;}
.ws5f{word-spacing:-0.010638pt;}
.ws4f{word-spacing:-0.010182pt;}
.ws51{word-spacing:-0.010178pt;}
.ws58{word-spacing:-0.010099pt;}
.ws61{word-spacing:-0.007591pt;}
.ws50{word-spacing:-0.007220pt;}
.ws4d{word-spacing:-0.007135pt;}
.ws52{word-spacing:-0.007129pt;}
.ws66{word-spacing:-0.007092pt;}
.ws68{word-spacing:-0.006720pt;}
.ws5a{word-spacing:-0.006686pt;}
.ws5e{word-spacing:-0.005518pt;}
.ws4c{word-spacing:-0.005245pt;}
.ws63{word-spacing:-0.004670pt;}
.ws59{word-spacing:-0.004579pt;}
.ws57{word-spacing:-0.004508pt;}
.ws4b{word-spacing:-0.004332pt;}
.ws4e{word-spacing:-0.003670pt;}
.ws5c{word-spacing:-0.003355pt;}
.ws5d{word-spacing:-0.003137pt;}
.ws67{word-spacing:-0.003121pt;}
.ws62{word-spacing:-0.002836pt;}
.ws56{word-spacing:-0.001755pt;}
.ws65{word-spacing:-0.001219pt;}
.ws54{word-spacing:-0.001102pt;}
.ws4a{word-spacing:-0.000726pt;}
.ws60{word-spacing:-0.000204pt;}
.ws4{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.000826pt;}
.ws38{word-spacing:1.594016pt;}
.ws6a{word-spacing:3.483421pt;}
.ws20{word-spacing:4.038174pt;}
.ws1d{word-spacing:4.144442pt;}
.ws39{word-spacing:6.110395pt;}
.ws22{word-spacing:11.907379pt;}
.ws1e{word-spacing:13.230333pt;}
.wsc{word-spacing:13.246362pt;}
.ws37{word-spacing:14.824349pt;}
.ws19{word-spacing:16.000013pt;}
.ws1b{word-spacing:16.116377pt;}
.ws12{word-spacing:17.115853pt;}
.ws1f{word-spacing:17.268507pt;}
.ws1c{word-spacing:17.374774pt;}
.ws3{word-spacing:17.661815pt;}
.ws1{word-spacing:21.194119pt;}
.ws7{word-spacing:21.315162pt;}
.ws9{word-spacing:21.315653pt;}
.ws8{word-spacing:21.319057pt;}
.wsd{word-spacing:29.201724pt;}
.ws24{word-spacing:51.789926pt;}
.ws29{word-spacing:51.837747pt;}
.ws30{word-spacing:63.362560pt;}
.ws2a{word-spacing:63.745126pt;}
.ws21{word-spacing:69.053235pt;}
.ws48{word-spacing:69.760058pt;}
.ws2f{word-spacing:75.317760pt;}
.ws26{word-spacing:75.700326pt;}
.wsb{word-spacing:98.282803pt;}
.ws45{word-spacing:233.774740pt;}
.wsa{word-spacing:243.549294pt;}
.ws28{word-spacing:266.893116pt;}
.ws49{word-spacing:268.683860pt;}
.ws27{word-spacing:276.171853pt;}
.ws3e{word-spacing:347.972719pt;}
.ws69{word-spacing:361.367574pt;}
.ws40{word-spacing:368.897519pt;}
.ws3f{word-spacing:374.609357pt;}
.ws3d{word-spacing:383.143782pt;}
.ws3c{word-spacing:392.422519pt;}
.ws23{word-spacing:488.761796pt;}
.ws31{word-spacing:509.588446pt;}
.ws25{word-spacing:530.368922pt;}
.ws33{word-spacing:549.444386pt;}
.ws32{word-spacing:551.217792pt;}
.ws2b{word-spacing:561.782519pt;}
.ws2e{word-spacing:564.461116pt;}
.ws2d{word-spacing:573.739853pt;}
.ws2c{word-spacing:576.418449pt;}
.ws3a{word-spacing:605.012463pt;}
.ws3b{word-spacing:646.619588pt;}
.ws41{word-spacing:678.033186pt;}
.ws44{word-spacing:680.711782pt;}
.ws43{word-spacing:689.990519pt;}
.ws42{word-spacing:692.669116pt;}
.ws11{word-spacing:1320.491691pt;}
._41{margin-left:-2571.486164pt;}
._7{margin-left:-1513.325385pt;}
._0{margin-left:-17.917854pt;}
._3f{margin-left:-8.087279pt;}
._9{margin-left:-6.458187pt;}
._d{margin-left:-5.352732pt;}
._a{margin-left:-4.305458pt;}
._13{margin-left:-3.358054pt;}
._5{margin-left:-2.450808pt;}
._2{margin-left:-1.530261pt;}
._3{width:1.211456pt;}
._6{width:2.159899pt;}
._f{width:3.741172pt;}
._c{width:14.279893pt;}
._e{width:15.208592pt;}
._b{width:17.287184pt;}
._8{width:18.519366pt;}
._4{width:19.875082pt;}
._35{width:20.881610pt;}
._34{width:21.886593pt;}
._42{width:23.910400pt;}
._1{width:25.937930pt;}
._11{width:27.712101pt;}
._12{width:28.905411pt;}
._40{width:32.116390pt;}
._36{width:35.323401pt;}
._10{width:58.181867pt;}
._17{width:63.745126pt;}
._14{width:70.440038pt;}
._1e{width:75.700326pt;}
._1a{width:77.831117pt;}
._19{width:87.655526pt;}
._32{width:88.588766pt;}
._16{width:104.254942pt;}
._18{width:117.861803pt;}
._20{width:185.791095pt;}
._39{width:194.081783pt;}
._37{width:220.505609pt;}
._38{width:234.112469pt;}
._1c{width:243.677252pt;}
._1f{width:264.602052pt;}
._1d{width:270.313890pt;}
._3a{width:313.999095pt;}
._2e{width:341.349538pt;}
._21{width:348.023492pt;}
._1b{width:354.407646pt;}
._23{width:407.296572pt;}
._2f{width:420.399770pt;}
._24{width:429.870899pt;}
._30{width:458.443221pt;}
._33{width:462.674944pt;}
._27{width:464.420463pt;}
._2d{width:485.294754pt;}
._3b{width:523.547238pt;}
._26{width:527.904179pt;}
._3c{width:546.121566pt;}
._2c{width:550.812305pt;}
._2b{width:562.765372pt;}
._29{width:571.613175pt;}
._3e{width:580.671130pt;}
._31{width:624.138880pt;}
._3d{width:644.154846pt;}
._22{width:651.197124pt;}
._15{width:684.587179pt;}
._25{width:693.149175pt;}
._2a{width:699.174477pt;}
._28{width:837.280751pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:46.545600pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fs8{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs1{font-size:173.893762pt;}
.fs0{font-size:486.902569pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:42.629188pt;}
.y25{bottom:57.190667pt;}
.y54{bottom:57.262667pt;}
.y1da{bottom:92.609333pt;}
.y24{bottom:96.544000pt;}
.yab{bottom:98.786667pt;}
.y131{bottom:100.037333pt;}
.yf9{bottom:101.824000pt;}
.ya5{bottom:103.302667pt;}
.y1d9{bottom:107.221333pt;}
.ya0{bottom:111.156000pt;}
.yc1{bottom:112.336000pt;}
.y23{bottom:114.609333pt;}
.yaa{bottom:116.852000pt;}
.y1c7{bottom:117.542667pt;}
.y130{bottom:118.988000pt;}
.yf8{bottom:119.889333pt;}
.ya4{bottom:121.368000pt;}
.y1d8{bottom:121.832000pt;}
.y1d7{bottom:122.225333pt;}
.y9f{bottom:125.766667pt;}
.yc0{bottom:130.401333pt;}
.y22{bottom:132.674667pt;}
.ya9{bottom:134.917333pt;}
.y53{bottom:135.174667pt;}
.y1c6{bottom:135.608000pt;}
.yf7{bottom:137.956000pt;}
.y9e{bottom:140.378667pt;}
.y12f{bottom:142.817333pt;}
.ybf{bottom:148.466667pt;}
.yd7{bottom:148.850667pt;}
.y7b{bottom:149.326667pt;}
.y52{bottom:149.786667pt;}
.y157{bottom:150.122667pt;}
.y21{bottom:150.740000pt;}
.ya8{bottom:152.982667pt;}
.y1c5{bottom:153.673333pt;}
.y9d{bottom:154.990667pt;}
.ya3{bottom:157.500000pt;}
.y12e{bottom:160.882667pt;}
.y51{bottom:164.398667pt;}
.ybe{bottom:166.532000pt;}
.yd6{bottom:166.917333pt;}
.y7a{bottom:167.393333pt;}
.y156{bottom:168.189333pt;}
.y9c{bottom:169.602667pt;}
.y1a2{bottom:171.048000pt;}
.y175{bottom:171.049333pt;}
.y1c4{bottom:171.740000pt;}
.yf6{bottom:174.086667pt;}
.y173{bottom:175.565333pt;}
.y12d{bottom:178.948000pt;}
.y50{bottom:183.350667pt;}
.y9b{bottom:184.214667pt;}
.ybd{bottom:184.597333pt;}
.yd5{bottom:184.982667pt;}
.y79{bottom:185.458667pt;}
.y155{bottom:186.254667pt;}
.y1a1{bottom:186.797333pt;}
.y20{bottom:186.824000pt;}
.ya7{bottom:189.114667pt;}
.y1c3{bottom:189.805333pt;}
.yf5{bottom:192.152000pt;}
.y172{bottom:193.630667pt;}
.y12c{bottom:197.014667pt;}
.y9a{bottom:198.826667pt;}
.yd4{bottom:203.048000pt;}
.y78{bottom:203.524000pt;}
.y154{bottom:204.320000pt;}
.y1a0{bottom:204.864000pt;}
.y1f{bottom:204.889333pt;}
.y4f{bottom:207.180000pt;}
.y1c2{bottom:207.870667pt;}
.yf4{bottom:210.217333pt;}
.y171{bottom:211.696000pt;}
.y12b{bottom:215.080000pt;}
.y99{bottom:217.778667pt;}
.ybc{bottom:220.729333pt;}
.yd3{bottom:221.113333pt;}
.y77{bottom:221.589333pt;}
.y153{bottom:222.385333pt;}
.y19f{bottom:222.929333pt;}
.y1e{bottom:222.956000pt;}
.y4e{bottom:225.245333pt;}
.y1c1{bottom:225.936000pt;}
.yf3{bottom:228.282667pt;}
.y170{bottom:229.761333pt;}
.y12a{bottom:233.145333pt;}
.y98{bottom:236.666667pt;}
.yd2{bottom:239.178667pt;}
.y76{bottom:239.654667pt;}
.y152{bottom:240.450667pt;}
.y19e{bottom:240.994667pt;}
.y1d{bottom:241.021333pt;}
.y4d{bottom:243.310667pt;}
.y1c0{bottom:244.001333pt;}
.yf2{bottom:246.349333pt;}
.y16f{bottom:247.828000pt;}
.y97{bottom:254.733333pt;}
.yd1{bottom:257.245333pt;}
.y75{bottom:257.720000pt;}
.y151{bottom:258.516000pt;}
.y19d{bottom:259.060000pt;}
.y1c{bottom:259.086667pt;}
.y4c{bottom:261.376000pt;}
.y174{bottom:261.377333pt;}
.y1bf{bottom:262.068000pt;}
.yf1{bottom:264.414667pt;}
.y16e{bottom:265.893333pt;}
.ybb{bottom:270.409333pt;}
.y96{bottom:272.798667pt;}
.yd0{bottom:275.310667pt;}
.y150{bottom:276.582667pt;}
.y19c{bottom:277.125333pt;}
.y1b{bottom:277.152000pt;}
.y4b{bottom:279.442667pt;}
.y129{bottom:279.584000pt;}
.y1be{bottom:280.133333pt;}
.yf0{bottom:282.480000pt;}
.y16d{bottom:283.958667pt;}
.yba{bottom:288.474667pt;}
.y95{bottom:290.864000pt;}
.y74{bottom:292.438667pt;}
.y128{bottom:294.196000pt;}
.y14f{bottom:294.648000pt;}
.y19b{bottom:295.192000pt;}
.y1a{bottom:295.217333pt;}
.y4a{bottom:297.508000pt;}
.y1bd{bottom:298.198667pt;}
.yef{bottom:300.545333pt;}
.y16c{bottom:302.024000pt;}
.yb9{bottom:306.540000pt;}
.y94{bottom:308.929333pt;}
.y73{bottom:310.504000pt;}
.y127{bottom:312.262667pt;}
.y19a{bottom:313.257333pt;}
.y19{bottom:313.284000pt;}
.ycf{bottom:313.713333pt;}
.y49{bottom:315.573333pt;}
.y1bc{bottom:316.264000pt;}
.yee{bottom:318.610667pt;}
.y16b{bottom:320.089333pt;}
.yb8{bottom:324.606667pt;}
.y93{bottom:326.994667pt;}
.y72{bottom:328.569333pt;}
.y14e{bottom:329.544000pt;}
.yce{bottom:329.653333pt;}
.y126{bottom:329.796000pt;}
.y124{bottom:330.380000pt;}
.y199{bottom:331.322667pt;}
.y18{bottom:331.349333pt;}
.y48{bottom:333.638667pt;}
.y1bb{bottom:334.329333pt;}
.yed{bottom:336.677333pt;}
.yb7{bottom:342.672000pt;}
.y92{bottom:345.061333pt;}
.y71{bottom:346.634667pt;}
.y125{bottom:347.330667pt;}
.y47{bottom:351.704000pt;}
.y1ba{bottom:352.394667pt;}
.yec{bottom:354.742667pt;}
.y16a{bottom:356.221333pt;}
.yb6{bottom:360.737333pt;}
.y91{bottom:363.126667pt;}
.y70{bottom:364.701333pt;}
.y123{bottom:365.396000pt;}
.y46{bottom:369.770667pt;}
.y1b9{bottom:370.461333pt;}
.yeb{bottom:372.808000pt;}
.y169{bottom:374.286667pt;}
.y122{bottom:374.748000pt;}
.y14d{bottom:377.990667pt;}
.yb5{bottom:378.802667pt;}
.y6f{bottom:382.766667pt;}
.ya2{bottom:387.836000pt;}
.y1b8{bottom:388.526667pt;}
.y168{bottom:392.352000pt;}
.y198{bottom:394.294667pt;}
.y14c{bottom:396.056000pt;}
.yb4{bottom:396.868000pt;}
.y90{bottom:398.106667pt;}
.y6e{bottom:400.832000pt;}
.y121{bottom:400.996000pt;}
.y45{bottom:405.901333pt;}
.y1b7{bottom:406.592000pt;}
.yea{bottom:408.938667pt;}
.y167{bottom:410.417333pt;}
.y197{bottom:412.360000pt;}
.y14b{bottom:414.121333pt;}
.yb3{bottom:414.934667pt;}
.y8f{bottom:416.172000pt;}
.y120{bottom:418.529333pt;}
.y6d{bottom:418.897333pt;}
.y11e{bottom:419.114667pt;}
.y17{bottom:420.806667pt;}
.y44{bottom:423.966667pt;}
.y1b6{bottom:424.657333pt;}
.y166{bottom:428.482667pt;}
.y196{bottom:430.425333pt;}
.y14a{bottom:432.186667pt;}
.yb2{bottom:433.000000pt;}
.y8e{bottom:434.237333pt;}
.y11f{bottom:436.064000pt;}
.y6c{bottom:436.962667pt;}
.y16{bottom:438.872000pt;}
.y43{bottom:442.032000pt;}
.y1b5{bottom:442.722667pt;}
.y165{bottom:446.549333pt;}
.y195{bottom:448.492000pt;}
.y149{bottom:450.252000pt;}
.yb1{bottom:451.065333pt;}
.y8d{bottom:452.304000pt;}
.y11d{bottom:454.129333pt;}
.y6b{bottom:455.029333pt;}
.y15{bottom:456.937333pt;}
.ye9{bottom:458.620000pt;}
.y42{bottom:460.098667pt;}
.y1b4{bottom:460.789333pt;}
.y148{bottom:468.318667pt;}
.y1d6{bottom:469.130667pt;}
.y8c{bottom:470.369333pt;}
.y11c{bottom:471.664000pt;}
.y11a{bottom:472.248000pt;}
.ye8{bottom:476.685333pt;}
.y41{bottom:478.164000pt;}
.y1b3{bottom:478.854667pt;}
.y164{bottom:482.680000pt;}
.y147{bottom:486.384000pt;}
.yb0{bottom:487.196000pt;}
.y8b{bottom:488.434667pt;}
.y11b{bottom:489.197333pt;}
.y6a{bottom:489.746667pt;}
.y14{bottom:493.021333pt;}
.ye7{bottom:494.750667pt;}
.y194{bottom:495.314667pt;}
.y40{bottom:496.229333pt;}
.y1b2{bottom:496.920000pt;}
.y163{bottom:500.745333pt;}
.y146{bottom:504.449333pt;}
.y193{bottom:504.666667pt;}
.yaf{bottom:505.262667pt;}
.y8a{bottom:506.500000pt;}
.y119{bottom:507.264000pt;}
.y69{bottom:507.812000pt;}
.ye6{bottom:512.816000pt;}
.y3f{bottom:514.294667pt;}
.y1b1{bottom:514.985333pt;}
.y118{bottom:516.614667pt;}
.y162{bottom:518.810667pt;}
.ycd{bottom:520.416000pt;}
.y145{bottom:522.514667pt;}
.y13{bottom:523.233333pt;}
.yae{bottom:523.328000pt;}
.y89{bottom:524.565333pt;}
.y68{bottom:525.877333pt;}
.ye5{bottom:530.881333pt;}
.y192{bottom:530.914667pt;}
.y3e{bottom:532.360000pt;}
.y1b0{bottom:533.050667pt;}
.y161{bottom:536.877333pt;}
.ycc{bottom:538.481333pt;}
.y191{bottom:540.266667pt;}
.y144{bottom:540.580000pt;}
.y12{bottom:541.298667pt;}
.yad{bottom:541.393333pt;}
.y88{bottom:542.632000pt;}
.y117{bottom:542.862667pt;}
.y67{bottom:543.944000pt;}
.ye4{bottom:548.948000pt;}
.y3d{bottom:550.426667pt;}
.y1af{bottom:551.117333pt;}
.y116{bottom:552.214667pt;}
.y160{bottom:554.942667pt;}
.ycb{bottom:556.546667pt;}
.y143{bottom:558.646667pt;}
.yac{bottom:559.458667pt;}
.y87{bottom:560.697333pt;}
.y66{bottom:562.009333pt;}
.y190{bottom:566.514667pt;}
.ye3{bottom:567.013333pt;}
.ya6{bottom:568.492000pt;}
.y1ae{bottom:569.182667pt;}
.y15f{bottom:573.008000pt;}
.yca{bottom:574.612000pt;}
.y18f{bottom:575.865333pt;}
.y142{bottom:576.712000pt;}
.y1d5{bottom:577.524000pt;}
.y115{bottom:578.462667pt;}
.y86{bottom:578.762667pt;}
.y65{bottom:580.074667pt;}
.y11{bottom:580.544000pt;}
.ye2{bottom:585.078667pt;}
.y3c{bottom:586.557333pt;}
.y1ad{bottom:587.248000pt;}
.y114{bottom:587.814667pt;}
.y15e{bottom:591.073333pt;}
.yc9{bottom:592.678667pt;}
.y1d4{bottom:595.590667pt;}
.y85{bottom:596.828000pt;}
.y64{bottom:598.140000pt;}
.y10{bottom:598.609333pt;}
.y18e{bottom:602.113333pt;}
.ye1{bottom:603.144000pt;}
.yc7{bottom:604.090667pt;}
.y3b{bottom:604.622667pt;}
.y1ac{bottom:605.313333pt;}
.y15d{bottom:609.138667pt;}
.y18d{bottom:611.465333pt;}
.y141{bottom:612.225333pt;}
.y113{bottom:614.062667pt;}
.y84{bottom:614.893333pt;}
.y63{bottom:616.205333pt;}
.yf{bottom:616.674667pt;}
.yc6{bottom:622.156000pt;}
.y3a{bottom:622.688000pt;}
.y1ab{bottom:623.378667pt;}
.y112{bottom:623.413333pt;}
.yc8{bottom:625.030667pt;}
.y140{bottom:630.290667pt;}
.y1d3{bottom:631.721333pt;}
.y83{bottom:632.960000pt;}
.y62{bottom:634.272000pt;}
.ye{bottom:634.741333pt;}
.y18c{bottom:637.713333pt;}
.ye0{bottom:639.276000pt;}
.y39{bottom:640.754667pt;}
.y1aa{bottom:641.445333pt;}
.y15c{bottom:645.270667pt;}
.y18b{bottom:647.065333pt;}
.y13f{bottom:648.357333pt;}
.y111{bottom:649.662667pt;}
.y1d2{bottom:649.786667pt;}
.y61{bottom:652.337333pt;}
.yd{bottom:652.806667pt;}
.ydf{bottom:657.341333pt;}
.y38{bottom:658.820000pt;}
.y110{bottom:659.013333pt;}
.y1a9{bottom:659.510667pt;}
.y15b{bottom:663.336000pt;}
.y13e{bottom:666.422667pt;}
.y82{bottom:666.789333pt;}
.y1d1{bottom:667.852000pt;}
.y60{bottom:670.402667pt;}
.yc{bottom:670.872000pt;}
.y18a{bottom:672.781333pt;}
.yde{bottom:675.406667pt;}
.y37{bottom:676.885333pt;}
.y1a8{bottom:677.576000pt;}
.yc5{bottom:678.774667pt;}
.y15a{bottom:681.401333pt;}
.y189{bottom:682.133333pt;}
.y13d{bottom:684.488000pt;}
.y10f{bottom:685.261333pt;}
.y1d0{bottom:685.918667pt;}
.y5f{bottom:688.468000pt;}
.yb{bottom:688.937333pt;}
.ydd{bottom:693.472000pt;}
.y10e{bottom:694.613333pt;}
.y36{bottom:694.950667pt;}
.y1a7{bottom:695.641333pt;}
.yc4{bottom:696.840000pt;}
.y159{bottom:699.466667pt;}
.y13c{bottom:702.553333pt;}
.y1cf{bottom:703.984000pt;}
.y5e{bottom:706.533333pt;}
.ya{bottom:707.002667pt;}
.y188{bottom:707.850667pt;}
.ydc{bottom:711.537333pt;}
.y35{bottom:713.016000pt;}
.y1a6{bottom:713.706667pt;}
.y81{bottom:714.166667pt;}
.yc3{bottom:714.905333pt;}
.y10d{bottom:720.330667pt;}
.y13b{bottom:720.618667pt;}
.y1ce{bottom:722.049333pt;}
.y5d{bottom:724.600000pt;}
.y9{bottom:725.069333pt;}
.y187{bottom:725.384000pt;}
.ydb{bottom:729.604000pt;}
.y34{bottom:731.081333pt;}
.ya1{bottom:731.082667pt;}
.y1a5{bottom:731.773333pt;}
.y80{bottom:732.233333pt;}
.yc2{bottom:732.970667pt;}
.y184{bottom:734.736000pt;}
.y158{bottom:735.598667pt;}
.y10c{bottom:737.864000pt;}
.y1cd{bottom:740.114667pt;}
.y5c{bottom:742.665333pt;}
.y186{bottom:742.918667pt;}
.y8{bottom:743.134667pt;}
.y109{bottom:747.216000pt;}
.yda{bottom:747.669333pt;}
.y33{bottom:749.148000pt;}
.y7f{bottom:750.298667pt;}
.y10b{bottom:755.398667pt;}
.y13a{bottom:756.133333pt;}
.y185{bottom:760.453333pt;}
.y5b{bottom:760.730667pt;}
.y17d{bottom:761.037333pt;}
.y7{bottom:761.200000pt;}
.yd9{bottom:765.734667pt;}
.y32{bottom:767.213333pt;}
.y7e{bottom:768.364000pt;}
.y10a{bottom:772.933333pt;}
.y102{bottom:773.517333pt;}
.y139{bottom:774.198667pt;}
.y1cc{bottom:776.245333pt;}
.y183{bottom:777.986667pt;}
.y31{bottom:785.278667pt;}
.y7d{bottom:786.429333pt;}
.y182{bottom:787.338667pt;}
.y108{bottom:790.466667pt;}
.y138{bottom:792.264000pt;}
.y1cb{bottom:794.312000pt;}
.y5a{bottom:795.448000pt;}
.y107{bottom:799.818667pt;}
.y30{bottom:803.344000pt;}
.y6{bottom:806.316000pt;}
.y137{bottom:810.329333pt;}
.y1a4{bottom:812.377333pt;}
.y181{bottom:813.056000pt;}
.y59{bottom:813.514667pt;}
.yd8{bottom:817.301333pt;}
.y2f{bottom:821.409333pt;}
.y106{bottom:825.534667pt;}
.y136{bottom:828.396000pt;}
.y1a3{bottom:830.442667pt;}
.y180{bottom:830.589333pt;}
.y17e{bottom:831.174667pt;}
.y58{bottom:831.580000pt;}
.y2e{bottom:839.476000pt;}
.y105{bottom:843.069333pt;}
.y103{bottom:843.653333pt;}
.y135{bottom:846.461333pt;}
.y17f{bottom:848.124000pt;}
.y1ca{bottom:848.508000pt;}
.y57{bottom:849.645333pt;}
.y7c{bottom:857.541333pt;}
.y104{bottom:860.604000pt;}
.y134{bottom:864.526667pt;}
.y17c{bottom:866.189333pt;}
.y1c9{bottom:866.573333pt;}
.y56{bottom:867.710667pt;}
.y1{bottom:874.325333pt;}
.y17b{bottom:875.541333pt;}
.y2d{bottom:875.606667pt;}
.y101{bottom:878.669333pt;}
.y5{bottom:879.016000pt;}
.y133{bottom:882.592000pt;}
.y1c8{bottom:884.640000pt;}
.y100{bottom:888.021333pt;}
.y2c{bottom:893.672000pt;}
.y55{bottom:901.016000pt;}
.y17a{bottom:901.789333pt;}
.y4{bottom:902.926667pt;}
.y2b{bottom:911.737333pt;}
.yff{bottom:914.269333pt;}
.y132{bottom:917.489333pt;}
.y179{bottom:919.322667pt;}
.y177{bottom:919.908000pt;}
.y3{bottom:926.836000pt;}
.y2a{bottom:929.804000pt;}
.yfe{bottom:931.802667pt;}
.yfc{bottom:932.388000pt;}
.y178{bottom:936.857333pt;}
.y29{bottom:947.869333pt;}
.yfd{bottom:949.337333pt;}
.y176{bottom:961.902667pt;}
.y28{bottom:965.934667pt;}
.yfb{bottom:977.844000pt;}
.y27{bottom:984.000000pt;}
.yfa{bottom:993.784000pt;}
.y26{bottom:1002.065333pt;}
.hb{height:27.076941pt;}
.h10{height:34.574438pt;}
.hc{height:34.813542pt;}
.hd{height:35.052646pt;}
.h9{height:35.435213pt;}
.h13{height:35.677803pt;}
.hf{height:38.681455pt;}
.h8{height:42.356399pt;}
.he{height:42.647308pt;}
.h6{height:43.112763pt;}
.h7{height:44.043673pt;}
.h12{height:45.119066pt;}
.h5{height:48.267127pt;}
.ha{height:52.065242pt;}
.h4{height:57.920391pt;}
.h11{height:67.783313pt;}
.h2{height:162.599733pt;}
.h3{height:481.392470pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:206.733947pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.992931pt;}
.x4{left:56.693333pt;}
.x1{left:120.405333pt;}
.x3d{left:169.172000pt;}
.x1e{left:171.506667pt;}
.x3{left:201.322667pt;}
.x1f{left:203.397333pt;}
.x20{left:204.389333pt;}
.x24{left:211.533333pt;}
.x39{left:214.004000pt;}
.x1a{left:216.338667pt;}
.x6{left:217.528000pt;}
.x29{left:222.824000pt;}
.x3e{left:223.904000pt;}
.x2f{left:229.444000pt;}
.xd{left:231.778667pt;}
.x3b{left:235.589333pt;}
.x1c{left:237.924000pt;}
.x7{left:274.270667pt;}
.x5{left:369.569333pt;}
.x30{left:372.078667pt;}
.xe{left:374.413333pt;}
.x2b{left:378.006667pt;}
.x8{left:380.341333pt;}
.x34{left:389.514667pt;}
.x38{left:390.572000pt;}
.x13{left:391.849333pt;}
.x18{left:392.906667pt;}
.x11{left:394.502667pt;}
.x25{left:440.604000pt;}
.x28{left:444.088000pt;}
.x26{left:460.365333pt;}
.x19{left:462.421333pt;}
.x27{left:469.660000pt;}
.x2a{left:470.933333pt;}
.x3a{left:471.928000pt;}
.x1b{left:474.262667pt;}
.x23{left:476.588000pt;}
.x2e{left:488.198667pt;}
.xc{left:490.533333pt;}
.x22{left:492.750667pt;}
.x21{left:495.740000pt;}
.x3c{left:499.712000pt;}
.x1d{left:502.046667pt;}
.x32{left:520.862667pt;}
.x10{left:523.197333pt;}
.x31{left:530.670667pt;}
.xf{left:533.005333pt;}
.x37{left:550.838667pt;}
.x17{left:553.173333pt;}
.x35{left:565.310667pt;}
.x14{left:567.645333pt;}
.x36{left:568.981333pt;}
.x16{left:569.886667pt;}
.x15{left:571.316000pt;}
.x33{left:574.104000pt;}
.x12{left:576.438667pt;}
.x2d{left:658.425333pt;}
.xb{left:661.758667pt;}
.x2c{left:666.448000pt;}
.xa{left:667.614667pt;}
.x9{left:669.557333pt;}
}




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