
    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_b5019265200fcb4231bd78d5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_499181852686b96956911e56.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_ee36d664472b24e175341541.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_745321c5a65b640a1ff55aa6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_b478cd69a79bc2bc9a718658.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v4{vertical-align:-26.640000px;}
.v3{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:24.420000px;}
.v2{vertical-align:26.640000px;}
.ls34{letter-spacing:-7.560000px;}
.ls33{letter-spacing:-6.840000px;}
.ls25{letter-spacing:-5.256000px;}
.ls2a{letter-spacing:-4.320000px;}
.ls1d{letter-spacing:-1.800000px;}
.ls1e{letter-spacing:-1.656000px;}
.ls26{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-0.936000px;}
.ls32{letter-spacing:-0.864000px;}
.ls36{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls39{letter-spacing:-0.648000px;}
.ls1b{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.ls38{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.144000px;}
.ls3f{letter-spacing:-0.132000px;}
.ls27{letter-spacing:-0.072000px;}
.ls42{letter-spacing:-0.066000px;}
.lsc{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.009000px;}
.ls43{letter-spacing:0.066000px;}
.ls14{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.lse{letter-spacing:0.504000px;}
.ls3e{letter-spacing:0.528000px;}
.ls2f{letter-spacing:0.576000px;}
.ls41{letter-spacing:0.594000px;}
.lsf{letter-spacing:0.648000px;}
.ls40{letter-spacing:0.660000px;}
.lsb{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.ls8{letter-spacing:0.864000px;}
.ls2b{letter-spacing:0.936000px;}
.ls6{letter-spacing:1.008000px;}
.ls5{letter-spacing:1.152000px;}
.ls2d{letter-spacing:1.224000px;}
.ls28{letter-spacing:1.296000px;}
.ls29{letter-spacing:1.368000px;}
.ls15{letter-spacing:2.664000px;}
.ls44{letter-spacing:3.000000px;}
.ls31{letter-spacing:3.705000px;}
.ls3b{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls35{letter-spacing:4.845000px;}
.ls22{letter-spacing:4.959000px;}
.ls9{letter-spacing:5.256000px;}
.ls37{letter-spacing:5.400000px;}
.ls3d{letter-spacing:5.940000px;}
.ls3a{letter-spacing:6.000000px;}
.ls2e{letter-spacing:6.336000px;}
.ls2{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls30{letter-spacing:8.928000px;}
.ls3{letter-spacing:10.200000px;}
.ls17{letter-spacing:10.728000px;}
.ls20{letter-spacing:11.016000px;}
.ls21{letter-spacing:11.448000px;}
.ls1f{letter-spacing:11.592000px;}
.ls45{letter-spacing:19.800000px;}
.ls1{letter-spacing:66.590400px;}
.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;}
}
.ws3{word-spacing:-85.884000px;}
.ws4{word-spacing:-60.624000px;}
.ws31{word-spacing:-54.792000px;}
.ws33{word-spacing:-54.648000px;}
.ws6{word-spacing:-54.576000px;}
.ws2f{word-spacing:-54.432000px;}
.ws34{word-spacing:-54.360000px;}
.ws9{word-spacing:-54.288000px;}
.ws59{word-spacing:-54.216000px;}
.wsc{word-spacing:-54.144000px;}
.ws1f{word-spacing:-54.072000px;}
.ws5b{word-spacing:-54.000000px;}
.wsf{word-spacing:-53.928000px;}
.ws1d{word-spacing:-53.856000px;}
.wsb{word-spacing:-53.784000px;}
.ws13{word-spacing:-53.712000px;}
.ws11{word-spacing:-53.640000px;}
.ws18{word-spacing:-53.568000px;}
.ws19{word-spacing:-53.496000px;}
.ws5{word-spacing:-53.424000px;}
.ws2e{word-spacing:-53.352000px;}
.ws60{word-spacing:-53.280000px;}
.ws23{word-spacing:-53.208000px;}
.ws1c{word-spacing:-53.136000px;}
.ws10{word-spacing:-53.064000px;}
.ws14{word-spacing:-52.992000px;}
.ws63{word-spacing:-52.920000px;}
.ws22{word-spacing:-52.848000px;}
.ws62{word-spacing:-52.776000px;}
.ws25{word-spacing:-52.704000px;}
.ws35{word-spacing:-52.560000px;}
.ws2b{word-spacing:-52.344000px;}
.ws27{word-spacing:-51.624000px;}
.ws64{word-spacing:-50.520000px;}
.ws6a{word-spacing:-49.764000px;}
.ws69{word-spacing:-49.632000px;}
.ws32{word-spacing:-49.104000px;}
.ws6f{word-spacing:-49.038000px;}
.ws3f{word-spacing:-48.972000px;}
.ws6c{word-spacing:-48.906000px;}
.ws58{word-spacing:-48.642000px;}
.ws2a{word-spacing:-48.168000px;}
.ws71{word-spacing:-47.520000px;}
.ws3c{word-spacing:-47.139000px;}
.ws3e{word-spacing:-45.468000px;}
.ws2{word-spacing:-44.520000px;}
.ws15{word-spacing:-42.294000px;}
.ws6b{word-spacing:-38.610000px;}
.ws66{word-spacing:-38.082000px;}
.ws65{word-spacing:-38.016000px;}
.ws67{word-spacing:-37.818000px;}
.ws1{word-spacing:-35.616000px;}
.wse{word-spacing:-35.364000px;}
.ws3a{word-spacing:-34.056000px;}
.ws3b{word-spacing:-33.408000px;}
.ws37{word-spacing:-32.547000px;}
.ws12{word-spacing:-32.054400px;}
.ws38{word-spacing:-31.008000px;}
.ws39{word-spacing:-30.951000px;}
.ws29{word-spacing:-29.376000px;}
.ws2c{word-spacing:-29.232000px;}
.ws0{word-spacing:-24.024000px;}
.ws2d{word-spacing:-20.232000px;}
.ws3d{word-spacing:-19.512000px;}
.ws7{word-spacing:-18.792000px;}
.ws5a{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.576000px;}
.ws41{word-spacing:-18.546000px;}
.ws5e{word-spacing:-18.504000px;}
.ws5f{word-spacing:-18.360000px;}
.ws1e{word-spacing:-18.216000px;}
.ws1b{word-spacing:-18.144000px;}
.ws26{word-spacing:-18.072000px;}
.ws24{word-spacing:-18.000000px;}
.ws5c{word-spacing:-17.928000px;}
.ws5d{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws20{word-spacing:-17.424000px;}
.ws21{word-spacing:-17.280000px;}
.ws1a{word-spacing:-16.860000px;}
.ws6e{word-spacing:-16.830000px;}
.ws70{word-spacing:-16.368000px;}
.ws68{word-spacing:-16.302000px;}
.ws28{word-spacing:-16.128000px;}
.ws30{word-spacing:-14.820000px;}
.ws16{word-spacing:-14.079000px;}
.ws36{word-spacing:-12.139200px;}
.wsd{word-spacing:0.000000px;}
.ws17{word-spacing:30.211200px;}
.ws4f{word-spacing:82.698000px;}
.ws55{word-spacing:85.998000px;}
.ws43{word-spacing:137.544000px;}
.ws4c{word-spacing:143.616000px;}
.ws6d{word-spacing:157.662000px;}
.ws46{word-spacing:158.268000px;}
.ws48{word-spacing:173.448000px;}
.ws4d{word-spacing:182.490000px;}
.ws54{word-spacing:198.858000px;}
.ws49{word-spacing:215.424000px;}
.ws50{word-spacing:216.678000px;}
.ws52{word-spacing:217.734000px;}
.ws53{word-spacing:225.192000px;}
.ws40{word-spacing:225.390000px;}
.ws42{word-spacing:228.360000px;}
.ws57{word-spacing:242.484000px;}
.ws56{word-spacing:248.226000px;}
.ws45{word-spacing:253.968000px;}
.ws51{word-spacing:256.212000px;}
.ws4a{word-spacing:260.436000px;}
.ws4e{word-spacing:261.888000px;}
.ws44{word-spacing:262.482000px;}
.ws61{word-spacing:297.330000px;}
.ws4b{word-spacing:348.084000px;}
.ws47{word-spacing:392.106000px;}
._12{margin-left:-14.179333px;}
._11{margin-left:-12.600000px;}
._7{margin-left:-11.088000px;}
._a{margin-left:-9.132000px;}
._9{margin-left:-7.716000px;}
._3{margin-left:-6.600000px;}
._5{margin-left:-5.280000px;}
._1{margin-left:-3.402000px;}
._0{margin-left:-1.680000px;}
._2{width:1.873333px;}
._e{width:2.876000px;}
._b{width:3.888000px;}
._4{width:5.046000px;}
._8{width:6.594000px;}
._6{width:8.130000px;}
._d{width:9.576000px;}
._c{width:10.800000px;}
._f{width:11.866667px;}
._2e{width:13.002000px;}
._2f{width:15.800667px;}
._30{width:18.402000px;}
._31{width:20.064000px;}
._10{width:56.923200px;}
._32{width:114.969000px;}
._26{width:199.878000px;}
._1a{width:280.048667px;}
._17{width:312.298667px;}
._1d{width:328.198667px;}
._13{width:333.234000px;}
._20{width:335.854667px;}
._1c{width:347.886000px;}
._18{width:350.394000px;}
._24{width:372.022667px;}
._2c{width:375.672000px;}
._28{width:377.190000px;}
._1e{width:383.176667px;}
._2a{width:390.918000px;}
._22{width:396.792000px;}
._2b{width:411.972000px;}
._2d{width:413.490000px;}
._19{width:423.477333px;}
._21{width:443.362667px;}
._1b{width:449.343333px;}
._27{width:457.222667px;}
._16{width:486.330000px;}
._14{width:515.790000px;}
._1f{width:520.608000px;}
._23{width:525.234000px;}
._25{width:534.930000px;}
._29{width:541.108667px;}
._15{width:562.204667px;}
._33{width:653.676000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsa{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:76.325850px;}
.y1{bottom:76.337550px;}
.y44{bottom:140.299800px;}
.yc6{bottom:140.310150px;}
.y7e{bottom:140.311650px;}
.y9f{bottom:140.313150px;}
.y169{bottom:144.313500px;}
.y18b{bottom:144.383100px;}
.y145{bottom:145.648500px;}
.y126{bottom:145.863150px;}
.y21{bottom:146.144700px;}
.y1b0{bottom:147.974100px;}
.yf9{bottom:148.105500px;}
.y5c{bottom:150.100800px;}
.yc3{bottom:150.112500px;}
.yc5{bottom:156.811650px;}
.y43{bottom:162.351300px;}
.y7d{bottom:162.363150px;}
.y18a{bottom:164.777100px;}
.y168{bottom:166.507500px;}
.y144{bottom:167.392500px;}
.yf8{bottom:167.575500px;}
.y20{bottom:167.744700px;}
.y1af{bottom:168.071100px;}
.y5b{bottom:171.700800px;}
.yc2{bottom:171.712500px;}
.y42{bottom:178.851300px;}
.yc4{bottom:178.863150px;}
.y125{bottom:182.084550px;}
.y189{bottom:185.319600px;}
.yf7{bottom:187.045500px;}
.y1ae{bottom:188.168100px;}
.y167{bottom:188.701500px;}
.y143{bottom:189.136500px;}
.y1f{bottom:189.344700px;}
.y1ce{bottom:192.106050px;}
.y5a{bottom:193.300800px;}
.yc1{bottom:193.312500px;}
.ye8{bottom:198.220500px;}
.y7c{bottom:201.758550px;}
.y9e{bottom:203.398500px;}
.y124{bottom:203.684550px;}
.y188{bottom:205.862100px;}
.yf6{bottom:206.515500px;}
.y1ad{bottom:208.265100px;}
.y1cd{bottom:210.106050px;}
.y166{bottom:210.607500px;}
.y142{bottom:210.880500px;}
.y1e{bottom:210.944700px;}
.y41{bottom:212.996850px;}
.y59{bottom:214.900800px;}
.yc0{bottom:214.912500px;}
.ye7{bottom:219.820500px;}
.y7b{bottom:223.052550px;}
.y9d{bottom:224.998500px;}
.y123{bottom:225.284550px;}
.yf5{bottom:225.985500px;}
.y187{bottom:226.404600px;}
.y1cc{bottom:228.106050px;}
.y1ac{bottom:228.362100px;}
.y165{bottom:232.513500px;}
.y1d{bottom:232.544700px;}
.y141{bottom:232.624500px;}
.y40{bottom:234.596850px;}
.y58{bottom:236.500800px;}
.ybf{bottom:236.512500px;}
.ye6{bottom:241.276500px;}
.y7a{bottom:244.346550px;}
.yf4{bottom:245.455500px;}
.y1cb{bottom:246.106050px;}
.y9c{bottom:246.292500px;}
.y122{bottom:246.884550px;}
.y1ab{bottom:248.459100px;}
.y1c{bottom:254.144700px;}
.y140{bottom:254.368500px;}
.y164{bottom:254.419500px;}
.y186{bottom:255.458550px;}
.y3f{bottom:256.196850px;}
.y57{bottom:258.100800px;}
.ybe{bottom:258.112500px;}
.ye5{bottom:262.732500px;}
.y1ca{bottom:264.106050px;}
.yf3{bottom:264.925500px;}
.y79{bottom:265.640550px;}
.y9b{bottom:267.586500px;}
.y121{bottom:268.484550px;}
.y1aa{bottom:268.556100px;}
.y1b{bottom:275.744700px;}
.y13f{bottom:276.112500px;}
.y3e{bottom:277.796850px;}
.y56{bottom:279.700800px;}
.ybd{bottom:279.712500px;}
.y1c9{bottom:282.106050px;}
.ye4{bottom:284.188500px;}
.yf2{bottom:284.395500px;}
.y163{bottom:284.823450px;}
.y78{bottom:286.934550px;}
.y1a9{bottom:288.653100px;}
.y9a{bottom:288.880500px;}
.y120{bottom:290.084550px;}
.y1a{bottom:297.344700px;}
.y13e{bottom:297.856500px;}
.y3d{bottom:299.396850px;}
.y55{bottom:301.300800px;}
.ybc{bottom:301.312500px;}
.yf1{bottom:303.865500px;}
.y185{bottom:305.146500px;}
.ye3{bottom:305.644500px;}
.y77{bottom:308.228550px;}
.y1a8{bottom:308.750100px;}
.y99{bottom:310.174500px;}
.y11f{bottom:311.684550px;}
.y19{bottom:318.944700px;}
.y13d{bottom:319.600500px;}
.y3c{bottom:320.996850px;}
.y54{bottom:322.900800px;}
.ybb{bottom:322.912500px;}
.yf0{bottom:323.335500px;}
.ye2{bottom:327.100500px;}
.y184{bottom:327.502500px;}
.y1a7{bottom:328.847100px;}
.y76{bottom:329.522550px;}
.y98{bottom:331.468500px;}
.y11e{bottom:333.284550px;}
.y1c8{bottom:336.106050px;}
.y18{bottom:340.544700px;}
.y13c{bottom:341.344500px;}
.y3b{bottom:342.596850px;}
.yef{bottom:342.805500px;}
.y53{bottom:344.500800px;}
.yba{bottom:344.512500px;}
.ye1{bottom:348.556500px;}
.y1a6{bottom:348.944100px;}
.y183{bottom:349.858500px;}
.y75{bottom:350.816550px;}
.y97{bottom:352.762500px;}
.y11d{bottom:354.884550px;}
.y1c7{bottom:355.906050px;}
.y17{bottom:362.144700px;}
.yee{bottom:362.275500px;}
.y13b{bottom:363.088500px;}
.y3a{bottom:364.196850px;}
.y52{bottom:366.100800px;}
.yb9{bottom:366.112500px;}
.y1a5{bottom:369.041100px;}
.ye0{bottom:369.856500px;}
.y74{bottom:372.110550px;}
.y182{bottom:372.214500px;}
.y15e{bottom:372.988500px;}
.y96{bottom:374.056500px;}
.y1c6{bottom:375.706050px;}
.y11c{bottom:376.484550px;}
.yed{bottom:381.745500px;}
.y16{bottom:383.744700px;}
.y13a{bottom:384.832500px;}
.y39{bottom:385.796850px;}
.y51{bottom:387.700800px;}
.yb8{bottom:387.712500px;}
.y1a4{bottom:389.138100px;}
.ydf{bottom:391.312500px;}
.y15d{bottom:392.788500px;}
.y73{bottom:393.404550px;}
.y181{bottom:394.570500px;}
.y95{bottom:395.350500px;}
.y1c5{bottom:395.506050px;}
.yec{bottom:401.215500px;}
.y15{bottom:405.344700px;}
.y139{bottom:406.576500px;}
.y38{bottom:407.396850px;}
.y1a3{bottom:409.235100px;}
.y50{bottom:409.300800px;}
.yb7{bottom:409.312500px;}
.y15c{bottom:412.588500px;}
.yde{bottom:412.768500px;}
.y11b{bottom:414.516600px;}
.y72{bottom:414.698550px;}
.y1c4{bottom:415.306050px;}
.y94{bottom:416.644500px;}
.y180{bottom:416.926500px;}
.yeb{bottom:420.685500px;}
.y14{bottom:426.944700px;}
.y138{bottom:428.320500px;}
.y37{bottom:428.996850px;}
.y1a2{bottom:429.332100px;}
.y4f{bottom:430.900800px;}
.yb6{bottom:430.912500px;}
.y15b{bottom:432.388500px;}
.y162{bottom:432.388950px;}
.ydd{bottom:434.224500px;}
.y1c3{bottom:435.106050px;}
.y71{bottom:435.992550px;}
.y93{bottom:437.938500px;}
.y17f{bottom:439.282500px;}
.y11a{bottom:440.702100px;}
.yea{bottom:444.594000px;}
.y13{bottom:448.544700px;}
.y1a1{bottom:449.429100px;}
.y137{bottom:450.064500px;}
.y36{bottom:450.596850px;}
.y15a{bottom:452.188500px;}
.y161{bottom:452.188950px;}
.y4e{bottom:452.500800px;}
.yb5{bottom:452.512500px;}
.y111{bottom:454.116600px;}
.y1c2{bottom:454.906050px;}
.ydc{bottom:455.680500px;}
.y70{bottom:457.286550px;}
.y92{bottom:459.232500px;}
.y119{bottom:460.502100px;}
.y17e{bottom:461.638500px;}
.y1a0{bottom:469.526100px;}
.y12{bottom:470.144700px;}
.y136{bottom:471.808500px;}
.y159{bottom:471.988500px;}
.y160{bottom:471.988950px;}
.y35{bottom:472.196850px;}
.y110{bottom:473.916600px;}
.y4d{bottom:474.100800px;}
.yb4{bottom:474.112500px;}
.y1c1{bottom:474.706050px;}
.ydb{bottom:477.136500px;}
.y6f{bottom:478.580550px;}
.ye9{bottom:478.762500px;}
.y118{bottom:480.302100px;}
.y91{bottom:480.526500px;}
.y17d{bottom:483.832500px;}
.y19f{bottom:489.623100px;}
.y11{bottom:491.744700px;}
.y158{bottom:491.788500px;}
.y15f{bottom:491.788950px;}
.y135{bottom:493.552500px;}
.y34{bottom:493.796850px;}
.y1c0{bottom:494.506050px;}
.y4c{bottom:495.700800px;}
.yb3{bottom:495.712500px;}
.yda{bottom:498.592500px;}
.y6e{bottom:499.874550px;}
.y10f{bottom:500.102100px;}
.y90{bottom:501.820500px;}
.y17c{bottom:506.026500px;}
.y19e{bottom:509.720100px;}
.y157{bottom:511.588500px;}
.y10{bottom:513.344700px;}
.y1bf{bottom:514.306050px;}
.y134{bottom:515.296500px;}
.y33{bottom:515.396850px;}
.y4b{bottom:517.300800px;}
.yb2{bottom:517.312500px;}
.y10e{bottom:519.902100px;}
.yd9{bottom:520.048500px;}
.y6d{bottom:521.168550px;}
.y8f{bottom:523.114500px;}
.y17b{bottom:528.220500px;}
.y19d{bottom:529.817100px;}
.y156{bottom:531.388500px;}
.y1be{bottom:534.106050px;}
.yf{bottom:534.944700px;}
.y32{bottom:536.996850px;}
.y133{bottom:537.040500px;}
.y4a{bottom:538.900800px;}
.yb1{bottom:538.912500px;}
.y10d{bottom:539.702100px;}
.yd8{bottom:541.504500px;}
.y6c{bottom:542.462550px;}
.y8e{bottom:544.408500px;}
.y19c{bottom:549.914100px;}
.y17a{bottom:550.414500px;}
.y155{bottom:551.188500px;}
.y1bd{bottom:553.906050px;}
.ye{bottom:556.544700px;}
.y31{bottom:558.596850px;}
.y132{bottom:558.784500px;}
.y10c{bottom:559.502100px;}
.y49{bottom:560.500800px;}
.yb0{bottom:560.512500px;}
.yd7{bottom:562.960500px;}
.y6b{bottom:563.756550px;}
.y8d{bottom:565.702500px;}
.y19b{bottom:570.011100px;}
.y154{bottom:570.988500px;}
.y179{bottom:572.608500px;}
.y1bc{bottom:573.706050px;}
.yd{bottom:578.144700px;}
.y10b{bottom:579.302100px;}
.y131{bottom:580.528500px;}
.y48{bottom:582.100800px;}
.yaf{bottom:582.112500px;}
.yd6{bottom:584.416500px;}
.y6a{bottom:585.050550px;}
.y8c{bottom:586.996500px;}
.y30{bottom:588.700800px;}
.y19a{bottom:590.108100px;}
.y153{bottom:590.788500px;}
.y1bb{bottom:593.506050px;}
.y178{bottom:594.802500px;}
.y10a{bottom:599.102100px;}
.yc{bottom:599.744700px;}
.y130{bottom:602.272500px;}
.y47{bottom:603.700800px;}
.yae{bottom:603.712500px;}
.yd5{bottom:605.872500px;}
.y69{bottom:606.344550px;}
.y8b{bottom:608.290500px;}
.y199{bottom:610.205100px;}
.y152{bottom:610.588500px;}
.y1ba{bottom:613.306050px;}
.y177{bottom:616.996500px;}
.y109{bottom:618.902100px;}
.yb{bottom:621.344700px;}
.y12f{bottom:624.016500px;}
.y46{bottom:625.300800px;}
.yad{bottom:625.312500px;}
.yd4{bottom:627.328500px;}
.y68{bottom:627.638550px;}
.y8a{bottom:629.584500px;}
.y198{bottom:630.302100px;}
.y151{bottom:630.388500px;}
.y1b9{bottom:633.106050px;}
.y108{bottom:638.702100px;}
.y176{bottom:639.190500px;}
.ya{bottom:642.944700px;}
.y12e{bottom:645.760500px;}
.y45{bottom:646.900800px;}
.yac{bottom:646.912500px;}
.yd3{bottom:648.784500px;}
.y67{bottom:648.932550px;}
.y89{bottom:650.878500px;}
.y117{bottom:652.116600px;}
.y150{bottom:656.244000px;}
.y107{bottom:658.502100px;}
.y197{bottom:658.906050px;}
.y175{bottom:661.384500px;}
.y9{bottom:664.544700px;}
.y12d{bottom:667.504500px;}
.y2f{bottom:668.500800px;}
.yab{bottom:668.512500px;}
.y66{bottom:670.226550px;}
.yd2{bottom:670.240500px;}
.y116{bottom:671.916600px;}
.y88{bottom:672.172500px;}
.y1b8{bottom:672.706050px;}
.y106{bottom:678.302100px;}
.y174{bottom:683.578500px;}
.y12c{bottom:689.248500px;}
.y2e{bottom:690.100800px;}
.yaa{bottom:690.112500px;}
.y14f{bottom:690.415500px;}
.y65{bottom:691.520550px;}
.yd1{bottom:691.696500px;}
.y115{bottom:691.716600px;}
.y87{bottom:693.466500px;}
.y8{bottom:694.648650px;}
.y105{bottom:698.102100px;}
.y1b7{bottom:701.010000px;}
.y173{bottom:705.772500px;}
.y196{bottom:707.643000px;}
.y14e{bottom:710.512500px;}
.y12b{bottom:710.992500px;}
.y114{bottom:711.516600px;}
.y2d{bottom:711.700800px;}
.ya9{bottom:711.712500px;}
.y64{bottom:712.814550px;}
.yd0{bottom:713.152500px;}
.y86{bottom:714.760500px;}
.y104{bottom:717.902100px;}
.y1b6{bottom:722.610000px;}
.y195{bottom:727.740000px;}
.y172{bottom:727.966500px;}
.y113{bottom:731.316600px;}
.y12a{bottom:732.736500px;}
.y2c{bottom:733.300800px;}
.ya8{bottom:733.312500px;}
.y63{bottom:734.114550px;}
.ycf{bottom:734.608500px;}
.y85{bottom:736.054500px;}
.y103{bottom:737.702100px;}
.y194{bottom:747.837000px;}
.y171{bottom:750.160500px;}
.y112{bottom:751.116600px;}
.y14d{bottom:752.464500px;}
.y129{bottom:754.480500px;}
.y2b{bottom:754.900800px;}
.ya7{bottom:754.912500px;}
.y62{bottom:755.408550px;}
.yce{bottom:756.064500px;}
.y84{bottom:757.348500px;}
.y102{bottom:757.502100px;}
.y193{bottom:767.934000px;}
.y170{bottom:772.354500px;}
.y14c{bottom:774.370500px;}
.y7{bottom:774.448650px;}
.y128{bottom:776.224500px;}
.y2a{bottom:776.500800px;}
.ya6{bottom:776.512500px;}
.y101{bottom:777.302100px;}
.ycd{bottom:777.520500px;}
.y83{bottom:778.642500px;}
.y61{bottom:785.212500px;}
.y192{bottom:788.031000px;}
.y16f{bottom:794.548500px;}
.y1b5{bottom:795.510000px;}
.y14b{bottom:796.276500px;}
.y100{bottom:797.102100px;}
.y127{bottom:797.968500px;}
.y29{bottom:798.100800px;}
.ya5{bottom:798.112500px;}
.ycc{bottom:798.976500px;}
.y82{bottom:799.936500px;}
.y6{bottom:805.048650px;}
.y191{bottom:808.128000px;}
.y16e{bottom:816.742500px;}
.yff{bottom:816.902100px;}
.y14a{bottom:818.182500px;}
.y28{bottom:819.700800px;}
.ya4{bottom:819.712500px;}
.ycb{bottom:820.432500px;}
.y81{bottom:821.230500px;}
.y190{bottom:828.225000px;}
.y1b4{bottom:829.710000px;}
.y5{bottom:835.648650px;}
.yfe{bottom:836.702100px;}
.y16d{bottom:838.936500px;}
.y149{bottom:840.088500px;}
.y27{bottom:841.300800px;}
.ya3{bottom:841.312500px;}
.yca{bottom:841.888500px;}
.y80{bottom:842.524500px;}
.y18f{bottom:848.322000px;}
.y1b3{bottom:849.510000px;}
.yfd{bottom:856.502100px;}
.y16c{bottom:861.130500px;}
.y148{bottom:861.994500px;}
.y26{bottom:862.900800px;}
.ya2{bottom:862.912500px;}
.yc9{bottom:863.344500px;}
.y7f{bottom:863.818500px;}
.y60{bottom:863.830500px;}
.y18e{bottom:868.419000px;}
.y1b2{bottom:869.310000px;}
.yfc{bottom:876.302100px;}
.y16b{bottom:883.324500px;}
.y147{bottom:883.900500px;}
.y25{bottom:884.500800px;}
.ya1{bottom:884.512500px;}
.yc8{bottom:884.800500px;}
.y5f{bottom:885.124500px;}
.y18d{bottom:888.516000px;}
.y1b1{bottom:889.110000px;}
.y4{bottom:890.910000px;}
.yfb{bottom:896.102100px;}
.y16a{bottom:905.518500px;}
.y146{bottom:905.806500px;}
.y24{bottom:906.100800px;}
.ya0{bottom:906.112500px;}
.yc7{bottom:906.256500px;}
.y5e{bottom:906.418500px;}
.y18c{bottom:908.613000px;}
.y3{bottom:908.910000px;}
.yfa{bottom:920.018550px;}
.y23{bottom:927.700800px;}
.y5d{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.ha{height:26.199902px;}
.hb{height:30.568359px;}
.h8{height:35.663086px;}
.h3{height:39.990234px;}
.h2{height:40.757812px;}
.h11{height:43.989258px;}
.hc{height:48.399902px;}
.h5{height:50.947266px;}
.h4{height:56.041992px;}
.h10{height:58.045195px;}
.h7{height:61.136719px;}
.he{height:63.274031px;}
.hd{height:63.298031px;}
.h9{height:63.322031px;}
.hf{height:63.946031px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x6{left:85.039350px;}
.x3{left:97.703400px;}
.x7{left:106.299300px;}
.x5{left:119.071350px;}
.x11{left:140.323650px;}
.x4{left:150.670350px;}
.xc{left:193.481550px;}
.x8{left:234.098400px;}
.xd{left:243.453900px;}
.x9{left:246.854550px;}
.xa{left:368.722050px;}
.xe{left:380.608500px;}
.xf{left:517.763100px;}
.xb{left:527.596500px;}
.x10{left:530.518800px;}
.x2{left:582.519750px;}
@media print{
.v4{vertical-align:-23.680000pt;}
.v3{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:21.706667pt;}
.v2{vertical-align:23.680000pt;}
.ls34{letter-spacing:-6.720000pt;}
.ls33{letter-spacing:-6.080000pt;}
.ls25{letter-spacing:-4.672000pt;}
.ls2a{letter-spacing:-3.840000pt;}
.ls1d{letter-spacing:-1.600000pt;}
.ls1e{letter-spacing:-1.472000pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.832000pt;}
.ls32{letter-spacing:-0.768000pt;}
.ls36{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls39{letter-spacing:-0.576000pt;}
.ls1b{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls38{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.128000pt;}
.ls3f{letter-spacing:-0.117333pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls42{letter-spacing:-0.058667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.008000pt;}
.ls43{letter-spacing:0.058667pt;}
.ls14{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.448000pt;}
.ls3e{letter-spacing:0.469333pt;}
.ls2f{letter-spacing:0.512000pt;}
.ls41{letter-spacing:0.528000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls40{letter-spacing:0.586667pt;}
.lsb{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.768000pt;}
.ls2b{letter-spacing:0.832000pt;}
.ls6{letter-spacing:0.896000pt;}
.ls5{letter-spacing:1.024000pt;}
.ls2d{letter-spacing:1.088000pt;}
.ls28{letter-spacing:1.152000pt;}
.ls29{letter-spacing:1.216000pt;}
.ls15{letter-spacing:2.368000pt;}
.ls44{letter-spacing:2.666667pt;}
.ls31{letter-spacing:3.293333pt;}
.ls3b{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls35{letter-spacing:4.306667pt;}
.ls22{letter-spacing:4.408000pt;}
.ls9{letter-spacing:4.672000pt;}
.ls37{letter-spacing:4.800000pt;}
.ls3d{letter-spacing:5.280000pt;}
.ls3a{letter-spacing:5.333333pt;}
.ls2e{letter-spacing:5.632000pt;}
.ls2{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls30{letter-spacing:7.936000pt;}
.ls3{letter-spacing:9.066667pt;}
.ls17{letter-spacing:9.536000pt;}
.ls20{letter-spacing:9.792000pt;}
.ls21{letter-spacing:10.176000pt;}
.ls1f{letter-spacing:10.304000pt;}
.ls45{letter-spacing:17.600000pt;}
.ls1{letter-spacing:59.191467pt;}
.ws3{word-spacing:-76.341333pt;}
.ws4{word-spacing:-53.888000pt;}
.ws31{word-spacing:-48.704000pt;}
.ws33{word-spacing:-48.576000pt;}
.ws6{word-spacing:-48.512000pt;}
.ws2f{word-spacing:-48.384000pt;}
.ws34{word-spacing:-48.320000pt;}
.ws9{word-spacing:-48.256000pt;}
.ws59{word-spacing:-48.192000pt;}
.wsc{word-spacing:-48.128000pt;}
.ws1f{word-spacing:-48.064000pt;}
.ws5b{word-spacing:-48.000000pt;}
.wsf{word-spacing:-47.936000pt;}
.ws1d{word-spacing:-47.872000pt;}
.wsb{word-spacing:-47.808000pt;}
.ws13{word-spacing:-47.744000pt;}
.ws11{word-spacing:-47.680000pt;}
.ws18{word-spacing:-47.616000pt;}
.ws19{word-spacing:-47.552000pt;}
.ws5{word-spacing:-47.488000pt;}
.ws2e{word-spacing:-47.424000pt;}
.ws60{word-spacing:-47.360000pt;}
.ws23{word-spacing:-47.296000pt;}
.ws1c{word-spacing:-47.232000pt;}
.ws10{word-spacing:-47.168000pt;}
.ws14{word-spacing:-47.104000pt;}
.ws63{word-spacing:-47.040000pt;}
.ws22{word-spacing:-46.976000pt;}
.ws62{word-spacing:-46.912000pt;}
.ws25{word-spacing:-46.848000pt;}
.ws35{word-spacing:-46.720000pt;}
.ws2b{word-spacing:-46.528000pt;}
.ws27{word-spacing:-45.888000pt;}
.ws64{word-spacing:-44.906667pt;}
.ws6a{word-spacing:-44.234667pt;}
.ws69{word-spacing:-44.117333pt;}
.ws32{word-spacing:-43.648000pt;}
.ws6f{word-spacing:-43.589333pt;}
.ws3f{word-spacing:-43.530667pt;}
.ws6c{word-spacing:-43.472000pt;}
.ws58{word-spacing:-43.237333pt;}
.ws2a{word-spacing:-42.816000pt;}
.ws71{word-spacing:-42.240000pt;}
.ws3c{word-spacing:-41.901333pt;}
.ws3e{word-spacing:-40.416000pt;}
.ws2{word-spacing:-39.573333pt;}
.ws15{word-spacing:-37.594667pt;}
.ws6b{word-spacing:-34.320000pt;}
.ws66{word-spacing:-33.850667pt;}
.ws65{word-spacing:-33.792000pt;}
.ws67{word-spacing:-33.616000pt;}
.ws1{word-spacing:-31.658667pt;}
.wse{word-spacing:-31.434667pt;}
.ws3a{word-spacing:-30.272000pt;}
.ws3b{word-spacing:-29.696000pt;}
.ws37{word-spacing:-28.930667pt;}
.ws12{word-spacing:-28.492800pt;}
.ws38{word-spacing:-27.562667pt;}
.ws39{word-spacing:-27.512000pt;}
.ws29{word-spacing:-26.112000pt;}
.ws2c{word-spacing:-25.984000pt;}
.ws0{word-spacing:-21.354667pt;}
.ws2d{word-spacing:-17.984000pt;}
.ws3d{word-spacing:-17.344000pt;}
.ws7{word-spacing:-16.704000pt;}
.ws5a{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.512000pt;}
.ws41{word-spacing:-16.485333pt;}
.ws5e{word-spacing:-16.448000pt;}
.ws5f{word-spacing:-16.320000pt;}
.ws1e{word-spacing:-16.192000pt;}
.ws1b{word-spacing:-16.128000pt;}
.ws26{word-spacing:-16.064000pt;}
.ws24{word-spacing:-16.000000pt;}
.ws5c{word-spacing:-15.936000pt;}
.ws5d{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws20{word-spacing:-15.488000pt;}
.ws21{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-14.986667pt;}
.ws6e{word-spacing:-14.960000pt;}
.ws70{word-spacing:-14.549333pt;}
.ws68{word-spacing:-14.490667pt;}
.ws28{word-spacing:-14.336000pt;}
.ws30{word-spacing:-13.173333pt;}
.ws16{word-spacing:-12.514667pt;}
.ws36{word-spacing:-10.790400pt;}
.wsd{word-spacing:0.000000pt;}
.ws17{word-spacing:26.854400pt;}
.ws4f{word-spacing:73.509333pt;}
.ws55{word-spacing:76.442667pt;}
.ws43{word-spacing:122.261333pt;}
.ws4c{word-spacing:127.658667pt;}
.ws6d{word-spacing:140.144000pt;}
.ws46{word-spacing:140.682667pt;}
.ws48{word-spacing:154.176000pt;}
.ws4d{word-spacing:162.213333pt;}
.ws54{word-spacing:176.762667pt;}
.ws49{word-spacing:191.488000pt;}
.ws50{word-spacing:192.602667pt;}
.ws52{word-spacing:193.541333pt;}
.ws53{word-spacing:200.170667pt;}
.ws40{word-spacing:200.346667pt;}
.ws42{word-spacing:202.986667pt;}
.ws57{word-spacing:215.541333pt;}
.ws56{word-spacing:220.645333pt;}
.ws45{word-spacing:225.749333pt;}
.ws51{word-spacing:227.744000pt;}
.ws4a{word-spacing:231.498667pt;}
.ws4e{word-spacing:232.789333pt;}
.ws44{word-spacing:233.317333pt;}
.ws61{word-spacing:264.293333pt;}
.ws4b{word-spacing:309.408000pt;}
.ws47{word-spacing:348.538667pt;}
._12{margin-left:-12.603852pt;}
._11{margin-left:-11.200000pt;}
._7{margin-left:-9.856000pt;}
._a{margin-left:-8.117333pt;}
._9{margin-left:-6.858667pt;}
._3{margin-left:-5.866667pt;}
._5{margin-left:-4.693333pt;}
._1{margin-left:-3.024000pt;}
._0{margin-left:-1.493333pt;}
._2{width:1.665185pt;}
._e{width:2.556444pt;}
._b{width:3.456000pt;}
._4{width:4.485333pt;}
._8{width:5.861333pt;}
._6{width:7.226667pt;}
._d{width:8.512000pt;}
._c{width:9.600000pt;}
._f{width:10.548148pt;}
._2e{width:11.557333pt;}
._2f{width:14.045037pt;}
._30{width:16.357333pt;}
._31{width:17.834667pt;}
._10{width:50.598400pt;}
._32{width:102.194667pt;}
._26{width:177.669333pt;}
._1a{width:248.932148pt;}
._17{width:277.598815pt;}
._1d{width:291.732148pt;}
._13{width:296.208000pt;}
._20{width:298.537481pt;}
._1c{width:309.232000pt;}
._18{width:311.461333pt;}
._24{width:330.686815pt;}
._2c{width:333.930667pt;}
._28{width:335.280000pt;}
._1e{width:340.601481pt;}
._2a{width:347.482667pt;}
._22{width:352.704000pt;}
._2b{width:366.197333pt;}
._2d{width:367.546667pt;}
._19{width:376.424296pt;}
._21{width:394.100148pt;}
._1b{width:399.416296pt;}
._27{width:406.420148pt;}
._16{width:432.293333pt;}
._14{width:458.480000pt;}
._1f{width:462.762667pt;}
._23{width:466.874667pt;}
._25{width:475.493333pt;}
._29{width:480.985481pt;}
._15{width:499.737481pt;}
._33{width:581.045333pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:67.845200pt;}
.y1{bottom:67.855600pt;}
.y44{bottom:124.710933pt;}
.yc6{bottom:124.720133pt;}
.y7e{bottom:124.721467pt;}
.y9f{bottom:124.722800pt;}
.y169{bottom:128.278667pt;}
.y18b{bottom:128.340533pt;}
.y145{bottom:129.465333pt;}
.y126{bottom:129.656133pt;}
.y21{bottom:129.906400pt;}
.y1b0{bottom:131.532533pt;}
.yf9{bottom:131.649333pt;}
.y5c{bottom:133.422933pt;}
.yc3{bottom:133.433333pt;}
.yc5{bottom:139.388133pt;}
.y43{bottom:144.312267pt;}
.y7d{bottom:144.322800pt;}
.y18a{bottom:146.468533pt;}
.y168{bottom:148.006667pt;}
.y144{bottom:148.793333pt;}
.yf8{bottom:148.956000pt;}
.y20{bottom:149.106400pt;}
.y1af{bottom:149.396533pt;}
.y5b{bottom:152.622933pt;}
.yc2{bottom:152.633333pt;}
.y42{bottom:158.978933pt;}
.yc4{bottom:158.989467pt;}
.y125{bottom:161.852933pt;}
.y189{bottom:164.728533pt;}
.yf7{bottom:166.262667pt;}
.y1ae{bottom:167.260533pt;}
.y167{bottom:167.734667pt;}
.y143{bottom:168.121333pt;}
.y1f{bottom:168.306400pt;}
.y1ce{bottom:170.760933pt;}
.y5a{bottom:171.822933pt;}
.yc1{bottom:171.833333pt;}
.ye8{bottom:176.196000pt;}
.y7c{bottom:179.340933pt;}
.y9e{bottom:180.798667pt;}
.y124{bottom:181.052933pt;}
.y188{bottom:182.988533pt;}
.yf6{bottom:183.569333pt;}
.y1ad{bottom:185.124533pt;}
.y1cd{bottom:186.760933pt;}
.y166{bottom:187.206667pt;}
.y142{bottom:187.449333pt;}
.y1e{bottom:187.506400pt;}
.y41{bottom:189.330533pt;}
.y59{bottom:191.022933pt;}
.yc0{bottom:191.033333pt;}
.ye7{bottom:195.396000pt;}
.y7b{bottom:198.268933pt;}
.y9d{bottom:199.998667pt;}
.y123{bottom:200.252933pt;}
.yf5{bottom:200.876000pt;}
.y187{bottom:201.248533pt;}
.y1cc{bottom:202.760933pt;}
.y1ac{bottom:202.988533pt;}
.y165{bottom:206.678667pt;}
.y1d{bottom:206.706400pt;}
.y141{bottom:206.777333pt;}
.y40{bottom:208.530533pt;}
.y58{bottom:210.222933pt;}
.ybf{bottom:210.233333pt;}
.ye6{bottom:214.468000pt;}
.y7a{bottom:217.196933pt;}
.yf4{bottom:218.182667pt;}
.y1cb{bottom:218.760933pt;}
.y9c{bottom:218.926667pt;}
.y122{bottom:219.452933pt;}
.y1ab{bottom:220.852533pt;}
.y1c{bottom:225.906400pt;}
.y140{bottom:226.105333pt;}
.y164{bottom:226.150667pt;}
.y186{bottom:227.074267pt;}
.y3f{bottom:227.730533pt;}
.y57{bottom:229.422933pt;}
.ybe{bottom:229.433333pt;}
.ye5{bottom:233.540000pt;}
.y1ca{bottom:234.760933pt;}
.yf3{bottom:235.489333pt;}
.y79{bottom:236.124933pt;}
.y9b{bottom:237.854667pt;}
.y121{bottom:238.652933pt;}
.y1aa{bottom:238.716533pt;}
.y1b{bottom:245.106400pt;}
.y13f{bottom:245.433333pt;}
.y3e{bottom:246.930533pt;}
.y56{bottom:248.622933pt;}
.ybd{bottom:248.633333pt;}
.y1c9{bottom:250.760933pt;}
.ye4{bottom:252.612000pt;}
.yf2{bottom:252.796000pt;}
.y163{bottom:253.176400pt;}
.y78{bottom:255.052933pt;}
.y1a9{bottom:256.580533pt;}
.y9a{bottom:256.782667pt;}
.y120{bottom:257.852933pt;}
.y1a{bottom:264.306400pt;}
.y13e{bottom:264.761333pt;}
.y3d{bottom:266.130533pt;}
.y55{bottom:267.822933pt;}
.ybc{bottom:267.833333pt;}
.yf1{bottom:270.102667pt;}
.y185{bottom:271.241333pt;}
.ye3{bottom:271.684000pt;}
.y77{bottom:273.980933pt;}
.y1a8{bottom:274.444533pt;}
.y99{bottom:275.710667pt;}
.y11f{bottom:277.052933pt;}
.y19{bottom:283.506400pt;}
.y13d{bottom:284.089333pt;}
.y3c{bottom:285.330533pt;}
.y54{bottom:287.022933pt;}
.ybb{bottom:287.033333pt;}
.yf0{bottom:287.409333pt;}
.ye2{bottom:290.756000pt;}
.y184{bottom:291.113333pt;}
.y1a7{bottom:292.308533pt;}
.y76{bottom:292.908933pt;}
.y98{bottom:294.638667pt;}
.y11e{bottom:296.252933pt;}
.y1c8{bottom:298.760933pt;}
.y18{bottom:302.706400pt;}
.y13c{bottom:303.417333pt;}
.y3b{bottom:304.530533pt;}
.yef{bottom:304.716000pt;}
.y53{bottom:306.222933pt;}
.yba{bottom:306.233333pt;}
.ye1{bottom:309.828000pt;}
.y1a6{bottom:310.172533pt;}
.y183{bottom:310.985333pt;}
.y75{bottom:311.836933pt;}
.y97{bottom:313.566667pt;}
.y11d{bottom:315.452933pt;}
.y1c7{bottom:316.360933pt;}
.y17{bottom:321.906400pt;}
.yee{bottom:322.022667pt;}
.y13b{bottom:322.745333pt;}
.y3a{bottom:323.730533pt;}
.y52{bottom:325.422933pt;}
.yb9{bottom:325.433333pt;}
.y1a5{bottom:328.036533pt;}
.ye0{bottom:328.761333pt;}
.y74{bottom:330.764933pt;}
.y182{bottom:330.857333pt;}
.y15e{bottom:331.545333pt;}
.y96{bottom:332.494667pt;}
.y1c6{bottom:333.960933pt;}
.y11c{bottom:334.652933pt;}
.yed{bottom:339.329333pt;}
.y16{bottom:341.106400pt;}
.y13a{bottom:342.073333pt;}
.y39{bottom:342.930533pt;}
.y51{bottom:344.622933pt;}
.yb8{bottom:344.633333pt;}
.y1a4{bottom:345.900533pt;}
.ydf{bottom:347.833333pt;}
.y15d{bottom:349.145333pt;}
.y73{bottom:349.692933pt;}
.y181{bottom:350.729333pt;}
.y95{bottom:351.422667pt;}
.y1c5{bottom:351.560933pt;}
.yec{bottom:356.636000pt;}
.y15{bottom:360.306400pt;}
.y139{bottom:361.401333pt;}
.y38{bottom:362.130533pt;}
.y1a3{bottom:363.764533pt;}
.y50{bottom:363.822933pt;}
.yb7{bottom:363.833333pt;}
.y15c{bottom:366.745333pt;}
.yde{bottom:366.905333pt;}
.y11b{bottom:368.459200pt;}
.y72{bottom:368.620933pt;}
.y1c4{bottom:369.160933pt;}
.y94{bottom:370.350667pt;}
.y180{bottom:370.601333pt;}
.yeb{bottom:373.942667pt;}
.y14{bottom:379.506400pt;}
.y138{bottom:380.729333pt;}
.y37{bottom:381.330533pt;}
.y1a2{bottom:381.628533pt;}
.y4f{bottom:383.022933pt;}
.yb6{bottom:383.033333pt;}
.y15b{bottom:384.345333pt;}
.y162{bottom:384.345733pt;}
.ydd{bottom:385.977333pt;}
.y1c3{bottom:386.760933pt;}
.y71{bottom:387.548933pt;}
.y93{bottom:389.278667pt;}
.y17f{bottom:390.473333pt;}
.y11a{bottom:391.735200pt;}
.yea{bottom:395.194667pt;}
.y13{bottom:398.706400pt;}
.y1a1{bottom:399.492533pt;}
.y137{bottom:400.057333pt;}
.y36{bottom:400.530533pt;}
.y15a{bottom:401.945333pt;}
.y161{bottom:401.945733pt;}
.y4e{bottom:402.222933pt;}
.yb5{bottom:402.233333pt;}
.y111{bottom:403.659200pt;}
.y1c2{bottom:404.360933pt;}
.ydc{bottom:405.049333pt;}
.y70{bottom:406.476933pt;}
.y92{bottom:408.206667pt;}
.y119{bottom:409.335200pt;}
.y17e{bottom:410.345333pt;}
.y1a0{bottom:417.356533pt;}
.y12{bottom:417.906400pt;}
.y136{bottom:419.385333pt;}
.y159{bottom:419.545333pt;}
.y160{bottom:419.545733pt;}
.y35{bottom:419.730533pt;}
.y110{bottom:421.259200pt;}
.y4d{bottom:421.422933pt;}
.yb4{bottom:421.433333pt;}
.y1c1{bottom:421.960933pt;}
.ydb{bottom:424.121333pt;}
.y6f{bottom:425.404933pt;}
.ye9{bottom:425.566667pt;}
.y118{bottom:426.935200pt;}
.y91{bottom:427.134667pt;}
.y17d{bottom:430.073333pt;}
.y19f{bottom:435.220533pt;}
.y11{bottom:437.106400pt;}
.y158{bottom:437.145333pt;}
.y15f{bottom:437.145733pt;}
.y135{bottom:438.713333pt;}
.y34{bottom:438.930533pt;}
.y1c0{bottom:439.560933pt;}
.y4c{bottom:440.622933pt;}
.yb3{bottom:440.633333pt;}
.yda{bottom:443.193333pt;}
.y6e{bottom:444.332933pt;}
.y10f{bottom:444.535200pt;}
.y90{bottom:446.062667pt;}
.y17c{bottom:449.801333pt;}
.y19e{bottom:453.084533pt;}
.y157{bottom:454.745333pt;}
.y10{bottom:456.306400pt;}
.y1bf{bottom:457.160933pt;}
.y134{bottom:458.041333pt;}
.y33{bottom:458.130533pt;}
.y4b{bottom:459.822933pt;}
.yb2{bottom:459.833333pt;}
.y10e{bottom:462.135200pt;}
.yd9{bottom:462.265333pt;}
.y6d{bottom:463.260933pt;}
.y8f{bottom:464.990667pt;}
.y17b{bottom:469.529333pt;}
.y19d{bottom:470.948533pt;}
.y156{bottom:472.345333pt;}
.y1be{bottom:474.760933pt;}
.yf{bottom:475.506400pt;}
.y32{bottom:477.330533pt;}
.y133{bottom:477.369333pt;}
.y4a{bottom:479.022933pt;}
.yb1{bottom:479.033333pt;}
.y10d{bottom:479.735200pt;}
.yd8{bottom:481.337333pt;}
.y6c{bottom:482.188933pt;}
.y8e{bottom:483.918667pt;}
.y19c{bottom:488.812533pt;}
.y17a{bottom:489.257333pt;}
.y155{bottom:489.945333pt;}
.y1bd{bottom:492.360933pt;}
.ye{bottom:494.706400pt;}
.y31{bottom:496.530533pt;}
.y132{bottom:496.697333pt;}
.y10c{bottom:497.335200pt;}
.y49{bottom:498.222933pt;}
.yb0{bottom:498.233333pt;}
.yd7{bottom:500.409333pt;}
.y6b{bottom:501.116933pt;}
.y8d{bottom:502.846667pt;}
.y19b{bottom:506.676533pt;}
.y154{bottom:507.545333pt;}
.y179{bottom:508.985333pt;}
.y1bc{bottom:509.960933pt;}
.yd{bottom:513.906400pt;}
.y10b{bottom:514.935200pt;}
.y131{bottom:516.025333pt;}
.y48{bottom:517.422933pt;}
.yaf{bottom:517.433333pt;}
.yd6{bottom:519.481333pt;}
.y6a{bottom:520.044933pt;}
.y8c{bottom:521.774667pt;}
.y30{bottom:523.289600pt;}
.y19a{bottom:524.540533pt;}
.y153{bottom:525.145333pt;}
.y1bb{bottom:527.560933pt;}
.y178{bottom:528.713333pt;}
.y10a{bottom:532.535200pt;}
.yc{bottom:533.106400pt;}
.y130{bottom:535.353333pt;}
.y47{bottom:536.622933pt;}
.yae{bottom:536.633333pt;}
.yd5{bottom:538.553333pt;}
.y69{bottom:538.972933pt;}
.y8b{bottom:540.702667pt;}
.y199{bottom:542.404533pt;}
.y152{bottom:542.745333pt;}
.y1ba{bottom:545.160933pt;}
.y177{bottom:548.441333pt;}
.y109{bottom:550.135200pt;}
.yb{bottom:552.306400pt;}
.y12f{bottom:554.681333pt;}
.y46{bottom:555.822933pt;}
.yad{bottom:555.833333pt;}
.yd4{bottom:557.625333pt;}
.y68{bottom:557.900933pt;}
.y8a{bottom:559.630667pt;}
.y198{bottom:560.268533pt;}
.y151{bottom:560.345333pt;}
.y1b9{bottom:562.760933pt;}
.y108{bottom:567.735200pt;}
.y176{bottom:568.169333pt;}
.ya{bottom:571.506400pt;}
.y12e{bottom:574.009333pt;}
.y45{bottom:575.022933pt;}
.yac{bottom:575.033333pt;}
.yd3{bottom:576.697333pt;}
.y67{bottom:576.828933pt;}
.y89{bottom:578.558667pt;}
.y117{bottom:579.659200pt;}
.y150{bottom:583.328000pt;}
.y107{bottom:585.335200pt;}
.y197{bottom:585.694267pt;}
.y175{bottom:587.897333pt;}
.y9{bottom:590.706400pt;}
.y12d{bottom:593.337333pt;}
.y2f{bottom:594.222933pt;}
.yab{bottom:594.233333pt;}
.y66{bottom:595.756933pt;}
.yd2{bottom:595.769333pt;}
.y116{bottom:597.259200pt;}
.y88{bottom:597.486667pt;}
.y1b8{bottom:597.960933pt;}
.y106{bottom:602.935200pt;}
.y174{bottom:607.625333pt;}
.y12c{bottom:612.665333pt;}
.y2e{bottom:613.422933pt;}
.yaa{bottom:613.433333pt;}
.y14f{bottom:613.702667pt;}
.y65{bottom:614.684933pt;}
.yd1{bottom:614.841333pt;}
.y115{bottom:614.859200pt;}
.y87{bottom:616.414667pt;}
.y8{bottom:617.465467pt;}
.y105{bottom:620.535200pt;}
.y1b7{bottom:623.120000pt;}
.y173{bottom:627.353333pt;}
.y196{bottom:629.016000pt;}
.y14e{bottom:631.566667pt;}
.y12b{bottom:631.993333pt;}
.y114{bottom:632.459200pt;}
.y2d{bottom:632.622933pt;}
.ya9{bottom:632.633333pt;}
.y64{bottom:633.612933pt;}
.yd0{bottom:633.913333pt;}
.y86{bottom:635.342667pt;}
.y104{bottom:638.135200pt;}
.y1b6{bottom:642.320000pt;}
.y195{bottom:646.880000pt;}
.y172{bottom:647.081333pt;}
.y113{bottom:650.059200pt;}
.y12a{bottom:651.321333pt;}
.y2c{bottom:651.822933pt;}
.ya8{bottom:651.833333pt;}
.y63{bottom:652.546267pt;}
.ycf{bottom:652.985333pt;}
.y85{bottom:654.270667pt;}
.y103{bottom:655.735200pt;}
.y194{bottom:664.744000pt;}
.y171{bottom:666.809333pt;}
.y112{bottom:667.659200pt;}
.y14d{bottom:668.857333pt;}
.y129{bottom:670.649333pt;}
.y2b{bottom:671.022933pt;}
.ya7{bottom:671.033333pt;}
.y62{bottom:671.474267pt;}
.yce{bottom:672.057333pt;}
.y84{bottom:673.198667pt;}
.y102{bottom:673.335200pt;}
.y193{bottom:682.608000pt;}
.y170{bottom:686.537333pt;}
.y14c{bottom:688.329333pt;}
.y7{bottom:688.398800pt;}
.y128{bottom:689.977333pt;}
.y2a{bottom:690.222933pt;}
.ya6{bottom:690.233333pt;}
.y101{bottom:690.935200pt;}
.ycd{bottom:691.129333pt;}
.y83{bottom:692.126667pt;}
.y61{bottom:697.966667pt;}
.y192{bottom:700.472000pt;}
.y16f{bottom:706.265333pt;}
.y1b5{bottom:707.120000pt;}
.y14b{bottom:707.801333pt;}
.y100{bottom:708.535200pt;}
.y127{bottom:709.305333pt;}
.y29{bottom:709.422933pt;}
.ya5{bottom:709.433333pt;}
.ycc{bottom:710.201333pt;}
.y82{bottom:711.054667pt;}
.y6{bottom:715.598800pt;}
.y191{bottom:718.336000pt;}
.y16e{bottom:725.993333pt;}
.yff{bottom:726.135200pt;}
.y14a{bottom:727.273333pt;}
.y28{bottom:728.622933pt;}
.ya4{bottom:728.633333pt;}
.ycb{bottom:729.273333pt;}
.y81{bottom:729.982667pt;}
.y190{bottom:736.200000pt;}
.y1b4{bottom:737.520000pt;}
.y5{bottom:742.798800pt;}
.yfe{bottom:743.735200pt;}
.y16d{bottom:745.721333pt;}
.y149{bottom:746.745333pt;}
.y27{bottom:747.822933pt;}
.ya3{bottom:747.833333pt;}
.yca{bottom:748.345333pt;}
.y80{bottom:748.910667pt;}
.y18f{bottom:754.064000pt;}
.y1b3{bottom:755.120000pt;}
.yfd{bottom:761.335200pt;}
.y16c{bottom:765.449333pt;}
.y148{bottom:766.217333pt;}
.y26{bottom:767.022933pt;}
.ya2{bottom:767.033333pt;}
.yc9{bottom:767.417333pt;}
.y7f{bottom:767.838667pt;}
.y60{bottom:767.849333pt;}
.y18e{bottom:771.928000pt;}
.y1b2{bottom:772.720000pt;}
.yfc{bottom:778.935200pt;}
.y16b{bottom:785.177333pt;}
.y147{bottom:785.689333pt;}
.y25{bottom:786.222933pt;}
.ya1{bottom:786.233333pt;}
.yc8{bottom:786.489333pt;}
.y5f{bottom:786.777333pt;}
.y18d{bottom:789.792000pt;}
.y1b1{bottom:790.320000pt;}
.y4{bottom:791.920000pt;}
.yfb{bottom:796.535200pt;}
.y16a{bottom:804.905333pt;}
.y146{bottom:805.161333pt;}
.y24{bottom:805.422933pt;}
.ya0{bottom:805.433333pt;}
.yc7{bottom:805.561333pt;}
.y5e{bottom:805.705333pt;}
.y18c{bottom:807.656000pt;}
.y3{bottom:807.920000pt;}
.yfa{bottom:817.794267pt;}
.y23{bottom:824.622933pt;}
.y5d{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.ha{height:23.288802pt;}
.hb{height:27.171875pt;}
.h8{height:31.700521pt;}
.h3{height:35.546875pt;}
.h2{height:36.229167pt;}
.h11{height:39.101562pt;}
.hc{height:43.022135pt;}
.h5{height:45.286458pt;}
.h4{height:49.815104pt;}
.h10{height:51.595729pt;}
.h7{height:54.343750pt;}
.he{height:56.243583pt;}
.hd{height:56.264917pt;}
.h9{height:56.286250pt;}
.hf{height:56.840917pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x6{left:75.590533pt;}
.x3{left:86.847467pt;}
.x7{left:94.488267pt;}
.x5{left:105.841200pt;}
.x11{left:124.732133pt;}
.x4{left:133.929200pt;}
.xc{left:171.983600pt;}
.x8{left:208.087467pt;}
.xd{left:216.403467pt;}
.x9{left:219.426267pt;}
.xa{left:327.752933pt;}
.xe{left:338.318667pt;}
.xf{left:460.233867pt;}
.xb{left:468.974667pt;}
.x10{left:471.572267pt;}
.x2{left:517.795333pt;}
}




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