
    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_3d8abd5e4e2cc3843e409a1b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_59b9abb296c04633fc2a80fe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3240b6c45dc5cb53414adbae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.237305;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_18ab094539c7e7fab2048178.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9af7d031cf0c3f69f5757c63.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1c522c02df69fb12a27397f0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9f7aa5744cf4fff0fa66346b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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);}
.v2{vertical-align:-29.964000px;}
.v4{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.887600px;}
.v7{vertical-align:14.982000px;}
.v6{vertical-align:15.988800px;}
.v5{vertical-align:17.251800px;}
.v1{vertical-align:29.912400px;}
.ls26{letter-spacing:-4.692000px;}
.ls31{letter-spacing:-3.864000px;}
.ls2e{letter-spacing:-3.105000px;}
.ls36{letter-spacing:-2.760000px;}
.lsb{letter-spacing:-2.700000px;}
.ls34{letter-spacing:-2.691000px;}
.ls1d{letter-spacing:-2.553000px;}
.lsa{letter-spacing:-2.484000px;}
.ls1c{letter-spacing:-2.277000px;}
.ls32{letter-spacing:-2.139000px;}
.ls30{letter-spacing:-2.001000px;}
.ls33{letter-spacing:-1.998000px;}
.ls39{letter-spacing:-1.932000px;}
.ls37{letter-spacing:-1.863000px;}
.ls27{letter-spacing:-1.725000px;}
.ls1e{letter-spacing:-1.587000px;}
.ls2b{letter-spacing:-1.518000px;}
.ls3f{letter-spacing:-1.512000px;}
.ls2c{letter-spacing:-1.449000px;}
.ls8{letter-spacing:-1.404000px;}
.ls1b{letter-spacing:-1.380000px;}
.lsc{letter-spacing:-1.344000px;}
.ls29{letter-spacing:-1.242000px;}
.ls15{letter-spacing:-1.215000px;}
.ls2d{letter-spacing:-1.104000px;}
.lse{letter-spacing:-1.092000px;}
.ls3a{letter-spacing:-0.972000px;}
.ls1a{letter-spacing:-0.855000px;}
.lsd{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.780000px;}
.ls2a{letter-spacing:-0.690000px;}
.ls35{letter-spacing:-0.627000px;}
.ls16{letter-spacing:-0.600000px;}
.ls28{letter-spacing:-0.483000px;}
.ls7{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000300px;}
.ls24{letter-spacing:0.862500px;}
.ls25{letter-spacing:0.883200px;}
.lsf{letter-spacing:1.092000px;}
.ls21{letter-spacing:2.187300px;}
.ls12{letter-spacing:2.400000px;}
.ls1f{letter-spacing:2.691000px;}
.ls11{letter-spacing:4.200000px;}
.ls2{letter-spacing:5.460000px;}
.ls38{letter-spacing:5.475000px;}
.ls22{letter-spacing:5.589000px;}
.ls14{letter-spacing:5.760000px;}
.ls17{letter-spacing:5.850000px;}
.ls10{letter-spacing:5.880000px;}
.ls1{letter-spacing:6.000000px;}
.ls3b{letter-spacing:6.300000px;}
.ls3e{letter-spacing:6.867000px;}
.ls4{letter-spacing:7.260000px;}
.ls2f{letter-spacing:7.725000px;}
.ls0{letter-spacing:7.950000px;}
.ls3d{letter-spacing:8.190000px;}
.ls40{letter-spacing:8.325000px;}
.ls5{letter-spacing:8.400000px;}
.ls13{letter-spacing:8.550000px;}
.ls18{letter-spacing:8.763000px;}
.ls3c{letter-spacing:8.925000px;}
.ls23{letter-spacing:18.147000px;}
.ls20{letter-spacing:19.582200px;}
.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;}
}
.wsb{word-spacing:-30.348000px;}
.ws50{word-spacing:-30.000000px;}
.ws17{word-spacing:-29.625000px;}
.ws25{word-spacing:-29.475000px;}
.ws59{word-spacing:-29.400000px;}
.ws0{word-spacing:-29.025000px;}
.ws31{word-spacing:-28.800000px;}
.ws1d{word-spacing:-26.925000px;}
.ws4c{word-spacing:-26.550000px;}
.ws51{word-spacing:-25.893000px;}
.ws52{word-spacing:-24.570000px;}
.wsc{word-spacing:-24.192000px;}
.wsd{word-spacing:-23.976000px;}
.ws57{word-spacing:-22.860000px;}
.ws11{word-spacing:-22.740000px;}
.ws18{word-spacing:-22.620000px;}
.ws4e{word-spacing:-21.789000px;}
.ws19{word-spacing:-21.546000px;}
.wsf{word-spacing:-19.908000px;}
.ws10{word-spacing:-19.656000px;}
.ws1f{word-spacing:-19.389000px;}
.wse{word-spacing:-17.692884px;}
.ws1{word-spacing:-17.262000px;}
.ws1b{word-spacing:-17.043000px;}
.ws9{word-spacing:-16.860000px;}
.ws2a{word-spacing:-16.560000px;}
.ws2b{word-spacing:-16.353000px;}
.ws2f{word-spacing:-15.939000px;}
.ws20{word-spacing:-15.663000px;}
.ws2e{word-spacing:-15.594000px;}
.ws53{word-spacing:-15.561000px;}
.ws2c{word-spacing:-15.525000px;}
.ws23{word-spacing:-15.456000px;}
.ws29{word-spacing:-15.318000px;}
.ws4b{word-spacing:-15.180000px;}
.ws4d{word-spacing:-15.111000px;}
.ws32{word-spacing:-15.042000px;}
.ws34{word-spacing:-14.904000px;}
.ws5a{word-spacing:-14.820000px;}
.ws21{word-spacing:-14.766000px;}
.wsa{word-spacing:-14.640000px;}
.ws40{word-spacing:-14.559000px;}
.ws22{word-spacing:-14.490000px;}
.ws43{word-spacing:-14.352000px;}
.ws4a{word-spacing:-14.283000px;}
.ws30{word-spacing:-13.938000px;}
.ws41{word-spacing:-13.338000px;}
.ws33{word-spacing:-13.179000px;}
.ws28{word-spacing:-12.351000px;}
.ws42{word-spacing:-11.340000px;}
.ws1e{word-spacing:-11.303787px;}
.ws56{word-spacing:-10.320849px;}
.ws12{word-spacing:-9.829380px;}
.ws5{word-spacing:-8.400000px;}
.ws4{word-spacing:-7.260000px;}
.ws55{word-spacing:-6.300000px;}
.ws2{word-spacing:-6.000000px;}
.ws16{word-spacing:-4.200000px;}
.ws1a{word-spacing:-2.400000px;}
.ws15{word-spacing:-1.092000px;}
.ws26{word-spacing:-0.897000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.180000px;}
.ws7{word-spacing:0.240000px;}
.ws1c{word-spacing:0.600000px;}
.ws49{word-spacing:0.627000px;}
.ws13{word-spacing:0.780000px;}
.ws24{word-spacing:0.855000px;}
.ws2d{word-spacing:1.242000px;}
.ws14{word-spacing:1.344000px;}
.ws8{word-spacing:1.404000px;}
.ws58{word-spacing:1.512000px;}
.ws27{word-spacing:2.277000px;}
.ws4f{word-spacing:14.283000px;}
.ws44{word-spacing:117.000000px;}
.ws45{word-spacing:119.700000px;}
.ws48{word-spacing:120.180000px;}
.ws54{word-spacing:157.185000px;}
.ws46{word-spacing:159.600000px;}
.ws47{word-spacing:195.822000px;}
.ws37{word-spacing:581.502000px;}
.ws3b{word-spacing:633.822000px;}
.ws35{word-spacing:657.642000px;}
.ws39{word-spacing:663.144000px;}
.ws3f{word-spacing:669.600000px;}
.ws3c{word-spacing:676.206000px;}
.ws38{word-spacing:678.792000px;}
.ws3d{word-spacing:688.740000px;}
.ws3a{word-spacing:694.380000px;}
.ws3e{word-spacing:701.520000px;}
.ws36{word-spacing:711.420000px;}
._1a{margin-left:-14.247000px;}
._1f{margin-left:-11.613000px;}
._21{margin-left:-9.926700px;}
._c{margin-left:-8.502900px;}
._b{margin-left:-6.717600px;}
._8{margin-left:-5.268900px;}
._6{margin-left:-4.125900px;}
._4{margin-left:-2.765700px;}
._7{margin-left:-1.458300px;}
._1{width:1.056000px;}
._3{width:2.106000px;}
._5{width:3.174600px;}
._9{width:5.004000px;}
._2{width:6.318000px;}
._a{width:7.752000px;}
._10{width:8.994600px;}
._11{width:10.410000px;}
._f{width:12.348000px;}
._19{width:13.743000px;}
._15{width:14.904000px;}
._17{width:16.831500px;}
._16{width:17.890500px;}
._24{width:19.169400px;}
._1d{width:20.555100px;}
._20{width:22.268100px;}
._1c{width:23.448300px;}
._23{width:24.570900px;}
._1e{width:25.755600px;}
._39{width:27.119100px;}
._38{width:28.274100px;}
._43{width:29.286600px;}
._44{width:30.590100px;}
._27{width:32.913000px;}
._26{width:34.053600px;}
._29{width:35.566800px;}
._45{width:39.994800px;}
._3f{width:41.013000px;}
._13{width:43.445160px;}
._42{width:48.319500px;}
._3d{width:51.093000px;}
._41{width:54.734400px;}
._3a{width:58.653000px;}
._40{width:60.984000px;}
._3e{width:62.685000px;}
._14{width:85.554000px;}
._3c{width:102.501000px;}
._3b{width:104.211300px;}
._34{width:140.259600px;}
._2b{width:142.920000px;}
._36{width:151.560000px;}
._31{width:154.860000px;}
._2c{width:156.240000px;}
._37{width:158.700000px;}
._35{width:160.940400px;}
._30{width:168.000000px;}
._2e{width:169.080000px;}
._2f{width:170.580000px;}
._2d{width:172.140000px;}
._33{width:174.240000px;}
._32{width:176.100000px;}
._12{width:260.610000px;}
._28{width:373.158300px;}
._2a{width:488.992200px;}
._0{width:492.945000px;}
._1b{width:496.104000px;}
._d{width:578.400000px;}
._e{width:993.505200px;}
._22{width:996.625200px;}
._25{width:1000.675200px;}
._18{width:1002.655200px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fsf{font-size:36.729000px;}
.fsd{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:62.964000px;}
.fs3{font-size:63.000000px;}
.fsc{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fsb{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yfb{bottom:106.165350px;}
.y1e3{bottom:106.197600px;}
.y9f{bottom:106.234050px;}
.y11e{bottom:106.268400px;}
.y1c3{bottom:106.283850px;}
.y188{bottom:106.284750px;}
.yc2{bottom:106.287450px;}
.ye8{bottom:106.290450px;}
.y41{bottom:106.293450px;}
.y169{bottom:106.296450px;}
.y200{bottom:106.312800px;}
.y1c{bottom:106.324050px;}
.y66{bottom:106.332900px;}
.y19f{bottom:109.294950px;}
.y134{bottom:112.471350px;}
.y78{bottom:112.501350px;}
.yc1{bottom:123.540450px;}
.ye7{bottom:123.543450px;}
.y40{bottom:123.546450px;}
.y1ff{bottom:126.517800px;}
.y168{bottom:126.544950px;}
.y1e2{bottom:126.578100px;}
.yfa{bottom:126.589350px;}
.y1c2{bottom:126.656100px;}
.y9e{bottom:126.658050px;}
.y65{bottom:126.756900px;}
.y11d{bottom:127.002900px;}
.y187{bottom:127.502250px;}
.y133{bottom:132.722850px;}
.y146{bottom:132.725850px;}
.yc0{bottom:140.793450px;}
.ye6{bottom:140.796450px;}
.y1b{bottom:141.127050px;}
.y3f{bottom:143.794950px;}
.y1fe{bottom:146.737800px;}
.yf9{bottom:147.013350px;}
.y1c1{bottom:147.028350px;}
.y9d{bottom:147.082050px;}
.y64{bottom:147.180900px;}
.y11c{bottom:147.737400px;}
.y186{bottom:148.719750px;}
.y132{bottom:152.974350px;}
.y145{bottom:152.977350px;}
.y19e{bottom:153.395850px;}
.y1e1{bottom:155.463600px;}
.ybf{bottom:158.046450px;}
.ye5{bottom:161.044950px;}
.y1fd{bottom:166.942800px;}
.yf8{bottom:167.437350px;}
.y9c{bottom:167.506050px;}
.y63{bottom:167.604900px;}
.y11b{bottom:168.471900px;}
.y167{bottom:170.547150px;}
.y131{bottom:173.225850px;}
.y144{bottom:173.228850px;}
.y19d{bottom:173.647350px;}
.y1e0{bottom:175.844100px;}
.y1a{bottom:175.930050px;}
.ybe{bottom:178.294950px;}
.y1fc{bottom:187.147800px;}
.y3e{bottom:187.817250px;}
.yf7{bottom:187.861350px;}
.y9b{bottom:187.930050px;}
.y62{bottom:188.028900px;}
.y1c0{bottom:188.652900px;}
.y11a{bottom:189.206400px;}
.y166{bottom:190.867650px;}
.y130{bottom:193.477350px;}
.y143{bottom:193.480350px;}
.y19c{bottom:193.898850px;}
.y1df{bottom:196.224600px;}
.y185{bottom:197.566500px;}
.ye4{bottom:205.105800px;}
.yf6{bottom:208.285350px;}
.y9a{bottom:208.354050px;}
.y61{bottom:208.452900px;}
.y3d{bottom:209.267250px;}
.y119{bottom:209.940900px;}
.y19{bottom:210.733050px;}
.y165{bottom:211.188150px;}
.y12f{bottom:213.728850px;}
.y142{bottom:213.731850px;}
.y19b{bottom:214.150350px;}
.y184{bottom:219.541500px;}
.y1fb{bottom:220.117800px;}
.ybd{bottom:222.411750px;}
.y1de{bottom:225.110100px;}
.ye3{bottom:225.616050px;}
.yf5{bottom:228.709350px;}
.y99{bottom:228.778050px;}
.y60{bottom:228.876900px;}
.y118{bottom:230.675400px;}
.y3c{bottom:230.781450px;}
.y164{bottom:231.423600px;}
.y12e{bottom:233.980350px;}
.y141{bottom:233.983350px;}
.y19a{bottom:234.401850px;}
.y183{bottom:237.541500px;}
.ybc{bottom:242.853000px;}
.y1dd{bottom:245.490600px;}
.ye2{bottom:246.126300px;}
.yf4{bottom:249.133350px;}
.y98{bottom:249.202050px;}
.y5f{bottom:249.300900px;}
.y3b{bottom:250.731450px;}
.y1bf{bottom:250.789350px;}
.y117{bottom:251.409900px;}
.y163{bottom:251.744100px;}
.y12d{bottom:254.231850px;}
.y140{bottom:254.234850px;}
.y199{bottom:254.653350px;}
.y182{bottom:259.516500px;}
.ybb{bottom:263.294250px;}
.y1dc{bottom:265.871100px;}
.ye1{bottom:266.636550px;}
.yf3{bottom:269.557350px;}
.y97{bottom:269.626050px;}
.y5e{bottom:269.724900px;}
.y3a{bottom:270.681450px;}
.y1be{bottom:271.161600px;}
.y162{bottom:272.064600px;}
.y116{bottom:272.144400px;}
.y12c{bottom:274.483350px;}
.y13f{bottom:274.486350px;}
.y198{bottom:274.904850px;}
.y18{bottom:275.287200px;}
.y181{bottom:277.516500px;}
.y1fa{bottom:278.583150px;}
.yba{bottom:283.735500px;}
.y1db{bottom:286.251600px;}
.ye0{bottom:287.146800px;}
.yf2{bottom:289.981350px;}
.y96{bottom:290.050050px;}
.y5d{bottom:290.148900px;}
.y39{bottom:290.631450px;}
.y1bd{bottom:291.533850px;}
.y161{bottom:292.385100px;}
.y115{bottom:292.878900px;}
.y12b{bottom:294.734850px;}
.y13e{bottom:294.737850px;}
.y197{bottom:295.156350px;}
.y180{bottom:299.491500px;}
.yb9{bottom:304.176750px;}
.y1f9{bottom:306.303150px;}
.ydf{bottom:307.904100px;}
.y17{bottom:308.107200px;}
.yf1{bottom:310.405350px;}
.y95{bottom:310.474050px;}
.y5c{bottom:310.572900px;}
.y38{bottom:310.581450px;}
.y1bc{bottom:311.906100px;}
.y160{bottom:312.705600px;}
.y114{bottom:313.613400px;}
.y12a{bottom:314.986350px;}
.y13d{bottom:314.989350px;}
.y1da{bottom:315.137100px;}
.y196{bottom:315.407850px;}
.y17f{bottom:317.491500px;}
.yb8{bottom:324.618000px;}
.yde{bottom:328.414350px;}
.y37{bottom:330.531450px;}
.yf0{bottom:330.829350px;}
.y94{bottom:330.898050px;}
.y5b{bottom:330.996900px;}
.y1bb{bottom:332.278350px;}
.y16{bottom:332.422200px;}
.y15f{bottom:333.026100px;}
.y1f8{bottom:334.023150px;}
.y113{bottom:334.347900px;}
.y129{bottom:335.237850px;}
.y13c{bottom:335.240850px;}
.y1d9{bottom:335.517600px;}
.y195{bottom:335.659350px;}
.y17b{bottom:338.334600px;}
.y17c{bottom:339.339600px;}
.y17a{bottom:339.534600px;}
.y17e{bottom:339.819600px;}
.y17d{bottom:339.909600px;}
.y219{bottom:343.692750px;}
.yb7{bottom:345.059250px;}
.ydd{bottom:348.924600px;}
.y36{bottom:350.481450px;}
.yef{bottom:351.253350px;}
.y93{bottom:351.322050px;}
.y5a{bottom:351.420900px;}
.y1ba{bottom:352.650600px;}
.y15e{bottom:353.346600px;}
.y112{bottom:355.082400px;}
.y128{bottom:355.489350px;}
.y13b{bottom:355.492350px;}
.y194{bottom:355.910850px;}
.y15{bottom:356.737200px;}
.y218{bottom:363.942750px;}
.y1d8{bottom:364.403100px;}
.yb6{bottom:365.500500px;}
.ydc{bottom:369.434850px;}
.y35{bottom:370.431450px;}
.yee{bottom:371.677350px;}
.y92{bottom:371.746050px;}
.y1b9{bottom:373.022850px;}
.y15d{bottom:373.667100px;}
.y127{bottom:375.740850px;}
.y13a{bottom:375.743850px;}
.y111{bottom:375.816900px;}
.y193{bottom:376.162350px;}
.y217{bottom:384.192750px;}
.y1d7{bottom:384.783600px;}
.yb5{bottom:385.941750px;}
.y14{bottom:389.557200px;}
.ydb{bottom:389.945100px;}
.y34{bottom:390.381450px;}
.yed{bottom:392.101350px;}
.y91{bottom:392.170050px;}
.y59{bottom:393.107550px;}
.y1b8{bottom:393.395100px;}
.y15c{bottom:393.987600px;}
.y126{bottom:395.992350px;}
.y139{bottom:395.995350px;}
.y192{bottom:396.413850px;}
.y216{bottom:404.442750px;}
.yb4{bottom:406.383000px;}
.y33{bottom:410.331450px;}
.yda{bottom:410.455350px;}
.yec{bottom:412.525350px;}
.y90{bottom:412.594050px;}
.y1d6{bottom:413.669100px;}
.y1b7{bottom:413.767350px;}
.y13{bottom:413.872200px;}
.y15b{bottom:414.308100px;}
.y125{bottom:416.243850px;}
.y138{bottom:416.246850px;}
.y191{bottom:416.665350px;}
.y110{bottom:417.808650px;}
.y215{bottom:424.692750px;}
.y1f7{bottom:424.899600px;}
.yb3{bottom:426.824250px;}
.y32{bottom:430.281450px;}
.yd9{bottom:430.965600px;}
.yeb{bottom:432.949350px;}
.y8f{bottom:433.018050px;}
.y1d5{bottom:434.049600px;}
.y1b6{bottom:434.139600px;}
.y15a{bottom:434.628600px;}
.y124{bottom:436.495350px;}
.y137{bottom:436.498350px;}
.y190{bottom:436.916850px;}
.y12{bottom:438.183450px;}
.y10f{bottom:442.290900px;}
.y214{bottom:444.942750px;}
.y1f6{bottom:445.862850px;}
.yb2{bottom:447.265500px;}
.y31{bottom:450.231450px;}
.yd8{bottom:451.475850px;}
.yea{bottom:453.373350px;}
.y8e{bottom:453.442050px;}
.y1d4{bottom:454.430100px;}
.y1b5{bottom:454.511850px;}
.y159{bottom:454.949100px;}
.y58{bottom:455.548950px;}
.y123{bottom:456.746850px;}
.y136{bottom:456.749850px;}
.y18f{bottom:457.168350px;}
.y10e{bottom:466.773150px;}
.yb1{bottom:467.706750px;}
.y178{bottom:470.154300px;}
.y30{bottom:470.181450px;}
.yd7{bottom:471.986100px;}
.ye9{bottom:473.797350px;}
.y8d{bottom:473.866050px;}
.y1b4{bottom:474.884100px;}
.y158{bottom:475.269600px;}
.y1f5{bottom:475.331100px;}
.y57{bottom:476.728950px;}
.y122{bottom:476.998350px;}
.y135{bottom:477.001350px;}
.y18e{bottom:477.419850px;}
.y213{bottom:477.942750px;}
.y1d3{bottom:483.315600px;}
.yb0{bottom:488.148000px;}
.y179{bottom:488.154300px;}
.y2f{bottom:490.131450px;}
.y11{bottom:492.238650px;}
.yd6{bottom:492.496350px;}
.y8c{bottom:494.221350px;}
.y1b3{bottom:495.256350px;}
.y157{bottom:495.590100px;}
.y1f4{bottom:496.294350px;}
.y121{bottom:497.249850px;}
.y18d{bottom:497.671350px;}
.y56{bottom:497.847750px;}
.y212{bottom:498.192750px;}
.y1d2{bottom:503.696100px;}
.yaf{bottom:508.589250px;}
.y2e{bottom:510.081450px;}
.yd5{bottom:513.006600px;}
.y8b{bottom:514.645350px;}
.y1b2{bottom:515.628600px;}
.y156{bottom:515.910600px;}
.y10{bottom:516.553650px;}
.y1f3{bottom:517.257600px;}
.y120{bottom:517.501350px;}
.y55{bottom:517.527750px;}
.y18c{bottom:517.922850px;}
.y177{bottom:518.221050px;}
.y211{bottom:518.442750px;}
.yae{bottom:529.030500px;}
.y10d{bottom:529.480350px;}
.y2d{bottom:530.054550px;}
.y1d1{bottom:532.581600px;}
.yd4{bottom:533.516850px;}
.y8a{bottom:535.069350px;}
.y1b1{bottom:536.000850px;}
.y155{bottom:536.231100px;}
.y54{bottom:537.207750px;}
.y18b{bottom:538.174350px;}
.y1f2{bottom:538.220850px;}
.y210{bottom:538.692750px;}
.yf{bottom:540.868650px;}
.yad{bottom:549.471750px;}
.y2c{bottom:550.004550px;}
.y10c{bottom:550.214850px;}
.y1d0{bottom:552.962100px;}
.yd3{bottom:554.027100px;}
.y89{bottom:555.493350px;}
.y1b0{bottom:556.373100px;}
.y154{bottom:556.551600px;}
.y53{bottom:556.887750px;}
.y77{bottom:557.977350px;}
.y11f{bottom:558.001350px;}
.y18a{bottom:558.425850px;}
.y20f{bottom:558.942750px;}
.y1f1{bottom:559.184100px;}
.y176{bottom:559.904700px;}
.ye{bottom:565.183650px;}
.yac{bottom:569.913000px;}
.y2b{bottom:569.954550px;}
.y10b{bottom:570.949350px;}
.yd2{bottom:574.537350px;}
.y88{bottom:575.917350px;}
.y52{bottom:576.567750px;}
.y1af{bottom:576.745350px;}
.y189{bottom:578.677350px;}
.y175{bottom:581.122200px;}
.y1cf{bottom:581.847600px;}
.y1f0{bottom:588.652350px;}
.yd{bottom:589.498650px;}
.y2a{bottom:589.904550px;}
.yab{bottom:590.354250px;}
.y10a{bottom:591.683850px;}
.y20e{bottom:591.942750px;}
.yd1{bottom:595.047600px;}
.y51{bottom:596.247750px;}
.y87{bottom:596.341350px;}
.y1ae{bottom:597.117600px;}
.y76{bottom:598.928850px;}
.y1ce{bottom:602.228100px;}
.y174{bottom:602.339700px;}
.y153{bottom:605.026050px;}
.y1ef{bottom:609.615600px;}
.y29{bottom:609.854550px;}
.yaa{bottom:610.795500px;}
.y20d{bottom:612.192750px;}
.y109{bottom:612.418350px;}
.yd0{bottom:615.557850px;}
.y50{bottom:615.927750px;}
.y86{bottom:616.765350px;}
.y1ad{bottom:617.489850px;}
.y75{bottom:619.180350px;}
.yc{bottom:622.318650px;}
.y173{bottom:623.557200px;}
.y152{bottom:627.526050px;}
.y28{bottom:629.804550px;}
.y1cd{bottom:631.113600px;}
.ya9{bottom:631.236750px;}
.y20c{bottom:632.442750px;}
.y108{bottom:633.152850px;}
.y4f{bottom:635.607750px;}
.ycf{bottom:636.068100px;}
.y85{bottom:637.189350px;}
.y1ac{bottom:637.862100px;}
.y1ee{bottom:639.083850px;}
.y74{bottom:639.431850px;}
.y172{bottom:644.774700px;}
.yb{bottom:646.629900px;}
.y27{bottom:649.754550px;}
.y151{bottom:650.026050px;}
.ya8{bottom:651.678000px;}
.y20b{bottom:652.692750px;}
.y107{bottom:653.887350px;}
.y4e{bottom:655.287750px;}
.yce{bottom:656.578350px;}
.y84{bottom:657.613350px;}
.y1ab{bottom:658.234350px;}
.y73{bottom:659.683350px;}
.y1ed{bottom:660.047100px;}
.y171{bottom:665.992200px;}
.y26{bottom:669.704550px;}
.ya7{bottom:672.119250px;}
.y150{bottom:672.526050px;}
.y20a{bottom:672.942750px;}
.y106{bottom:674.621850px;}
.y4d{bottom:674.967750px;}
.ycd{bottom:677.088600px;}
.y83{bottom:678.037350px;}
.y1aa{bottom:678.606600px;}
.y72{bottom:679.934850px;}
.y1ec{bottom:681.010350px;}
.y1cc{bottom:682.001850px;}
.ya6{bottom:692.560500px;}
.y209{bottom:693.192750px;}
.y4c{bottom:694.647750px;}
.y14f{bottom:695.026050px;}
.y105{bottom:695.356350px;}
.ycc{bottom:697.598850px;}
.y82{bottom:698.461350px;}
.y1a9{bottom:698.978850px;}
.y71{bottom:700.186350px;}
.ya{bottom:700.677600px;}
.y25{bottom:702.419550px;}
.y1cb{bottom:706.634850px;}
.y170{bottom:708.454200px;}
.y1eb{bottom:710.478600px;}
.ya5{bottom:713.001750px;}
.y4b{bottom:714.327750px;}
.y104{bottom:716.090850px;}
.y14e{bottom:717.526050px;}
.ycb{bottom:718.109100px;}
.y81{bottom:718.885350px;}
.y1a8{bottom:719.351100px;}
.y70{bottom:720.437850px;}
.y9{bottom:724.992600px;}
.y208{bottom:726.192750px;}
.y1ca{bottom:731.267850px;}
.y1ea{bottom:731.441850px;}
.y16f{bottom:733.422450px;}
.y4a{bottom:734.007750px;}
.y103{bottom:736.825350px;}
.yca{bottom:738.619350px;}
.y80{bottom:739.309350px;}
.y1a7{bottom:739.723350px;}
.y14d{bottom:740.026050px;}
.y6f{bottom:740.689350px;}
.y8{bottom:749.307600px;}
.y1e9{bottom:752.405100px;}
.y49{bottom:753.687750px;}
.ya4{bottom:754.703400px;}
.y1c9{bottom:755.900850px;}
.y102{bottom:757.559850px;}
.yc9{bottom:759.129600px;}
.y7f{bottom:759.733350px;}
.y1a6{bottom:760.095600px;}
.y24{bottom:760.655400px;}
.y6e{bottom:760.940850px;}
.y14c{bottom:762.526050px;}
.y207{bottom:767.697750px;}
.y48{bottom:773.367750px;}
.y7{bottom:773.622600px;}
.y101{bottom:778.294350px;}
.ya3{bottom:778.902150px;}
.yc8{bottom:779.639850px;}
.y7e{bottom:780.157350px;}
.y1a5{bottom:780.467850px;}
.y1c8{bottom:780.533850px;}
.y6d{bottom:781.192350px;}
.y1e8{bottom:781.873350px;}
.y14b{bottom:785.026050px;}
.y206{bottom:787.197750px;}
.y23{bottom:788.102400px;}
.y47{bottom:793.047750px;}
.y16e{bottom:796.613850px;}
.y6{bottom:797.937600px;}
.y100{bottom:799.028850px;}
.yc7{bottom:800.150100px;}
.y7d{bottom:800.581350px;}
.y1a4{bottom:800.840100px;}
.y6c{bottom:801.443850px;}
.y1e7{bottom:802.836600px;}
.y1c7{bottom:805.166850px;}
.y205{bottom:806.697750px;}
.y14a{bottom:807.526050px;}
.y46{bottom:812.727750px;}
.y22{bottom:815.549400px;}
.y16d{bottom:817.831350px;}
.yff{bottom:819.763350px;}
.yc6{bottom:820.660350px;}
.y7c{bottom:821.005350px;}
.y1a3{bottom:821.212350px;}
.y6b{bottom:821.695350px;}
.y5{bottom:822.252600px;}
.y204{bottom:826.197750px;}
.y1c6{bottom:829.799850px;}
.y149{bottom:830.026050px;}
.y1e6{bottom:832.304850px;}
.y45{bottom:832.407750px;}
.y16c{bottom:839.048850px;}
.yfe{bottom:840.497850px;}
.yc5{bottom:841.170600px;}
.ya2{bottom:841.377600px;}
.y7b{bottom:841.429350px;}
.y1a2{bottom:841.584600px;}
.y6a{bottom:841.946850px;}
.y203{bottom:845.697750px;}
.y44{bottom:852.087750px;}
.y148{bottom:852.526050px;}
.y1e5{bottom:853.268100px;}
.y1c5{bottom:854.432850px;}
.y4{bottom:855.072600px;}
.y16b{bottom:860.266350px;}
.yfd{bottom:861.232350px;}
.yc4{bottom:861.680850px;}
.ya1{bottom:861.818850px;}
.y7a{bottom:861.853350px;}
.y1a1{bottom:861.956850px;}
.y69{bottom:862.198350px;}
.y21{bottom:864.276150px;}
.y202{bottom:865.197750px;}
.y43{bottom:871.767750px;}
.y147{bottom:875.026050px;}
.y1c4{bottom:879.065850px;}
.y3{bottom:879.387600px;}
.y16a{bottom:881.483850px;}
.yfc{bottom:881.966850px;}
.yc3{bottom:882.191100px;}
.ya0{bottom:882.260100px;}
.y79{bottom:882.277350px;}
.y1a0{bottom:882.329100px;}
.y68{bottom:882.449850px;}
.y1e4{bottom:882.735600px;}
.y201{bottom:884.697750px;}
.y20{bottom:896.217150px;}
.y67{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y42{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y1e{bottom:966.189000px;}
.y1d{bottom:984.189000px;}
.h13{height:33.870539px;}
.h14{height:40.312500px;}
.hc{height:40.757812px;}
.h9{height:40.936945px;}
.h7{height:41.396484px;}
.h15{height:43.466309px;}
.hb{height:45.852539px;}
.h10{height:47.605957px;}
.h4{height:50.947266px;}
.ha{height:52.918945px;}
.h3{height:53.494629px;}
.he{height:58.589355px;}
.h11{height:58.798828px;}
.h12{height:58.864155px;}
.h16{height:61.738770px;}
.h2{height:63.684082px;}
.hf{height:67.618652px;}
.hd{height:68.778809px;}
.h17{height:71.326172px;}
.h8{height:82.318359px;}
.h5{height:91.705078px;}
.h6{height:105.837891px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xd{left:81.438600px;}
.xa{left:82.456650px;}
.x1{left:83.686650px;}
.x5{left:85.039350px;}
.x25{left:90.266250px;}
.x22{left:91.286250px;}
.x16{left:100.155600px;}
.x8{left:101.671950px;}
.xb{left:103.715550px;}
.x7{left:105.030600px;}
.x9{left:106.050600px;}
.x26{left:158.781150px;}
.x27{left:159.804900px;}
.x23{left:204.986250px;}
.x24{left:208.091250px;}
.xc{left:212.664000px;}
.x10{left:215.237250px;}
.x18{left:217.093050px;}
.x4{left:230.460300px;}
.x3{left:232.218000px;}
.x2{left:233.345250px;}
.x6{left:234.463950px;}
.x11{left:236.237250px;}
.xe{left:239.072250px;}
.x13{left:241.412250px;}
.x12{left:242.972250px;}
.x14{left:244.952250px;}
.xf{left:246.887250px;}
.x19{left:267.133050px;}
.x1a{left:317.173050px;}
.x17{left:342.465600px;}
.x1b{left:367.213050px;}
.x15{left:416.537250px;}
.x1c{left:467.293050px;}
.x1d{left:517.333050px;}
.x1e{left:558.373050px;}
.x1f{left:576.373050px;}
.x20{left:608.413050px;}
.x21{left:626.413050px;}
@media print{
.v2{vertical-align:-26.634667pt;}
.v4{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.344533pt;}
.v7{vertical-align:13.317333pt;}
.v6{vertical-align:14.212267pt;}
.v5{vertical-align:15.334933pt;}
.v1{vertical-align:26.588800pt;}
.ls26{letter-spacing:-4.170667pt;}
.ls31{letter-spacing:-3.434667pt;}
.ls2e{letter-spacing:-2.760000pt;}
.ls36{letter-spacing:-2.453333pt;}
.lsb{letter-spacing:-2.400000pt;}
.ls34{letter-spacing:-2.392000pt;}
.ls1d{letter-spacing:-2.269333pt;}
.lsa{letter-spacing:-2.208000pt;}
.ls1c{letter-spacing:-2.024000pt;}
.ls32{letter-spacing:-1.901333pt;}
.ls30{letter-spacing:-1.778667pt;}
.ls33{letter-spacing:-1.776000pt;}
.ls39{letter-spacing:-1.717333pt;}
.ls37{letter-spacing:-1.656000pt;}
.ls27{letter-spacing:-1.533333pt;}
.ls1e{letter-spacing:-1.410667pt;}
.ls2b{letter-spacing:-1.349333pt;}
.ls3f{letter-spacing:-1.344000pt;}
.ls2c{letter-spacing:-1.288000pt;}
.ls8{letter-spacing:-1.248000pt;}
.ls1b{letter-spacing:-1.226667pt;}
.lsc{letter-spacing:-1.194667pt;}
.ls29{letter-spacing:-1.104000pt;}
.ls15{letter-spacing:-1.080000pt;}
.ls2d{letter-spacing:-0.981333pt;}
.lse{letter-spacing:-0.970667pt;}
.ls3a{letter-spacing:-0.864000pt;}
.ls1a{letter-spacing:-0.760000pt;}
.lsd{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls2a{letter-spacing:-0.613333pt;}
.ls35{letter-spacing:-0.557333pt;}
.ls16{letter-spacing:-0.533333pt;}
.ls28{letter-spacing:-0.429333pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000267pt;}
.ls24{letter-spacing:0.766667pt;}
.ls25{letter-spacing:0.785067pt;}
.lsf{letter-spacing:0.970667pt;}
.ls21{letter-spacing:1.944267pt;}
.ls12{letter-spacing:2.133333pt;}
.ls1f{letter-spacing:2.392000pt;}
.ls11{letter-spacing:3.733333pt;}
.ls2{letter-spacing:4.853333pt;}
.ls38{letter-spacing:4.866667pt;}
.ls22{letter-spacing:4.968000pt;}
.ls14{letter-spacing:5.120000pt;}
.ls17{letter-spacing:5.200000pt;}
.ls10{letter-spacing:5.226667pt;}
.ls1{letter-spacing:5.333333pt;}
.ls3b{letter-spacing:5.600000pt;}
.ls3e{letter-spacing:6.104000pt;}
.ls4{letter-spacing:6.453333pt;}
.ls2f{letter-spacing:6.866667pt;}
.ls0{letter-spacing:7.066667pt;}
.ls3d{letter-spacing:7.280000pt;}
.ls40{letter-spacing:7.400000pt;}
.ls5{letter-spacing:7.466667pt;}
.ls13{letter-spacing:7.600000pt;}
.ls18{letter-spacing:7.789333pt;}
.ls3c{letter-spacing:7.933333pt;}
.ls23{letter-spacing:16.130667pt;}
.ls20{letter-spacing:17.406400pt;}
.wsb{word-spacing:-26.976000pt;}
.ws50{word-spacing:-26.666667pt;}
.ws17{word-spacing:-26.333333pt;}
.ws25{word-spacing:-26.200000pt;}
.ws59{word-spacing:-26.133333pt;}
.ws0{word-spacing:-25.800000pt;}
.ws31{word-spacing:-25.600000pt;}
.ws1d{word-spacing:-23.933333pt;}
.ws4c{word-spacing:-23.600000pt;}
.ws51{word-spacing:-23.016000pt;}
.ws52{word-spacing:-21.840000pt;}
.wsc{word-spacing:-21.504000pt;}
.wsd{word-spacing:-21.312000pt;}
.ws57{word-spacing:-20.320000pt;}
.ws11{word-spacing:-20.213333pt;}
.ws18{word-spacing:-20.106667pt;}
.ws4e{word-spacing:-19.368000pt;}
.ws19{word-spacing:-19.152000pt;}
.wsf{word-spacing:-17.696000pt;}
.ws10{word-spacing:-17.472000pt;}
.ws1f{word-spacing:-17.234667pt;}
.wse{word-spacing:-15.727008pt;}
.ws1{word-spacing:-15.344000pt;}
.ws1b{word-spacing:-15.149333pt;}
.ws9{word-spacing:-14.986667pt;}
.ws2a{word-spacing:-14.720000pt;}
.ws2b{word-spacing:-14.536000pt;}
.ws2f{word-spacing:-14.168000pt;}
.ws20{word-spacing:-13.922667pt;}
.ws2e{word-spacing:-13.861333pt;}
.ws53{word-spacing:-13.832000pt;}
.ws2c{word-spacing:-13.800000pt;}
.ws23{word-spacing:-13.738667pt;}
.ws29{word-spacing:-13.616000pt;}
.ws4b{word-spacing:-13.493333pt;}
.ws4d{word-spacing:-13.432000pt;}
.ws32{word-spacing:-13.370667pt;}
.ws34{word-spacing:-13.248000pt;}
.ws5a{word-spacing:-13.173333pt;}
.ws21{word-spacing:-13.125333pt;}
.wsa{word-spacing:-13.013333pt;}
.ws40{word-spacing:-12.941333pt;}
.ws22{word-spacing:-12.880000pt;}
.ws43{word-spacing:-12.757333pt;}
.ws4a{word-spacing:-12.696000pt;}
.ws30{word-spacing:-12.389333pt;}
.ws41{word-spacing:-11.856000pt;}
.ws33{word-spacing:-11.714667pt;}
.ws28{word-spacing:-10.978667pt;}
.ws42{word-spacing:-10.080000pt;}
.ws1e{word-spacing:-10.047811pt;}
.ws56{word-spacing:-9.174088pt;}
.ws12{word-spacing:-8.737227pt;}
.ws5{word-spacing:-7.466667pt;}
.ws4{word-spacing:-6.453333pt;}
.ws55{word-spacing:-5.600000pt;}
.ws2{word-spacing:-5.333333pt;}
.ws16{word-spacing:-3.733333pt;}
.ws1a{word-spacing:-2.133333pt;}
.ws15{word-spacing:-0.970667pt;}
.ws26{word-spacing:-0.797333pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.160000pt;}
.ws7{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.533333pt;}
.ws49{word-spacing:0.557333pt;}
.ws13{word-spacing:0.693333pt;}
.ws24{word-spacing:0.760000pt;}
.ws2d{word-spacing:1.104000pt;}
.ws14{word-spacing:1.194667pt;}
.ws8{word-spacing:1.248000pt;}
.ws58{word-spacing:1.344000pt;}
.ws27{word-spacing:2.024000pt;}
.ws4f{word-spacing:12.696000pt;}
.ws44{word-spacing:104.000000pt;}
.ws45{word-spacing:106.400000pt;}
.ws48{word-spacing:106.826667pt;}
.ws54{word-spacing:139.720000pt;}
.ws46{word-spacing:141.866667pt;}
.ws47{word-spacing:174.064000pt;}
.ws37{word-spacing:516.890667pt;}
.ws3b{word-spacing:563.397333pt;}
.ws35{word-spacing:584.570667pt;}
.ws39{word-spacing:589.461333pt;}
.ws3f{word-spacing:595.200000pt;}
.ws3c{word-spacing:601.072000pt;}
.ws38{word-spacing:603.370667pt;}
.ws3d{word-spacing:612.213333pt;}
.ws3a{word-spacing:617.226667pt;}
.ws3e{word-spacing:623.573333pt;}
.ws36{word-spacing:632.373333pt;}
._1a{margin-left:-12.664000pt;}
._1f{margin-left:-10.322667pt;}
._21{margin-left:-8.823733pt;}
._c{margin-left:-7.558133pt;}
._b{margin-left:-5.971200pt;}
._8{margin-left:-4.683467pt;}
._6{margin-left:-3.667467pt;}
._4{margin-left:-2.458400pt;}
._7{margin-left:-1.296267pt;}
._1{width:0.938667pt;}
._3{width:1.872000pt;}
._5{width:2.821867pt;}
._9{width:4.448000pt;}
._2{width:5.616000pt;}
._a{width:6.890667pt;}
._10{width:7.995200pt;}
._11{width:9.253333pt;}
._f{width:10.976000pt;}
._19{width:12.216000pt;}
._15{width:13.248000pt;}
._17{width:14.961333pt;}
._16{width:15.902667pt;}
._24{width:17.039467pt;}
._1d{width:18.271200pt;}
._20{width:19.793867pt;}
._1c{width:20.842933pt;}
._23{width:21.840800pt;}
._1e{width:22.893867pt;}
._39{width:24.105867pt;}
._38{width:25.132533pt;}
._43{width:26.032533pt;}
._44{width:27.191200pt;}
._27{width:29.256000pt;}
._26{width:30.269867pt;}
._29{width:31.614933pt;}
._45{width:35.550933pt;}
._3f{width:36.456000pt;}
._13{width:38.617920pt;}
._42{width:42.950667pt;}
._3d{width:45.416000pt;}
._41{width:48.652800pt;}
._3a{width:52.136000pt;}
._40{width:54.208000pt;}
._3e{width:55.720000pt;}
._14{width:76.048000pt;}
._3c{width:91.112000pt;}
._3b{width:92.632267pt;}
._34{width:124.675200pt;}
._2b{width:127.040000pt;}
._36{width:134.720000pt;}
._31{width:137.653333pt;}
._2c{width:138.880000pt;}
._37{width:141.066667pt;}
._35{width:143.058133pt;}
._30{width:149.333333pt;}
._2e{width:150.293333pt;}
._2f{width:151.626667pt;}
._2d{width:153.013333pt;}
._33{width:154.880000pt;}
._32{width:156.533333pt;}
._12{width:231.653333pt;}
._28{width:331.696267pt;}
._2a{width:434.659733pt;}
._0{width:438.173333pt;}
._1b{width:440.981333pt;}
._d{width:514.133333pt;}
._e{width:883.115733pt;}
._22{width:885.889067pt;}
._25{width:889.489067pt;}
._18{width:891.249067pt;}
.fs8{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fsf{font-size:32.648000pt;}
.fsd{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:55.968000pt;}
.fs3{font-size:56.000000pt;}
.fsc{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fsb{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yfb{bottom:94.369200pt;}
.y1e3{bottom:94.397867pt;}
.y9f{bottom:94.430267pt;}
.y11e{bottom:94.460800pt;}
.y1c3{bottom:94.474533pt;}
.y188{bottom:94.475333pt;}
.yc2{bottom:94.477733pt;}
.ye8{bottom:94.480400pt;}
.y41{bottom:94.483067pt;}
.y169{bottom:94.485733pt;}
.y200{bottom:94.500267pt;}
.y1c{bottom:94.510267pt;}
.y66{bottom:94.518133pt;}
.y19f{bottom:97.151067pt;}
.y134{bottom:99.974533pt;}
.y78{bottom:100.001200pt;}
.yc1{bottom:109.813733pt;}
.ye7{bottom:109.816400pt;}
.y40{bottom:109.819067pt;}
.y1ff{bottom:112.460267pt;}
.y168{bottom:112.484400pt;}
.y1e2{bottom:112.513867pt;}
.yfa{bottom:112.523867pt;}
.y1c2{bottom:112.583200pt;}
.y9e{bottom:112.584933pt;}
.y65{bottom:112.672800pt;}
.y11d{bottom:112.891467pt;}
.y187{bottom:113.335333pt;}
.y133{bottom:117.975867pt;}
.y146{bottom:117.978533pt;}
.yc0{bottom:125.149733pt;}
.ye6{bottom:125.152400pt;}
.y1b{bottom:125.446267pt;}
.y3f{bottom:127.817733pt;}
.y1fe{bottom:130.433600pt;}
.yf9{bottom:130.678533pt;}
.y1c1{bottom:130.691867pt;}
.y9d{bottom:130.739600pt;}
.y64{bottom:130.827467pt;}
.y11c{bottom:131.322133pt;}
.y186{bottom:132.195333pt;}
.y132{bottom:135.977200pt;}
.y145{bottom:135.979867pt;}
.y19e{bottom:136.351867pt;}
.y1e1{bottom:138.189867pt;}
.ybf{bottom:140.485733pt;}
.ye5{bottom:143.151067pt;}
.y1fd{bottom:148.393600pt;}
.yf8{bottom:148.833200pt;}
.y9c{bottom:148.894267pt;}
.y63{bottom:148.982133pt;}
.y11b{bottom:149.752800pt;}
.y167{bottom:151.597467pt;}
.y131{bottom:153.978533pt;}
.y144{bottom:153.981200pt;}
.y19d{bottom:154.353200pt;}
.y1e0{bottom:156.305867pt;}
.y1a{bottom:156.382267pt;}
.ybe{bottom:158.484400pt;}
.y1fc{bottom:166.353600pt;}
.y3e{bottom:166.948667pt;}
.yf7{bottom:166.987867pt;}
.y9b{bottom:167.048933pt;}
.y62{bottom:167.136800pt;}
.y1c0{bottom:167.691467pt;}
.y11a{bottom:168.183467pt;}
.y166{bottom:169.660133pt;}
.y130{bottom:171.979867pt;}
.y143{bottom:171.982533pt;}
.y19c{bottom:172.354533pt;}
.y1df{bottom:174.421867pt;}
.y185{bottom:175.614667pt;}
.ye4{bottom:182.316267pt;}
.yf6{bottom:185.142533pt;}
.y9a{bottom:185.203600pt;}
.y61{bottom:185.291467pt;}
.y3d{bottom:186.015333pt;}
.y119{bottom:186.614133pt;}
.y19{bottom:187.318267pt;}
.y165{bottom:187.722800pt;}
.y12f{bottom:189.981200pt;}
.y142{bottom:189.983867pt;}
.y19b{bottom:190.355867pt;}
.y184{bottom:195.148000pt;}
.y1fb{bottom:195.660267pt;}
.ybd{bottom:197.699333pt;}
.y1de{bottom:200.097867pt;}
.ye3{bottom:200.547600pt;}
.yf5{bottom:203.297200pt;}
.y99{bottom:203.358267pt;}
.y60{bottom:203.446133pt;}
.y118{bottom:205.044800pt;}
.y3c{bottom:205.139067pt;}
.y164{bottom:205.709867pt;}
.y12e{bottom:207.982533pt;}
.y141{bottom:207.985200pt;}
.y19a{bottom:208.357200pt;}
.y183{bottom:211.148000pt;}
.ybc{bottom:215.869333pt;}
.y1dd{bottom:218.213867pt;}
.ye2{bottom:218.778933pt;}
.yf4{bottom:221.451867pt;}
.y98{bottom:221.512933pt;}
.y5f{bottom:221.600800pt;}
.y3b{bottom:222.872400pt;}
.y1bf{bottom:222.923867pt;}
.y117{bottom:223.475467pt;}
.y163{bottom:223.772533pt;}
.y12d{bottom:225.983867pt;}
.y140{bottom:225.986533pt;}
.y199{bottom:226.358533pt;}
.y182{bottom:230.681333pt;}
.ybb{bottom:234.039333pt;}
.y1dc{bottom:236.329867pt;}
.ye1{bottom:237.010267pt;}
.yf3{bottom:239.606533pt;}
.y97{bottom:239.667600pt;}
.y5e{bottom:239.755467pt;}
.y3a{bottom:240.605733pt;}
.y1be{bottom:241.032533pt;}
.y162{bottom:241.835200pt;}
.y116{bottom:241.906133pt;}
.y12c{bottom:243.985200pt;}
.y13f{bottom:243.987867pt;}
.y198{bottom:244.359867pt;}
.y18{bottom:244.699733pt;}
.y181{bottom:246.681333pt;}
.y1fa{bottom:247.629467pt;}
.yba{bottom:252.209333pt;}
.y1db{bottom:254.445867pt;}
.ye0{bottom:255.241600pt;}
.yf2{bottom:257.761200pt;}
.y96{bottom:257.822267pt;}
.y5d{bottom:257.910133pt;}
.y39{bottom:258.339067pt;}
.y1bd{bottom:259.141200pt;}
.y161{bottom:259.897867pt;}
.y115{bottom:260.336800pt;}
.y12b{bottom:261.986533pt;}
.y13e{bottom:261.989200pt;}
.y197{bottom:262.361200pt;}
.y180{bottom:266.214667pt;}
.yb9{bottom:270.379333pt;}
.y1f9{bottom:272.269467pt;}
.ydf{bottom:273.692533pt;}
.y17{bottom:273.873067pt;}
.yf1{bottom:275.915867pt;}
.y95{bottom:275.976933pt;}
.y5c{bottom:276.064800pt;}
.y38{bottom:276.072400pt;}
.y1bc{bottom:277.249867pt;}
.y160{bottom:277.960533pt;}
.y114{bottom:278.767467pt;}
.y12a{bottom:279.987867pt;}
.y13d{bottom:279.990533pt;}
.y1da{bottom:280.121867pt;}
.y196{bottom:280.362533pt;}
.y17f{bottom:282.214667pt;}
.yb8{bottom:288.549333pt;}
.yde{bottom:291.923867pt;}
.y37{bottom:293.805733pt;}
.yf0{bottom:294.070533pt;}
.y94{bottom:294.131600pt;}
.y5b{bottom:294.219467pt;}
.y1bb{bottom:295.358533pt;}
.y16{bottom:295.486400pt;}
.y15f{bottom:296.023200pt;}
.y1f8{bottom:296.909467pt;}
.y113{bottom:297.198133pt;}
.y129{bottom:297.989200pt;}
.y13c{bottom:297.991867pt;}
.y1d9{bottom:298.237867pt;}
.y195{bottom:298.363867pt;}
.y17b{bottom:300.741867pt;}
.y17c{bottom:301.635200pt;}
.y17a{bottom:301.808533pt;}
.y17e{bottom:302.061867pt;}
.y17d{bottom:302.141867pt;}
.y219{bottom:305.504667pt;}
.yb7{bottom:306.719333pt;}
.ydd{bottom:310.155200pt;}
.y36{bottom:311.539067pt;}
.yef{bottom:312.225200pt;}
.y93{bottom:312.286267pt;}
.y5a{bottom:312.374133pt;}
.y1ba{bottom:313.467200pt;}
.y15e{bottom:314.085867pt;}
.y112{bottom:315.628800pt;}
.y128{bottom:315.990533pt;}
.y13b{bottom:315.993200pt;}
.y194{bottom:316.365200pt;}
.y15{bottom:317.099733pt;}
.y218{bottom:323.504667pt;}
.y1d8{bottom:323.913867pt;}
.yb6{bottom:324.889333pt;}
.ydc{bottom:328.386533pt;}
.y35{bottom:329.272400pt;}
.yee{bottom:330.379867pt;}
.y92{bottom:330.440933pt;}
.y1b9{bottom:331.575867pt;}
.y15d{bottom:332.148533pt;}
.y127{bottom:333.991867pt;}
.y13a{bottom:333.994533pt;}
.y111{bottom:334.059467pt;}
.y193{bottom:334.366533pt;}
.y217{bottom:341.504667pt;}
.y1d7{bottom:342.029867pt;}
.yb5{bottom:343.059333pt;}
.y14{bottom:346.273067pt;}
.ydb{bottom:346.617867pt;}
.y34{bottom:347.005733pt;}
.yed{bottom:348.534533pt;}
.y91{bottom:348.595600pt;}
.y59{bottom:349.428933pt;}
.y1b8{bottom:349.684533pt;}
.y15c{bottom:350.211200pt;}
.y126{bottom:351.993200pt;}
.y139{bottom:351.995867pt;}
.y192{bottom:352.367867pt;}
.y216{bottom:359.504667pt;}
.yb4{bottom:361.229333pt;}
.y33{bottom:364.739067pt;}
.yda{bottom:364.849200pt;}
.yec{bottom:366.689200pt;}
.y90{bottom:366.750267pt;}
.y1d6{bottom:367.705867pt;}
.y1b7{bottom:367.793200pt;}
.y13{bottom:367.886400pt;}
.y15b{bottom:368.273867pt;}
.y125{bottom:369.994533pt;}
.y138{bottom:369.997200pt;}
.y191{bottom:370.369200pt;}
.y110{bottom:371.385467pt;}
.y215{bottom:377.504667pt;}
.y1f7{bottom:377.688533pt;}
.yb3{bottom:379.399333pt;}
.y32{bottom:382.472400pt;}
.yd9{bottom:383.080533pt;}
.yeb{bottom:384.843867pt;}
.y8f{bottom:384.904933pt;}
.y1d5{bottom:385.821867pt;}
.y1b6{bottom:385.901867pt;}
.y15a{bottom:386.336533pt;}
.y124{bottom:387.995867pt;}
.y137{bottom:387.998533pt;}
.y190{bottom:388.370533pt;}
.y12{bottom:389.496400pt;}
.y10f{bottom:393.147467pt;}
.y214{bottom:395.504667pt;}
.y1f6{bottom:396.322533pt;}
.yb2{bottom:397.569333pt;}
.y31{bottom:400.205733pt;}
.yd8{bottom:401.311867pt;}
.yea{bottom:402.998533pt;}
.y8e{bottom:403.059600pt;}
.y1d4{bottom:403.937867pt;}
.y1b5{bottom:404.010533pt;}
.y159{bottom:404.399200pt;}
.y58{bottom:404.932400pt;}
.y123{bottom:405.997200pt;}
.y136{bottom:405.999867pt;}
.y18f{bottom:406.371867pt;}
.y10e{bottom:414.909467pt;}
.yb1{bottom:415.739333pt;}
.y178{bottom:417.914933pt;}
.y30{bottom:417.939067pt;}
.yd7{bottom:419.543200pt;}
.ye9{bottom:421.153200pt;}
.y8d{bottom:421.214267pt;}
.y1b4{bottom:422.119200pt;}
.y158{bottom:422.461867pt;}
.y1f5{bottom:422.516533pt;}
.y57{bottom:423.759067pt;}
.y122{bottom:423.998533pt;}
.y135{bottom:424.001200pt;}
.y18e{bottom:424.373200pt;}
.y213{bottom:424.838000pt;}
.y1d3{bottom:429.613867pt;}
.yb0{bottom:433.909333pt;}
.y179{bottom:433.914933pt;}
.y2f{bottom:435.672400pt;}
.y11{bottom:437.545467pt;}
.yd6{bottom:437.774533pt;}
.y8c{bottom:439.307867pt;}
.y1b3{bottom:440.227867pt;}
.y157{bottom:440.524533pt;}
.y1f4{bottom:441.150533pt;}
.y121{bottom:441.999867pt;}
.y18d{bottom:442.374533pt;}
.y56{bottom:442.531333pt;}
.y212{bottom:442.838000pt;}
.y1d2{bottom:447.729867pt;}
.yaf{bottom:452.079333pt;}
.y2e{bottom:453.405733pt;}
.yd5{bottom:456.005867pt;}
.y8b{bottom:457.462533pt;}
.y1b2{bottom:458.336533pt;}
.y156{bottom:458.587200pt;}
.y10{bottom:459.158800pt;}
.y1f3{bottom:459.784533pt;}
.y120{bottom:460.001200pt;}
.y55{bottom:460.024667pt;}
.y18c{bottom:460.375867pt;}
.y177{bottom:460.640933pt;}
.y211{bottom:460.838000pt;}
.yae{bottom:470.249333pt;}
.y10d{bottom:470.649200pt;}
.y2d{bottom:471.159600pt;}
.y1d1{bottom:473.405867pt;}
.yd4{bottom:474.237200pt;}
.y8a{bottom:475.617200pt;}
.y1b1{bottom:476.445200pt;}
.y155{bottom:476.649867pt;}
.y54{bottom:477.518000pt;}
.y18b{bottom:478.377200pt;}
.y1f2{bottom:478.418533pt;}
.y210{bottom:478.838000pt;}
.yf{bottom:480.772133pt;}
.yad{bottom:488.419333pt;}
.y2c{bottom:488.892933pt;}
.y10c{bottom:489.079867pt;}
.y1d0{bottom:491.521867pt;}
.yd3{bottom:492.468533pt;}
.y89{bottom:493.771867pt;}
.y1b0{bottom:494.553867pt;}
.y154{bottom:494.712533pt;}
.y53{bottom:495.011333pt;}
.y77{bottom:495.979867pt;}
.y11f{bottom:496.001200pt;}
.y18a{bottom:496.378533pt;}
.y20f{bottom:496.838000pt;}
.y1f1{bottom:497.052533pt;}
.y176{bottom:497.693067pt;}
.ye{bottom:502.385467pt;}
.yac{bottom:506.589333pt;}
.y2b{bottom:506.626267pt;}
.y10b{bottom:507.510533pt;}
.yd2{bottom:510.699867pt;}
.y88{bottom:511.926533pt;}
.y52{bottom:512.504667pt;}
.y1af{bottom:512.662533pt;}
.y189{bottom:514.379867pt;}
.y175{bottom:516.553067pt;}
.y1cf{bottom:517.197867pt;}
.y1f0{bottom:523.246533pt;}
.yd{bottom:523.998800pt;}
.y2a{bottom:524.359600pt;}
.yab{bottom:524.759333pt;}
.y10a{bottom:525.941200pt;}
.y20e{bottom:526.171333pt;}
.yd1{bottom:528.931200pt;}
.y51{bottom:529.998000pt;}
.y87{bottom:530.081200pt;}
.y1ae{bottom:530.771200pt;}
.y76{bottom:532.381200pt;}
.y1ce{bottom:535.313867pt;}
.y174{bottom:535.413067pt;}
.y153{bottom:537.800933pt;}
.y1ef{bottom:541.880533pt;}
.y29{bottom:542.092933pt;}
.yaa{bottom:542.929333pt;}
.y20d{bottom:544.171333pt;}
.y109{bottom:544.371867pt;}
.yd0{bottom:547.162533pt;}
.y50{bottom:547.491333pt;}
.y86{bottom:548.235867pt;}
.y1ad{bottom:548.879867pt;}
.y75{bottom:550.382533pt;}
.yc{bottom:553.172133pt;}
.y173{bottom:554.273067pt;}
.y152{bottom:557.800933pt;}
.y28{bottom:559.826267pt;}
.y1cd{bottom:560.989867pt;}
.ya9{bottom:561.099333pt;}
.y20c{bottom:562.171333pt;}
.y108{bottom:562.802533pt;}
.y4f{bottom:564.984667pt;}
.ycf{bottom:565.393867pt;}
.y85{bottom:566.390533pt;}
.y1ac{bottom:566.988533pt;}
.y1ee{bottom:568.074533pt;}
.y74{bottom:568.383867pt;}
.y172{bottom:573.133067pt;}
.yb{bottom:574.782133pt;}
.y27{bottom:577.559600pt;}
.y151{bottom:577.800933pt;}
.ya8{bottom:579.269333pt;}
.y20b{bottom:580.171333pt;}
.y107{bottom:581.233200pt;}
.y4e{bottom:582.478000pt;}
.yce{bottom:583.625200pt;}
.y84{bottom:584.545200pt;}
.y1ab{bottom:585.097200pt;}
.y73{bottom:586.385200pt;}
.y1ed{bottom:586.708533pt;}
.y171{bottom:591.993067pt;}
.y26{bottom:595.292933pt;}
.ya7{bottom:597.439333pt;}
.y150{bottom:597.800933pt;}
.y20a{bottom:598.171333pt;}
.y106{bottom:599.663867pt;}
.y4d{bottom:599.971333pt;}
.ycd{bottom:601.856533pt;}
.y83{bottom:602.699867pt;}
.y1aa{bottom:603.205867pt;}
.y72{bottom:604.386533pt;}
.y1ec{bottom:605.342533pt;}
.y1cc{bottom:606.223867pt;}
.ya6{bottom:615.609333pt;}
.y209{bottom:616.171333pt;}
.y4c{bottom:617.464667pt;}
.y14f{bottom:617.800933pt;}
.y105{bottom:618.094533pt;}
.ycc{bottom:620.087867pt;}
.y82{bottom:620.854533pt;}
.y1a9{bottom:621.314533pt;}
.y71{bottom:622.387867pt;}
.ya{bottom:622.824533pt;}
.y25{bottom:624.372933pt;}
.y1cb{bottom:628.119867pt;}
.y170{bottom:629.737067pt;}
.y1eb{bottom:631.536533pt;}
.ya5{bottom:633.779333pt;}
.y4b{bottom:634.958000pt;}
.y104{bottom:636.525200pt;}
.y14e{bottom:637.800933pt;}
.ycb{bottom:638.319200pt;}
.y81{bottom:639.009200pt;}
.y1a8{bottom:639.423200pt;}
.y70{bottom:640.389200pt;}
.y9{bottom:644.437867pt;}
.y208{bottom:645.504667pt;}
.y1ca{bottom:650.015867pt;}
.y1ea{bottom:650.170533pt;}
.y16f{bottom:651.931067pt;}
.y4a{bottom:652.451333pt;}
.y103{bottom:654.955867pt;}
.yca{bottom:656.550533pt;}
.y80{bottom:657.163867pt;}
.y1a7{bottom:657.531867pt;}
.y14d{bottom:657.800933pt;}
.y6f{bottom:658.390533pt;}
.y8{bottom:666.051200pt;}
.y1e9{bottom:668.804533pt;}
.y49{bottom:669.944667pt;}
.ya4{bottom:670.847467pt;}
.y1c9{bottom:671.911867pt;}
.y102{bottom:673.386533pt;}
.yc9{bottom:674.781867pt;}
.y7f{bottom:675.318533pt;}
.y1a6{bottom:675.640533pt;}
.y24{bottom:676.138133pt;}
.y6e{bottom:676.391867pt;}
.y14c{bottom:677.800933pt;}
.y207{bottom:682.398000pt;}
.y48{bottom:687.438000pt;}
.y7{bottom:687.664533pt;}
.y101{bottom:691.817200pt;}
.ya3{bottom:692.357467pt;}
.yc8{bottom:693.013200pt;}
.y7e{bottom:693.473200pt;}
.y1a5{bottom:693.749200pt;}
.y1c8{bottom:693.807867pt;}
.y6d{bottom:694.393200pt;}
.y1e8{bottom:694.998533pt;}
.y14b{bottom:697.800933pt;}
.y206{bottom:699.731333pt;}
.y23{bottom:700.535467pt;}
.y47{bottom:704.931333pt;}
.y16e{bottom:708.101200pt;}
.y6{bottom:709.277867pt;}
.y100{bottom:710.247867pt;}
.yc7{bottom:711.244533pt;}
.y7d{bottom:711.627867pt;}
.y1a4{bottom:711.857867pt;}
.y6c{bottom:712.394533pt;}
.y1e7{bottom:713.632533pt;}
.y1c7{bottom:715.703867pt;}
.y205{bottom:717.064667pt;}
.y14a{bottom:717.800933pt;}
.y46{bottom:722.424667pt;}
.y22{bottom:724.932800pt;}
.y16d{bottom:726.961200pt;}
.yff{bottom:728.678533pt;}
.yc6{bottom:729.475867pt;}
.y7c{bottom:729.782533pt;}
.y1a3{bottom:729.966533pt;}
.y6b{bottom:730.395867pt;}
.y5{bottom:730.891200pt;}
.y204{bottom:734.398000pt;}
.y1c6{bottom:737.599867pt;}
.y149{bottom:737.800933pt;}
.y1e6{bottom:739.826533pt;}
.y45{bottom:739.918000pt;}
.y16c{bottom:745.821200pt;}
.yfe{bottom:747.109200pt;}
.yc5{bottom:747.707200pt;}
.ya2{bottom:747.891200pt;}
.y7b{bottom:747.937200pt;}
.y1a2{bottom:748.075200pt;}
.y6a{bottom:748.397200pt;}
.y203{bottom:751.731333pt;}
.y44{bottom:757.411333pt;}
.y148{bottom:757.800933pt;}
.y1e5{bottom:758.460533pt;}
.y1c5{bottom:759.495867pt;}
.y4{bottom:760.064533pt;}
.y16b{bottom:764.681200pt;}
.yfd{bottom:765.539867pt;}
.yc4{bottom:765.938533pt;}
.ya1{bottom:766.061200pt;}
.y7a{bottom:766.091867pt;}
.y1a1{bottom:766.183867pt;}
.y69{bottom:766.398533pt;}
.y21{bottom:768.245467pt;}
.y202{bottom:769.064667pt;}
.y43{bottom:774.904667pt;}
.y147{bottom:777.800933pt;}
.y1c4{bottom:781.391867pt;}
.y3{bottom:781.677867pt;}
.y16a{bottom:783.541200pt;}
.yfc{bottom:783.970533pt;}
.yc3{bottom:784.169867pt;}
.ya0{bottom:784.231200pt;}
.y79{bottom:784.246533pt;}
.y1a0{bottom:784.292533pt;}
.y68{bottom:784.399867pt;}
.y1e4{bottom:784.653867pt;}
.y201{bottom:786.398000pt;}
.y20{bottom:796.637467pt;}
.y67{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y42{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y1e{bottom:858.834667pt;}
.y1d{bottom:874.834667pt;}
.h13{height:30.107146pt;}
.h14{height:35.833333pt;}
.hc{height:36.229167pt;}
.h9{height:36.388396pt;}
.h7{height:36.796875pt;}
.h15{height:38.636719pt;}
.hb{height:40.757812pt;}
.h10{height:42.316406pt;}
.h4{height:45.286458pt;}
.ha{height:47.039062pt;}
.h3{height:47.550781pt;}
.he{height:52.079427pt;}
.h11{height:52.265625pt;}
.h12{height:52.323694pt;}
.h16{height:54.878906pt;}
.h2{height:56.608073pt;}
.hf{height:60.105469pt;}
.hd{height:61.136719pt;}
.h17{height:63.401042pt;}
.h8{height:73.171875pt;}
.h5{height:81.515625pt;}
.h6{height:94.078125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xd{left:72.389867pt;}
.xa{left:73.294800pt;}
.x1{left:74.388133pt;}
.x5{left:75.590533pt;}
.x25{left:80.236667pt;}
.x22{left:81.143333pt;}
.x16{left:89.027200pt;}
.x8{left:90.375067pt;}
.xb{left:92.191600pt;}
.x7{left:93.360533pt;}
.x9{left:94.267200pt;}
.x26{left:141.138800pt;}
.x27{left:142.048800pt;}
.x23{left:182.210000pt;}
.x24{left:184.970000pt;}
.xc{left:189.034667pt;}
.x10{left:191.322000pt;}
.x18{left:192.971600pt;}
.x4{left:204.853600pt;}
.x3{left:206.416000pt;}
.x2{left:207.418000pt;}
.x6{left:208.412400pt;}
.x11{left:209.988667pt;}
.xe{left:212.508667pt;}
.x13{left:214.588667pt;}
.x12{left:215.975333pt;}
.x14{left:217.735333pt;}
.xf{left:219.455333pt;}
.x19{left:237.451600pt;}
.x1a{left:281.931600pt;}
.x17{left:304.413867pt;}
.x1b{left:326.411600pt;}
.x15{left:370.255333pt;}
.x1c{left:415.371600pt;}
.x1d{left:459.851600pt;}
.x1e{left:496.331600pt;}
.x1f{left:512.331600pt;}
.x20{left:540.811600pt;}
.x21{left:556.811600pt;}
}




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