
    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_b5287a513241c898bdacf454.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_94cd0a795506736f71f0ff80.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035645;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_c4e81ed618940b9ac323f9f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:53.304000px;}
.v1{vertical-align:60.750000px;}
.ls17{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.414000px;}
.ls6{letter-spacing:0.426000px;}
.lsa{letter-spacing:0.432000px;}
.lse{letter-spacing:0.438000px;}
.ls20{letter-spacing:0.450000px;}
.ls39{letter-spacing:0.456000px;}
.ls45{letter-spacing:0.468000px;}
.ls2d{letter-spacing:0.984000px;}
.ls5{letter-spacing:1.002000px;}
.ls11{letter-spacing:1.026000px;}
.lsb{letter-spacing:1.044000px;}
.ls2c{letter-spacing:1.062000px;}
.ls47{letter-spacing:1.110000px;}
.ls19{letter-spacing:1.536000px;}
.ls15{letter-spacing:1.566000px;}
.ls1a{letter-spacing:1.596000px;}
.ls16{letter-spacing:1.626000px;}
.ls52{letter-spacing:1.650000px;}
.ls4{letter-spacing:1.662000px;}
.lsf{letter-spacing:1.698000px;}
.ls34{letter-spacing:1.770000px;}
.ls10{letter-spacing:2.172000px;}
.ls32{letter-spacing:2.214000px;}
.ls27{letter-spacing:2.262000px;}
.ls18{letter-spacing:2.304000px;}
.ls41{letter-spacing:2.358000px;}
.ls9{letter-spacing:2.406000px;}
.ls53{letter-spacing:2.550000px;}
.ls2f{letter-spacing:2.742000px;}
.ls35{letter-spacing:2.796000px;}
.ls7{letter-spacing:2.856000px;}
.ls1d{letter-spacing:2.916000px;}
.ls13{letter-spacing:2.976000px;}
.ls21{letter-spacing:3.042000px;}
.ls51{letter-spacing:3.306000px;}
.ls31{letter-spacing:3.456000px;}
.lsd{letter-spacing:3.528000px;}
.ls24{letter-spacing:3.600000px;}
.ls28{letter-spacing:3.678000px;}
.ls1c{letter-spacing:3.762000px;}
.ls33{letter-spacing:3.846000px;}
.ls4a{letter-spacing:3.936000px;}
.ls2e{letter-spacing:3.972000px;}
.ls1{letter-spacing:4.002000px;}
.ls8{letter-spacing:4.050000px;}
.ls48{letter-spacing:4.128000px;}
.ls3e{letter-spacing:4.134000px;}
.ls0{letter-spacing:4.176000px;}
.ls1e{letter-spacing:4.224000px;}
.ls29{letter-spacing:4.314000px;}
.ls2b{letter-spacing:4.410000px;}
.ls3b{letter-spacing:4.614000px;}
.ls26{letter-spacing:4.746000px;}
.ls4f{letter-spacing:4.848000px;}
.ls3d{letter-spacing:4.950000px;}
.ls23{letter-spacing:5.058000px;}
.ls1b{letter-spacing:5.178000px;}
.ls1f{letter-spacing:5.298000px;}
.ls3a{letter-spacing:5.352000px;}
.ls4d{letter-spacing:5.424000px;}
.ls25{letter-spacing:5.466000px;}
.ls12{letter-spacing:5.586000px;}
.ls4b{letter-spacing:5.712000px;}
.ls38{letter-spacing:5.838000px;}
.ls3f{letter-spacing:5.976000px;}
.ls3{letter-spacing:6.000000px;}
.ls2a{letter-spacing:6.222000px;}
.ls49{letter-spacing:6.270000px;}
.lsc{letter-spacing:6.360000px;}
.ls46{letter-spacing:6.426000px;}
.ls22{letter-spacing:6.504000px;}
.ls40{letter-spacing:6.654000px;}
.ls3c{letter-spacing:6.816000px;}
.ls43{letter-spacing:7.008000px;}
.ls42{letter-spacing:7.170000px;}
.ls50{letter-spacing:7.338000px;}
.ls37{letter-spacing:7.512000px;}
.ls36{letter-spacing:7.836000px;}
.ls54{letter-spacing:8.406000px;}
.ls14{letter-spacing:8.904000px;}
.ls30{letter-spacing:9.168000px;}
.ls44{letter-spacing:10.338000px;}
.ls2{letter-spacing:12.000000px;}
.ls4e{letter-spacing:818.388000px;}
.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;}
}
.ws41{word-spacing:-52.362000px;}
.ws52{word-spacing:-49.764000px;}
.ws4{word-spacing:0.000000px;}
.ws48{word-spacing:0.804000px;}
.ws3a{word-spacing:0.930000px;}
.ws20{word-spacing:1.080000px;}
.wsf{word-spacing:1.260000px;}
.wsb{word-spacing:1.476000px;}
.ws49{word-spacing:1.716000px;}
.ws7{word-spacing:1.758000px;}
.ws2c{word-spacing:2.100000px;}
.ws55{word-spacing:2.130000px;}
.ws34{word-spacing:2.406000px;}
.wsc{word-spacing:2.436000px;}
.ws12{word-spacing:2.844000px;}
.ws10{word-spacing:3.240000px;}
.ws6{word-spacing:3.342000px;}
.wsa{word-spacing:3.744000px;}
.ws5{word-spacing:3.768000px;}
.ws4c{word-spacing:3.864000px;}
.ws2d{word-spacing:3.984000px;}
.ws44{word-spacing:4.356000px;}
.ws17{word-spacing:4.404000px;}
.ws18{word-spacing:5.076000px;}
.ws1a{word-spacing:5.190000px;}
.ws5c{word-spacing:5.292000px;}
.ws21{word-spacing:5.442000px;}
.ws5b{word-spacing:5.508000px;}
.ws33{word-spacing:5.556000px;}
.ws26{word-spacing:5.940000px;}
.ws4a{word-spacing:5.988000px;}
.ws16{word-spacing:6.192000px;}
.ws14{word-spacing:6.354000px;}
.ws3c{word-spacing:6.408000px;}
.ws1c{word-spacing:6.492000px;}
.ws32{word-spacing:7.008000px;}
.ws4e{word-spacing:7.158000px;}
.ws56{word-spacing:7.230000px;}
.ws4f{word-spacing:7.356000px;}
.ws1d{word-spacing:7.452000px;}
.ws19{word-spacing:7.512000px;}
.ws28{word-spacing:7.602000px;}
.ws11{word-spacing:8.370000px;}
.ws1f{word-spacing:8.508000px;}
.ws5a{word-spacing:8.718000px;}
.ws8{word-spacing:8.808000px;}
.ws2b{word-spacing:8.820000px;}
.ws23{word-spacing:8.934000px;}
.ws4d{word-spacing:9.168000px;}
.ws1b{word-spacing:10.008000px;}
.ws51{word-spacing:10.170000px;}
.ws29{word-spacing:10.386000px;}
.ws35{word-spacing:10.530000px;}
.wse{word-spacing:10.578000px;}
.ws42{word-spacing:11.154000px;}
.ws22{word-spacing:11.808000px;}
.ws0{word-spacing:11.832000px;}
.ws3{word-spacing:12.000000px;}
.ws3d{word-spacing:12.270000px;}
.ws1e{word-spacing:12.318000px;}
.ws31{word-spacing:12.660000px;}
.ws2f{word-spacing:12.804000px;}
.ws38{word-spacing:13.194000px;}
.ws3e{word-spacing:14.028000px;}
.ws43{word-spacing:14.544000px;}
.ws3f{word-spacing:14.766000px;}
.ws4b{word-spacing:14.994000px;}
.ws54{word-spacing:15.702000px;}
.ws37{word-spacing:15.858000px;}
.ws57{word-spacing:16.842000px;}
.ws5d{word-spacing:17.130000px;}
.ws1{word-spacing:17.346000px;}
.ws9{word-spacing:18.000000px;}
.ws13{word-spacing:18.888000px;}
.ws58{word-spacing:18.954000px;}
.ws47{word-spacing:19.530000px;}
.ws25{word-spacing:20.556000px;}
.wsd{word-spacing:20.898000px;}
.ws50{word-spacing:22.290000px;}
.ws2e{word-spacing:22.494000px;}
.ws45{word-spacing:22.878000px;}
.ws24{word-spacing:23.088000px;}
.ws2a{word-spacing:25.584000px;}
.ws15{word-spacing:26.712000px;}
.ws27{word-spacing:27.204000px;}
.ws46{word-spacing:28.044000px;}
.ws3b{word-spacing:28.908000px;}
.ws36{word-spacing:30.468000px;}
.ws30{word-spacing:58.044000px;}
.ws2{word-spacing:264.912000px;}
.ws39{word-spacing:284.472000px;}
.ws5f{word-spacing:344.448000px;}
.ws5e{word-spacing:425.718000px;}
.ws59{word-spacing:477.054000px;}
.ws40{word-spacing:598.758288px;}
.ws53{word-spacing:932.166000px;}
._2d{margin-left:-2899.017000px;}
._2e{margin-left:-2276.052000px;}
._5{margin-left:-264.912000px;}
._21{margin-left:-58.044000px;}
._23{margin-left:-30.468000px;}
._28{margin-left:-28.908000px;}
._16{margin-left:-26.712000px;}
._1f{margin-left:-25.584000px;}
._1d{margin-left:-23.088000px;}
._e{margin-left:-20.898000px;}
._11{margin-left:-18.984600px;}
._3{margin-left:-17.346000px;}
._25{margin-left:-15.858000px;}
._2a{margin-left:-14.028000px;}
._26{margin-left:-12.869184px;}
._1{margin-left:-11.832000px;}
._10{margin-left:-10.578000px;}
._b{margin-left:-8.808000px;}
._1a{margin-left:-7.512000px;}
._14{margin-left:-6.354000px;}
._18{margin-left:-5.076000px;}
._7{margin-left:-3.768000px;}
._9{margin-left:-1.758000px;}
._8{width:1.701000px;}
._6{width:3.726000px;}
._17{width:5.022000px;}
._13{width:6.318000px;}
._19{width:7.452000px;}
._a{width:8.748000px;}
._f{width:10.530000px;}
._0{width:11.704704px;}
._1b{width:12.797184px;}
._29{width:14.013000px;}
._24{width:15.795000px;}
._2{width:17.212800px;}
._c{width:18.327600px;}
._12{width:19.515000px;}
._d{width:20.898000px;}
._1c{width:23.085000px;}
._1e{width:25.515000px;}
._15{width:26.649000px;}
._27{width:28.836000px;}
._22{width:30.456000px;}
._20{width:57.996000px;}
._2f{width:184.482000px;}
._33{width:211.896000px;}
._31{width:214.578000px;}
._35{width:263.178000px;}
._4{width:264.904992px;}
._34{width:309.150000px;}
._2b{width:330.480000px;}
._32{width:332.586000px;}
._2c{width:344.412000px;}
._30{width:785.880000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.382000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:63.000000px;}
.fs4{font-size:71.070000px;}
.fs1{font-size:81.000000px;}
.fs0{font-size:172.128000px;}
.y0{bottom:0.000000px;}
.y75{bottom:79.110000px;}
.yd9{bottom:80.713500px;}
.y40{bottom:89.235000px;}
.y113{bottom:90.274500px;}
.y1e{bottom:96.090000px;}
.y197{bottom:97.110000px;}
.y58{bottom:99.360000px;}
.yd8{bottom:107.365500px;}
.y74{bottom:109.485000px;}
.y151{bottom:118.399500px;}
.yee{bottom:118.485000px;}
.y3f{bottom:119.610000px;}
.y112{bottom:120.649500px;}
.y10f{bottom:122.985000px;}
.y1d{bottom:126.465000px;}
.y196{bottom:127.485000px;}
.y57{bottom:129.735000px;}
.yd7{bottom:134.017500px;}
.y73{bottom:139.860000px;}
.yed{bottom:148.860000px;}
.y3e{bottom:149.985000px;}
.y111{bottom:151.024500px;}
.y10e{bottom:153.360000px;}
.y150{bottom:156.649500px;}
.y1c{bottom:156.840000px;}
.y195{bottom:157.860000px;}
.y56{bottom:160.110000px;}
.yd6{bottom:160.668000px;}
.y137{bottom:161.064000px;}
.y176{bottom:161.320500px;}
.y72{bottom:170.235000px;}
.y14d{bottom:173.004000px;}
.yec{bottom:179.235000px;}
.y66{bottom:180.360000px;}
.y110{bottom:183.735000px;}
.y14f{bottom:187.024500px;}
.y1b{bottom:187.215000px;}
.yd5{bottom:187.320000px;}
.y194{bottom:188.235000px;}
.y179{bottom:189.360000px;}
.y55{bottom:190.485000px;}
.y10a{bottom:191.610000px;}
.y175{bottom:191.695500px;}
.y136{bottom:199.314000px;}
.y3d{bottom:200.610000px;}
.ya3{bottom:203.092500px;}
.y14c{bottom:203.379000px;}
.y177{bottom:206.883000px;}
.yeb{bottom:209.610000px;}
.y65{bottom:210.735000px;}
.yd4{bottom:213.972000px;}
.y133{bottom:215.668500px;}
.y14e{bottom:217.399500px;}
.y1a{bottom:217.590000px;}
.y193{bottom:218.610000px;}
.y178{bottom:219.735000px;}
.y54{bottom:220.860000px;}
.y174{bottom:222.070500px;}
.y10d{bottom:224.320500px;}
.y109{bottom:228.820500px;}
.y135{bottom:229.689000px;}
.ya2{bottom:229.744500px;}
.y3c{bottom:230.985000px;}
.yd3{bottom:238.575000px;}
.yea{bottom:239.985000px;}
.y64{bottom:241.110000px;}
.y132{bottom:246.043500px;}
.y19{bottom:247.965000px;}
.y192{bottom:248.985000px;}
.y71{bottom:251.235000px;}
.y173{bottom:252.445500px;}
.y10c{bottom:254.695500px;}
.y14b{bottom:257.985000px;}
.y108{bottom:259.195500px;}
.y134{bottom:260.064000px;}
.y3b{bottom:261.360000px;}
.y7e{bottom:261.445500px;}
.ya1{bottom:263.305500px;}
.yd2{bottom:267.274500px;}
.y53{bottom:271.485000px;}
.ye9{bottom:274.860000px;}
.y7d{bottom:276.633000px;}
.y18{bottom:278.340000px;}
.y191{bottom:279.360000px;}
.y70{bottom:281.610000px;}
.y107{bottom:289.570500px;}
.y172{bottom:290.695500px;}
.y3a{bottom:291.735000px;}
.yd1{bottom:293.926500px;}
.y131{bottom:300.649500px;}
.y52{bottom:301.860000px;}
.ye8{bottom:305.235000px;}
.y10b{bottom:307.485000px;}
.y17{bottom:308.715000px;}
.y190{bottom:309.735000px;}
.y14a{bottom:310.774500px;}
.y6f{bottom:311.985000px;}
.ya0{bottom:313.110000px;}
.y106{bottom:319.945500px;}
.yd0{bottom:320.578500px;}
.y171{bottom:321.070500px;}
.y39{bottom:322.110000px;}
.y7c{bottom:330.070500px;}
.y51{bottom:332.235000px;}
.y130{bottom:338.899500px;}
.ye6{bottom:339.070500px;}
.y16{bottom:339.090000px;}
.y6e{bottom:342.360000px;}
.ycf{bottom:347.230500px;}
.y149{bottom:347.985000px;}
.y9c{bottom:350.320500px;}
.y38{bottom:352.485000px;}
.y12d{bottom:356.422500px;}
.y18f{bottom:360.360000px;}
.y50{bottom:362.610000px;}
.y12f{bottom:369.274500px;}
.y15{bottom:369.465000px;}
.y6d{bottom:372.735000px;}
.y170{bottom:373.860000px;}
.yce{bottom:373.881000px;}
.ye5{bottom:377.320500px;}
.y105{bottom:378.360000px;}
.y9b{bottom:380.695500px;}
.y37{bottom:382.860000px;}
.y12c{bottom:386.797500px;}
.y4f{bottom:392.985000px;}
.y14{bottom:399.840000px;}
.ycd{bottom:400.533000px;}
.y12e{bottom:401.985000px;}
.y6c{bottom:403.110000px;}
.y16f{bottom:404.235000px;}
.y148{bottom:408.735000px;}
.y18e{bottom:410.985000px;}
.y9a{bottom:411.070500px;}
.y36{bottom:413.235000px;}
.ye4{bottom:415.570500px;}
.y4e{bottom:423.360000px;}
.ycc{bottom:425.136000px;}
.y6b{bottom:433.485000px;}
.y16e{bottom:434.610000px;}
.y147{bottom:439.110000px;}
.y99{bottom:441.445500px;}
.y12b{bottom:442.570500px;}
.y35{bottom:443.610000px;}
.y18c{bottom:448.195500px;}
.y13{bottom:450.465000px;}
.y4d{bottom:453.735000px;}
.ye3{bottom:453.820500px;}
.ycb{bottom:453.837000px;}
.y18d{bottom:463.383000px;}
.y6a{bottom:463.860000px;}
.y15c{bottom:464.985000px;}
.y146{bottom:467.149500px;}
.ye2{bottom:469.008000px;}
.y104{bottom:469.485000px;}
.y98{bottom:471.820500px;}
.y34{bottom:473.985000px;}
.y18b{bottom:478.570500px;}
.y101{bottom:479.268000px;}
.yca{bottom:480.489000px;}
.y12{bottom:480.840000px;}
.y4c{bottom:484.110000px;}
.y12a{bottom:495.360000px;}
.y145{bottom:499.860000px;}
.y97{bottom:502.195500px;}
.y33{bottom:504.360000px;}
.yc9{bottom:507.139500px;}
.y11{bottom:511.215000px;}
.y4b{bottom:514.485000px;}
.y18a{bottom:516.820500px;}
.y100{bottom:517.518000px;}
.y15b{bottom:517.774500px;}
.yfe{bottom:518.685000px;}
.yb0{bottom:520.465500px;}
.ye1{bottom:522.445500px;}
.y16d{bottom:525.735000px;}
.y144{bottom:530.235000px;}
.y96{bottom:532.570500px;}
.yc8{bottom:533.791500px;}
.y32{bottom:534.735000px;}
.y10{bottom:541.590000px;}
.y4a{bottom:544.860000px;}
.yaf{bottom:547.117500px;}
.y187{bottom:547.195500px;}
.yff{bottom:547.893000px;}
.y15a{bottom:548.149500px;}
.yfd{bottom:549.060000px;}
.y16c{bottom:556.110000px;}
.yc7{bottom:560.443500px;}
.y143{bottom:560.610000px;}
.y95{bottom:562.945500px;}
.y31{bottom:565.110000px;}
.yf{bottom:571.965000px;}
.yae{bottom:573.769500px;}
.y49{bottom:575.235000px;}
.y186{bottom:577.570500px;}
.y159{bottom:578.524500px;}
.ya7{bottom:585.045000px;}
.y16b{bottom:586.485000px;}
.yc6{bottom:587.095500px;}
.yfc{bottom:588.478500px;}
.y94{bottom:590.985000px;}
.y188{bottom:592.758000px;}
.y9f{bottom:593.320500px;}
.y30{bottom:595.485000px;}
.yad{bottom:600.420000px;}
.ye{bottom:602.340000px;}
.y48{bottom:605.610000px;}
.y185{bottom:607.945500px;}
.y158{bottom:608.899500px;}
.ya6{bottom:611.697000px;}
.ye0{bottom:615.735000px;}
.y16a{bottom:616.860000px;}
.y93{bottom:623.695500px;}
.y2f{bottom:625.860000px;}
.yfb{bottom:626.728500px;}
.yac{bottom:627.072000px;}
.y142{bottom:629.235000px;}
.yd{bottom:632.715000px;}
.y69{bottom:635.985000px;}
.y184{bottom:638.320500px;}
.ya5{bottom:638.349000px;}
.yc5{bottom:640.398000px;}
.ydf{bottom:646.110000px;}
.y169{bottom:647.235000px;}
.y127{bottom:649.143000px;}
.yab{bottom:651.675000px;}
.y103{bottom:651.735000px;}
.y86{bottom:654.070500px;}
.y2e{bottom:656.235000px;}
.yfa{bottom:657.103500px;}
.y157{bottom:659.524500px;}
.yc{bottom:663.090000px;}
.ya4{bottom:665.001000px;}
.y68{bottom:666.360000px;}
.yc4{bottom:667.050000px;}
.y141{bottom:667.485000px;}
.y189{bottom:668.695500px;}
.y63{bottom:676.485000px;}
.y168{bottom:677.610000px;}
.yaa{bottom:680.376000px;}
.y129{bottom:682.110000px;}
.y13e{bottom:683.839500px;}
.y85{bottom:684.445500px;}
.y2d{bottom:686.610000px;}
.y126{bottom:687.393000px;}
.yf9{bottom:687.478500px;}
.yb{bottom:693.465000px;}
.yc3{bottom:693.702000px;}
.y67{bottom:696.735000px;}
.y140{bottom:697.860000px;}
.yde{bottom:706.860000px;}
.y183{bottom:706.945500px;}
.ya9{bottom:707.026500px;}
.y167{bottom:707.985000px;}
.y13d{bottom:714.214500px;}
.y84{bottom:714.820500px;}
.y2c{bottom:716.985000px;}
.y125{bottom:717.768000px;}
.yf8{bottom:720.189000px;}
.yc2{bottom:720.352500px;}
.ya{bottom:723.840000px;}
.y62{bottom:727.110000px;}
.y13f{bottom:728.235000px;}
.ya8{bottom:733.678500px;}
.y182{bottom:734.985000px;}
.ydd{bottom:737.235000px;}
.y166{bottom:738.360000px;}
.y83{bottom:745.195500px;}
.yc1{bottom:747.004500px;}
.y2b{bottom:747.360000px;}
.y124{bottom:748.143000px;}
.yf7{bottom:750.564000px;}
.yf1{bottom:752.899500px;}
.y9{bottom:754.215000px;}
.y61{bottom:757.485000px;}
.y87{bottom:760.383000px;}
.y7b{bottom:767.610000px;}
.y181{bottom:767.695500px;}
.y13c{bottom:768.820500px;}
.yc0{bottom:771.607500px;}
.y82{bottom:773.235000px;}
.y92{bottom:775.570500px;}
.y2a{bottom:777.735000px;}
.y123{bottom:778.518000px;}
.yf6{bottom:780.939000px;}
.yf0{bottom:783.274500px;}
.y8{bottom:784.590000px;}
.y60{bottom:787.860000px;}
.y7a{bottom:797.985000px;}
.y180{bottom:798.070500px;}
.ybf{bottom:800.308500px;}
.y81{bottom:805.945500px;}
.y13b{bottom:807.070500px;}
.y29{bottom:808.110000px;}
.y122{bottom:808.893000px;}
.y17b{bottom:813.258000px;}
.yf5{bottom:813.649500px;}
.y7{bottom:814.965000px;}
.y5f{bottom:818.235000px;}
.ybe{bottom:826.959000px;}
.y79{bottom:828.360000px;}
.y17f{bottom:828.445500px;}
.y9e{bottom:833.985000px;}
.y80{bottom:836.320500px;}
.y28{bottom:838.485000px;}
.y121{bottom:841.603500px;}
.y11a{bottom:843.939000px;}
.yf4{bottom:844.024500px;}
.y156{bottom:846.274500px;}
.y5e{bottom:848.610000px;}
.y165{bottom:851.508000px;}
.ybd{bottom:853.611000px;}
.y78{bottom:858.735000px;}
.y17e{bottom:858.820500px;}
.y13a{bottom:859.860000px;}
.y6{bottom:865.590000px;}
.y7f{bottom:866.695500px;}
.ydc{bottom:868.860000px;}
.y120{bottom:871.978500px;}
.y119{bottom:874.314000px;}
.yf3{bottom:874.399500px;}
.ybc{bottom:878.214000px;}
.y5d{bottom:878.985000px;}
.y164{bottom:881.883000px;}
.y27{bottom:889.110000px;}
.y17d{bottom:889.195500px;}
.y91{bottom:894.735000px;}
.y9d{bottom:897.070500px;}
.ydb{bottom:899.235000px;}
.y11f{bottom:902.353500px;}
.ybb{bottom:906.915000px;}
.yf2{bottom:907.110000px;}
.y5c{bottom:909.360000px;}
.y163{bottom:912.258000px;}
.y26{bottom:919.485000px;}
.y17c{bottom:919.570500px;}
.y5{bottom:922.962000px;}
.y90{bottom:927.445500px;}
.yda{bottom:929.610000px;}
.yba{bottom:933.565500px;}
.y11e{bottom:935.064000px;}
.y155{bottom:937.399500px;}
.y47{bottom:939.735000px;}
.y162{bottom:942.633000px;}
.yef{bottom:947.695500px;}
.y25{bottom:949.860000px;}
.y139{bottom:955.485000px;}
.y8f{bottom:957.820500px;}
.ye7{bottom:959.985000px;}
.yb9{bottom:960.217500px;}
.y11d{bottom:965.439000px;}
.y46{bottom:970.110000px;}
.y161{bottom:973.008000px;}
.y4{bottom:980.062500px;}
.y24{bottom:980.235000px;}
.y17a{bottom:985.860000px;}
.yb8{bottom:986.869500px;}
.y8e{bottom:988.195500px;}
.y77{bottom:990.360000px;}
.y11c{bottom:995.814000px;}
.y45{bottom:1000.485000px;}
.y160{bottom:1003.383000px;}
.y23{bottom:1010.610000px;}
.yb7{bottom:1011.472500px;}
.y8d{bottom:1018.570500px;}
.y76{bottom:1020.735000px;}
.y11b{bottom:1028.524500px;}
.y44{bottom:1030.860000px;}
.y15f{bottom:1033.758000px;}
.y3{bottom:1037.163000px;}
.yb6{bottom:1040.172000px;}
.y22{bottom:1040.985000px;}
.y102{bottom:1046.610000px;}
.y8c{bottom:1048.945500px;}
.y5b{bottom:1051.110000px;}
.y43{bottom:1061.235000px;}
.y15e{bottom:1064.133000px;}
.yb5{bottom:1066.824000px;}
.y118{bottom:1069.110000px;}
.y21{bottom:1071.360000px;}
.y8b{bottom:1079.320500px;}
.y5a{bottom:1081.485000px;}
.y115{bottom:1085.464500px;}
.y42{bottom:1091.610000px;}
.yb4{bottom:1093.476000px;}
.y2{bottom:1094.263500px;}
.y15d{bottom:1094.508000px;}
.y117{bottom:1099.485000px;}
.y138{bottom:1107.360000px;}
.y8a{bottom:1109.695500px;}
.y59{bottom:1111.860000px;}
.y114{bottom:1115.839500px;}
.yb3{bottom:1120.128000px;}
.y20{bottom:1121.985000px;}
.y116{bottom:1129.860000px;}
.y128{bottom:1137.735000px;}
.y153{bottom:1138.902000px;}
.y89{bottom:1140.070500px;}
.y41{bottom:1142.235000px;}
.yb2{bottom:1146.778500px;}
.y1{bottom:1151.364000px;}
.y154{bottom:1168.110000px;}
.y152{bottom:1169.277000px;}
.y88{bottom:1170.445500px;}
.y1f{bottom:1172.610000px;}
.yb1{bottom:1173.430500px;}
.ha{height:37.896346px;}
.h7{height:43.189453px;}
.h8{height:43.934774px;}
.h5{height:50.071289px;}
.he{height:50.387695px;}
.hb{height:56.842119px;}
.hd{height:58.416504px;}
.h4{height:64.784180px;}
.h3{height:75.106934px;}
.h9{height:97.238774px;}
.hc{height:103.939453px;}
.h6{height:110.821289px;}
.h2{height:159.605016px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.780000px;}
.x74{left:103.249500px;}
.x77{left:107.313000px;}
.x75{left:111.376500px;}
.x6{left:114.423000px;}
.x79{left:115.440000px;}
.x76{left:119.503500px;}
.x9{left:122.550000px;}
.x73{left:123.567000px;}
.x7{left:126.613500px;}
.x5{left:134.740500px;}
.x78{left:135.757500px;}
.x3b{left:136.905000px;}
.x21{left:139.891500px;}
.x51{left:141.697500px;}
.x22{left:143.457000px;}
.x53{left:145.761000px;}
.x3c{left:148.452000px;}
.x24{left:150.588000px;}
.x54{left:153.888000px;}
.x3{left:155.058000px;}
.x52{left:157.951500px;}
.x3d{left:160.642500px;}
.x4f{left:162.015000px;}
.x4b{left:163.756500px;}
.x4e{left:166.078500px;}
.x61{left:170.142000px;}
.x8{left:171.312000px;}
.x50{left:174.205500px;}
.xa{left:175.375500px;}
.x25{left:177.328500px;}
.x93{left:178.701000px;}
.x43{left:180.010500px;}
.x65{left:182.332500px;}
.x4c{left:184.074000px;}
.x86{left:186.828000px;}
.x8c{left:194.955000px;}
.x91{left:199.018500px;}
.x87{left:203.082000px;}
.x63{left:222.967500px;}
.x68{left:227.031000px;}
.x66{left:235.158000px;}
.x29{left:236.319000px;}
.x27{left:239.884500px;}
.x26{left:243.450000px;}
.x64{left:247.348500px;}
.x23{left:250.581000px;}
.x2a{left:254.145000px;}
.x42{left:259.539000px;}
.x6d{left:267.666000px;}
.x28{left:271.972500px;}
.x3f{left:275.793000px;}
.x6e{left:279.856500px;}
.x6f{left:287.983500px;}
.x6c{left:292.047000px;}
.x3e{left:294.078000px;}
.xb{left:295.255500px;}
.x72{left:300.174000px;}
.x7e{left:307.243500px;}
.x85{left:309.511500px;}
.x7b{left:311.307000px;}
.x40{left:312.364500px;}
.x84{left:313.575000px;}
.x7a{left:315.370500px;}
.x7c{left:319.434000px;}
.x7d{left:323.497500px;}
.x67{left:324.555000px;}
.x2e{left:328.963500px;}
.x41{left:330.649500px;}
.x38{left:332.529000px;}
.x35{left:336.094500px;}
.x57{left:337.878000px;}
.x39{left:339.660000px;}
.x70{left:340.809000px;}
.x47{left:341.940000px;}
.x2b{left:343.225500px;}
.x49{left:346.003500px;}
.x37{left:350.356500px;}
.x31{left:353.922000px;}
.x2f{left:357.487500px;}
.x36{left:361.053000px;}
.x2c{left:364.618500px;}
.x71{left:366.322500px;}
.x33{left:368.182500px;}
.x56{left:370.384500px;}
.x2d{left:371.748000px;}
.x2{left:373.317000px;}
.x45{left:374.449500px;}
.x20{left:378.717000px;}
.x5b{left:384.607500px;}
.x5a{left:388.671000px;}
.x32{left:393.141000px;}
.x5c{left:404.925000px;}
.x62{left:409.888500px;}
.x6b{left:413.052000px;}
.x8f{left:415.311000px;}
.x55{left:418.015500px;}
.x8e{left:419.374500px;}
.x88{left:423.438000px;}
.x69{left:425.242500px;}
.x8d{left:427.501500px;}
.x5e{left:429.306000px;}
.x59{left:433.369500px;}
.x90{left:435.628500px;}
.x89{left:439.692000px;}
.x5f{left:441.496500px;}
.x6a{left:443.529000px;}
.x10{left:446.955000px;}
.xc{left:451.018500px;}
.x48{left:453.687000px;}
.x14{left:455.082000px;}
.xe{left:459.145500px;}
.x4d{left:461.814000px;}
.x12{left:463.209000px;}
.x4a{left:465.877500px;}
.x92{left:468.136500px;}
.xd{left:471.336000px;}
.x44{left:474.004500px;}
.x15{left:475.399500px;}
.x60{left:478.068000px;}
.x17{left:479.463000px;}
.x34{left:482.275500px;}
.xf{left:483.526500px;}
.x13{left:491.653500px;}
.x30{left:492.972000px;}
.x16{left:495.717000px;}
.x11{left:499.780500px;}
.x46{left:502.449000px;}
.x3a{left:510.799500px;}
.x5d{left:518.703000px;}
.x58{left:530.893500px;}
.x80{left:561.057000px;}
.x81{left:569.184000px;}
.x7f{left:581.374500px;}
.x82{left:585.438000px;}
.x83{left:634.200000px;}
.x1f{left:642.772500px;}
.x1c{left:646.836000px;}
.x1d{left:650.899500px;}
.x1e{left:654.963000px;}
.x1b{left:659.026500px;}
.x18{left:663.090000px;}
.x19{left:667.153500px;}
.x4{left:671.217000px;}
.x8b{left:679.519500px;}
.x1a{left:683.407500px;}
.x8a{left:685.615500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:47.381333pt;}
.v1{vertical-align:54.000000pt;}
.ls17{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.368000pt;}
.ls6{letter-spacing:0.378667pt;}
.lsa{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.389333pt;}
.ls20{letter-spacing:0.400000pt;}
.ls39{letter-spacing:0.405333pt;}
.ls45{letter-spacing:0.416000pt;}
.ls2d{letter-spacing:0.874667pt;}
.ls5{letter-spacing:0.890667pt;}
.ls11{letter-spacing:0.912000pt;}
.lsb{letter-spacing:0.928000pt;}
.ls2c{letter-spacing:0.944000pt;}
.ls47{letter-spacing:0.986667pt;}
.ls19{letter-spacing:1.365333pt;}
.ls15{letter-spacing:1.392000pt;}
.ls1a{letter-spacing:1.418667pt;}
.ls16{letter-spacing:1.445333pt;}
.ls52{letter-spacing:1.466667pt;}
.ls4{letter-spacing:1.477333pt;}
.lsf{letter-spacing:1.509333pt;}
.ls34{letter-spacing:1.573333pt;}
.ls10{letter-spacing:1.930667pt;}
.ls32{letter-spacing:1.968000pt;}
.ls27{letter-spacing:2.010667pt;}
.ls18{letter-spacing:2.048000pt;}
.ls41{letter-spacing:2.096000pt;}
.ls9{letter-spacing:2.138667pt;}
.ls53{letter-spacing:2.266667pt;}
.ls2f{letter-spacing:2.437333pt;}
.ls35{letter-spacing:2.485333pt;}
.ls7{letter-spacing:2.538667pt;}
.ls1d{letter-spacing:2.592000pt;}
.ls13{letter-spacing:2.645333pt;}
.ls21{letter-spacing:2.704000pt;}
.ls51{letter-spacing:2.938667pt;}
.ls31{letter-spacing:3.072000pt;}
.lsd{letter-spacing:3.136000pt;}
.ls24{letter-spacing:3.200000pt;}
.ls28{letter-spacing:3.269333pt;}
.ls1c{letter-spacing:3.344000pt;}
.ls33{letter-spacing:3.418667pt;}
.ls4a{letter-spacing:3.498667pt;}
.ls2e{letter-spacing:3.530667pt;}
.ls1{letter-spacing:3.557333pt;}
.ls8{letter-spacing:3.600000pt;}
.ls48{letter-spacing:3.669333pt;}
.ls3e{letter-spacing:3.674667pt;}
.ls0{letter-spacing:3.712000pt;}
.ls1e{letter-spacing:3.754667pt;}
.ls29{letter-spacing:3.834667pt;}
.ls2b{letter-spacing:3.920000pt;}
.ls3b{letter-spacing:4.101333pt;}
.ls26{letter-spacing:4.218667pt;}
.ls4f{letter-spacing:4.309333pt;}
.ls3d{letter-spacing:4.400000pt;}
.ls23{letter-spacing:4.496000pt;}
.ls1b{letter-spacing:4.602667pt;}
.ls1f{letter-spacing:4.709333pt;}
.ls3a{letter-spacing:4.757333pt;}
.ls4d{letter-spacing:4.821333pt;}
.ls25{letter-spacing:4.858667pt;}
.ls12{letter-spacing:4.965333pt;}
.ls4b{letter-spacing:5.077333pt;}
.ls38{letter-spacing:5.189333pt;}
.ls3f{letter-spacing:5.312000pt;}
.ls3{letter-spacing:5.333333pt;}
.ls2a{letter-spacing:5.530667pt;}
.ls49{letter-spacing:5.573333pt;}
.lsc{letter-spacing:5.653333pt;}
.ls46{letter-spacing:5.712000pt;}
.ls22{letter-spacing:5.781333pt;}
.ls40{letter-spacing:5.914667pt;}
.ls3c{letter-spacing:6.058667pt;}
.ls43{letter-spacing:6.229333pt;}
.ls42{letter-spacing:6.373333pt;}
.ls50{letter-spacing:6.522667pt;}
.ls37{letter-spacing:6.677333pt;}
.ls36{letter-spacing:6.965333pt;}
.ls54{letter-spacing:7.472000pt;}
.ls14{letter-spacing:7.914667pt;}
.ls30{letter-spacing:8.149333pt;}
.ls44{letter-spacing:9.189333pt;}
.ls2{letter-spacing:10.666667pt;}
.ls4e{letter-spacing:727.456000pt;}
.ws41{word-spacing:-46.544000pt;}
.ws52{word-spacing:-44.234667pt;}
.ws4{word-spacing:0.000000pt;}
.ws48{word-spacing:0.714667pt;}
.ws3a{word-spacing:0.826667pt;}
.ws20{word-spacing:0.960000pt;}
.wsf{word-spacing:1.120000pt;}
.wsb{word-spacing:1.312000pt;}
.ws49{word-spacing:1.525333pt;}
.ws7{word-spacing:1.562667pt;}
.ws2c{word-spacing:1.866667pt;}
.ws55{word-spacing:1.893333pt;}
.ws34{word-spacing:2.138667pt;}
.wsc{word-spacing:2.165333pt;}
.ws12{word-spacing:2.528000pt;}
.ws10{word-spacing:2.880000pt;}
.ws6{word-spacing:2.970667pt;}
.wsa{word-spacing:3.328000pt;}
.ws5{word-spacing:3.349333pt;}
.ws4c{word-spacing:3.434667pt;}
.ws2d{word-spacing:3.541333pt;}
.ws44{word-spacing:3.872000pt;}
.ws17{word-spacing:3.914667pt;}
.ws18{word-spacing:4.512000pt;}
.ws1a{word-spacing:4.613333pt;}
.ws5c{word-spacing:4.704000pt;}
.ws21{word-spacing:4.837333pt;}
.ws5b{word-spacing:4.896000pt;}
.ws33{word-spacing:4.938667pt;}
.ws26{word-spacing:5.280000pt;}
.ws4a{word-spacing:5.322667pt;}
.ws16{word-spacing:5.504000pt;}
.ws14{word-spacing:5.648000pt;}
.ws3c{word-spacing:5.696000pt;}
.ws1c{word-spacing:5.770667pt;}
.ws32{word-spacing:6.229333pt;}
.ws4e{word-spacing:6.362667pt;}
.ws56{word-spacing:6.426667pt;}
.ws4f{word-spacing:6.538667pt;}
.ws1d{word-spacing:6.624000pt;}
.ws19{word-spacing:6.677333pt;}
.ws28{word-spacing:6.757333pt;}
.ws11{word-spacing:7.440000pt;}
.ws1f{word-spacing:7.562667pt;}
.ws5a{word-spacing:7.749333pt;}
.ws8{word-spacing:7.829333pt;}
.ws2b{word-spacing:7.840000pt;}
.ws23{word-spacing:7.941333pt;}
.ws4d{word-spacing:8.149333pt;}
.ws1b{word-spacing:8.896000pt;}
.ws51{word-spacing:9.040000pt;}
.ws29{word-spacing:9.232000pt;}
.ws35{word-spacing:9.360000pt;}
.wse{word-spacing:9.402667pt;}
.ws42{word-spacing:9.914667pt;}
.ws22{word-spacing:10.496000pt;}
.ws0{word-spacing:10.517333pt;}
.ws3{word-spacing:10.666667pt;}
.ws3d{word-spacing:10.906667pt;}
.ws1e{word-spacing:10.949333pt;}
.ws31{word-spacing:11.253333pt;}
.ws2f{word-spacing:11.381333pt;}
.ws38{word-spacing:11.728000pt;}
.ws3e{word-spacing:12.469333pt;}
.ws43{word-spacing:12.928000pt;}
.ws3f{word-spacing:13.125333pt;}
.ws4b{word-spacing:13.328000pt;}
.ws54{word-spacing:13.957333pt;}
.ws37{word-spacing:14.096000pt;}
.ws57{word-spacing:14.970667pt;}
.ws5d{word-spacing:15.226667pt;}
.ws1{word-spacing:15.418667pt;}
.ws9{word-spacing:16.000000pt;}
.ws13{word-spacing:16.789333pt;}
.ws58{word-spacing:16.848000pt;}
.ws47{word-spacing:17.360000pt;}
.ws25{word-spacing:18.272000pt;}
.wsd{word-spacing:18.576000pt;}
.ws50{word-spacing:19.813333pt;}
.ws2e{word-spacing:19.994667pt;}
.ws45{word-spacing:20.336000pt;}
.ws24{word-spacing:20.522667pt;}
.ws2a{word-spacing:22.741333pt;}
.ws15{word-spacing:23.744000pt;}
.ws27{word-spacing:24.181333pt;}
.ws46{word-spacing:24.928000pt;}
.ws3b{word-spacing:25.696000pt;}
.ws36{word-spacing:27.082667pt;}
.ws30{word-spacing:51.594667pt;}
.ws2{word-spacing:235.477333pt;}
.ws39{word-spacing:252.864000pt;}
.ws5f{word-spacing:306.176000pt;}
.ws5e{word-spacing:378.416000pt;}
.ws59{word-spacing:424.048000pt;}
.ws40{word-spacing:532.229589pt;}
.ws53{word-spacing:828.592000pt;}
._2d{margin-left:-2576.904000pt;}
._2e{margin-left:-2023.157333pt;}
._5{margin-left:-235.477333pt;}
._21{margin-left:-51.594667pt;}
._23{margin-left:-27.082667pt;}
._28{margin-left:-25.696000pt;}
._16{margin-left:-23.744000pt;}
._1f{margin-left:-22.741333pt;}
._1d{margin-left:-20.522667pt;}
._e{margin-left:-18.576000pt;}
._11{margin-left:-16.875200pt;}
._3{margin-left:-15.418667pt;}
._25{margin-left:-14.096000pt;}
._2a{margin-left:-12.469333pt;}
._26{margin-left:-11.439275pt;}
._1{margin-left:-10.517333pt;}
._10{margin-left:-9.402667pt;}
._b{margin-left:-7.829333pt;}
._1a{margin-left:-6.677333pt;}
._14{margin-left:-5.648000pt;}
._18{margin-left:-4.512000pt;}
._7{margin-left:-3.349333pt;}
._9{margin-left:-1.562667pt;}
._8{width:1.512000pt;}
._6{width:3.312000pt;}
._17{width:4.464000pt;}
._13{width:5.616000pt;}
._19{width:6.624000pt;}
._a{width:7.776000pt;}
._f{width:9.360000pt;}
._0{width:10.404181pt;}
._1b{width:11.375275pt;}
._29{width:12.456000pt;}
._24{width:14.040000pt;}
._2{width:15.300267pt;}
._c{width:16.291200pt;}
._12{width:17.346667pt;}
._d{width:18.576000pt;}
._1c{width:20.520000pt;}
._1e{width:22.680000pt;}
._15{width:23.688000pt;}
._27{width:25.632000pt;}
._22{width:27.072000pt;}
._20{width:51.552000pt;}
._2f{width:163.984000pt;}
._33{width:188.352000pt;}
._31{width:190.736000pt;}
._35{width:233.936000pt;}
._4{width:235.471104pt;}
._34{width:274.800000pt;}
._2b{width:293.760000pt;}
._32{width:295.632000pt;}
._2c{width:306.144000pt;}
._30{width:698.560000pt;}
.fs3{font-size:42.117333pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:56.000000pt;}
.fs4{font-size:63.173333pt;}
.fs1{font-size:72.000000pt;}
.fs0{font-size:153.002667pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:70.320000pt;}
.yd9{bottom:71.745333pt;}
.y40{bottom:79.320000pt;}
.y113{bottom:80.244000pt;}
.y1e{bottom:85.413333pt;}
.y197{bottom:86.320000pt;}
.y58{bottom:88.320000pt;}
.yd8{bottom:95.436000pt;}
.y74{bottom:97.320000pt;}
.y151{bottom:105.244000pt;}
.yee{bottom:105.320000pt;}
.y3f{bottom:106.320000pt;}
.y112{bottom:107.244000pt;}
.y10f{bottom:109.320000pt;}
.y1d{bottom:112.413333pt;}
.y196{bottom:113.320000pt;}
.y57{bottom:115.320000pt;}
.yd7{bottom:119.126667pt;}
.y73{bottom:124.320000pt;}
.yed{bottom:132.320000pt;}
.y3e{bottom:133.320000pt;}
.y111{bottom:134.244000pt;}
.y10e{bottom:136.320000pt;}
.y150{bottom:139.244000pt;}
.y1c{bottom:139.413333pt;}
.y195{bottom:140.320000pt;}
.y56{bottom:142.320000pt;}
.yd6{bottom:142.816000pt;}
.y137{bottom:143.168000pt;}
.y176{bottom:143.396000pt;}
.y72{bottom:151.320000pt;}
.y14d{bottom:153.781333pt;}
.yec{bottom:159.320000pt;}
.y66{bottom:160.320000pt;}
.y110{bottom:163.320000pt;}
.y14f{bottom:166.244000pt;}
.y1b{bottom:166.413333pt;}
.yd5{bottom:166.506667pt;}
.y194{bottom:167.320000pt;}
.y179{bottom:168.320000pt;}
.y55{bottom:169.320000pt;}
.y10a{bottom:170.320000pt;}
.y175{bottom:170.396000pt;}
.y136{bottom:177.168000pt;}
.y3d{bottom:178.320000pt;}
.ya3{bottom:180.526667pt;}
.y14c{bottom:180.781333pt;}
.y177{bottom:183.896000pt;}
.yeb{bottom:186.320000pt;}
.y65{bottom:187.320000pt;}
.yd4{bottom:190.197333pt;}
.y133{bottom:191.705333pt;}
.y14e{bottom:193.244000pt;}
.y1a{bottom:193.413333pt;}
.y193{bottom:194.320000pt;}
.y178{bottom:195.320000pt;}
.y54{bottom:196.320000pt;}
.y174{bottom:197.396000pt;}
.y10d{bottom:199.396000pt;}
.y109{bottom:203.396000pt;}
.y135{bottom:204.168000pt;}
.ya2{bottom:204.217333pt;}
.y3c{bottom:205.320000pt;}
.yd3{bottom:212.066667pt;}
.yea{bottom:213.320000pt;}
.y64{bottom:214.320000pt;}
.y132{bottom:218.705333pt;}
.y19{bottom:220.413333pt;}
.y192{bottom:221.320000pt;}
.y71{bottom:223.320000pt;}
.y173{bottom:224.396000pt;}
.y10c{bottom:226.396000pt;}
.y14b{bottom:229.320000pt;}
.y108{bottom:230.396000pt;}
.y134{bottom:231.168000pt;}
.y3b{bottom:232.320000pt;}
.y7e{bottom:232.396000pt;}
.ya1{bottom:234.049333pt;}
.yd2{bottom:237.577333pt;}
.y53{bottom:241.320000pt;}
.ye9{bottom:244.320000pt;}
.y7d{bottom:245.896000pt;}
.y18{bottom:247.413333pt;}
.y191{bottom:248.320000pt;}
.y70{bottom:250.320000pt;}
.y107{bottom:257.396000pt;}
.y172{bottom:258.396000pt;}
.y3a{bottom:259.320000pt;}
.yd1{bottom:261.268000pt;}
.y131{bottom:267.244000pt;}
.y52{bottom:268.320000pt;}
.ye8{bottom:271.320000pt;}
.y10b{bottom:273.320000pt;}
.y17{bottom:274.413333pt;}
.y190{bottom:275.320000pt;}
.y14a{bottom:276.244000pt;}
.y6f{bottom:277.320000pt;}
.ya0{bottom:278.320000pt;}
.y106{bottom:284.396000pt;}
.yd0{bottom:284.958667pt;}
.y171{bottom:285.396000pt;}
.y39{bottom:286.320000pt;}
.y7c{bottom:293.396000pt;}
.y51{bottom:295.320000pt;}
.y130{bottom:301.244000pt;}
.ye6{bottom:301.396000pt;}
.y16{bottom:301.413333pt;}
.y6e{bottom:304.320000pt;}
.ycf{bottom:308.649333pt;}
.y149{bottom:309.320000pt;}
.y9c{bottom:311.396000pt;}
.y38{bottom:313.320000pt;}
.y12d{bottom:316.820000pt;}
.y18f{bottom:320.320000pt;}
.y50{bottom:322.320000pt;}
.y12f{bottom:328.244000pt;}
.y15{bottom:328.413333pt;}
.y6d{bottom:331.320000pt;}
.y170{bottom:332.320000pt;}
.yce{bottom:332.338667pt;}
.ye5{bottom:335.396000pt;}
.y105{bottom:336.320000pt;}
.y9b{bottom:338.396000pt;}
.y37{bottom:340.320000pt;}
.y12c{bottom:343.820000pt;}
.y4f{bottom:349.320000pt;}
.y14{bottom:355.413333pt;}
.ycd{bottom:356.029333pt;}
.y12e{bottom:357.320000pt;}
.y6c{bottom:358.320000pt;}
.y16f{bottom:359.320000pt;}
.y148{bottom:363.320000pt;}
.y18e{bottom:365.320000pt;}
.y9a{bottom:365.396000pt;}
.y36{bottom:367.320000pt;}
.ye4{bottom:369.396000pt;}
.y4e{bottom:376.320000pt;}
.ycc{bottom:377.898667pt;}
.y6b{bottom:385.320000pt;}
.y16e{bottom:386.320000pt;}
.y147{bottom:390.320000pt;}
.y99{bottom:392.396000pt;}
.y12b{bottom:393.396000pt;}
.y35{bottom:394.320000pt;}
.y18c{bottom:398.396000pt;}
.y13{bottom:400.413333pt;}
.y4d{bottom:403.320000pt;}
.ye3{bottom:403.396000pt;}
.ycb{bottom:403.410667pt;}
.y18d{bottom:411.896000pt;}
.y6a{bottom:412.320000pt;}
.y15c{bottom:413.320000pt;}
.y146{bottom:415.244000pt;}
.ye2{bottom:416.896000pt;}
.y104{bottom:417.320000pt;}
.y98{bottom:419.396000pt;}
.y34{bottom:421.320000pt;}
.y18b{bottom:425.396000pt;}
.y101{bottom:426.016000pt;}
.yca{bottom:427.101333pt;}
.y12{bottom:427.413333pt;}
.y4c{bottom:430.320000pt;}
.y12a{bottom:440.320000pt;}
.y145{bottom:444.320000pt;}
.y97{bottom:446.396000pt;}
.y33{bottom:448.320000pt;}
.yc9{bottom:450.790667pt;}
.y11{bottom:454.413333pt;}
.y4b{bottom:457.320000pt;}
.y18a{bottom:459.396000pt;}
.y100{bottom:460.016000pt;}
.y15b{bottom:460.244000pt;}
.yfe{bottom:461.053333pt;}
.yb0{bottom:462.636000pt;}
.ye1{bottom:464.396000pt;}
.y16d{bottom:467.320000pt;}
.y144{bottom:471.320000pt;}
.y96{bottom:473.396000pt;}
.yc8{bottom:474.481333pt;}
.y32{bottom:475.320000pt;}
.y10{bottom:481.413333pt;}
.y4a{bottom:484.320000pt;}
.yaf{bottom:486.326667pt;}
.y187{bottom:486.396000pt;}
.yff{bottom:487.016000pt;}
.y15a{bottom:487.244000pt;}
.yfd{bottom:488.053333pt;}
.y16c{bottom:494.320000pt;}
.yc7{bottom:498.172000pt;}
.y143{bottom:498.320000pt;}
.y95{bottom:500.396000pt;}
.y31{bottom:502.320000pt;}
.yf{bottom:508.413333pt;}
.yae{bottom:510.017333pt;}
.y49{bottom:511.320000pt;}
.y186{bottom:513.396000pt;}
.y159{bottom:514.244000pt;}
.ya7{bottom:520.040000pt;}
.y16b{bottom:521.320000pt;}
.yc6{bottom:521.862667pt;}
.yfc{bottom:523.092000pt;}
.y94{bottom:525.320000pt;}
.y188{bottom:526.896000pt;}
.y9f{bottom:527.396000pt;}
.y30{bottom:529.320000pt;}
.yad{bottom:533.706667pt;}
.ye{bottom:535.413333pt;}
.y48{bottom:538.320000pt;}
.y185{bottom:540.396000pt;}
.y158{bottom:541.244000pt;}
.ya6{bottom:543.730667pt;}
.ye0{bottom:547.320000pt;}
.y16a{bottom:548.320000pt;}
.y93{bottom:554.396000pt;}
.y2f{bottom:556.320000pt;}
.yfb{bottom:557.092000pt;}
.yac{bottom:557.397333pt;}
.y142{bottom:559.320000pt;}
.yd{bottom:562.413333pt;}
.y69{bottom:565.320000pt;}
.y184{bottom:567.396000pt;}
.ya5{bottom:567.421333pt;}
.yc5{bottom:569.242667pt;}
.ydf{bottom:574.320000pt;}
.y169{bottom:575.320000pt;}
.y127{bottom:577.016000pt;}
.yab{bottom:579.266667pt;}
.y103{bottom:579.320000pt;}
.y86{bottom:581.396000pt;}
.y2e{bottom:583.320000pt;}
.yfa{bottom:584.092000pt;}
.y157{bottom:586.244000pt;}
.yc{bottom:589.413333pt;}
.ya4{bottom:591.112000pt;}
.y68{bottom:592.320000pt;}
.yc4{bottom:592.933333pt;}
.y141{bottom:593.320000pt;}
.y189{bottom:594.396000pt;}
.y63{bottom:601.320000pt;}
.y168{bottom:602.320000pt;}
.yaa{bottom:604.778667pt;}
.y129{bottom:606.320000pt;}
.y13e{bottom:607.857333pt;}
.y85{bottom:608.396000pt;}
.y2d{bottom:610.320000pt;}
.y126{bottom:611.016000pt;}
.yf9{bottom:611.092000pt;}
.yb{bottom:616.413333pt;}
.yc3{bottom:616.624000pt;}
.y67{bottom:619.320000pt;}
.y140{bottom:620.320000pt;}
.yde{bottom:628.320000pt;}
.y183{bottom:628.396000pt;}
.ya9{bottom:628.468000pt;}
.y167{bottom:629.320000pt;}
.y13d{bottom:634.857333pt;}
.y84{bottom:635.396000pt;}
.y2c{bottom:637.320000pt;}
.y125{bottom:638.016000pt;}
.yf8{bottom:640.168000pt;}
.yc2{bottom:640.313333pt;}
.ya{bottom:643.413333pt;}
.y62{bottom:646.320000pt;}
.y13f{bottom:647.320000pt;}
.ya8{bottom:652.158667pt;}
.y182{bottom:653.320000pt;}
.ydd{bottom:655.320000pt;}
.y166{bottom:656.320000pt;}
.y83{bottom:662.396000pt;}
.yc1{bottom:664.004000pt;}
.y2b{bottom:664.320000pt;}
.y124{bottom:665.016000pt;}
.yf7{bottom:667.168000pt;}
.yf1{bottom:669.244000pt;}
.y9{bottom:670.413333pt;}
.y61{bottom:673.320000pt;}
.y87{bottom:675.896000pt;}
.y7b{bottom:682.320000pt;}
.y181{bottom:682.396000pt;}
.y13c{bottom:683.396000pt;}
.yc0{bottom:685.873333pt;}
.y82{bottom:687.320000pt;}
.y92{bottom:689.396000pt;}
.y2a{bottom:691.320000pt;}
.y123{bottom:692.016000pt;}
.yf6{bottom:694.168000pt;}
.yf0{bottom:696.244000pt;}
.y8{bottom:697.413333pt;}
.y60{bottom:700.320000pt;}
.y7a{bottom:709.320000pt;}
.y180{bottom:709.396000pt;}
.ybf{bottom:711.385333pt;}
.y81{bottom:716.396000pt;}
.y13b{bottom:717.396000pt;}
.y29{bottom:718.320000pt;}
.y122{bottom:719.016000pt;}
.y17b{bottom:722.896000pt;}
.yf5{bottom:723.244000pt;}
.y7{bottom:724.413333pt;}
.y5f{bottom:727.320000pt;}
.ybe{bottom:735.074667pt;}
.y79{bottom:736.320000pt;}
.y17f{bottom:736.396000pt;}
.y9e{bottom:741.320000pt;}
.y80{bottom:743.396000pt;}
.y28{bottom:745.320000pt;}
.y121{bottom:748.092000pt;}
.y11a{bottom:750.168000pt;}
.yf4{bottom:750.244000pt;}
.y156{bottom:752.244000pt;}
.y5e{bottom:754.320000pt;}
.y165{bottom:756.896000pt;}
.ybd{bottom:758.765333pt;}
.y78{bottom:763.320000pt;}
.y17e{bottom:763.396000pt;}
.y13a{bottom:764.320000pt;}
.y6{bottom:769.413333pt;}
.y7f{bottom:770.396000pt;}
.ydc{bottom:772.320000pt;}
.y120{bottom:775.092000pt;}
.y119{bottom:777.168000pt;}
.yf3{bottom:777.244000pt;}
.ybc{bottom:780.634667pt;}
.y5d{bottom:781.320000pt;}
.y164{bottom:783.896000pt;}
.y27{bottom:790.320000pt;}
.y17d{bottom:790.396000pt;}
.y91{bottom:795.320000pt;}
.y9d{bottom:797.396000pt;}
.ydb{bottom:799.320000pt;}
.y11f{bottom:802.092000pt;}
.ybb{bottom:806.146667pt;}
.yf2{bottom:806.320000pt;}
.y5c{bottom:808.320000pt;}
.y163{bottom:810.896000pt;}
.y26{bottom:817.320000pt;}
.y17c{bottom:817.396000pt;}
.y5{bottom:820.410667pt;}
.y90{bottom:824.396000pt;}
.yda{bottom:826.320000pt;}
.yba{bottom:829.836000pt;}
.y11e{bottom:831.168000pt;}
.y155{bottom:833.244000pt;}
.y47{bottom:835.320000pt;}
.y162{bottom:837.896000pt;}
.yef{bottom:842.396000pt;}
.y25{bottom:844.320000pt;}
.y139{bottom:849.320000pt;}
.y8f{bottom:851.396000pt;}
.ye7{bottom:853.320000pt;}
.yb9{bottom:853.526667pt;}
.y11d{bottom:858.168000pt;}
.y46{bottom:862.320000pt;}
.y161{bottom:864.896000pt;}
.y4{bottom:871.166667pt;}
.y24{bottom:871.320000pt;}
.y17a{bottom:876.320000pt;}
.yb8{bottom:877.217333pt;}
.y8e{bottom:878.396000pt;}
.y77{bottom:880.320000pt;}
.y11c{bottom:885.168000pt;}
.y45{bottom:889.320000pt;}
.y160{bottom:891.896000pt;}
.y23{bottom:898.320000pt;}
.yb7{bottom:899.086667pt;}
.y8d{bottom:905.396000pt;}
.y76{bottom:907.320000pt;}
.y11b{bottom:914.244000pt;}
.y44{bottom:916.320000pt;}
.y15f{bottom:918.896000pt;}
.y3{bottom:921.922667pt;}
.yb6{bottom:924.597333pt;}
.y22{bottom:925.320000pt;}
.y102{bottom:930.320000pt;}
.y8c{bottom:932.396000pt;}
.y5b{bottom:934.320000pt;}
.y43{bottom:943.320000pt;}
.y15e{bottom:945.896000pt;}
.yb5{bottom:948.288000pt;}
.y118{bottom:950.320000pt;}
.y21{bottom:952.320000pt;}
.y8b{bottom:959.396000pt;}
.y5a{bottom:961.320000pt;}
.y115{bottom:964.857333pt;}
.y42{bottom:970.320000pt;}
.yb4{bottom:971.978667pt;}
.y2{bottom:972.678667pt;}
.y15d{bottom:972.896000pt;}
.y117{bottom:977.320000pt;}
.y138{bottom:984.320000pt;}
.y8a{bottom:986.396000pt;}
.y59{bottom:988.320000pt;}
.y114{bottom:991.857333pt;}
.yb3{bottom:995.669333pt;}
.y20{bottom:997.320000pt;}
.y116{bottom:1004.320000pt;}
.y128{bottom:1011.320000pt;}
.y153{bottom:1012.357333pt;}
.y89{bottom:1013.396000pt;}
.y41{bottom:1015.320000pt;}
.yb2{bottom:1019.358667pt;}
.y1{bottom:1023.434667pt;}
.y154{bottom:1038.320000pt;}
.y152{bottom:1039.357333pt;}
.y88{bottom:1040.396000pt;}
.y1f{bottom:1042.320000pt;}
.yb1{bottom:1043.049333pt;}
.ha{height:33.685641pt;}
.h7{height:38.390625pt;}
.h8{height:39.053133pt;}
.h5{height:44.507812pt;}
.he{height:44.789062pt;}
.hb{height:50.526328pt;}
.hd{height:51.925781pt;}
.h4{height:57.585938pt;}
.h3{height:66.761719pt;}
.h9{height:86.434466pt;}
.hc{height:92.390625pt;}
.h6{height:98.507812pt;}
.h2{height:141.871125pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.693333pt;}
.x74{left:91.777333pt;}
.x77{left:95.389333pt;}
.x75{left:99.001333pt;}
.x6{left:101.709333pt;}
.x79{left:102.613333pt;}
.x76{left:106.225333pt;}
.x9{left:108.933333pt;}
.x73{left:109.837333pt;}
.x7{left:112.545333pt;}
.x5{left:119.769333pt;}
.x78{left:120.673333pt;}
.x3b{left:121.693333pt;}
.x21{left:124.348000pt;}
.x51{left:125.953333pt;}
.x22{left:127.517333pt;}
.x53{left:129.565333pt;}
.x3c{left:131.957333pt;}
.x24{left:133.856000pt;}
.x54{left:136.789333pt;}
.x3{left:137.829333pt;}
.x52{left:140.401333pt;}
.x3d{left:142.793333pt;}
.x4f{left:144.013333pt;}
.x4b{left:145.561333pt;}
.x4e{left:147.625333pt;}
.x61{left:151.237333pt;}
.x8{left:152.277333pt;}
.x50{left:154.849333pt;}
.xa{left:155.889333pt;}
.x25{left:157.625333pt;}
.x93{left:158.845333pt;}
.x43{left:160.009333pt;}
.x65{left:162.073333pt;}
.x4c{left:163.621333pt;}
.x86{left:166.069333pt;}
.x8c{left:173.293333pt;}
.x91{left:176.905333pt;}
.x87{left:180.517333pt;}
.x63{left:198.193333pt;}
.x68{left:201.805333pt;}
.x66{left:209.029333pt;}
.x29{left:210.061333pt;}
.x27{left:213.230667pt;}
.x26{left:216.400000pt;}
.x64{left:219.865333pt;}
.x23{left:222.738667pt;}
.x2a{left:225.906667pt;}
.x42{left:230.701333pt;}
.x6d{left:237.925333pt;}
.x28{left:241.753333pt;}
.x3f{left:245.149333pt;}
.x6e{left:248.761333pt;}
.x6f{left:255.985333pt;}
.x6c{left:259.597333pt;}
.x3e{left:261.402667pt;}
.xb{left:262.449333pt;}
.x72{left:266.821333pt;}
.x7e{left:273.105333pt;}
.x85{left:275.121333pt;}
.x7b{left:276.717333pt;}
.x40{left:277.657333pt;}
.x84{left:278.733333pt;}
.x7a{left:280.329333pt;}
.x7c{left:283.941333pt;}
.x7d{left:287.553333pt;}
.x67{left:288.493333pt;}
.x2e{left:292.412000pt;}
.x41{left:293.910667pt;}
.x38{left:295.581333pt;}
.x35{left:298.750667pt;}
.x57{left:300.336000pt;}
.x39{left:301.920000pt;}
.x70{left:302.941333pt;}
.x47{left:303.946667pt;}
.x2b{left:305.089333pt;}
.x49{left:307.558667pt;}
.x37{left:311.428000pt;}
.x31{left:314.597333pt;}
.x2f{left:317.766667pt;}
.x36{left:320.936000pt;}
.x2c{left:324.105333pt;}
.x71{left:325.620000pt;}
.x33{left:327.273333pt;}
.x56{left:329.230667pt;}
.x2d{left:330.442667pt;}
.x2{left:331.837333pt;}
.x45{left:332.844000pt;}
.x20{left:336.637333pt;}
.x5b{left:341.873333pt;}
.x5a{left:345.485333pt;}
.x32{left:349.458667pt;}
.x5c{left:359.933333pt;}
.x62{left:364.345333pt;}
.x6b{left:367.157333pt;}
.x8f{left:369.165333pt;}
.x55{left:371.569333pt;}
.x8e{left:372.777333pt;}
.x88{left:376.389333pt;}
.x69{left:377.993333pt;}
.x8d{left:380.001333pt;}
.x5e{left:381.605333pt;}
.x59{left:385.217333pt;}
.x90{left:387.225333pt;}
.x89{left:390.837333pt;}
.x5f{left:392.441333pt;}
.x6a{left:394.248000pt;}
.x10{left:397.293333pt;}
.xc{left:400.905333pt;}
.x48{left:403.277333pt;}
.x14{left:404.517333pt;}
.xe{left:408.129333pt;}
.x4d{left:410.501333pt;}
.x12{left:411.741333pt;}
.x4a{left:414.113333pt;}
.x92{left:416.121333pt;}
.xd{left:418.965333pt;}
.x44{left:421.337333pt;}
.x15{left:422.577333pt;}
.x60{left:424.949333pt;}
.x17{left:426.189333pt;}
.x34{left:428.689333pt;}
.xf{left:429.801333pt;}
.x13{left:437.025333pt;}
.x30{left:438.197333pt;}
.x16{left:440.637333pt;}
.x11{left:444.249333pt;}
.x46{left:446.621333pt;}
.x3a{left:454.044000pt;}
.x5d{left:461.069333pt;}
.x58{left:471.905333pt;}
.x80{left:498.717333pt;}
.x81{left:505.941333pt;}
.x7f{left:516.777333pt;}
.x82{left:520.389333pt;}
.x83{left:563.733333pt;}
.x1f{left:571.353333pt;}
.x1c{left:574.965333pt;}
.x1d{left:578.577333pt;}
.x1e{left:582.189333pt;}
.x1b{left:585.801333pt;}
.x18{left:589.413333pt;}
.x19{left:593.025333pt;}
.x4{left:596.637333pt;}
.x8b{left:604.017333pt;}
.x1a{left:607.473333pt;}
.x8a{left:609.436000pt;}
}




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