
    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_fb08f55057f25de3c0c7cee8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_631fa869db30f10594ec4f2d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.377930;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_8c77769328be3d63df0b8cf4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.070312;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_21feb2b7767ab7cc467c663a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016113;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_f7e3f36bc1feb9f680df9437.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_04b83fe7c2cfe1743b6241ed.woff')format("woff");}.ff6{font-family:ff6;line-height:1.182129;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_d703df0f2acc4d1ce169b044.woff')format("woff");}.ff7{font-family:ff7;line-height:1.182129;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_29f0fbb01e275f7587e39c1d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.075195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.067600px;}
.v2{vertical-align:17.122200px;}
.ls3a{letter-spacing:-7.686000px;}
.lsd{letter-spacing:-7.371000px;}
.ls17{letter-spacing:-3.174000px;}
.ls25{letter-spacing:-3.036000px;}
.lse{letter-spacing:-2.898000px;}
.ls28{letter-spacing:-2.829000px;}
.ls19{letter-spacing:-2.760000px;}
.ls20{letter-spacing:-2.277000px;}
.ls21{letter-spacing:-2.001000px;}
.ls26{letter-spacing:-1.863000px;}
.ls11{letter-spacing:-1.587000px;}
.ls29{letter-spacing:-1.518000px;}
.ls6{letter-spacing:-1.380000px;}
.ls2e{letter-spacing:-1.173000px;}
.ls16{letter-spacing:-1.104000px;}
.ls24{letter-spacing:-1.035000px;}
.ls2a{letter-spacing:-0.552000px;}
.ls3f{letter-spacing:-0.300000px;}
.ls23{letter-spacing:-0.276000px;}
.ls3e{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.069000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.ls3d{letter-spacing:0.664620px;}
.ls5{letter-spacing:1.260000px;}
.ls2f{letter-spacing:1.458000px;}
.ls30{letter-spacing:1.789200px;}
.ls31{letter-spacing:1.827000px;}
.ls2b{letter-spacing:1.863000px;}
.lsa{letter-spacing:2.001000px;}
.ls22{letter-spacing:2.007900px;}
.ls4{letter-spacing:2.400000px;}
.ls10{letter-spacing:2.622000px;}
.ls35{letter-spacing:3.150000px;}
.ls37{letter-spacing:3.194100px;}
.ls36{letter-spacing:3.213000px;}
.ls15{letter-spacing:3.300000px;}
.ls3b{letter-spacing:3.528000px;}
.ls1b{letter-spacing:3.795000px;}
.ls1d{letter-spacing:3.808800px;}
.ls1c{letter-spacing:3.877800px;}
.lsb{letter-spacing:4.125000px;}
.ls1f{letter-spacing:4.186200px;}
.ls1{letter-spacing:4.200000px;}
.lsf{letter-spacing:4.209000px;}
.ls27{letter-spacing:5.050800px;}
.ls1a{letter-spacing:5.285400px;}
.ls38{letter-spacing:5.310900px;}
.lsc{letter-spacing:5.460000px;}
.ls7{letter-spacing:5.760000px;}
.ls8{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls33{letter-spacing:6.300000px;}
.ls2d{letter-spacing:7.200000px;}
.ls12{letter-spacing:7.245000px;}
.ls13{letter-spacing:7.383000px;}
.ls3c{letter-spacing:7.497000px;}
.ls34{letter-spacing:7.530000px;}
.ls14{letter-spacing:8.160156px;}
.ls1e{letter-spacing:8.160756px;}
.ls2c{letter-spacing:8.556000px;}
.ls0{letter-spacing:8.844000px;}
.ls39{letter-spacing:12.663000px;}
.ls32{letter-spacing:15.031800px;}
.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;}
}
.ws2e{word-spacing:-28.605000px;}
.ws28{word-spacing:-28.275000px;}
.wsa{word-spacing:-25.200000px;}
.ws13{word-spacing:-24.375000px;}
.ws2a{word-spacing:-24.219000px;}
.ws36{word-spacing:-22.860000px;}
.ws2{word-spacing:-22.740000px;}
.ws0{word-spacing:-22.620000px;}
.ws11{word-spacing:-19.389000px;}
.ws30{word-spacing:-18.120000px;}
.ws2b{word-spacing:-17.703000px;}
.wsb{word-spacing:-17.262000px;}
.wse{word-spacing:-17.043000px;}
.ws15{word-spacing:-16.974000px;}
.ws1{word-spacing:-16.860000px;}
.ws1f{word-spacing:-16.767000px;}
.ws25{word-spacing:-16.491000px;}
.ws1e{word-spacing:-16.008000px;}
.ws14{word-spacing:-15.939000px;}
.ws2c{word-spacing:-15.561000px;}
.ws24{word-spacing:-15.525000px;}
.ws12{word-spacing:-15.456000px;}
.wsc{word-spacing:-15.390000px;}
.ws20{word-spacing:-15.180000px;}
.ws26{word-spacing:-15.174000px;}
.ws1a{word-spacing:-15.042000px;}
.ws37{word-spacing:-14.820000px;}
.ws16{word-spacing:-14.283000px;}
.wsf{word-spacing:-14.145000px;}
.ws17{word-spacing:-13.338000px;}
.wsd{word-spacing:-11.303787px;}
.ws3{word-spacing:-9.829380px;}
.ws19{word-spacing:-8.261400px;}
.ws2f{word-spacing:-7.875000px;}
.ws32{word-spacing:-7.497000px;}
.ws2d{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws9{word-spacing:-4.200000px;}
.ws31{word-spacing:-3.528000px;}
.ws6{word-spacing:-2.400000px;}
.ws23{word-spacing:-1.836000px;}
.ws7{word-spacing:-1.260000px;}
.ws33{word-spacing:-0.664620px;}
.ws4{word-spacing:0.000000px;}
.ws34{word-spacing:0.180000px;}
.ws21{word-spacing:0.276000px;}
.ws35{word-spacing:0.300000px;}
.ws1c{word-spacing:1.104000px;}
.ws29{word-spacing:1.173000px;}
.ws8{word-spacing:1.380000px;}
.ws1d{word-spacing:2.001000px;}
.ws1b{word-spacing:2.277000px;}
.ws27{word-spacing:2.829000px;}
.ws22{word-spacing:3.036000px;}
.ws18{word-spacing:3.174000px;}
.ws10{word-spacing:256.410000px;}
._20{margin-left:-18.781800px;}
._9{margin-left:-9.353400px;}
._a{margin-left:-7.110000px;}
._1a{margin-left:-6.060000px;}
._e{margin-left:-4.770600px;}
._b{margin-left:-3.760200px;}
._3{margin-left:-2.626200px;}
._8{margin-left:-1.587600px;}
._4{width:1.008000px;}
._1{width:2.400000px;}
._6{width:3.510000px;}
._f{width:4.665600px;}
._5{width:5.760000px;}
._7{width:6.852000px;}
._c{width:8.100000px;}
._d{width:9.264000px;}
._14{width:10.293900px;}
._1f{width:11.322600px;}
._16{width:12.351414px;}
._18{width:13.360272px;}
._22{width:16.695000px;}
._23{width:19.007100px;}
._12{width:20.880000px;}
._11{width:21.942000px;}
._25{width:26.684100px;}
._1b{width:27.704160px;}
._24{width:32.843100px;}
._15{width:43.445160px;}
._3f{width:50.498400px;}
._2d{width:59.715600px;}
._3b{width:60.951600px;}
._2f{width:66.510000px;}
._2e{width:77.221800px;}
._28{width:79.312800px;}
._10{width:85.554000px;}
._3d{width:89.491200px;}
._43{width:91.684200px;}
._2c{width:100.268400px;}
._45{width:105.459600px;}
._27{width:115.290000px;}
._33{width:131.799600px;}
._3e{width:138.121200px;}
._34{width:139.861800px;}
._31{width:148.023600px;}
._3c{width:152.078400px;}
._41{width:154.096800px;}
._2b{width:157.114200px;}
._2a{width:162.547200px;}
._39{width:166.111200px;}
._32{width:174.325800px;}
._36{width:177.430800px;}
._40{width:180.244800px;}
._3a{width:182.399400px;}
._42{width:184.301400px;}
._47{width:191.488200px;}
._30{width:192.830400px;}
._37{width:193.864200px;}
._44{width:195.691800px;}
._29{width:207.216000px;}
._38{width:208.938000px;}
._26{width:216.168600px;}
._35{width:219.687000px;}
._46{width:281.684400px;}
._21{width:448.729200px;}
._48{width:449.730000px;}
._13{width:453.022200px;}
._1d{width:455.415000px;}
._19{width:456.734400px;}
._0{width:578.400000px;}
._17{width:956.206200px;}
._1c{width:958.831200px;}
._1e{width:962.881200px;}
._2{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:29.400000px;}
.fsb{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fsa{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1f{bottom:106.277400px;}
.yb7{bottom:106.290300px;}
.ydd{bottom:106.293300px;}
.y6a{bottom:106.296300px;}
.y182{bottom:106.433850px;}
.y112{bottom:108.180900px;}
.y103{bottom:109.294800px;}
.y43{bottom:109.294950px;}
.yb6{bottom:123.543300px;}
.ydc{bottom:123.546300px;}
.y1e{bottom:125.792400px;}
.y69{bottom:126.544800px;}
.y181{bottom:127.759350px;}
.y42{bottom:127.795500px;}
.y163{bottom:128.462550px;}
.y111{bottom:129.683100px;}
.y102{bottom:130.796700px;}
.yb5{bottom:140.796300px;}
.ydb{bottom:143.794800px;}
.y68{bottom:145.048200px;}
.y41{bottom:145.048500px;}
.y1d{bottom:145.307400px;}
.y162{bottom:150.680550px;}
.y101{bottom:152.298750px;}
.y180{bottom:157.589850px;}
.y1c2{bottom:157.929150px;}
.yb4{bottom:161.044800px;}
.y1c{bottom:164.822400px;}
.y67{bottom:165.296700px;}
.y40{bottom:165.297000px;}
.y161{bottom:172.898550px;}
.y110{bottom:173.690850px;}
.y100{bottom:173.800650px;}
.y1c1{bottom:175.929150px;}
.yb3{bottom:179.539200px;}
.y1e3{bottom:179.928900px;}
.y134{bottom:182.546700px;}
.ya7{bottom:183.797250px;}
.y66{bottom:183.800250px;}
.y3f{bottom:183.800700px;}
.y1b{bottom:184.337400px;}
.y17f{bottom:187.420350px;}
.yda{bottom:187.815750px;}
.y143{bottom:187.833750px;}
.yff{bottom:192.301200px;}
.y10f{bottom:193.942350px;}
.y1c0{bottom:194.409150px;}
.y160{bottom:195.116550px;}
.yb2{bottom:196.792200px;}
.y1e2{bottom:200.178900px;}
.ya6{bottom:201.050250px;}
.y1a{bottom:203.852400px;}
.y65{bottom:204.048750px;}
.y3e{bottom:204.049200px;}
.yd9{bottom:208.239750px;}
.y142{bottom:208.257750px;}
.y17e{bottom:208.745850px;}
.y87{bottom:209.318100px;}
.yfe{bottom:209.554200px;}
.y1bf{bottom:212.409150px;}
.yb1{bottom:214.045200px;}
.y10e{bottom:214.193850px;}
.y15f{bottom:217.334550px;}
.y1e1{bottom:220.428900px;}
.ya5{bottom:221.298750px;}
.y64{bottom:225.550650px;}
.y3d{bottom:225.551250px;}
.y133{bottom:226.540950px;}
.y141{bottom:228.681750px;}
.yd8{bottom:228.709350px;}
.yfd{bottom:229.802700px;}
.y1be{bottom:230.889150px;}
.y86{bottom:230.915100px;}
.yb0{bottom:231.298200px;}
.y10d{bottom:234.445350px;}
.y19{bottom:236.117400px;}
.y17d{bottom:238.576350px;}
.y15e{bottom:239.552550px;}
.y1e0{bottom:240.678900px;}
.y63{bottom:244.054200px;}
.y132{bottom:247.033950px;}
.yfc{bottom:248.306100px;}
.y1bd{bottom:248.889150px;}
.y140{bottom:249.105750px;}
.yd7{bottom:249.133350px;}
.yaf{bottom:251.546700px;}
.y85{bottom:252.534300px;}
.y10c{bottom:254.696850px;}
.y17c{bottom:259.901850px;}
.y15d{bottom:261.770550px;}
.y62{bottom:264.302700px;}
.y1bc{bottom:267.369150px;}
.y131{bottom:267.526950px;}
.yfb{bottom:268.554600px;}
.y13f{bottom:269.529750px;}
.y3c{bottom:269.547750px;}
.yd6{bottom:269.557350px;}
.y1df{bottom:273.678900px;}
.y84{bottom:274.131300px;}
.y10b{bottom:274.948350px;}
.y15c{bottom:283.988550px;}
.y18{bottom:285.392400px;}
.y1bb{bottom:285.849150px;}
.y130{bottom:288.019950px;}
.y17b{bottom:289.732350px;}
.y13e{bottom:289.953750px;}
.yd5{bottom:289.981350px;}
.y3b{bottom:290.040750px;}
.y10a{bottom:295.199850px;}
.y83{bottom:295.728300px;}
.y19b{bottom:303.781350px;}
.y1ba{bottom:304.329150px;}
.y15b{bottom:306.206550px;}
.y17{bottom:306.407400px;}
.ya4{bottom:306.415500px;}
.y61{bottom:308.224650px;}
.y12f{bottom:308.512950px;}
.y13d{bottom:310.377750px;}
.yd4{bottom:310.405350px;}
.y3a{bottom:310.533750px;}
.y17a{bottom:311.057850px;}
.yfa{bottom:312.567150px;}
.y1de{bottom:315.183900px;}
.yae{bottom:315.443850px;}
.y109{bottom:315.451350px;}
.y82{bottom:317.325300px;}
.y1b9{bottom:322.329150px;}
.ya3{bottom:326.977500px;}
.y16{bottom:327.389100px;}
.y15a{bottom:328.424550px;}
.y12e{bottom:329.005950px;}
.y60{bottom:329.459400px;}
.y13c{bottom:330.801750px;}
.yd3{bottom:330.829350px;}
.y39{bottom:331.019400px;}
.y19a{bottom:332.540850px;}
.yf9{bottom:332.904900px;}
.y1dd{bottom:334.683900px;}
.yad{bottom:335.695350px;}
.y81{bottom:338.922300px;}
.y1b8{bottom:340.809150px;}
.y179{bottom:340.888350px;}
.y15{bottom:346.904100px;}
.ya2{bottom:347.539500px;}
.y12d{bottom:349.486800px;}
.y159{bottom:350.642550px;}
.y5f{bottom:350.694150px;}
.y13b{bottom:351.225750px;}
.yd2{bottom:351.253350px;}
.y38{bottom:351.476100px;}
.yf8{bottom:353.259900px;}
.y1dc{bottom:354.183900px;}
.yac{bottom:355.946850px;}
.y108{bottom:355.951350px;}
.y1b7{bottom:358.809150px;}
.y80{bottom:360.519300px;}
.y199{bottom:361.300350px;}
.y178{bottom:362.229600px;}
.y14{bottom:366.419100px;}
.ya1{bottom:368.101500px;}
.y12c{bottom:369.979800px;}
.y13a{bottom:371.649750px;}
.yd1{bottom:371.677350px;}
.y5e{bottom:371.928900px;}
.y37{bottom:371.969100px;}
.y158{bottom:372.860550px;}
.yf7{bottom:373.614900px;}
.y1db{bottom:373.683900px;}
.yab{bottom:376.198350px;}
.y1b6{bottom:377.289150px;}
.y198{bottom:381.554850px;}
.y7f{bottom:382.116300px;}
.y13{bottom:385.934100px;}
.ya0{bottom:388.663500px;}
.y12b{bottom:390.472800px;}
.y177{bottom:392.060100px;}
.y139{bottom:392.073750px;}
.yd0{bottom:392.101350px;}
.y36{bottom:392.462100px;}
.y5d{bottom:393.163650px;}
.y1da{bottom:393.183900px;}
.yf6{bottom:393.958500px;}
.y157{bottom:395.078550px;}
.y1b5{bottom:395.769150px;}
.yaa{bottom:396.449850px;}
.y7e{bottom:403.713300px;}
.y12{bottom:405.449100px;}
.y9f{bottom:409.225500px;}
.y197{bottom:410.314350px;}
.y12a{bottom:410.869350px;}
.y138{bottom:412.497750px;}
.ycf{bottom:412.525350px;}
.y1d9{bottom:412.683900px;}
.y35{bottom:412.955100px;}
.y176{bottom:413.385600px;}
.y1b4{bottom:413.769150px;}
.yf5{bottom:414.313500px;}
.y5c{bottom:414.398400px;}
.ya9{bottom:416.701350px;}
.y156{bottom:417.296550px;}
.y11{bottom:424.964100px;}
.y7d{bottom:425.310300px;}
.y9e{bottom:429.787500px;}
.y196{bottom:430.568850px;}
.y129{bottom:431.362350px;}
.y1d8{bottom:432.183900px;}
.y1b3{bottom:432.249150px;}
.y137{bottom:432.921750px;}
.yce{bottom:432.949350px;}
.y34{bottom:433.448100px;}
.yf4{bottom:434.547900px;}
.y5b{bottom:435.633150px;}
.y155{bottom:439.514550px;}
.y175{bottom:443.216100px;}
.y10{bottom:444.479100px;}
.y7c{bottom:446.907300px;}
.y1b2{bottom:450.249150px;}
.y9d{bottom:450.349500px;}
.y1d7{bottom:451.683900px;}
.y128{bottom:451.855350px;}
.y136{bottom:453.345750px;}
.ycd{bottom:453.373350px;}
.y33{bottom:453.912150px;}
.yf3{bottom:454.902900px;}
.y5a{bottom:456.867900px;}
.ya8{bottom:457.201350px;}
.y195{bottom:459.328350px;}
.y154{bottom:461.732550px;}
.yf{bottom:463.994100px;}
.y174{bottom:464.557350px;}
.y7b{bottom:468.504300px;}
.y1b1{bottom:468.729150px;}
.y9c{bottom:470.911500px;}
.y1d6{bottom:471.183900px;}
.y127{bottom:472.348350px;}
.y135{bottom:473.769750px;}
.ycc{bottom:473.797350px;}
.y32{bottom:474.405150px;}
.yf2{bottom:475.257900px;}
.y59{bottom:478.102650px;}
.y194{bottom:479.582850px;}
.ye{bottom:483.509100px;}
.y153{bottom:483.950550px;}
.y1b0{bottom:486.729150px;}
.y7a{bottom:490.101300px;}
.y1d5{bottom:490.683900px;}
.y9b{bottom:491.473500px;}
.y126{bottom:492.841350px;}
.ycb{bottom:494.221350px;}
.y173{bottom:494.387850px;}
.y31{bottom:494.898150px;}
.yf1{bottom:495.612900px;}
.y58{bottom:499.337400px;}
.y1af{bottom:505.209150px;}
.y152{bottom:506.168550px;}
.y193{bottom:508.342350px;}
.y1d4{bottom:510.183900px;}
.y79{bottom:511.698300px;}
.y9a{bottom:512.035500px;}
.y125{bottom:513.334350px;}
.yca{bottom:514.645350px;}
.y30{bottom:515.391150px;}
.y172{bottom:515.729100px;}
.yd{bottom:515.774100px;}
.yf0{bottom:515.967900px;}
.y57{bottom:520.572150px;}
.y1ae{bottom:523.689150px;}
.y151{bottom:528.386550px;}
.y192{bottom:528.596850px;}
.y1d3{bottom:529.683900px;}
.y99{bottom:532.597500px;}
.y78{bottom:533.295300px;}
.y124{bottom:533.827350px;}
.yc9{bottom:535.069350px;}
.y2f{bottom:535.847850px;}
.yef{bottom:536.322900px;}
.y1ad{bottom:541.689150px;}
.y56{bottom:541.806900px;}
.y171{bottom:545.559600px;}
.y1d2{bottom:549.183900px;}
.y150{bottom:550.604550px;}
.y98{bottom:553.159500px;}
.y123{bottom:554.320350px;}
.y77{bottom:554.892300px;}
.yc8{bottom:555.493350px;}
.y2e{bottom:556.340850px;}
.yee{bottom:556.677900px;}
.y191{bottom:557.356350px;}
.y1ac{bottom:560.169150px;}
.y55{bottom:563.041650px;}
.y170{bottom:566.900850px;}
.y1d1{bottom:568.683900px;}
.y14f{bottom:572.822550px;}
.yc{bottom:573.557850px;}
.y97{bottom:573.721500px;}
.y122{bottom:574.813350px;}
.yc7{bottom:575.917350px;}
.y2d{bottom:576.833850px;}
.yed{bottom:577.032900px;}
.y190{bottom:577.610850px;}
.y1ab{bottom:578.649150px;}
.y54{bottom:584.276400px;}
.y1d0{bottom:588.183900px;}
.y96{bottom:594.283500px;}
.y14e{bottom:595.040550px;}
.y121{bottom:595.306350px;}
.yc6{bottom:596.341350px;}
.y1aa{bottom:596.649150px;}
.y16f{bottom:596.731350px;}
.y2c{bottom:597.326850px;}
.yec{bottom:597.387900px;}
.y76{bottom:597.746250px;}
.y18f{bottom:597.865350px;}
.yb{bottom:600.563850px;}
.y53{bottom:605.504250px;}
.y1cf{bottom:607.683900px;}
.y95{bottom:614.845500px;}
.y1a9{bottom:615.129150px;}
.y120{bottom:615.799350px;}
.yc5{bottom:616.765350px;}
.y14d{bottom:617.258550px;}
.yeb{bottom:617.742900px;}
.y2b{bottom:617.819850px;}
.y16e{bottom:618.072600px;}
.y18e{bottom:618.119850px;}
.y75{bottom:623.099250px;}
.y52{bottom:626.725200px;}
.y1ce{bottom:627.183900px;}
.y1a8{bottom:633.129150px;}
.y94{bottom:635.407500px;}
.y11f{bottom:636.292350px;}
.yc4{bottom:637.189350px;}
.yea{bottom:638.097900px;}
.y2a{bottom:638.312850px;}
.y14c{bottom:639.476550px;}
.y1cd{bottom:646.683900px;}
.y18d{bottom:646.879350px;}
.y16d{bottom:647.903100px;}
.y51{bottom:647.959950px;}
.ya{bottom:648.838950px;}
.y1a7{bottom:651.609150px;}
.y93{bottom:655.969500px;}
.y11e{bottom:656.785350px;}
.yc3{bottom:657.613350px;}
.ye9{bottom:658.452900px;}
.y14b{bottom:661.694550px;}
.y1cc{bottom:666.183900px;}
.y18c{bottom:667.133850px;}
.y50{bottom:669.167250px;}
.y16c{bottom:669.228600px;}
.y1a6{bottom:670.089150px;}
.y92{bottom:676.531500px;}
.y11d{bottom:677.278350px;}
.yc2{bottom:678.037350px;}
.ye8{bottom:678.807900px;}
.y29{bottom:680.058450px;}
.y9{bottom:680.347950px;}
.y14a{bottom:683.912550px;}
.y1cb{bottom:685.683900px;}
.y74{bottom:686.731350px;}
.y1a5{bottom:688.089150px;}
.y4f{bottom:690.402000px;}
.y18b{bottom:695.893350px;}
.y91{bottom:697.089900px;}
.y11c{bottom:697.771350px;}
.yc1{bottom:698.461350px;}
.y16b{bottom:699.059100px;}
.ye7{bottom:699.162900px;}
.y1ca{bottom:705.183900px;}
.y1a4{bottom:706.569150px;}
.y73{bottom:708.328350px;}
.y4e{bottom:711.636750px;}
.y8{bottom:711.856950px;}
.y18a{bottom:716.147850px;}
.y90{bottom:717.651900px;}
.y11b{bottom:718.264350px;}
.yc0{bottom:718.885350px;}
.ye6{bottom:719.517900px;}
.y1c9{bottom:724.683900px;}
.y1a3{bottom:725.049150px;}
.y149{bottom:727.388250px;}
.y16a{bottom:728.889600px;}
.y72{bottom:729.925350px;}
.y4d{bottom:732.871500px;}
.y189{bottom:736.402350px;}
.y8f{bottom:738.213900px;}
.y11a{bottom:738.757350px;}
.ybf{bottom:739.309350px;}
.ye5{bottom:739.872900px;}
.y1a2{bottom:743.529150px;}
.y1c8{bottom:744.183900px;}
.y169{bottom:750.230850px;}
.y71{bottom:751.522350px;}
.y4c{bottom:754.099350px;}
.y8e{bottom:758.768550px;}
.y119{bottom:759.250350px;}
.ybe{bottom:759.733350px;}
.ye4{bottom:760.227900px;}
.y1a1{bottom:762.009150px;}
.y28{bottom:763.043250px;}
.y1c7{bottom:763.683900px;}
.y188{bottom:765.161850px;}
.y168{bottom:771.556350px;}
.y7{bottom:773.112900px;}
.y70{bottom:773.119350px;}
.y4b{bottom:775.292850px;}
.y8d{bottom:779.330550px;}
.y118{bottom:779.743350px;}
.ybd{bottom:780.157350px;}
.y1a0{bottom:780.489150px;}
.ye3{bottom:780.582900px;}
.y1c6{bottom:783.189750px;}
.y27{bottom:784.283250px;}
.y187{bottom:785.416350px;}
.y148{bottom:791.611350px;}
.y6f{bottom:794.716350px;}
.y4a{bottom:796.527600px;}
.y19f{bottom:798.489150px;}
.y8c{bottom:799.892550px;}
.y117{bottom:800.236350px;}
.ybc{bottom:800.581350px;}
.ye2{bottom:800.937900px;}
.y167{bottom:801.386850px;}
.y6{bottom:802.632900px;}
.y26{bottom:805.497750px;}
.y147{bottom:813.829350px;}
.y186{bottom:814.175850px;}
.y1c5{bottom:815.439750px;}
.y6e{bottom:816.313350px;}
.y19e{bottom:816.969150px;}
.y49{bottom:817.762350px;}
.y8b{bottom:820.454550px;}
.y116{bottom:820.729350px;}
.ybb{bottom:821.005350px;}
.ye1{bottom:821.292900px;}
.y107{bottom:821.699850px;}
.y166{bottom:822.712350px;}
.y5{bottom:823.647900px;}
.y25{bottom:825.237750px;}
.y185{bottom:834.430350px;}
.y19d{bottom:834.969150px;}
.y146{bottom:836.047350px;}
.y6d{bottom:837.910350px;}
.y48{bottom:838.997100px;}
.y8a{bottom:841.016550px;}
.y115{bottom:841.222350px;}
.yba{bottom:841.429350px;}
.ye0{bottom:841.647900px;}
.y106{bottom:841.946850px;}
.y24{bottom:844.977750px;}
.y165{bottom:852.542850px;}
.y4{bottom:853.167900px;}
.y184{bottom:854.684850px;}
.y145{bottom:858.265350px;}
.y6c{bottom:859.507350px;}
.y47{bottom:860.231850px;}
.y89{bottom:861.578550px;}
.y114{bottom:861.715350px;}
.yb9{bottom:861.853350px;}
.ydf{bottom:861.991350px;}
.y105{bottom:862.198350px;}
.y23{bottom:864.717750px;}
.y19c{bottom:872.513850px;}
.y1c4{bottom:873.201450px;}
.y164{bottom:873.868350px;}
.y144{bottom:880.483350px;}
.y6b{bottom:881.104350px;}
.y46{bottom:881.466600px;}
.y88{bottom:882.139350px;}
.y113{bottom:882.208350px;}
.yb8{bottom:882.277350px;}
.yde{bottom:882.346350px;}
.y104{bottom:882.449850px;}
.y3{bottom:882.687900px;}
.y183{bottom:883.444350px;}
.y22{bottom:884.457750px;}
.y1c3{bottom:900.207450px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y44{bottom:966.189000px;}
.h10{height:37.983820px;}
.h9{height:44.414062px;}
.h17{height:48.530695px;}
.h11{height:49.965820px;}
.h4{height:55.517578px;}
.h8{height:55.604578px;}
.h3{height:58.293457px;}
.h18{height:60.512695px;}
.hb{height:63.845215px;}
.h19{height:63.850015px;}
.h1a{height:63.859615px;}
.h13{height:63.872815px;}
.hf{height:63.874615px;}
.h1c{height:63.890815px;}
.h1f{height:63.893815px;}
.h15{height:63.900415px;}
.h14{height:63.955015px;}
.he{height:63.961015px;}
.hc{height:63.990415px;}
.h12{height:64.010215px;}
.h7{height:67.236328px;}
.h2{height:69.396973px;}
.h20{height:70.598145px;}
.ha{height:74.948730px;}
.hd{height:77.321777px;}
.h16{height:77.349377px;}
.h1d{height:77.390777px;}
.h1e{height:77.707577px;}
.h6{height:77.724609px;}
.h1b{height:77.804177px;}
.h5{height:99.931641px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.926050px;}
.x5{left:82.979250px;}
.x8{left:84.026250px;}
.x1{left:85.039350px;}
.xf{left:87.639900px;}
.xa{left:88.956600px;}
.x6{left:103.691400px;}
.x7{left:105.073050px;}
.x4{left:106.125600px;}
.xb{left:228.321600px;}
.xc{left:229.776600px;}
.x2{left:232.076250px;}
.x3{left:233.523450px;}
.xd{left:404.079900px;}
.xe{left:405.399900px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.504533pt;}
.v2{vertical-align:15.219733pt;}
.ls3a{letter-spacing:-6.832000pt;}
.lsd{letter-spacing:-6.552000pt;}
.ls17{letter-spacing:-2.821333pt;}
.ls25{letter-spacing:-2.698667pt;}
.lse{letter-spacing:-2.576000pt;}
.ls28{letter-spacing:-2.514667pt;}
.ls19{letter-spacing:-2.453333pt;}
.ls20{letter-spacing:-2.024000pt;}
.ls21{letter-spacing:-1.778667pt;}
.ls26{letter-spacing:-1.656000pt;}
.ls11{letter-spacing:-1.410667pt;}
.ls29{letter-spacing:-1.349333pt;}
.ls6{letter-spacing:-1.226667pt;}
.ls2e{letter-spacing:-1.042667pt;}
.ls16{letter-spacing:-0.981333pt;}
.ls24{letter-spacing:-0.920000pt;}
.ls2a{letter-spacing:-0.490667pt;}
.ls3f{letter-spacing:-0.266667pt;}
.ls23{letter-spacing:-0.245333pt;}
.ls3e{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.061333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.ls3d{letter-spacing:0.590773pt;}
.ls5{letter-spacing:1.120000pt;}
.ls2f{letter-spacing:1.296000pt;}
.ls30{letter-spacing:1.590400pt;}
.ls31{letter-spacing:1.624000pt;}
.ls2b{letter-spacing:1.656000pt;}
.lsa{letter-spacing:1.778667pt;}
.ls22{letter-spacing:1.784800pt;}
.ls4{letter-spacing:2.133333pt;}
.ls10{letter-spacing:2.330667pt;}
.ls35{letter-spacing:2.800000pt;}
.ls37{letter-spacing:2.839200pt;}
.ls36{letter-spacing:2.856000pt;}
.ls15{letter-spacing:2.933333pt;}
.ls3b{letter-spacing:3.136000pt;}
.ls1b{letter-spacing:3.373333pt;}
.ls1d{letter-spacing:3.385600pt;}
.ls1c{letter-spacing:3.446933pt;}
.lsb{letter-spacing:3.666667pt;}
.ls1f{letter-spacing:3.721067pt;}
.ls1{letter-spacing:3.733333pt;}
.lsf{letter-spacing:3.741333pt;}
.ls27{letter-spacing:4.489600pt;}
.ls1a{letter-spacing:4.698133pt;}
.ls38{letter-spacing:4.720800pt;}
.lsc{letter-spacing:4.853333pt;}
.ls7{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls33{letter-spacing:5.600000pt;}
.ls2d{letter-spacing:6.400000pt;}
.ls12{letter-spacing:6.440000pt;}
.ls13{letter-spacing:6.562667pt;}
.ls3c{letter-spacing:6.664000pt;}
.ls34{letter-spacing:6.693333pt;}
.ls14{letter-spacing:7.253472pt;}
.ls1e{letter-spacing:7.254005pt;}
.ls2c{letter-spacing:7.605333pt;}
.ls0{letter-spacing:7.861333pt;}
.ls39{letter-spacing:11.256000pt;}
.ls32{letter-spacing:13.361600pt;}
.ws2e{word-spacing:-25.426667pt;}
.ws28{word-spacing:-25.133333pt;}
.wsa{word-spacing:-22.400000pt;}
.ws13{word-spacing:-21.666667pt;}
.ws2a{word-spacing:-21.528000pt;}
.ws36{word-spacing:-20.320000pt;}
.ws2{word-spacing:-20.213333pt;}
.ws0{word-spacing:-20.106667pt;}
.ws11{word-spacing:-17.234667pt;}
.ws30{word-spacing:-16.106667pt;}
.ws2b{word-spacing:-15.736000pt;}
.wsb{word-spacing:-15.344000pt;}
.wse{word-spacing:-15.149333pt;}
.ws15{word-spacing:-15.088000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws1f{word-spacing:-14.904000pt;}
.ws25{word-spacing:-14.658667pt;}
.ws1e{word-spacing:-14.229333pt;}
.ws14{word-spacing:-14.168000pt;}
.ws2c{word-spacing:-13.832000pt;}
.ws24{word-spacing:-13.800000pt;}
.ws12{word-spacing:-13.738667pt;}
.wsc{word-spacing:-13.680000pt;}
.ws20{word-spacing:-13.493333pt;}
.ws26{word-spacing:-13.488000pt;}
.ws1a{word-spacing:-13.370667pt;}
.ws37{word-spacing:-13.173333pt;}
.ws16{word-spacing:-12.696000pt;}
.wsf{word-spacing:-12.573333pt;}
.ws17{word-spacing:-11.856000pt;}
.wsd{word-spacing:-10.047811pt;}
.ws3{word-spacing:-8.737227pt;}
.ws19{word-spacing:-7.343467pt;}
.ws2f{word-spacing:-7.000000pt;}
.ws32{word-spacing:-6.664000pt;}
.ws2d{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws9{word-spacing:-3.733333pt;}
.ws31{word-spacing:-3.136000pt;}
.ws6{word-spacing:-2.133333pt;}
.ws23{word-spacing:-1.632000pt;}
.ws7{word-spacing:-1.120000pt;}
.ws33{word-spacing:-0.590773pt;}
.ws4{word-spacing:0.000000pt;}
.ws34{word-spacing:0.160000pt;}
.ws21{word-spacing:0.245333pt;}
.ws35{word-spacing:0.266667pt;}
.ws1c{word-spacing:0.981333pt;}
.ws29{word-spacing:1.042667pt;}
.ws8{word-spacing:1.226667pt;}
.ws1d{word-spacing:1.778667pt;}
.ws1b{word-spacing:2.024000pt;}
.ws27{word-spacing:2.514667pt;}
.ws22{word-spacing:2.698667pt;}
.ws18{word-spacing:2.821333pt;}
.ws10{word-spacing:227.920000pt;}
._20{margin-left:-16.694933pt;}
._9{margin-left:-8.314133pt;}
._a{margin-left:-6.320000pt;}
._1a{margin-left:-5.386667pt;}
._e{margin-left:-4.240533pt;}
._b{margin-left:-3.342400pt;}
._3{margin-left:-2.334400pt;}
._8{margin-left:-1.411200pt;}
._4{width:0.896000pt;}
._1{width:2.133333pt;}
._6{width:3.120000pt;}
._f{width:4.147200pt;}
._5{width:5.120000pt;}
._7{width:6.090667pt;}
._c{width:7.200000pt;}
._d{width:8.234667pt;}
._14{width:9.150133pt;}
._1f{width:10.064533pt;}
._16{width:10.979035pt;}
._18{width:11.875797pt;}
._22{width:14.840000pt;}
._23{width:16.895200pt;}
._12{width:18.560000pt;}
._11{width:19.504000pt;}
._25{width:23.719200pt;}
._1b{width:24.625920pt;}
._24{width:29.193867pt;}
._15{width:38.617920pt;}
._3f{width:44.887467pt;}
._2d{width:53.080533pt;}
._3b{width:54.179200pt;}
._2f{width:59.120000pt;}
._2e{width:68.641600pt;}
._28{width:70.500267pt;}
._10{width:76.048000pt;}
._3d{width:79.547733pt;}
._43{width:81.497067pt;}
._2c{width:89.127467pt;}
._45{width:93.741867pt;}
._27{width:102.480000pt;}
._33{width:117.155200pt;}
._3e{width:122.774400pt;}
._34{width:124.321600pt;}
._31{width:131.576533pt;}
._3c{width:135.180800pt;}
._41{width:136.974933pt;}
._2b{width:139.657067pt;}
._2a{width:144.486400pt;}
._39{width:147.654400pt;}
._32{width:154.956267pt;}
._36{width:157.716267pt;}
._40{width:160.217600pt;}
._3a{width:162.132800pt;}
._42{width:163.823467pt;}
._47{width:170.211733pt;}
._30{width:171.404800pt;}
._37{width:172.323733pt;}
._44{width:173.948267pt;}
._29{width:184.192000pt;}
._38{width:185.722667pt;}
._26{width:192.149867pt;}
._35{width:195.277333pt;}
._46{width:250.386133pt;}
._21{width:398.870400pt;}
._48{width:399.760000pt;}
._13{width:402.686400pt;}
._1d{width:404.813333pt;}
._19{width:405.986133pt;}
._0{width:514.133333pt;}
._17{width:849.961067pt;}
._1c{width:852.294400pt;}
._1e{width:855.894400pt;}
._2{width:857.654400pt;}
.fsd{font-size:26.133333pt;}
.fsb{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fsa{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1f{bottom:94.468800pt;}
.yb7{bottom:94.480267pt;}
.ydd{bottom:94.482933pt;}
.y6a{bottom:94.485600pt;}
.y182{bottom:94.607867pt;}
.y112{bottom:96.160800pt;}
.y103{bottom:97.150933pt;}
.y43{bottom:97.151067pt;}
.yb6{bottom:109.816267pt;}
.ydc{bottom:109.818933pt;}
.y1e{bottom:111.815467pt;}
.y69{bottom:112.484267pt;}
.y181{bottom:113.563867pt;}
.y42{bottom:113.596000pt;}
.y163{bottom:114.188933pt;}
.y111{bottom:115.273867pt;}
.y102{bottom:116.263733pt;}
.yb5{bottom:125.152267pt;}
.ydb{bottom:127.817600pt;}
.y68{bottom:128.931733pt;}
.y41{bottom:128.932000pt;}
.y1d{bottom:129.162133pt;}
.y162{bottom:133.938267pt;}
.y101{bottom:135.376667pt;}
.y180{bottom:140.079867pt;}
.y1c2{bottom:140.381467pt;}
.yb4{bottom:143.150933pt;}
.y1c{bottom:146.508800pt;}
.y67{bottom:146.930400pt;}
.y40{bottom:146.930667pt;}
.y161{bottom:153.687600pt;}
.y110{bottom:154.391867pt;}
.y100{bottom:154.489467pt;}
.y1c1{bottom:156.381467pt;}
.yb3{bottom:159.590400pt;}
.y1e3{bottom:159.936800pt;}
.y134{bottom:162.263733pt;}
.ya7{bottom:163.375333pt;}
.y66{bottom:163.378000pt;}
.y3f{bottom:163.378400pt;}
.y1b{bottom:163.855467pt;}
.y17f{bottom:166.595867pt;}
.yda{bottom:166.947333pt;}
.y143{bottom:166.963333pt;}
.yff{bottom:170.934400pt;}
.y10f{bottom:172.393200pt;}
.y1c0{bottom:172.808133pt;}
.y160{bottom:173.436933pt;}
.yb2{bottom:174.926400pt;}
.y1e2{bottom:177.936800pt;}
.ya6{bottom:178.711333pt;}
.y1a{bottom:181.202133pt;}
.y65{bottom:181.376667pt;}
.y3e{bottom:181.377067pt;}
.yd9{bottom:185.102000pt;}
.y142{bottom:185.118000pt;}
.y17e{bottom:185.551867pt;}
.y87{bottom:186.060533pt;}
.yfe{bottom:186.270400pt;}
.y1bf{bottom:188.808133pt;}
.yb1{bottom:190.262400pt;}
.y10e{bottom:190.394533pt;}
.y15f{bottom:193.186267pt;}
.y1e1{bottom:195.936800pt;}
.ya5{bottom:196.710000pt;}
.y64{bottom:200.489467pt;}
.y3d{bottom:200.490000pt;}
.y133{bottom:201.369733pt;}
.y141{bottom:203.272667pt;}
.yd8{bottom:203.297200pt;}
.yfd{bottom:204.269067pt;}
.y1be{bottom:205.234800pt;}
.y86{bottom:205.257867pt;}
.yb0{bottom:205.598400pt;}
.y10d{bottom:208.395867pt;}
.y19{bottom:209.882133pt;}
.y17d{bottom:212.067867pt;}
.y15e{bottom:212.935600pt;}
.y1e0{bottom:213.936800pt;}
.y63{bottom:216.937067pt;}
.y132{bottom:219.585733pt;}
.yfc{bottom:220.716533pt;}
.y1bd{bottom:221.234800pt;}
.y140{bottom:221.427333pt;}
.yd7{bottom:221.451867pt;}
.yaf{bottom:223.597067pt;}
.y85{bottom:224.474933pt;}
.y10c{bottom:226.397200pt;}
.y17c{bottom:231.023867pt;}
.y15d{bottom:232.684933pt;}
.y62{bottom:234.935733pt;}
.y1bc{bottom:237.661467pt;}
.y131{bottom:237.801733pt;}
.yfb{bottom:238.715200pt;}
.y13f{bottom:239.582000pt;}
.y3c{bottom:239.598000pt;}
.yd6{bottom:239.606533pt;}
.y1df{bottom:243.270133pt;}
.y84{bottom:243.672267pt;}
.y10b{bottom:244.398533pt;}
.y15c{bottom:252.434267pt;}
.y18{bottom:253.682133pt;}
.y1bb{bottom:254.088133pt;}
.y130{bottom:256.017733pt;}
.y17b{bottom:257.539867pt;}
.y13e{bottom:257.736667pt;}
.yd5{bottom:257.761200pt;}
.y3b{bottom:257.814000pt;}
.y10a{bottom:262.399867pt;}
.y83{bottom:262.869600pt;}
.y19b{bottom:270.027867pt;}
.y1ba{bottom:270.514800pt;}
.y15b{bottom:272.183600pt;}
.y17{bottom:272.362133pt;}
.ya4{bottom:272.369333pt;}
.y61{bottom:273.977467pt;}
.y12f{bottom:274.233733pt;}
.y13d{bottom:275.891333pt;}
.yd4{bottom:275.915867pt;}
.y3a{bottom:276.030000pt;}
.y17a{bottom:276.495867pt;}
.yfa{bottom:277.837467pt;}
.y1de{bottom:280.163467pt;}
.yae{bottom:280.394533pt;}
.y109{bottom:280.401200pt;}
.y82{bottom:282.066933pt;}
.y1b9{bottom:286.514800pt;}
.ya3{bottom:290.646667pt;}
.y16{bottom:291.012533pt;}
.y15a{bottom:291.932933pt;}
.y12e{bottom:292.449733pt;}
.y60{bottom:292.852800pt;}
.y13c{bottom:294.046000pt;}
.yd3{bottom:294.070533pt;}
.y39{bottom:294.239467pt;}
.y19a{bottom:295.591867pt;}
.yf9{bottom:295.915467pt;}
.y1dd{bottom:297.496800pt;}
.yad{bottom:298.395867pt;}
.y81{bottom:301.264267pt;}
.y1b8{bottom:302.941467pt;}
.y179{bottom:303.011867pt;}
.y15{bottom:308.359200pt;}
.ya2{bottom:308.924000pt;}
.y12d{bottom:310.654933pt;}
.y159{bottom:311.682267pt;}
.y5f{bottom:311.728133pt;}
.y13b{bottom:312.200667pt;}
.yd2{bottom:312.225200pt;}
.y38{bottom:312.423200pt;}
.yf8{bottom:314.008800pt;}
.y1dc{bottom:314.830133pt;}
.yac{bottom:316.397200pt;}
.y108{bottom:316.401200pt;}
.y1b7{bottom:318.941467pt;}
.y80{bottom:320.461600pt;}
.y199{bottom:321.155867pt;}
.y178{bottom:321.981867pt;}
.y14{bottom:325.705867pt;}
.ya1{bottom:327.201333pt;}
.y12c{bottom:328.870933pt;}
.y13a{bottom:330.355333pt;}
.yd1{bottom:330.379867pt;}
.y5e{bottom:330.603467pt;}
.y37{bottom:330.639200pt;}
.y158{bottom:331.431600pt;}
.yf7{bottom:332.102133pt;}
.y1db{bottom:332.163467pt;}
.yab{bottom:334.398533pt;}
.y1b6{bottom:335.368133pt;}
.y198{bottom:339.159867pt;}
.y7f{bottom:339.658933pt;}
.y13{bottom:343.052533pt;}
.ya0{bottom:345.478667pt;}
.y12b{bottom:347.086933pt;}
.y177{bottom:348.497867pt;}
.y139{bottom:348.510000pt;}
.yd0{bottom:348.534533pt;}
.y36{bottom:348.855200pt;}
.y5d{bottom:349.478800pt;}
.y1da{bottom:349.496800pt;}
.yf6{bottom:350.185333pt;}
.y157{bottom:351.180933pt;}
.y1b5{bottom:351.794800pt;}
.yaa{bottom:352.399867pt;}
.y7e{bottom:358.856267pt;}
.y12{bottom:360.399200pt;}
.y9f{bottom:363.756000pt;}
.y197{bottom:364.723867pt;}
.y12a{bottom:365.217200pt;}
.y138{bottom:366.664667pt;}
.ycf{bottom:366.689200pt;}
.y1d9{bottom:366.830133pt;}
.y35{bottom:367.071200pt;}
.y176{bottom:367.453867pt;}
.y1b4{bottom:367.794800pt;}
.yf5{bottom:368.278667pt;}
.y5c{bottom:368.354133pt;}
.ya9{bottom:370.401200pt;}
.y156{bottom:370.930267pt;}
.y11{bottom:377.745867pt;}
.y7d{bottom:378.053600pt;}
.y9e{bottom:382.033333pt;}
.y196{bottom:382.727867pt;}
.y129{bottom:383.433200pt;}
.y1d8{bottom:384.163467pt;}
.y1b3{bottom:384.221467pt;}
.y137{bottom:384.819333pt;}
.yce{bottom:384.843867pt;}
.y34{bottom:385.287200pt;}
.yf4{bottom:386.264800pt;}
.y5b{bottom:387.229467pt;}
.y155{bottom:390.679600pt;}
.y175{bottom:393.969867pt;}
.y10{bottom:395.092533pt;}
.y7c{bottom:397.250933pt;}
.y1b2{bottom:400.221467pt;}
.y9d{bottom:400.310667pt;}
.y1d7{bottom:401.496800pt;}
.y128{bottom:401.649200pt;}
.y136{bottom:402.974000pt;}
.ycd{bottom:402.998533pt;}
.y33{bottom:403.477467pt;}
.yf3{bottom:404.358133pt;}
.y5a{bottom:406.104800pt;}
.ya8{bottom:406.401200pt;}
.y195{bottom:408.291867pt;}
.y154{bottom:410.428933pt;}
.yf{bottom:412.439200pt;}
.y174{bottom:412.939867pt;}
.y7b{bottom:416.448267pt;}
.y1b1{bottom:416.648133pt;}
.y9c{bottom:418.588000pt;}
.y1d6{bottom:418.830133pt;}
.y127{bottom:419.865200pt;}
.y135{bottom:421.128667pt;}
.ycc{bottom:421.153200pt;}
.y32{bottom:421.693467pt;}
.yf2{bottom:422.451467pt;}
.y59{bottom:424.980133pt;}
.y194{bottom:426.295867pt;}
.ye{bottom:429.785867pt;}
.y153{bottom:430.178267pt;}
.y1b0{bottom:432.648133pt;}
.y7a{bottom:435.645600pt;}
.y1d5{bottom:436.163467pt;}
.y9b{bottom:436.865333pt;}
.y126{bottom:438.081200pt;}
.ycb{bottom:439.307867pt;}
.y173{bottom:439.455867pt;}
.y31{bottom:439.909467pt;}
.yf1{bottom:440.544800pt;}
.y58{bottom:443.855467pt;}
.y1af{bottom:449.074800pt;}
.y152{bottom:449.927600pt;}
.y193{bottom:451.859867pt;}
.y1d4{bottom:453.496800pt;}
.y79{bottom:454.842933pt;}
.y9a{bottom:455.142667pt;}
.y125{bottom:456.297200pt;}
.yca{bottom:457.462533pt;}
.y30{bottom:458.125467pt;}
.y172{bottom:458.425867pt;}
.yd{bottom:458.465867pt;}
.yf0{bottom:458.638133pt;}
.y57{bottom:462.730800pt;}
.y1ae{bottom:465.501467pt;}
.y151{bottom:469.676933pt;}
.y192{bottom:469.863867pt;}
.y1d3{bottom:470.830133pt;}
.y99{bottom:473.420000pt;}
.y78{bottom:474.040267pt;}
.y124{bottom:474.513200pt;}
.yc9{bottom:475.617200pt;}
.y2f{bottom:476.309200pt;}
.yef{bottom:476.731467pt;}
.y1ad{bottom:481.501467pt;}
.y56{bottom:481.606133pt;}
.y171{bottom:484.941867pt;}
.y1d2{bottom:488.163467pt;}
.y150{bottom:489.426267pt;}
.y98{bottom:491.697333pt;}
.y123{bottom:492.729200pt;}
.y77{bottom:493.237600pt;}
.yc8{bottom:493.771867pt;}
.y2e{bottom:494.525200pt;}
.yee{bottom:494.824800pt;}
.y191{bottom:495.427867pt;}
.y1ac{bottom:497.928133pt;}
.y55{bottom:500.481467pt;}
.y170{bottom:503.911867pt;}
.y1d1{bottom:505.496800pt;}
.y14f{bottom:509.175600pt;}
.yc{bottom:509.829200pt;}
.y97{bottom:509.974667pt;}
.y122{bottom:510.945200pt;}
.yc7{bottom:511.926533pt;}
.y2d{bottom:512.741200pt;}
.yed{bottom:512.918133pt;}
.y190{bottom:513.431867pt;}
.y1ab{bottom:514.354800pt;}
.y54{bottom:519.356800pt;}
.y1d0{bottom:522.830133pt;}
.y96{bottom:528.252000pt;}
.y14e{bottom:528.924933pt;}
.y121{bottom:529.161200pt;}
.yc6{bottom:530.081200pt;}
.y1aa{bottom:530.354800pt;}
.y16f{bottom:530.427867pt;}
.y2c{bottom:530.957200pt;}
.yec{bottom:531.011467pt;}
.y76{bottom:531.330000pt;}
.y18f{bottom:531.435867pt;}
.yb{bottom:533.834533pt;}
.y53{bottom:538.226000pt;}
.y1cf{bottom:540.163467pt;}
.y95{bottom:546.529333pt;}
.y1a9{bottom:546.781467pt;}
.y120{bottom:547.377200pt;}
.yc5{bottom:548.235867pt;}
.y14d{bottom:548.674267pt;}
.yeb{bottom:549.104800pt;}
.y2b{bottom:549.173200pt;}
.y16e{bottom:549.397867pt;}
.y18e{bottom:549.439867pt;}
.y75{bottom:553.866000pt;}
.y52{bottom:557.089067pt;}
.y1ce{bottom:557.496800pt;}
.y1a8{bottom:562.781467pt;}
.y94{bottom:564.806667pt;}
.y11f{bottom:565.593200pt;}
.yc4{bottom:566.390533pt;}
.yea{bottom:567.198133pt;}
.y2a{bottom:567.389200pt;}
.y14c{bottom:568.423600pt;}
.y1cd{bottom:574.830133pt;}
.y18d{bottom:575.003867pt;}
.y16d{bottom:575.913867pt;}
.y51{bottom:575.964400pt;}
.ya{bottom:576.745733pt;}
.y1a7{bottom:579.208133pt;}
.y93{bottom:583.084000pt;}
.y11e{bottom:583.809200pt;}
.yc3{bottom:584.545200pt;}
.ye9{bottom:585.291467pt;}
.y14b{bottom:588.172933pt;}
.y1cc{bottom:592.163467pt;}
.y18c{bottom:593.007867pt;}
.y50{bottom:594.815333pt;}
.y16c{bottom:594.869867pt;}
.y1a6{bottom:595.634800pt;}
.y92{bottom:601.361333pt;}
.y11d{bottom:602.025200pt;}
.yc2{bottom:602.699867pt;}
.ye8{bottom:603.384800pt;}
.y29{bottom:604.496400pt;}
.y9{bottom:604.753733pt;}
.y14a{bottom:607.922267pt;}
.y1cb{bottom:609.496800pt;}
.y74{bottom:610.427867pt;}
.y1a5{bottom:611.634800pt;}
.y4f{bottom:613.690667pt;}
.y18b{bottom:618.571867pt;}
.y91{bottom:619.635467pt;}
.y11c{bottom:620.241200pt;}
.yc1{bottom:620.854533pt;}
.y16b{bottom:621.385867pt;}
.ye7{bottom:621.478133pt;}
.y1ca{bottom:626.830133pt;}
.y1a4{bottom:628.061467pt;}
.y73{bottom:629.625200pt;}
.y4e{bottom:632.566000pt;}
.y8{bottom:632.761733pt;}
.y18a{bottom:636.575867pt;}
.y90{bottom:637.912800pt;}
.y11b{bottom:638.457200pt;}
.yc0{bottom:639.009200pt;}
.ye6{bottom:639.571467pt;}
.y1c9{bottom:644.163467pt;}
.y1a3{bottom:644.488133pt;}
.y149{bottom:646.567333pt;}
.y16a{bottom:647.901867pt;}
.y72{bottom:648.822533pt;}
.y4d{bottom:651.441333pt;}
.y189{bottom:654.579867pt;}
.y8f{bottom:656.190133pt;}
.y11a{bottom:656.673200pt;}
.ybf{bottom:657.163867pt;}
.ye5{bottom:657.664800pt;}
.y1a2{bottom:660.914800pt;}
.y1c8{bottom:661.496800pt;}
.y169{bottom:666.871867pt;}
.y71{bottom:668.019867pt;}
.y4c{bottom:670.310533pt;}
.y8e{bottom:674.460933pt;}
.y119{bottom:674.889200pt;}
.ybe{bottom:675.318533pt;}
.ye4{bottom:675.758133pt;}
.y1a1{bottom:677.341467pt;}
.y28{bottom:678.260667pt;}
.y1c7{bottom:678.830133pt;}
.y188{bottom:680.143867pt;}
.y168{bottom:685.827867pt;}
.y7{bottom:687.211467pt;}
.y70{bottom:687.217200pt;}
.y4b{bottom:689.149200pt;}
.y8d{bottom:692.738267pt;}
.y118{bottom:693.105200pt;}
.ybd{bottom:693.473200pt;}
.y1a0{bottom:693.768133pt;}
.ye3{bottom:693.851467pt;}
.y1c6{bottom:696.168667pt;}
.y27{bottom:697.140667pt;}
.y187{bottom:698.147867pt;}
.y148{bottom:703.654533pt;}
.y6f{bottom:706.414533pt;}
.y4a{bottom:708.024533pt;}
.y19f{bottom:709.768133pt;}
.y8c{bottom:711.015600pt;}
.y117{bottom:711.321200pt;}
.ybc{bottom:711.627867pt;}
.ye2{bottom:711.944800pt;}
.y167{bottom:712.343867pt;}
.y6{bottom:713.451467pt;}
.y26{bottom:715.998000pt;}
.y147{bottom:723.403867pt;}
.y186{bottom:723.711867pt;}
.y1c5{bottom:724.835333pt;}
.y6e{bottom:725.611867pt;}
.y19e{bottom:726.194800pt;}
.y49{bottom:726.899867pt;}
.y8b{bottom:729.292933pt;}
.y116{bottom:729.537200pt;}
.ybb{bottom:729.782533pt;}
.ye1{bottom:730.038133pt;}
.y107{bottom:730.399867pt;}
.y166{bottom:731.299867pt;}
.y5{bottom:732.131467pt;}
.y25{bottom:733.544667pt;}
.y185{bottom:741.715867pt;}
.y19d{bottom:742.194800pt;}
.y146{bottom:743.153200pt;}
.y6d{bottom:744.809200pt;}
.y48{bottom:745.775200pt;}
.y8a{bottom:747.570267pt;}
.y115{bottom:747.753200pt;}
.yba{bottom:747.937200pt;}
.ye0{bottom:748.131467pt;}
.y106{bottom:748.397200pt;}
.y24{bottom:751.091333pt;}
.y165{bottom:757.815867pt;}
.y4{bottom:758.371467pt;}
.y184{bottom:759.719867pt;}
.y145{bottom:762.902533pt;}
.y6c{bottom:764.006533pt;}
.y47{bottom:764.650533pt;}
.y89{bottom:765.847600pt;}
.y114{bottom:765.969200pt;}
.yb9{bottom:766.091867pt;}
.ydf{bottom:766.214533pt;}
.y105{bottom:766.398533pt;}
.y23{bottom:768.638000pt;}
.y19c{bottom:775.567867pt;}
.y1c4{bottom:776.179067pt;}
.y164{bottom:776.771867pt;}
.y144{bottom:782.651867pt;}
.y6b{bottom:783.203867pt;}
.y46{bottom:783.525867pt;}
.y88{bottom:784.123867pt;}
.y113{bottom:784.185200pt;}
.yb8{bottom:784.246533pt;}
.yde{bottom:784.307867pt;}
.y104{bottom:784.399867pt;}
.y3{bottom:784.611467pt;}
.y183{bottom:785.283867pt;}
.y22{bottom:786.184667pt;}
.y1c3{bottom:800.184400pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y44{bottom:858.834667pt;}
.h10{height:33.763396pt;}
.h9{height:39.479167pt;}
.h17{height:43.138396pt;}
.h11{height:44.414062pt;}
.h4{height:49.348958pt;}
.h8{height:49.426292pt;}
.h3{height:51.816406pt;}
.h18{height:53.789062pt;}
.hb{height:56.751302pt;}
.h19{height:56.755569pt;}
.h1a{height:56.764102pt;}
.h13{height:56.775835pt;}
.hf{height:56.777435pt;}
.h1c{height:56.791835pt;}
.h1f{height:56.794502pt;}
.h15{height:56.800369pt;}
.h14{height:56.848902pt;}
.he{height:56.854235pt;}
.hc{height:56.880369pt;}
.h12{height:56.897969pt;}
.h7{height:59.765625pt;}
.h2{height:61.686198pt;}
.h20{height:62.753906pt;}
.ha{height:66.621094pt;}
.hd{height:68.730469pt;}
.h16{height:68.755002pt;}
.h1d{height:68.791802pt;}
.h1e{height:69.073402pt;}
.h6{height:69.088542pt;}
.h1b{height:69.159269pt;}
.h5{height:88.828125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.934267pt;}
.x5{left:73.759333pt;}
.x8{left:74.690000pt;}
.x1{left:75.590533pt;}
.xf{left:77.902133pt;}
.xa{left:79.072533pt;}
.x6{left:92.170133pt;}
.x7{left:93.398267pt;}
.x4{left:94.333867pt;}
.xb{left:202.952533pt;}
.xc{left:204.245867pt;}
.x2{left:206.290000pt;}
.x3{left:207.576400pt;}
.xd{left:359.182133pt;}
.xe{left:360.355467pt;}
}




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