
    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_f8b9af14a34e78d16e3d516f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_5f25571b7ac57d5e2e3ad90f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_1907d1f9c0982260970ea8b7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_9ff67875921343f753783633.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ac6850ee88e59475ee9f161a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_34e8ede4b89a964564e5db29.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-1.728000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.480000px;}
.v1{vertical-align:9.648000px;}
.v2{vertical-align:96.600000px;}
.ls7{letter-spacing:-6.540000px;}
.lsa{letter-spacing:-0.367800px;}
.ls2d{letter-spacing:-0.325200px;}
.ls9{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.261600px;}
.ls1c{letter-spacing:-0.229800px;}
.ls2b{letter-spacing:-0.223800px;}
.ls24{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.117600px;}
.lsc{letter-spacing:-0.106800px;}
.ls2f{letter-spacing:-0.051840px;}
.ls31{letter-spacing:-0.042600px;}
.ls8{letter-spacing:-0.037440px;}
.ls20{letter-spacing:-0.028080px;}
.ls6{letter-spacing:-0.021300px;}
.ls1e{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.018720px;}
.lse{letter-spacing:0.026520px;}
.ls21{letter-spacing:0.028080px;}
.ls32{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.106800px;}
.ls30{letter-spacing:0.122400px;}
.ls2c{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.245400px;}
.ls11{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.325200px;}
.ls13{letter-spacing:0.432000px;}
.ls1b{letter-spacing:47.125440px;}
.ls25{letter-spacing:63.849600px;}
.ls26{letter-spacing:63.900000px;}
.ls28{letter-spacing:66.009600px;}
.ls27{letter-spacing:66.060000px;}
.ls1{letter-spacing:74.196000px;}
.ls3{letter-spacing:76.413600px;}
.ls2{letter-spacing:76.464000px;}
.ls29{letter-spacing:78.429600px;}
.ls2a{letter-spacing:78.480000px;}
.ls12{letter-spacing:93.348000px;}
.ls23{letter-spacing:97.509600px;}
.ls5{letter-spacing:97.560000px;}
.ls2e{letter-spacing:98.928000px;}
.ls16{letter-spacing:106.248000px;}
.ls14{letter-spacing:106.260000px;}
.lsf{letter-spacing:106.716000px;}
.ls15{letter-spacing:121.788000px;}
.ls10{letter-spacing:122.808000px;}
.ls19{letter-spacing:124.149600px;}
.ls17{letter-spacing:124.200000px;}
.ls1d{letter-spacing:124.380000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-73.498752px;}
.ws21{word-spacing:-73.458720px;}
.ws20{word-spacing:-66.653280px;}
.ws2b{word-spacing:-55.044000px;}
.ws2d{word-spacing:-53.442720px;}
.ws36{word-spacing:-46.962480px;}
.ws33{word-spacing:-46.677312px;}
.ws18{word-spacing:-46.637280px;}
.ws3{word-spacing:-41.633280px;}
.ws31{word-spacing:-40.072032px;}
.ws2f{word-spacing:-40.032000px;}
.ws2c{word-spacing:-36.629280px;}
.ws2a{word-spacing:-35.028000px;}
.ws22{word-spacing:-33.466752px;}
.ws32{word-spacing:-33.426720px;}
.ws1{word-spacing:-31.665312px;}
.ws17{word-spacing:-30.064032px;}
.ws5{word-spacing:-30.024000px;}
.ws3d{word-spacing:-26.661312px;}
.ws38{word-spacing:-26.621280px;}
.ws26{word-spacing:-23.437440px;}
.ws9{word-spacing:-23.418720px;}
.ws1f{word-spacing:-23.390640px;}
.ws25{word-spacing:-23.381280px;}
.wsf{word-spacing:-20.056032px;}
.wsc{word-spacing:-20.016000px;}
.ws30{word-spacing:-2.756160px;}
.ws35{word-spacing:-0.807936px;}
.ws1a{word-spacing:-0.626400px;}
.ws37{word-spacing:-0.622944px;}
.ws7{word-spacing:-0.536256px;}
.ws6{word-spacing:-0.440160px;}
.ws8{word-spacing:-0.341280px;}
.ws4{word-spacing:-0.242112px;}
.ws2e{word-spacing:-0.168000px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.696000px;}
.ws3a{word-spacing:0.701280px;}
.ws27{word-spacing:0.708000px;}
.ws1e{word-spacing:0.733440px;}
.ws3b{word-spacing:0.757440px;}
.ws3c{word-spacing:0.948000px;}
.ws39{word-spacing:1.132800px;}
.ws29{word-spacing:1.392000px;}
.ws34{word-spacing:1.992720px;}
.ws1c{word-spacing:2.191680px;}
.ws1d{word-spacing:2.238624px;}
.ws1b{word-spacing:2.299440px;}
.ws11{word-spacing:52.416000px;}
.ws16{word-spacing:64.944000px;}
.ws12{word-spacing:65.376000px;}
.wse{word-spacing:65.424000px;}
.wsd{word-spacing:65.796000px;}
.ws13{word-spacing:80.664000px;}
.ws14{word-spacing:80.916000px;}
.ws15{word-spacing:81.036000px;}
.ws10{word-spacing:81.936000px;}
.wsa{word-spacing:131.327520px;}
.wsb{word-spacing:152.327520px;}
.ws23{word-spacing:896.778720px;}
.ws24{word-spacing:905.838720px;}
.ws19{word-spacing:1083.678720px;}
._8{margin-left:-3.538080px;}
._3{margin-left:-2.072592px;}
._0{margin-left:-1.057536px;}
._1{width:1.185840px;}
._4{width:2.556624px;}
._2{width:3.705840px;}
._11{width:20.434032px;}
._7{width:21.844128px;}
._13{width:28.347360px;}
._14{width:29.462400px;}
._6{width:31.952592px;}
._f{width:47.961120px;}
._12{width:49.135440px;}
._10{width:50.690400px;}
._b{width:70.472352px;}
._a{width:106.650480px;}
._9{width:118.586400px;}
._d{width:144.284160px;}
._e{width:163.556160px;}
._c{width:1297.906752px;}
._5{width:1314.466752px;}
.fc8{color:rgb(14,88,196);}
.fc7{color:rgb(158,20,94);}
.fc6{color:transparent;}
.fca{color:rgb(1,50,153);}
.fc9{color:rgb(216,211,217);}
.fc3{color:rgb(158,20,95);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(136,136,136);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:36.000000px;}
.fs9{font-size:59.760000px;}
.fs12{font-size:72.000000px;}
.fs13{font-size:72.144000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:84.384000px;}
.fs1a{font-size:95.760000px;}
.fsc{font-size:95.904000px;}
.fs20{font-size:100.938894px;}
.fsa{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs3{font-size:113.760000px;}
.fs4{font-size:113.904000px;}
.fs1f{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fs18{font-size:126.000000px;}
.fs19{font-size:126.144000px;}
.fs2{font-size:131.760000px;}
.fs1e{font-size:144.000000px;}
.fs1d{font-size:144.144000px;}
.fs7{font-size:149.760000px;}
.fs8{font-size:149.904000px;}
.fs6{font-size:156.240000px;}
.fs14{font-size:167.760000px;}
.fs15{font-size:167.904000px;}
.fs17{font-size:192.240000px;}
.fs1c{font-size:198.000000px;}
.fs1b{font-size:198.144000px;}
.fs16{font-size:216.144000px;}
.fs10{font-size:239.760000px;}
.fs11{font-size:239.904000px;}
.fs1{font-size:264.240000px;}
.fs0{font-size:264.384000px;}
.y13c{bottom:-10.050000px;}
.y0{bottom:0.000000px;}
.y13a{bottom:1.110000px;}
.y6f{bottom:6.090000px;}
.ya9{bottom:6.120000px;}
.y8d{bottom:6.195000px;}
.yc5{bottom:6.225000px;}
.y2d{bottom:6.765000px;}
.y2b{bottom:6.810000px;}
.y2f{bottom:6.840000px;}
.y32{bottom:6.870000px;}
.y3a{bottom:6.915000px;}
.y13e{bottom:11.010000px;}
.y71{bottom:13.320000px;}
.yfd{bottom:19.830000px;}
.ya{bottom:21.600000px;}
.yfc{bottom:22.395000px;}
.yc{bottom:27.504000px;}
.y17{bottom:29.916000px;}
.y9{bottom:32.400000px;}
.yb{bottom:38.304000px;}
.ya6{bottom:44.856000px;}
.y8a{bottom:44.892000px;}
.yc1{bottom:45.000000px;}
.y5e{bottom:49.710000px;}
.y46{bottom:63.210000px;}
.ydc{bottom:65.010000px;}
.ya5{bottom:65.055000px;}
.y89{bottom:65.160000px;}
.yc0{bottom:65.415000px;}
.yc3{bottom:72.900000px;}
.y12f{bottom:75.852000px;}
.y11a{bottom:76.248000px;}
.y15f{bottom:78.552000px;}
.yef{bottom:79.452000px;}
.y5c{bottom:82.185000px;}
.y8{bottom:83.556000px;}
.ydb{bottom:85.215000px;}
.ya4{bottom:85.245000px;}
.y88{bottom:85.470000px;}
.ybf{bottom:85.830000px;}
.y70{bottom:98.820000px;}
.y49{bottom:99.252000px;}
.y182{bottom:101.772000px;}
.yda{bottom:105.375000px;}
.ya3{bottom:105.450000px;}
.y87{bottom:105.735000px;}
.ybe{bottom:106.275000px;}
.y5b{bottom:106.350000px;}
.yf2{bottom:106.704000px;}
.y29{bottom:109.260000px;}
.y18b{bottom:112.752000px;}
.y7{bottom:114.336000px;}
.y144{bottom:116.784000px;}
.y137{bottom:117.468000px;}
.y15e{bottom:118.332000px;}
.y14d{bottom:118.476000px;}
.y48{bottom:124.452000px;}
.yd9{bottom:125.535000px;}
.ya2{bottom:125.640000px;}
.y86{bottom:126.000000px;}
.y10a{bottom:126.108000px;}
.y16{bottom:126.216000px;}
.ybd{bottom:126.690000px;}
.y119{bottom:127.188000px;}
.y181{bottom:127.692000px;}
.y5a{bottom:130.500000px;}
.y3c{bottom:135.180000px;}
.y18a{bottom:138.672000px;}
.yf4{bottom:138.930000px;}
.y105{bottom:139.032000px;}
.y129{bottom:140.364000px;}
.yd8{bottom:145.695000px;}
.ya1{bottom:145.830000px;}
.y85{bottom:146.265000px;}
.y169{bottom:147.024000px;}
.ybc{bottom:147.135000px;}
.yfe{bottom:147.528000px;}
.y15d{bottom:150.735000px;}
.y180{bottom:153.615000px;}
.yf3{bottom:155.340000px;}
.y54{bottom:155.520000px;}
.y167{bottom:160.050000px;}
.y53{bottom:162.000000px;}
.y66{bottom:162.750000px;}
.y189{bottom:164.595000px;}
.yd7{bottom:165.885000px;}
.ya0{bottom:166.035000px;}
.y84{bottom:166.530000px;}
.ybb{bottom:167.550000px;}
.y136{bottom:168.765000px;}
.y47{bottom:168.990000px;}
.y143{bottom:170.250000px;}
.y128{bottom:172.950000px;}
.y5f{bottom:176.580000px;}
.y14c{bottom:176.790000px;}
.y6{bottom:176.970000px;}
.y168{bottom:177.270000px;}
.yee{bottom:180.570000px;}
.y15{bottom:181.875000px;}
.yd6{bottom:186.045000px;}
.ye6{bottom:186.195000px;}
.y9f{bottom:186.225000px;}
.y83{bottom:186.810000px;}
.yf5{bottom:187.560000px;}
.yba{bottom:187.995000px;}
.y104{bottom:189.465000px;}
.y15c{bottom:191.985000px;}
.y65{bottom:192.990000px;}
.y110{bottom:193.710000px;}
.y115{bottom:194.250000px;}
.y17f{bottom:194.505000px;}
.y188{bottom:205.485000px;}
.yd5{bottom:206.205000px;}
.ye5{bottom:206.385000px;}
.y9e{bottom:206.430000px;}
.y82{bottom:207.075000px;}
.y61{bottom:207.150000px;}
.yb9{bottom:208.410000px;}
.y55{bottom:209.235000px;}
.y166{bottom:210.495000px;}
.y127{bottom:210.930000px;}
.y5{bottom:212.610000px;}
.yfb{bottom:214.740000px;}
.y3d{bottom:215.430000px;}
.y17e{bottom:220.425000px;}
.yd4{bottom:226.365000px;}
.y9d{bottom:226.590000px;}
.y81{bottom:227.340000px;}
.y5d{bottom:227.520000px;}
.y135{bottom:228.570000px;}
.yb8{bottom:228.810000px;}
.y15b{bottom:230.865000px;}
.yed{bottom:231.015000px;}
.y142{bottom:232.560000px;}
.y14b{bottom:234.975000px;}
.yf6{bottom:236.235000px;}
.y14{bottom:237.315000px;}
.y103{bottom:239.865000px;}
.y17d{bottom:246.345000px;}
.yd3{bottom:246.570000px;}
.y9c{bottom:246.780000px;}
.y3e{bottom:247.170000px;}
.y80{bottom:247.605000px;}
.y4c{bottom:248.325000px;}
.y126{bottom:248.940000px;}
.yb7{bottom:249.270000px;}
.y16b{bottom:250.950000px;}
.y22{bottom:257.505000px;}
.y56{bottom:262.950000px;}
.y45{bottom:264.240000px;}
.y68{bottom:265.395000px;}
.yd2{bottom:266.730000px;}
.y9b{bottom:266.970000px;}
.y7f{bottom:267.870000px;}
.yb6{bottom:269.670000px;}
.y187{bottom:272.265000px;}
.y165{bottom:276.015000px;}
.y3f{bottom:278.925000px;}
.y4b{bottom:280.725000px;}
.y16a{bottom:281.190000px;}
.y15a{bottom:283.425000px;}
.yf7{bottom:284.865000px;}
.yd1{bottom:286.890000px;}
.y125{bottom:286.920000px;}
.y9a{bottom:287.175000px;}
.y17c{bottom:287.385000px;}
.y7e{bottom:288.150000px;}
.y134{bottom:288.330000px;}
.y21{bottom:289.905000px;}
.yb5{bottom:290.130000px;}
.y102{bottom:290.265000px;}
.y108{bottom:291.855000px;}
.y13{bottom:292.755000px;}
.y14a{bottom:293.115000px;}
.y141{bottom:295.020000px;}
.y67{bottom:295.635000px;}
.yec{bottom:296.355000px;}
.y4{bottom:298.110000px;}
.y6c{bottom:304.485000px;}
.yd0{bottom:307.050000px;}
.y99{bottom:307.365000px;}
.y7d{bottom:308.415000px;}
.yb4{bottom:310.530000px;}
.y40{bottom:310.680000px;}
.y17b{bottom:313.305000px;}
.y57{bottom:316.620000px;}
.y111{bottom:321.405000px;}
.y20{bottom:322.305000px;}
.y159{bottom:323.385000px;}
.y124{bottom:325.080000px;}
.y164{bottom:326.415000px;}
.ycf{bottom:327.240000px;}
.ye4{bottom:327.525000px;}
.y98{bottom:327.570000px;}
.y7c{bottom:328.680000px;}
.yb3{bottom:330.990000px;}
.yf8{bottom:333.540000px;}
.y17a{bottom:339.270000px;}
.y16e{bottom:341.565000px;}
.y41{bottom:342.465000px;}
.y4a{bottom:345.525000px;}
.yeb{bottom:346.755000px;}
.yce{bottom:347.400000px;}
.ye3{bottom:347.730000px;}
.y97{bottom:347.760000px;}
.y133{bottom:348.090000px;}
.y12{bottom:348.405000px;}
.y7b{bottom:348.945000px;}
.yb2{bottom:351.390000px;}
.y1f{bottom:354.750000px;}
.ya8{bottom:357.120000px;}
.y107{bottom:357.195000px;}
.y140{bottom:357.330000px;}
.y8c{bottom:360.360000px;}
.y123{bottom:363.060000px;}
.y158{bottom:363.390000px;}
.y6e{bottom:364.320000px;}
.y6b{bottom:364.830000px;}
.yc4{bottom:367.560000px;}
.ydd{bottom:367.920000px;}
.y96{bottom:367.950000px;}
.y7a{bottom:369.210000px;}
.y3{bottom:369.390000px;}
.y58{bottom:370.335000px;}
.y16d{bottom:371.625000px;}
.yb1{bottom:371.805000px;}
.y42{bottom:374.220000px;}
.y163{bottom:376.845000px;}
.y28{bottom:377.925000px;}
.y179{bottom:380.130000px;}
.yf9{bottom:382.170000px;}
.y1e{bottom:387.150000px;}
.ycd{bottom:387.720000px;}
.ye2{bottom:388.110000px;}
.y95{bottom:388.155000px;}
.y79{bottom:389.490000px;}
.yb0{bottom:392.250000px;}
.y6a{bottom:394.890000px;}
.y122{bottom:395.670000px;}
.y157{bottom:395.790000px;}
.y132{bottom:399.420000px;}
.y16c{bottom:401.865000px;}
.y11{bottom:403.845000px;}
.y43{bottom:405.975000px;}
.y178{bottom:406.050000px;}
.ycc{bottom:407.910000px;}
.ye1{bottom:408.315000px;}
.y94{bottom:408.345000px;}
.y149{bottom:409.605000px;}
.y78{bottom:409.755000px;}
.y27{bottom:410.370000px;}
.y13f{bottom:410.790000px;}
.yea{bottom:412.125000px;}
.yaf{bottom:412.665000px;}
.y1d{bottom:419.550000px;}
.y101{bottom:421.170000px;}
.y3b{bottom:421.740000px;}
.y106{bottom:422.535000px;}
.y59{bottom:424.050000px;}
.y69{bottom:425.130000px;}
.y2c{bottom:426.780000px;}
.y162{bottom:427.245000px;}
.ycb{bottom:428.070000px;}
.y156{bottom:428.190000px;}
.y93{bottom:428.505000px;}
.y77{bottom:430.020000px;}
.yfa{bottom:430.845000px;}
.y177{bottom:431.970000px;}
.y152{bottom:432.330000px;}
.yae{bottom:433.110000px;}
.y52{bottom:436.320000px;}
.y44{bottom:437.730000px;}
.y12e{bottom:437.760000px;}
.y2{bottom:440.670000px;}
.y26{bottom:442.770000px;}
.y31{bottom:444.060000px;}
.y30{bottom:445.680000px;}
.y11f{bottom:445.830000px;}
.y171{bottom:445.860000px;}
.y186{bottom:446.910000px;}
.yca{bottom:448.230000px;}
.y112{bottom:448.590000px;}
.y92{bottom:448.710000px;}
.y2e{bottom:449.640000px;}
.y76{bottom:450.285000px;}
.y1c{bottom:451.950000px;}
.yad{bottom:453.525000px;}
.y120{bottom:456.510000px;}
.y131{bottom:459.180000px;}
.y10{bottom:459.285000px;}
.y2a{bottom:460.080000px;}
.y121{bottom:460.905000px;}
.y13d{bottom:462.240000px;}
.y50{bottom:462.960000px;}
.y12d{bottom:466.560000px;}
.y148{bottom:467.745000px;}
.yc9{bottom:468.390000px;}
.y91{bottom:468.900000px;}
.y155{bottom:469.410000px;}
.y10c{bottom:469.725000px;}
.y75{bottom:470.550000px;}
.y139{bottom:472.140000px;}
.y176{bottom:472.830000px;}
.y190{bottom:473.550000px;}
.yac{bottom:473.970000px;}
.y25{bottom:475.170000px;}
.y170{bottom:475.920000px;}
.y33{bottom:476.640000px;}
.ye9{bottom:477.645000px;}
.y11e{bottom:478.260000px;}
.y13b{bottom:483.300000px;}
.y1b{bottom:484.350000px;}
.y51{bottom:486.180000px;}
.y100{bottom:486.510000px;}
.yc8{bottom:488.595000px;}
.ye0{bottom:489.060000px;}
.y90{bottom:489.090000px;}
.y151{bottom:490.680000px;}
.y74{bottom:490.830000px;}
.y34{bottom:493.380000px;}
.yab{bottom:494.385000px;}
.y12c{bottom:495.360000px;}
.y175{bottom:498.780000px;}
.y6d{bottom:502.200000px;}
.y18f{bottom:502.380000px;}
.y16f{bottom:506.190000px;}
.y154{bottom:508.320000px;}
.yc7{bottom:508.755000px;}
.y118{bottom:509.190000px;}
.ydf{bottom:509.250000px;}
.y8f{bottom:509.295000px;}
.y11d{bottom:510.660000px;}
.y73{bottom:511.095000px;}
.y1{bottom:511.995000px;}
.y10d{bottom:512.925000px;}
.y185{bottom:513.900000px;}
.y36{bottom:514.800000px;}
.yf{bottom:515.310000px;}
.y1a{bottom:516.780000px;}
.y10b{bottom:520.125000px;}
.y12b{bottom:524.190000px;}
.y174{bottom:524.700000px;}
.y147{bottom:526.110000px;}
.ye8{bottom:528.090000px;}
.y37{bottom:528.300000px;}
.yc6{bottom:528.915000px;}
.yde{bottom:529.455000px;}
.y8e{bottom:529.485000px;}
.y35{bottom:530.640000px;}
.y18e{bottom:531.180000px;}
.y72{bottom:531.360000px;}
.y150{bottom:533.880000px;}
.yaa{bottom:535.245000px;}
.y184{bottom:539.820000px;}
.y24{bottom:540.000000px;}
.y117{bottom:541.590000px;}
.y11c{bottom:543.060000px;}
.y4e{bottom:546.120000px;}
.y19{bottom:549.180000px;}
.yff{bottom:552.060000px;}
.y12a{bottom:552.990000px;}
.y38{bottom:554.940000px;}
.y39{bottom:559.980000px;}
.y130{bottom:561.750000px;}
.y153{bottom:562.140000px;}
.y173{bottom:565.740000px;}
.ya7{bottom:570.750000px;}
.y4d{bottom:571.680000px;}
.ye{bottom:572.370000px;}
.y23{bottom:572.400000px;}
.y8b{bottom:573.225000px;}
.y116{bottom:573.990000px;}
.y4f{bottom:574.740000px;}
.y18d{bottom:574.920000px;}
.y11b{bottom:575.460000px;}
.yc2{bottom:576.510000px;}
.y138{bottom:576.930000px;}
.ye7{bottom:578.490000px;}
.y183{bottom:580.680000px;}
.y18{bottom:581.580000px;}
.yf1{bottom:588.570000px;}
.y109{bottom:590.370000px;}
.y18c{bottom:603.720000px;}
.y62{bottom:605.700000px;}
.y172{bottom:606.600000px;}
.yf0{bottom:613.770000px;}
.y10f{bottom:658.695000px;}
.y64{bottom:663.450000px;}
.y161{bottom:669.930000px;}
.y114{bottom:671.115000px;}
.y14f{bottom:680.190000px;}
.y146{bottom:681.810000px;}
.yd{bottom:693.870000px;}
.y10e{bottom:704.595000px;}
.y113{bottom:724.785000px;}
.y63{bottom:728.250000px;}
.y14e{bottom:729.150000px;}
.y60{bottom:729.975000px;}
.y145{bottom:730.230000px;}
.y160{bottom:732.030000px;}
.h2e{height:5.760000px;}
.h19{height:25.560000px;}
.h1d{height:25.740000px;}
.h10{height:28.800000px;}
.hf{height:28.980000px;}
.h6{height:37.546875px;}
.h2d{height:37.800000px;}
.h2f{height:47.700000px;}
.ha{height:62.327813px;}
.hb{height:71.975812px;}
.h22{height:73.010742px;}
.h23{height:73.135547px;}
.h1a{height:75.093750px;}
.h1c{height:75.243937px;}
.h13{height:75.519844px;}
.h38{height:85.068618px;}
.he{height:87.859687px;}
.h11{height:88.009875px;}
.h26{height:94.339687px;}
.h29{height:99.874688px;}
.h37{height:100.024875px;}
.h35{height:107.793281px;}
.hc{height:112.640625px;}
.hd{height:112.790813px;}
.h4{height:118.648125px;}
.h5{height:118.798312px;}
.h34{height:125.406562px;}
.h16{height:125.556750px;}
.h31{height:129.222844px;}
.h27{height:131.414062px;}
.h28{height:131.564250px;}
.h3{height:137.421562px;}
.h32{height:150.187500px;}
.h33{height:150.337688px;}
.h36{height:150.523313px;}
.h8{height:156.195000px;}
.h9{height:156.345188px;}
.h7{height:162.953438px;}
.h1f{height:174.968437px;}
.h20{height:175.118625px;}
.h2c{height:177.503906px;}
.h30{height:177.633000px;}
.h15{height:184.459687px;}
.h25{height:200.500313px;}
.h2b{height:206.507812px;}
.h2a{height:206.658000px;}
.h24{height:225.431438px;}
.h17{height:250.062187px;}
.h18{height:250.212375px;}
.h2{height:275.594063px;}
.h1{height:275.744250px;}
.h14{height:450.180000px;}
.h21{height:458.100000px;}
.h12{height:463.860000px;}
.h1e{height:607.500000px;}
.h1b{height:610.020000px;}
.h0{height:810.000000px;}
.w14{width:14.580000px;}
.w2{width:20.700000px;}
.w3{width:30.960000px;}
.w4{width:32.400000px;}
.wb{width:44.640000px;}
.w6{width:88.920000px;}
.w9{width:94.860000px;}
.w7{width:100.800000px;}
.w8{width:112.680000px;}
.w13{width:120.960000px;}
.w15{width:252.180000px;}
.we{width:420.300000px;}
.wf{width:442.800000px;}
.wc{width:443.520000px;}
.w10{width:470.160000px;}
.wd{width:471.960000px;}
.w12{width:679.680000px;}
.w11{width:693.180000px;}
.w5{width:818.640000px;}
.wa{width:835.380000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x75{left:-1.590000px;}
.x0{left:0.000000px;}
.xc{left:4.350000px;}
.x27{left:10.365000px;}
.x4a{left:12.780000px;}
.x3d{left:14.040000px;}
.x41{left:16.812000px;}
.x28{left:26.640000px;}
.x42{left:35.820000px;}
.x4d{left:36.975000px;}
.x1c{left:38.520000px;}
.x5d{left:40.140000px;}
.x46{left:41.796000px;}
.xa{left:43.019979px;}
.x40{left:44.820000px;}
.x1b{left:47.556000px;}
.x43{left:49.824000px;}
.x44{left:50.832000px;}
.x45{left:51.840000px;}
.x3f{left:53.820000px;}
.x47{left:54.828000px;}
.x5e{left:56.052000px;}
.x1a{left:59.256000px;}
.x49{left:61.812000px;}
.x1f{left:64.115979px;}
.x3{left:65.303979px;}
.x4{left:66.923979px;}
.x4e{left:69.195000px;}
.x19{left:70.920000px;}
.x48{left:76.860000px;}
.x51{left:78.090000px;}
.x68{left:80.783979px;}
.x8c{left:92.303979px;}
.x54{left:97.920000px;}
.x79{left:99.143979px;}
.x1{left:101.951979px;}
.x29{left:105.696000px;}
.x72{left:108.431979px;}
.x7f{left:117.899979px;}
.x5a{left:119.303979px;}
.x3e{left:120.348000px;}
.x4b{left:122.148000px;}
.x7e{left:132.479979px;}
.x21{left:142.740000px;}
.x59{left:154.230000px;}
.xb{left:160.560000px;}
.x35{left:161.819979px;}
.x62{left:172.109979px;}
.x34{left:176.399979px;}
.x33{left:182.129979px;}
.x5f{left:197.924979px;}
.xd{left:214.380000px;}
.x2a{left:255.780000px;}
.x22{left:262.440000px;}
.xe{left:266.940000px;}
.x63{left:271.109979px;}
.xf{left:322.380000px;}
.x81{left:327.089979px;}
.x2{left:352.109979px;}
.x2b{left:358.020000px;}
.x3c{left:359.820000px;}
.x1d{left:362.160000px;}
.x80{left:363.809979px;}
.x2f{left:366.045000px;}
.x6f{left:368.099979px;}
.x30{left:372.989979px;}
.x23{left:374.220000px;}
.x10{left:376.380000px;}
.x53{left:378.540000px;}
.x8a{left:385.559979px;}
.x1e{left:392.294979px;}
.x8b{left:393.479979px;}
.x37{left:399.569979px;}
.x11{left:430.380000px;}
.x36{left:436.289979px;}
.x69{left:447.839979px;}
.x56{left:450.000000px;}
.x78{left:461.909979px;}
.x74{left:463.500000px;}
.x2c{left:468.975000px;}
.x70{left:475.739979px;}
.x12{left:482.760000px;}
.x24{left:489.960000px;}
.x2d{left:495.255000px;}
.x71{left:509.579979px;}
.x67{left:513.794979px;}
.x65{left:524.774979px;}
.x13{left:538.200000px;}
.x32{left:542.339979px;}
.x31{left:553.574979px;}
.x6a{left:564.119979px;}
.x3b{left:571.109979px;}
.x76{left:586.620000px;}
.x14{left:593.640000px;}
.x5c{left:599.474979px;}
.x77{left:603.360000px;}
.x84{left:608.039979px;}
.x25{left:609.660000px;}
.x83{left:619.559979px;}
.x82{left:627.299979px;}
.x15{left:644.760000px;}
.x6d{left:651.779979px;}
.x73{left:675.209979px;}
.x3a{left:676.799979px;}
.x6e{left:678.779979px;}
.x39{left:688.319979px;}
.x16{left:694.980000px;}
.x38{left:696.059979px;}
.x7a{left:703.409979px;}
.x6b{left:730.904979px;}
.x26{left:738.360000px;}
.x2e{left:740.550000px;}
.x7b{left:743.909979px;}
.x17{left:748.260000px;}
.x66{left:754.589979px;}
.x7c{left:757.409979px;}
.x4c{left:759.600000px;}
.x7d{left:797.909979px;}
.x18{left:808.020000px;}
.x55{left:823.320000px;}
.x52{left:834.839979px;}
.x60{left:847.589979px;}
.x87{left:862.769979px;}
.x88{left:870.689979px;}
.x6c{left:872.024979px;}
.x8{left:883.949979px;}
.x58{left:892.800000px;}
.x20{left:898.889979px;}
.x9{left:917.789979px;}
.x89{left:918.794979px;}
.x50{left:920.160000px;}
.x85{left:926.309979px;}
.x86{left:929.189979px;}
.x61{left:1028.804979px;}
.x6{left:1103.369979px;}
.x7{left:1107.644979px;}
.x4f{left:1260.900000px;}
.x5b{left:1265.399979px;}
.x5{left:1269.539979px;}
.x57{left:1272.780000px;}
.x64{left:1336.139979px;}
@media print{
.v3{vertical-align:-1.536000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.760000pt;}
.v1{vertical-align:8.576000pt;}
.v2{vertical-align:85.866667pt;}
.ls7{letter-spacing:-5.813333pt;}
.lsa{letter-spacing:-0.326933pt;}
.ls2d{letter-spacing:-0.289067pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.232533pt;}
.ls1c{letter-spacing:-0.204267pt;}
.ls2b{letter-spacing:-0.198933pt;}
.ls24{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.104533pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls2f{letter-spacing:-0.046080pt;}
.ls31{letter-spacing:-0.037867pt;}
.ls8{letter-spacing:-0.033280pt;}
.ls20{letter-spacing:-0.024960pt;}
.ls6{letter-spacing:-0.018933pt;}
.ls1e{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.023573pt;}
.ls21{letter-spacing:0.024960pt;}
.ls32{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.094933pt;}
.ls30{letter-spacing:0.108800pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.218133pt;}
.ls11{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.289067pt;}
.ls13{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:41.889280pt;}
.ls25{letter-spacing:56.755200pt;}
.ls26{letter-spacing:56.800000pt;}
.ls28{letter-spacing:58.675200pt;}
.ls27{letter-spacing:58.720000pt;}
.ls1{letter-spacing:65.952000pt;}
.ls3{letter-spacing:67.923200pt;}
.ls2{letter-spacing:67.968000pt;}
.ls29{letter-spacing:69.715200pt;}
.ls2a{letter-spacing:69.760000pt;}
.ls12{letter-spacing:82.976000pt;}
.ls23{letter-spacing:86.675200pt;}
.ls5{letter-spacing:86.720000pt;}
.ls2e{letter-spacing:87.936000pt;}
.ls16{letter-spacing:94.442667pt;}
.ls14{letter-spacing:94.453333pt;}
.lsf{letter-spacing:94.858667pt;}
.ls15{letter-spacing:108.256000pt;}
.ls10{letter-spacing:109.162667pt;}
.ls19{letter-spacing:110.355200pt;}
.ls17{letter-spacing:110.400000pt;}
.ls1d{letter-spacing:110.560000pt;}
.ws0{word-spacing:-65.332224pt;}
.ws21{word-spacing:-65.296640pt;}
.ws20{word-spacing:-59.247360pt;}
.ws2b{word-spacing:-48.928000pt;}
.ws2d{word-spacing:-47.504640pt;}
.ws36{word-spacing:-41.744427pt;}
.ws33{word-spacing:-41.490944pt;}
.ws18{word-spacing:-41.455360pt;}
.ws3{word-spacing:-37.007360pt;}
.ws31{word-spacing:-35.619584pt;}
.ws2f{word-spacing:-35.584000pt;}
.ws2c{word-spacing:-32.559360pt;}
.ws2a{word-spacing:-31.136000pt;}
.ws22{word-spacing:-29.748224pt;}
.ws32{word-spacing:-29.712640pt;}
.ws1{word-spacing:-28.146944pt;}
.ws17{word-spacing:-26.723584pt;}
.ws5{word-spacing:-26.688000pt;}
.ws3d{word-spacing:-23.698944pt;}
.ws38{word-spacing:-23.663360pt;}
.ws26{word-spacing:-20.833280pt;}
.ws9{word-spacing:-20.816640pt;}
.ws1f{word-spacing:-20.791680pt;}
.ws25{word-spacing:-20.783360pt;}
.wsf{word-spacing:-17.827584pt;}
.wsc{word-spacing:-17.792000pt;}
.ws30{word-spacing:-2.449920pt;}
.ws35{word-spacing:-0.718165pt;}
.ws1a{word-spacing:-0.556800pt;}
.ws37{word-spacing:-0.553728pt;}
.ws7{word-spacing:-0.476672pt;}
.ws6{word-spacing:-0.391253pt;}
.ws8{word-spacing:-0.303360pt;}
.ws4{word-spacing:-0.215211pt;}
.ws2e{word-spacing:-0.149333pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.618667pt;}
.ws3a{word-spacing:0.623360pt;}
.ws27{word-spacing:0.629333pt;}
.ws1e{word-spacing:0.651947pt;}
.ws3b{word-spacing:0.673280pt;}
.ws3c{word-spacing:0.842667pt;}
.ws39{word-spacing:1.006933pt;}
.ws29{word-spacing:1.237333pt;}
.ws34{word-spacing:1.771307pt;}
.ws1c{word-spacing:1.948160pt;}
.ws1d{word-spacing:1.989888pt;}
.ws1b{word-spacing:2.043947pt;}
.ws11{word-spacing:46.592000pt;}
.ws16{word-spacing:57.728000pt;}
.ws12{word-spacing:58.112000pt;}
.wse{word-spacing:58.154667pt;}
.wsd{word-spacing:58.485333pt;}
.ws13{word-spacing:71.701333pt;}
.ws14{word-spacing:71.925333pt;}
.ws15{word-spacing:72.032000pt;}
.ws10{word-spacing:72.832000pt;}
.wsa{word-spacing:116.735573pt;}
.wsb{word-spacing:135.402240pt;}
.ws23{word-spacing:797.136640pt;}
.ws24{word-spacing:805.189973pt;}
.ws19{word-spacing:963.269973pt;}
._8{margin-left:-3.144960pt;}
._3{margin-left:-1.842304pt;}
._0{margin-left:-0.940032pt;}
._1{width:1.054080pt;}
._4{width:2.272555pt;}
._2{width:3.294080pt;}
._11{width:18.163584pt;}
._7{width:19.417003pt;}
._13{width:25.197653pt;}
._14{width:26.188800pt;}
._6{width:28.402304pt;}
._f{width:42.632107pt;}
._12{width:43.675947pt;}
._10{width:45.058133pt;}
._b{width:62.642091pt;}
._a{width:94.800427pt;}
._9{width:105.410133pt;}
._d{width:128.252587pt;}
._e{width:145.383253pt;}
._c{width:1153.694891pt;}
._5{width:1168.414891pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:53.120000pt;}
.fs12{font-size:64.000000pt;}
.fs13{font-size:64.128000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:75.008000pt;}
.fs1a{font-size:85.120000pt;}
.fsc{font-size:85.248000pt;}
.fs20{font-size:89.723461pt;}
.fsa{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs3{font-size:101.120000pt;}
.fs4{font-size:101.248000pt;}
.fs1f{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fs18{font-size:112.000000pt;}
.fs19{font-size:112.128000pt;}
.fs2{font-size:117.120000pt;}
.fs1e{font-size:128.000000pt;}
.fs1d{font-size:128.128000pt;}
.fs7{font-size:133.120000pt;}
.fs8{font-size:133.248000pt;}
.fs6{font-size:138.880000pt;}
.fs14{font-size:149.120000pt;}
.fs15{font-size:149.248000pt;}
.fs17{font-size:170.880000pt;}
.fs1c{font-size:176.000000pt;}
.fs1b{font-size:176.128000pt;}
.fs16{font-size:192.128000pt;}
.fs10{font-size:213.120000pt;}
.fs11{font-size:213.248000pt;}
.fs1{font-size:234.880000pt;}
.fs0{font-size:235.008000pt;}
.y13c{bottom:-8.933333pt;}
.y0{bottom:0.000000pt;}
.y13a{bottom:0.986667pt;}
.y6f{bottom:5.413333pt;}
.ya9{bottom:5.440000pt;}
.y8d{bottom:5.506667pt;}
.yc5{bottom:5.533333pt;}
.y2d{bottom:6.013333pt;}
.y2b{bottom:6.053333pt;}
.y2f{bottom:6.080000pt;}
.y32{bottom:6.106667pt;}
.y3a{bottom:6.146667pt;}
.y13e{bottom:9.786667pt;}
.y71{bottom:11.840000pt;}
.yfd{bottom:17.626667pt;}
.ya{bottom:19.200000pt;}
.yfc{bottom:19.906667pt;}
.yc{bottom:24.448000pt;}
.y17{bottom:26.592000pt;}
.y9{bottom:28.800000pt;}
.yb{bottom:34.048000pt;}
.ya6{bottom:39.872000pt;}
.y8a{bottom:39.904000pt;}
.yc1{bottom:40.000000pt;}
.y5e{bottom:44.186667pt;}
.y46{bottom:56.186667pt;}
.ydc{bottom:57.786667pt;}
.ya5{bottom:57.826667pt;}
.y89{bottom:57.920000pt;}
.yc0{bottom:58.146667pt;}
.yc3{bottom:64.800000pt;}
.y12f{bottom:67.424000pt;}
.y11a{bottom:67.776000pt;}
.y15f{bottom:69.824000pt;}
.yef{bottom:70.624000pt;}
.y5c{bottom:73.053333pt;}
.y8{bottom:74.272000pt;}
.ydb{bottom:75.746667pt;}
.ya4{bottom:75.773333pt;}
.y88{bottom:75.973333pt;}
.ybf{bottom:76.293333pt;}
.y70{bottom:87.840000pt;}
.y49{bottom:88.224000pt;}
.y182{bottom:90.464000pt;}
.yda{bottom:93.666667pt;}
.ya3{bottom:93.733333pt;}
.y87{bottom:93.986667pt;}
.ybe{bottom:94.466667pt;}
.y5b{bottom:94.533333pt;}
.yf2{bottom:94.848000pt;}
.y29{bottom:97.120000pt;}
.y18b{bottom:100.224000pt;}
.y7{bottom:101.632000pt;}
.y144{bottom:103.808000pt;}
.y137{bottom:104.416000pt;}
.y15e{bottom:105.184000pt;}
.y14d{bottom:105.312000pt;}
.y48{bottom:110.624000pt;}
.yd9{bottom:111.586667pt;}
.ya2{bottom:111.680000pt;}
.y86{bottom:112.000000pt;}
.y10a{bottom:112.096000pt;}
.y16{bottom:112.192000pt;}
.ybd{bottom:112.613333pt;}
.y119{bottom:113.056000pt;}
.y181{bottom:113.504000pt;}
.y5a{bottom:116.000000pt;}
.y3c{bottom:120.160000pt;}
.y18a{bottom:123.264000pt;}
.yf4{bottom:123.493333pt;}
.y105{bottom:123.584000pt;}
.y129{bottom:124.768000pt;}
.yd8{bottom:129.506667pt;}
.ya1{bottom:129.626667pt;}
.y85{bottom:130.013333pt;}
.y169{bottom:130.688000pt;}
.ybc{bottom:130.786667pt;}
.yfe{bottom:131.136000pt;}
.y15d{bottom:133.986667pt;}
.y180{bottom:136.546667pt;}
.yf3{bottom:138.080000pt;}
.y54{bottom:138.240000pt;}
.y167{bottom:142.266667pt;}
.y53{bottom:144.000000pt;}
.y66{bottom:144.666667pt;}
.y189{bottom:146.306667pt;}
.yd7{bottom:147.453333pt;}
.ya0{bottom:147.586667pt;}
.y84{bottom:148.026667pt;}
.ybb{bottom:148.933333pt;}
.y136{bottom:150.013333pt;}
.y47{bottom:150.213333pt;}
.y143{bottom:151.333333pt;}
.y128{bottom:153.733333pt;}
.y5f{bottom:156.960000pt;}
.y14c{bottom:157.146667pt;}
.y6{bottom:157.306667pt;}
.y168{bottom:157.573333pt;}
.yee{bottom:160.506667pt;}
.y15{bottom:161.666667pt;}
.yd6{bottom:165.373333pt;}
.ye6{bottom:165.506667pt;}
.y9f{bottom:165.533333pt;}
.y83{bottom:166.053333pt;}
.yf5{bottom:166.720000pt;}
.yba{bottom:167.106667pt;}
.y104{bottom:168.413333pt;}
.y15c{bottom:170.653333pt;}
.y65{bottom:171.546667pt;}
.y110{bottom:172.186667pt;}
.y115{bottom:172.666667pt;}
.y17f{bottom:172.893333pt;}
.y188{bottom:182.653333pt;}
.yd5{bottom:183.293333pt;}
.ye5{bottom:183.453333pt;}
.y9e{bottom:183.493333pt;}
.y82{bottom:184.066667pt;}
.y61{bottom:184.133333pt;}
.yb9{bottom:185.253333pt;}
.y55{bottom:185.986667pt;}
.y166{bottom:187.106667pt;}
.y127{bottom:187.493333pt;}
.y5{bottom:188.986667pt;}
.yfb{bottom:190.880000pt;}
.y3d{bottom:191.493333pt;}
.y17e{bottom:195.933333pt;}
.yd4{bottom:201.213333pt;}
.y9d{bottom:201.413333pt;}
.y81{bottom:202.080000pt;}
.y5d{bottom:202.240000pt;}
.y135{bottom:203.173333pt;}
.yb8{bottom:203.386667pt;}
.y15b{bottom:205.213333pt;}
.yed{bottom:205.346667pt;}
.y142{bottom:206.720000pt;}
.y14b{bottom:208.866667pt;}
.yf6{bottom:209.986667pt;}
.y14{bottom:210.946667pt;}
.y103{bottom:213.213333pt;}
.y17d{bottom:218.973333pt;}
.yd3{bottom:219.173333pt;}
.y9c{bottom:219.360000pt;}
.y3e{bottom:219.706667pt;}
.y80{bottom:220.093333pt;}
.y4c{bottom:220.733333pt;}
.y126{bottom:221.280000pt;}
.yb7{bottom:221.573333pt;}
.y16b{bottom:223.066667pt;}
.y22{bottom:228.893333pt;}
.y56{bottom:233.733333pt;}
.y45{bottom:234.880000pt;}
.y68{bottom:235.906667pt;}
.yd2{bottom:237.093333pt;}
.y9b{bottom:237.306667pt;}
.y7f{bottom:238.106667pt;}
.yb6{bottom:239.706667pt;}
.y187{bottom:242.013333pt;}
.y165{bottom:245.346667pt;}
.y3f{bottom:247.933333pt;}
.y4b{bottom:249.533333pt;}
.y16a{bottom:249.946667pt;}
.y15a{bottom:251.933333pt;}
.yf7{bottom:253.213333pt;}
.yd1{bottom:255.013333pt;}
.y125{bottom:255.040000pt;}
.y9a{bottom:255.266667pt;}
.y17c{bottom:255.453333pt;}
.y7e{bottom:256.133333pt;}
.y134{bottom:256.293333pt;}
.y21{bottom:257.693333pt;}
.yb5{bottom:257.893333pt;}
.y102{bottom:258.013333pt;}
.y108{bottom:259.426667pt;}
.y13{bottom:260.226667pt;}
.y14a{bottom:260.546667pt;}
.y141{bottom:262.240000pt;}
.y67{bottom:262.786667pt;}
.yec{bottom:263.426667pt;}
.y4{bottom:264.986667pt;}
.y6c{bottom:270.653333pt;}
.yd0{bottom:272.933333pt;}
.y99{bottom:273.213333pt;}
.y7d{bottom:274.146667pt;}
.yb4{bottom:276.026667pt;}
.y40{bottom:276.160000pt;}
.y17b{bottom:278.493333pt;}
.y57{bottom:281.440000pt;}
.y111{bottom:285.693333pt;}
.y20{bottom:286.493333pt;}
.y159{bottom:287.453333pt;}
.y124{bottom:288.960000pt;}
.y164{bottom:290.146667pt;}
.ycf{bottom:290.880000pt;}
.ye4{bottom:291.133333pt;}
.y98{bottom:291.173333pt;}
.y7c{bottom:292.160000pt;}
.yb3{bottom:294.213333pt;}
.yf8{bottom:296.480000pt;}
.y17a{bottom:301.573333pt;}
.y16e{bottom:303.613333pt;}
.y41{bottom:304.413333pt;}
.y4a{bottom:307.133333pt;}
.yeb{bottom:308.226667pt;}
.yce{bottom:308.800000pt;}
.ye3{bottom:309.093333pt;}
.y97{bottom:309.120000pt;}
.y133{bottom:309.413333pt;}
.y12{bottom:309.693333pt;}
.y7b{bottom:310.173333pt;}
.yb2{bottom:312.346667pt;}
.y1f{bottom:315.333333pt;}
.ya8{bottom:317.440000pt;}
.y107{bottom:317.506667pt;}
.y140{bottom:317.626667pt;}
.y8c{bottom:320.320000pt;}
.y123{bottom:322.720000pt;}
.y158{bottom:323.013333pt;}
.y6e{bottom:323.840000pt;}
.y6b{bottom:324.293333pt;}
.yc4{bottom:326.720000pt;}
.ydd{bottom:327.040000pt;}
.y96{bottom:327.066667pt;}
.y7a{bottom:328.186667pt;}
.y3{bottom:328.346667pt;}
.y58{bottom:329.186667pt;}
.y16d{bottom:330.333333pt;}
.yb1{bottom:330.493333pt;}
.y42{bottom:332.640000pt;}
.y163{bottom:334.973333pt;}
.y28{bottom:335.933333pt;}
.y179{bottom:337.893333pt;}
.yf9{bottom:339.706667pt;}
.y1e{bottom:344.133333pt;}
.ycd{bottom:344.640000pt;}
.ye2{bottom:344.986667pt;}
.y95{bottom:345.026667pt;}
.y79{bottom:346.213333pt;}
.yb0{bottom:348.666667pt;}
.y6a{bottom:351.013333pt;}
.y122{bottom:351.706667pt;}
.y157{bottom:351.813333pt;}
.y132{bottom:355.040000pt;}
.y16c{bottom:357.213333pt;}
.y11{bottom:358.973333pt;}
.y43{bottom:360.866667pt;}
.y178{bottom:360.933333pt;}
.ycc{bottom:362.586667pt;}
.ye1{bottom:362.946667pt;}
.y94{bottom:362.973333pt;}
.y149{bottom:364.093333pt;}
.y78{bottom:364.226667pt;}
.y27{bottom:364.773333pt;}
.y13f{bottom:365.146667pt;}
.yea{bottom:366.333333pt;}
.yaf{bottom:366.813333pt;}
.y1d{bottom:372.933333pt;}
.y101{bottom:374.373333pt;}
.y3b{bottom:374.880000pt;}
.y106{bottom:375.586667pt;}
.y59{bottom:376.933333pt;}
.y69{bottom:377.893333pt;}
.y2c{bottom:379.360000pt;}
.y162{bottom:379.773333pt;}
.ycb{bottom:380.506667pt;}
.y156{bottom:380.613333pt;}
.y93{bottom:380.893333pt;}
.y77{bottom:382.240000pt;}
.yfa{bottom:382.973333pt;}
.y177{bottom:383.973333pt;}
.y152{bottom:384.293333pt;}
.yae{bottom:384.986667pt;}
.y52{bottom:387.840000pt;}
.y44{bottom:389.093333pt;}
.y12e{bottom:389.120000pt;}
.y2{bottom:391.706667pt;}
.y26{bottom:393.573333pt;}
.y31{bottom:394.720000pt;}
.y30{bottom:396.160000pt;}
.y11f{bottom:396.293333pt;}
.y171{bottom:396.320000pt;}
.y186{bottom:397.253333pt;}
.yca{bottom:398.426667pt;}
.y112{bottom:398.746667pt;}
.y92{bottom:398.853333pt;}
.y2e{bottom:399.680000pt;}
.y76{bottom:400.253333pt;}
.y1c{bottom:401.733333pt;}
.yad{bottom:403.133333pt;}
.y120{bottom:405.786667pt;}
.y131{bottom:408.160000pt;}
.y10{bottom:408.253333pt;}
.y2a{bottom:408.960000pt;}
.y121{bottom:409.693333pt;}
.y13d{bottom:410.880000pt;}
.y50{bottom:411.520000pt;}
.y12d{bottom:414.720000pt;}
.y148{bottom:415.773333pt;}
.yc9{bottom:416.346667pt;}
.y91{bottom:416.800000pt;}
.y155{bottom:417.253333pt;}
.y10c{bottom:417.533333pt;}
.y75{bottom:418.266667pt;}
.y139{bottom:419.680000pt;}
.y176{bottom:420.293333pt;}
.y190{bottom:420.933333pt;}
.yac{bottom:421.306667pt;}
.y25{bottom:422.373333pt;}
.y170{bottom:423.040000pt;}
.y33{bottom:423.680000pt;}
.ye9{bottom:424.573333pt;}
.y11e{bottom:425.120000pt;}
.y13b{bottom:429.600000pt;}
.y1b{bottom:430.533333pt;}
.y51{bottom:432.160000pt;}
.y100{bottom:432.453333pt;}
.yc8{bottom:434.306667pt;}
.ye0{bottom:434.720000pt;}
.y90{bottom:434.746667pt;}
.y151{bottom:436.160000pt;}
.y74{bottom:436.293333pt;}
.y34{bottom:438.560000pt;}
.yab{bottom:439.453333pt;}
.y12c{bottom:440.320000pt;}
.y175{bottom:443.360000pt;}
.y6d{bottom:446.400000pt;}
.y18f{bottom:446.560000pt;}
.y16f{bottom:449.946667pt;}
.y154{bottom:451.840000pt;}
.yc7{bottom:452.226667pt;}
.y118{bottom:452.613333pt;}
.ydf{bottom:452.666667pt;}
.y8f{bottom:452.706667pt;}
.y11d{bottom:453.920000pt;}
.y73{bottom:454.306667pt;}
.y1{bottom:455.106667pt;}
.y10d{bottom:455.933333pt;}
.y185{bottom:456.800000pt;}
.y36{bottom:457.600000pt;}
.yf{bottom:458.053333pt;}
.y1a{bottom:459.360000pt;}
.y10b{bottom:462.333333pt;}
.y12b{bottom:465.946667pt;}
.y174{bottom:466.400000pt;}
.y147{bottom:467.653333pt;}
.ye8{bottom:469.413333pt;}
.y37{bottom:469.600000pt;}
.yc6{bottom:470.146667pt;}
.yde{bottom:470.626667pt;}
.y8e{bottom:470.653333pt;}
.y35{bottom:471.680000pt;}
.y18e{bottom:472.160000pt;}
.y72{bottom:472.320000pt;}
.y150{bottom:474.560000pt;}
.yaa{bottom:475.773333pt;}
.y184{bottom:479.840000pt;}
.y24{bottom:480.000000pt;}
.y117{bottom:481.413333pt;}
.y11c{bottom:482.720000pt;}
.y4e{bottom:485.440000pt;}
.y19{bottom:488.160000pt;}
.yff{bottom:490.720000pt;}
.y12a{bottom:491.546667pt;}
.y38{bottom:493.280000pt;}
.y39{bottom:497.760000pt;}
.y130{bottom:499.333333pt;}
.y153{bottom:499.680000pt;}
.y173{bottom:502.880000pt;}
.ya7{bottom:507.333333pt;}
.y4d{bottom:508.160000pt;}
.ye{bottom:508.773333pt;}
.y23{bottom:508.800000pt;}
.y8b{bottom:509.533333pt;}
.y116{bottom:510.213333pt;}
.y4f{bottom:510.880000pt;}
.y18d{bottom:511.040000pt;}
.y11b{bottom:511.520000pt;}
.yc2{bottom:512.453333pt;}
.y138{bottom:512.826667pt;}
.ye7{bottom:514.213333pt;}
.y183{bottom:516.160000pt;}
.y18{bottom:516.960000pt;}
.yf1{bottom:523.173333pt;}
.y109{bottom:524.773333pt;}
.y18c{bottom:536.640000pt;}
.y62{bottom:538.400000pt;}
.y172{bottom:539.200000pt;}
.yf0{bottom:545.573333pt;}
.y10f{bottom:585.506667pt;}
.y64{bottom:589.733333pt;}
.y161{bottom:595.493333pt;}
.y114{bottom:596.546667pt;}
.y14f{bottom:604.613333pt;}
.y146{bottom:606.053333pt;}
.yd{bottom:616.773333pt;}
.y10e{bottom:626.306667pt;}
.y113{bottom:644.253333pt;}
.y63{bottom:647.333333pt;}
.y14e{bottom:648.133333pt;}
.y60{bottom:648.866667pt;}
.y145{bottom:649.093333pt;}
.y160{bottom:650.693333pt;}
.h2e{height:5.120000pt;}
.h19{height:22.720000pt;}
.h1d{height:22.880000pt;}
.h10{height:25.600000pt;}
.hf{height:25.760000pt;}
.h6{height:33.375000pt;}
.h2d{height:33.600000pt;}
.h2f{height:42.400000pt;}
.ha{height:55.402500pt;}
.hb{height:63.978500pt;}
.h22{height:64.898438pt;}
.h23{height:65.009375pt;}
.h1a{height:66.750000pt;}
.h1c{height:66.883500pt;}
.h13{height:67.128750pt;}
.h38{height:75.616550pt;}
.he{height:78.097500pt;}
.h11{height:78.231000pt;}
.h26{height:83.857500pt;}
.h29{height:88.777500pt;}
.h37{height:88.911000pt;}
.h35{height:95.816250pt;}
.hc{height:100.125000pt;}
.hd{height:100.258500pt;}
.h4{height:105.465000pt;}
.h5{height:105.598500pt;}
.h34{height:111.472500pt;}
.h16{height:111.606000pt;}
.h31{height:114.864750pt;}
.h27{height:116.812500pt;}
.h28{height:116.946000pt;}
.h3{height:122.152500pt;}
.h32{height:133.500000pt;}
.h33{height:133.633500pt;}
.h36{height:133.798500pt;}
.h8{height:138.840000pt;}
.h9{height:138.973500pt;}
.h7{height:144.847500pt;}
.h1f{height:155.527500pt;}
.h20{height:155.661000pt;}
.h2c{height:157.781250pt;}
.h30{height:157.896000pt;}
.h15{height:163.964167pt;}
.h25{height:178.222500pt;}
.h2b{height:183.562500pt;}
.h2a{height:183.696000pt;}
.h24{height:200.383500pt;}
.h17{height:222.277500pt;}
.h18{height:222.411000pt;}
.h2{height:244.972500pt;}
.h1{height:245.106000pt;}
.h14{height:400.160000pt;}
.h21{height:407.200000pt;}
.h12{height:412.320000pt;}
.h1e{height:540.000000pt;}
.h1b{height:542.240000pt;}
.h0{height:720.000000pt;}
.w14{width:12.960000pt;}
.w2{width:18.400000pt;}
.w3{width:27.520000pt;}
.w4{width:28.800000pt;}
.wb{width:39.680000pt;}
.w6{width:79.040000pt;}
.w9{width:84.320000pt;}
.w7{width:89.600000pt;}
.w8{width:100.160000pt;}
.w13{width:107.520000pt;}
.w15{width:224.160000pt;}
.we{width:373.600000pt;}
.wf{width:393.600000pt;}
.wc{width:394.240000pt;}
.w10{width:417.920000pt;}
.wd{width:419.520000pt;}
.w12{width:604.160000pt;}
.w11{width:616.160000pt;}
.w5{width:727.680000pt;}
.wa{width:742.560000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x75{left:-1.413333pt;}
.x0{left:0.000000pt;}
.xc{left:3.866667pt;}
.x27{left:9.213333pt;}
.x4a{left:11.360000pt;}
.x3d{left:12.480000pt;}
.x41{left:14.944000pt;}
.x28{left:23.680000pt;}
.x42{left:31.840000pt;}
.x4d{left:32.866667pt;}
.x1c{left:34.240000pt;}
.x5d{left:35.680000pt;}
.x46{left:37.152000pt;}
.xa{left:38.239981pt;}
.x40{left:39.840000pt;}
.x1b{left:42.272000pt;}
.x43{left:44.288000pt;}
.x44{left:45.184000pt;}
.x45{left:46.080000pt;}
.x3f{left:47.840000pt;}
.x47{left:48.736000pt;}
.x5e{left:49.824000pt;}
.x1a{left:52.672000pt;}
.x49{left:54.944000pt;}
.x1f{left:56.991981pt;}
.x3{left:58.047981pt;}
.x4{left:59.487981pt;}
.x4e{left:61.506667pt;}
.x19{left:63.040000pt;}
.x48{left:68.320000pt;}
.x51{left:69.413333pt;}
.x68{left:71.807981pt;}
.x8c{left:82.047981pt;}
.x54{left:87.040000pt;}
.x79{left:88.127981pt;}
.x1{left:90.623981pt;}
.x29{left:93.952000pt;}
.x72{left:96.383981pt;}
.x7f{left:104.799981pt;}
.x5a{left:106.047981pt;}
.x3e{left:106.976000pt;}
.x4b{left:108.576000pt;}
.x7e{left:117.759981pt;}
.x21{left:126.880000pt;}
.x59{left:137.093333pt;}
.xb{left:142.720000pt;}
.x35{left:143.839981pt;}
.x62{left:152.986648pt;}
.x34{left:156.799981pt;}
.x33{left:161.893314pt;}
.x5f{left:175.933314pt;}
.xd{left:190.560000pt;}
.x2a{left:227.360000pt;}
.x22{left:233.280000pt;}
.xe{left:237.280000pt;}
.x63{left:240.986648pt;}
.xf{left:286.560000pt;}
.x81{left:290.746648pt;}
.x2{left:312.986648pt;}
.x2b{left:318.240000pt;}
.x3c{left:319.840000pt;}
.x1d{left:321.920000pt;}
.x80{left:323.386648pt;}
.x2f{left:325.373333pt;}
.x6f{left:327.199981pt;}
.x30{left:331.546648pt;}
.x23{left:332.640000pt;}
.x10{left:334.560000pt;}
.x53{left:336.480000pt;}
.x8a{left:342.719981pt;}
.x1e{left:348.706648pt;}
.x8b{left:349.759981pt;}
.x37{left:355.173314pt;}
.x11{left:382.560000pt;}
.x36{left:387.813314pt;}
.x69{left:398.079981pt;}
.x56{left:400.000000pt;}
.x78{left:410.586648pt;}
.x74{left:412.000000pt;}
.x2c{left:416.866667pt;}
.x70{left:422.879981pt;}
.x12{left:429.120000pt;}
.x24{left:435.520000pt;}
.x2d{left:440.226667pt;}
.x71{left:452.959981pt;}
.x67{left:456.706648pt;}
.x65{left:466.466648pt;}
.x13{left:478.400000pt;}
.x32{left:482.079981pt;}
.x31{left:492.066648pt;}
.x6a{left:501.439981pt;}
.x3b{left:507.653314pt;}
.x76{left:521.440000pt;}
.x14{left:527.680000pt;}
.x5c{left:532.866648pt;}
.x77{left:536.320000pt;}
.x84{left:540.479981pt;}
.x25{left:541.920000pt;}
.x83{left:550.719981pt;}
.x82{left:557.599981pt;}
.x15{left:573.120000pt;}
.x6d{left:579.359981pt;}
.x73{left:600.186648pt;}
.x3a{left:601.599981pt;}
.x6e{left:603.359981pt;}
.x39{left:611.839981pt;}
.x16{left:617.760000pt;}
.x38{left:618.719981pt;}
.x7a{left:625.253314pt;}
.x6b{left:649.693314pt;}
.x26{left:656.320000pt;}
.x2e{left:658.266667pt;}
.x7b{left:661.253314pt;}
.x17{left:665.120000pt;}
.x66{left:670.746648pt;}
.x7c{left:673.253314pt;}
.x4c{left:675.200000pt;}
.x7d{left:709.253314pt;}
.x18{left:718.240000pt;}
.x55{left:731.840000pt;}
.x52{left:742.079981pt;}
.x60{left:753.413314pt;}
.x87{left:766.906648pt;}
.x88{left:773.946648pt;}
.x6c{left:775.133314pt;}
.x8{left:785.733314pt;}
.x58{left:793.600000pt;}
.x20{left:799.013314pt;}
.x9{left:815.813314pt;}
.x89{left:816.706648pt;}
.x50{left:817.920000pt;}
.x85{left:823.386648pt;}
.x86{left:825.946648pt;}
.x61{left:914.493314pt;}
.x6{left:980.773314pt;}
.x7{left:984.573314pt;}
.x4f{left:1120.800000pt;}
.x5b{left:1124.799981pt;}
.x5{left:1128.479981pt;}
.x57{left:1131.360000pt;}
.x64{left:1187.679981pt;}
}




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