
    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_2d11826d3f9e29b039c1b1e6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_e68bdcb579bea7634c80b6c9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_9566bbd63e235596cff0357e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_dd1ab070dccb7781f6671369.woff')format("woff");}.ff4{font-family:ff4;line-height:1.007000;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_d5e30d33898a4a74ea7369c8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.054000;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_f25ac1351262cfbcbf4090ed.woff')format("woff");}.ff6{font-family:ff6;line-height:0.825000;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_1d01c61a04909e36f9093a67.woff')format("woff");}.ff7{font-family:ff7;line-height:0.913000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-16.377600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.416000px;}
.v2{vertical-align:16.378200px;}
.ls4{letter-spacing:-2.310000px;}
.ls5{letter-spacing:-1.848000px;}
.ls11{letter-spacing:-0.990000px;}
.ls18{letter-spacing:-0.918000px;}
.ls17{letter-spacing:-0.666019px;}
.lse{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.594000px;}
.lsd{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.462000px;}
.ls15{letter-spacing:-0.391776px;}
.ls13{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003600px;}
.ls14{letter-spacing:0.025200px;}
.lsa{letter-spacing:0.391776px;}
.ls6{letter-spacing:0.594000px;}
.ls8{letter-spacing:0.660000px;}
.ls9{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.924000px;}
.ls7{letter-spacing:0.990000px;}
.ls3{letter-spacing:1.122000px;}
.ls2{letter-spacing:3.168000px;}
.lsb{letter-spacing:9.042000px;}
.lsf{letter-spacing:53.064000px;}
.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:-13.068000px;}
.ws7{word-spacing:-12.408000px;}
.ws3b{word-spacing:-12.078000px;}
.ws15{word-spacing:-12.012000px;}
.ws1{word-spacing:-11.880000px;}
.ws39{word-spacing:-11.352000px;}
.ws24{word-spacing:-11.280000px;}
.ws2e{word-spacing:-10.920000px;}
.ws2{word-spacing:-10.692000px;}
.ws0{word-spacing:-9.504000px;}
.ws36{word-spacing:-9.288000px;}
.ws1f{word-spacing:-9.042000px;}
.ws48{word-spacing:-8.910000px;}
.ws1d{word-spacing:-8.148941px;}
.ws8{word-spacing:-7.757165px;}
.ws42{word-spacing:-7.365389px;}
.ws47{word-spacing:-7.091146px;}
.ws4{word-spacing:-3.960000px;}
.ws10{word-spacing:-3.168000px;}
.ws49{word-spacing:-1.848000px;}
.ws14{word-spacing:-1.452000px;}
.ws12{word-spacing:-1.122000px;}
.ws1b{word-spacing:-0.990000px;}
.ws46{word-spacing:-0.924000px;}
.ws21{word-spacing:-0.792000px;}
.ws1c{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.594000px;}
.ws16{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws40{word-spacing:0.066000px;}
.ws3a{word-spacing:0.462000px;}
.ws3c{word-spacing:0.594000px;}
.ws43{word-spacing:0.660000px;}
.wsd{word-spacing:0.858000px;}
.ws4a{word-spacing:0.918000px;}
.ws3d{word-spacing:0.990000px;}
.ws11{word-spacing:1.056000px;}
.ws3e{word-spacing:1.782000px;}
.ws4f{word-spacing:1.800000px;}
.ws17{word-spacing:1.848000px;}
.ws13{word-spacing:2.310000px;}
.ws1a{word-spacing:2.706000px;}
.wsf{word-spacing:2.904000px;}
.wsc{word-spacing:2.970000px;}
.wse{word-spacing:3.036000px;}
.ws4d{word-spacing:3.060000px;}
.ws1e{word-spacing:3.102000px;}
.ws44{word-spacing:4.224000px;}
.ws4e{word-spacing:5.280000px;}
.ws9{word-spacing:6.732000px;}
.ws20{word-spacing:8.250000px;}
.ws4c{word-spacing:8.460000px;}
.ws30{word-spacing:95.406000px;}
.ws34{word-spacing:121.386000px;}
.ws2f{word-spacing:132.126000px;}
.ws35{word-spacing:151.386000px;}
.ws2d{word-spacing:175.386000px;}
.ws33{word-spacing:193.920000px;}
.ws29{word-spacing:216.966000px;}
.ws26{word-spacing:226.866000px;}
.ws27{word-spacing:227.820000px;}
.ws31{word-spacing:228.180000px;}
.ws32{word-spacing:229.140000px;}
.ws2a{word-spacing:237.600000px;}
.ws28{word-spacing:248.640000px;}
.ws2c{word-spacing:266.340000px;}
.ws2b{word-spacing:268.200000px;}
.ws6{word-spacing:496.804800px;}
.ws5{word-spacing:573.855000px;}
.wsa{word-spacing:574.911000px;}
.ws3f{word-spacing:578.541000px;}
.ws4b{word-spacing:579.927000px;}
.ws45{word-spacing:580.983000px;}
.ws41{word-spacing:583.293000px;}
.ws19{word-spacing:585.735000px;}
.ws38{word-spacing:587.121000px;}
.ws37{word-spacing:588.177000px;}
.ws22{word-spacing:589.827000px;}
.ws23{word-spacing:810.540000px;}
.ws25{word-spacing:847.380000px;}
._19{margin-left:-79.068000px;}
._e{margin-left:-12.408000px;}
._11{margin-left:-8.403600px;}
._1c{margin-left:-6.938400px;}
._6{margin-left:-5.634600px;}
._5{margin-left:-3.955200px;}
._0{margin-left:-2.644800px;}
._1{margin-left:-1.454400px;}
._2{width:1.365000px;}
._3{width:2.633400px;}
._4{width:4.094400px;}
._9{width:5.202000px;}
._8{width:6.594000px;}
._7{width:8.305200px;}
._a{width:9.362400px;}
._10{width:10.672200px;}
._f{width:11.949000px;}
._d{width:13.446000px;}
._c{width:15.128400px;}
._b{width:16.312800px;}
._22{width:17.899200px;}
._1b{width:19.600200px;}
._28{width:20.954400px;}
._25{width:22.380600px;}
._23{width:23.582400px;}
._24{width:25.483200px;}
._27{width:27.114000px;}
._26{width:28.774800px;}
._1e{width:40.236000px;}
._1a{width:41.976000px;}
._1f{width:43.476000px;}
._20{width:44.740200px;}
._18{width:50.490000px;}
._17{width:51.546000px;}
._16{width:53.196000px;}
._1d{width:56.862000px;}
._15{width:62.370000px;}
._21{width:92.262000px;}
._14{width:198.688800px;}
._13{width:323.317200px;}
._12{width:404.100000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(163,40,50);}
.fs5{font-size:39.177600px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.275600px;}
.y4{bottom:57.401550px;}
.y1{bottom:68.775600px;}
.y3{bottom:71.955600px;}
.yb8{bottom:116.929050px;}
.y71{bottom:116.929200px;}
.yd8{bottom:117.741300px;}
.y10c{bottom:118.533300px;}
.y235{bottom:119.637300px;}
.y103{bottom:119.818650px;}
.y92{bottom:121.023600px;}
.ye3{bottom:121.023750px;}
.y4a{bottom:124.190550px;}
.y209{bottom:124.457850px;}
.y22{bottom:132.028650px;}
.yb7{bottom:133.129050px;}
.y120{bottom:133.129200px;}
.y18d{bottom:134.637300px;}
.y12e{bottom:135.445800px;}
.y70{bottom:137.223600px;}
.ye2{bottom:137.223900px;}
.yd7{bottom:137.541300px;}
.y234{bottom:137.637300px;}
.y152{bottom:138.250800px;}
.y10b{bottom:138.333300px;}
.y102{bottom:139.618650px;}
.y16c{bottom:141.055800px;}
.y208{bottom:142.457850px;}
.y49{bottom:143.990550px;}
.y11f{bottom:149.329200px;}
.y21{bottom:150.028650px;}
.yb6{bottom:153.423450px;}
.y91{bottom:153.423600px;}
.y18c{bottom:154.437300px;}
.y12d{bottom:155.245800px;}
.y233{bottom:155.637300px;}
.yd6{bottom:157.341300px;}
.y151{bottom:158.050800px;}
.y10a{bottom:158.133300px;}
.y101{bottom:159.418650px;}
.y207{bottom:160.457850px;}
.y16b{bottom:160.855800px;}
.y1c3{bottom:163.050300px;}
.y48{bottom:163.790550px;}
.yb5{bottom:169.623450px;}
.y90{bottom:169.623600px;}
.y232{bottom:173.637300px;}
.y18b{bottom:174.237300px;}
.y20{bottom:174.628650px;}
.y12c{bottom:175.045800px;}
.yd5{bottom:177.141300px;}
.y6f{bottom:177.141450px;}
.y150{bottom:177.850800px;}
.y109{bottom:177.933300px;}
.y206{bottom:178.457850px;}
.y100{bottom:179.218650px;}
.y16a{bottom:180.655800px;}
.y1d9{bottom:181.729200px;}
.y1c2{bottom:182.850300px;}
.y47{bottom:183.590550px;}
.yb4{bottom:185.823450px;}
.y8f{bottom:185.823600px;}
.y1a1{bottom:186.348300px;}
.y231{bottom:191.637300px;}
.y1f{bottom:192.628650px;}
.y18a{bottom:194.037300px;}
.y12b{bottom:194.845800px;}
.y205{bottom:196.457850px;}
.yd4{bottom:196.941300px;}
.y6e{bottom:196.941450px;}
.y14f{bottom:197.650800px;}
.y108{bottom:197.733300px;}
.y1d8{bottom:197.929200px;}
.yff{bottom:199.018650px;}
.y169{bottom:200.455800px;}
.y1c1{bottom:202.650300px;}
.y184{bottom:203.343300px;}
.y46{bottom:203.390550px;}
.y1a0{bottom:206.148300px;}
.y230{bottom:209.637300px;}
.y1e{bottom:210.628650px;}
.y204{bottom:214.457850px;}
.y12a{bottom:214.645800px;}
.yd3{bottom:216.741300px;}
.y6d{bottom:216.741450px;}
.y14e{bottom:217.450800px;}
.y107{bottom:217.533300px;}
.y1d7{bottom:218.223600px;}
.yfe{bottom:218.818650px;}
.y168{bottom:220.255800px;}
.y1c0{bottom:222.450300px;}
.y183{bottom:223.143300px;}
.y45{bottom:223.190550px;}
.y19f{bottom:225.948300px;}
.y22f{bottom:227.637300px;}
.y1d{bottom:228.628650px;}
.y189{bottom:228.720300px;}
.y11e{bottom:231.678300px;}
.y203{bottom:232.457850px;}
.y129{bottom:234.445800px;}
.y8e{bottom:235.746000px;}
.yb3{bottom:236.318850px;}
.yd2{bottom:236.541300px;}
.y6c{bottom:236.541450px;}
.y14d{bottom:237.250800px;}
.y106{bottom:237.333300px;}
.yfd{bottom:238.618650px;}
.y167{bottom:240.055800px;}
.y1bf{bottom:242.250300px;}
.y182{bottom:242.943300px;}
.y44{bottom:242.990550px;}
.y22e{bottom:245.637300px;}
.y1c{bottom:246.628650px;}
.y202{bottom:250.457850px;}
.y11d{bottom:251.473800px;}
.y19a{bottom:254.245800px;}
.y8d{bottom:255.546000px;}
.yb2{bottom:256.118850px;}
.yd1{bottom:256.341300px;}
.y6b{bottom:256.341450px;}
.y14c{bottom:257.050800px;}
.y105{bottom:257.133300px;}
.yfc{bottom:258.418650px;}
.y1be{bottom:262.050300px;}
.y1d6{bottom:262.051500px;}
.y128{bottom:262.743300px;}
.y43{bottom:262.790550px;}
.y22d{bottom:263.637300px;}
.y1b{bottom:264.628650px;}
.y166{bottom:268.353300px;}
.y201{bottom:268.457850px;}
.y11c{bottom:271.273800px;}
.y199{bottom:274.045800px;}
.y8c{bottom:275.346000px;}
.yb1{bottom:275.918850px;}
.yd0{bottom:276.141300px;}
.y6a{bottom:276.141450px;}
.y14b{bottom:276.850800px;}
.y104{bottom:276.933300px;}
.yfb{bottom:278.218650px;}
.y22c{bottom:281.637300px;}
.y1bd{bottom:281.850300px;}
.y1d5{bottom:281.851500px;}
.y181{bottom:282.543300px;}
.y42{bottom:282.590550px;}
.y1a{bottom:282.628650px;}
.y200{bottom:286.457850px;}
.y127{bottom:291.040800px;}
.y11b{bottom:291.073800px;}
.y198{bottom:293.845800px;}
.y8b{bottom:295.146000px;}
.yb0{bottom:295.718850px;}
.ycf{bottom:295.941300px;}
.y69{bottom:295.941450px;}
.y14a{bottom:296.650800px;}
.ye1{bottom:296.733300px;}
.yfa{bottom:298.018650px;}
.y22b{bottom:299.637300px;}
.y19{bottom:300.628650px;}
.y1bc{bottom:301.650300px;}
.y1d4{bottom:301.651500px;}
.y180{bottom:302.343300px;}
.y41{bottom:302.390550px;}
.y1ff{bottom:304.457850px;}
.y126{bottom:310.840800px;}
.y11a{bottom:310.873800px;}
.y197{bottom:313.645800px;}
.y8a{bottom:314.946000px;}
.yaf{bottom:315.518850px;}
.yce{bottom:315.741300px;}
.y68{bottom:315.741450px;}
.y165{bottom:316.450800px;}
.ye0{bottom:316.533300px;}
.y22a{bottom:317.637300px;}
.yf9{bottom:317.818650px;}
.y18{bottom:318.628650px;}
.y1bb{bottom:321.450300px;}
.y1d3{bottom:321.451500px;}
.y17f{bottom:322.143300px;}
.y40{bottom:322.190550px;}
.y1fe{bottom:322.457850px;}
.y149{bottom:324.948300px;}
.y18e{bottom:330.624300px;}
.y125{bottom:330.640800px;}
.y119{bottom:330.673800px;}
.y196{bottom:333.445800px;}
.y89{bottom:334.746000px;}
.yae{bottom:335.318850px;}
.ycd{bottom:335.541300px;}
.y67{bottom:335.541450px;}
.y229{bottom:335.637300px;}
.y164{bottom:336.250800px;}
.ydf{bottom:336.333300px;}
.yf8{bottom:337.618650px;}
.y1fd{bottom:340.457850px;}
.y17{bottom:340.873650px;}
.y1ba{bottom:341.250300px;}
.y1d2{bottom:341.251500px;}
.y17e{bottom:341.943300px;}
.y3f{bottom:341.990550px;}
.y124{bottom:350.440800px;}
.y118{bottom:350.473800px;}
.y148{bottom:353.245800px;}
.y228{bottom:353.637300px;}
.y88{bottom:354.546000px;}
.yad{bottom:355.118850px;}
.ycc{bottom:355.341300px;}
.y66{bottom:355.341450px;}
.y163{bottom:356.050800px;}
.yde{bottom:356.133300px;}
.yf7{bottom:357.418650px;}
.y1fc{bottom:358.457850px;}
.y1b9{bottom:361.050300px;}
.y1d1{bottom:361.051500px;}
.y188{bottom:361.743300px;}
.y3e{bottom:361.790550px;}
.y17d{bottom:370.240800px;}
.y227{bottom:371.637300px;}
.y147{bottom:373.045800px;}
.y87{bottom:374.346000px;}
.yac{bottom:374.920500px;}
.ycb{bottom:375.141300px;}
.y65{bottom:375.141450px;}
.ydd{bottom:375.933300px;}
.y1fb{bottom:376.457850px;}
.yf6{bottom:377.218650px;}
.y123{bottom:378.738300px;}
.y1b8{bottom:380.850300px;}
.y1d0{bottom:380.851500px;}
.y3d{bottom:381.590550px;}
.y162{bottom:384.348300px;}
.y117{bottom:385.156800px;}
.y16{bottom:387.183000px;}
.y226{bottom:389.637300px;}
.y187{bottom:390.040800px;}
.y146{bottom:392.845800px;}
.y86{bottom:394.146000px;}
.y1fa{bottom:394.457850px;}
.yab{bottom:394.720500px;}
.y190{bottom:394.941300px;}
.y64{bottom:394.941450px;}
.ydc{bottom:395.733300px;}
.y17c{bottom:398.538300px;}
.y1b7{bottom:400.650300px;}
.y1cf{bottom:400.651500px;}
.y3c{bottom:401.390550px;}
.y15{bottom:402.181500px;}
.y122{bottom:407.035800px;}
.y225{bottom:407.637300px;}
.yca{bottom:409.824300px;}
.yf5{bottom:411.901650px;}
.y1f9{bottom:412.457850px;}
.y145{bottom:412.645800px;}
.y85{bottom:413.947650px;}
.yaa{bottom:414.520500px;}
.y1e7{bottom:414.741300px;}
.y63{bottom:414.741450px;}
.ydb{bottom:415.533300px;}
.y14{bottom:417.180000px;}
.y17b{bottom:418.338300px;}
.y1b6{bottom:420.450300px;}
.y1ce{bottom:420.451500px;}
.y3b{bottom:421.190550px;}
.y224{bottom:425.637300px;}
.y121{bottom:426.835800px;}
.yc9{bottom:429.624300px;}
.y1f8{bottom:430.457850px;}
.y116{bottom:430.465800px;}
.y144{bottom:432.445800px;}
.y84{bottom:433.747650px;}
.ya9{bottom:434.320500px;}
.y1e6{bottom:434.541300px;}
.y62{bottom:434.541450px;}
.yda{bottom:435.333300px;}
.y13{bottom:436.431000px;}
.y17a{bottom:438.138300px;}
.y1b5{bottom:440.250300px;}
.y1cd{bottom:440.251500px;}
.y3a{bottom:440.990550px;}
.y223{bottom:443.637300px;}
.y1f7{bottom:448.457850px;}
.y18f{bottom:449.424300px;}
.y115{bottom:450.265800px;}
.y143{bottom:452.245800px;}
.y83{bottom:453.547650px;}
.ya8{bottom:454.120500px;}
.y1e5{bottom:454.341300px;}
.y61{bottom:454.341450px;}
.yd9{bottom:455.133300px;}
.yf4{bottom:457.213500px;}
.y179{bottom:457.938300px;}
.y1b4{bottom:460.050300px;}
.y1cc{bottom:460.051500px;}
.y39{bottom:460.790550px;}
.y222{bottom:461.637300px;}
.y1f6{bottom:466.457850px;}
.y114{bottom:470.065800px;}
.y12{bottom:471.247350px;}
.y142{bottom:472.045800px;}
.y82{bottom:473.347650px;}
.ya7{bottom:473.920500px;}
.y1e4{bottom:474.141300px;}
.y60{bottom:474.141450px;}
.yc8{bottom:474.933300px;}
.y178{bottom:477.738300px;}
.y221{bottom:479.637300px;}
.y1cb{bottom:479.851500px;}
.y19e{bottom:480.543300px;}
.y38{bottom:480.590550px;}
.yf3{bottom:482.438100px;}
.y1f5{bottom:484.457850px;}
.y113{bottom:489.865800px;}
.y11{bottom:491.047350px;}
.y161{bottom:491.845800px;}
.ya6{bottom:493.720500px;}
.y1e3{bottom:493.941300px;}
.yc7{bottom:494.733300px;}
.y177{bottom:497.538300px;}
.y220{bottom:497.637300px;}
.y1b3{bottom:499.650300px;}
.y1ca{bottom:499.651500px;}
.y141{bottom:500.343300px;}
.y37{bottom:500.390550px;}
.yf2{bottom:500.438100px;}
.y1f4{bottom:502.457850px;}
.y81{bottom:508.030650px;}
.y5f{bottom:508.824450px;}
.y19d{bottom:508.840800px;}
.y112{bottom:509.665800px;}
.y10{bottom:510.847350px;}
.y195{bottom:511.645800px;}
.ya5{bottom:513.520500px;}
.y1e2{bottom:513.741300px;}
.yc6{bottom:514.533300px;}
.y21f{bottom:515.637300px;}
.y176{bottom:517.338300px;}
.y1b2{bottom:519.450300px;}
.y1c9{bottom:519.451500px;}
.y160{bottom:520.143300px;}
.y36{bottom:520.190550px;}
.y1f3{bottom:520.457850px;}
.yf1{bottom:528.488100px;}
.y140{bottom:528.640800px;}
.y111{bottom:529.465800px;}
.yf{bottom:530.647350px;}
.y194{bottom:531.445800px;}
.ya4{bottom:533.320500px;}
.y1e1{bottom:533.541300px;}
.y21e{bottom:533.637300px;}
.yc5{bottom:534.333300px;}
.y175{bottom:537.138300px;}
.y1f2{bottom:538.457850px;}
.y1b1{bottom:539.250300px;}
.y1c8{bottom:539.251500px;}
.y35{bottom:539.990550px;}
.y13f{bottom:548.440800px;}
.y110{bottom:549.265800px;}
.ye{bottom:550.447350px;}
.y193{bottom:551.245800px;}
.y21d{bottom:551.637300px;}
.ya3{bottom:553.120500px;}
.y80{bottom:553.339650px;}
.y1e0{bottom:553.341300px;}
.yc4{bottom:554.133300px;}
.y5e{bottom:554.133450px;}
.y1f1{bottom:556.457850px;}
.yf0{bottom:556.538100px;}
.y174{bottom:556.938300px;}
.y1b0{bottom:559.050300px;}
.y1c7{bottom:559.051500px;}
.y15f{bottom:559.743300px;}
.y34{bottom:559.790550px;}
.y13e{bottom:568.240800px;}
.y10f{bottom:569.065800px;}
.y21c{bottom:569.637300px;}
.yd{bottom:570.247350px;}
.y7f{bottom:573.139650px;}
.y1df{bottom:573.141300px;}
.yc3{bottom:573.933300px;}
.y5d{bottom:573.933450px;}
.y1f0{bottom:574.457850px;}
.y173{bottom:576.738300px;}
.y1af{bottom:578.850300px;}
.y1c6{bottom:578.851500px;}
.y192{bottom:579.543300px;}
.y33{bottom:579.590550px;}
.yef{bottom:584.588100px;}
.y21b{bottom:587.637300px;}
.ya2{bottom:587.803500px;}
.y13d{bottom:588.040800px;}
.y10e{bottom:588.865800px;}
.yc{bottom:590.047350px;}
.y1ef{bottom:592.457850px;}
.y7e{bottom:592.939650px;}
.y1de{bottom:592.941300px;}
.yc2{bottom:593.733300px;}
.y5c{bottom:593.733450px;}
.y172{bottom:596.538300px;}
.y1c5{bottom:598.651500px;}
.y15e{bottom:599.343300px;}
.y32{bottom:599.390550px;}
.y21a{bottom:605.637300px;}
.y13c{bottom:607.840800px;}
.y10d{bottom:608.665800px;}
.yb{bottom:609.847350px;}
.y1ee{bottom:610.457850px;}
.yee{bottom:612.638100px;}
.y7d{bottom:612.739650px;}
.y1dd{bottom:612.741300px;}
.yc1{bottom:613.533300px;}
.y5b{bottom:613.533450px;}
.y171{bottom:616.338300px;}
.y1ae{bottom:618.450300px;}
.y15d{bottom:619.143300px;}
.y31{bottom:619.190550px;}
.y219{bottom:623.637300px;}
.y19c{bottom:624.835800px;}
.y13b{bottom:627.640800px;}
.y1ed{bottom:628.457850px;}
.y7c{bottom:632.539650px;}
.y1dc{bottom:632.541300px;}
.ya1{bottom:633.112500px;}
.yc0{bottom:633.333300px;}
.y5a{bottom:633.333450px;}
.y170{bottom:636.138300px;}
.y1ad{bottom:638.250300px;}
.y15c{bottom:638.943300px;}
.y30{bottom:638.990550px;}
.yed{bottom:640.688100px;}
.y218{bottom:641.637300px;}
.y186{bottom:644.635800px;}
.y1ec{bottom:646.457850px;}
.y13a{bottom:647.440800px;}
.ya{bottom:649.462350px;}
.y7b{bottom:652.339650px;}
.y1db{bottom:652.341300px;}
.ya0{bottom:652.912500px;}
.ybf{bottom:653.133300px;}
.y59{bottom:653.133450px;}
.y16f{bottom:655.938300px;}
.y1ac{bottom:658.050300px;}
.y15b{bottom:658.743300px;}
.y2f{bottom:658.790550px;}
.y217{bottom:659.637300px;}
.y19b{bottom:664.435800px;}
.y1eb{bottom:664.457850px;}
.y139{bottom:667.240800px;}
.yec{bottom:668.738100px;}
.y9{bottom:669.262350px;}
.y7a{bottom:672.139650px;}
.y9f{bottom:672.712500px;}
.ybe{bottom:672.933300px;}
.y58{bottom:672.933450px;}
.y16e{bottom:675.738300px;}
.y216{bottom:677.637300px;}
.y1ab{bottom:677.850300px;}
.y1ea{bottom:682.457850px;}
.y185{bottom:684.235800px;}
.y1da{bottom:687.024300px;}
.y15a{bottom:687.040800px;}
.y8{bottom:689.062350px;}
.y79{bottom:691.939650px;}
.y9e{bottom:692.512500px;}
.ybd{bottom:692.733300px;}
.y57{bottom:692.733450px;}
.y2e{bottom:693.473550px;}
.y138{bottom:695.538300px;}
.y215{bottom:695.637300px;}
.yeb{bottom:696.788100px;}
.y1aa{bottom:697.650300px;}
.y1e9{bottom:700.457850px;}
.y16d{bottom:704.035800px;}
.y191{bottom:706.840800px;}
.y78{bottom:711.739650px;}
.y9d{bottom:712.312500px;}
.ybc{bottom:712.533300px;}
.y56{bottom:712.533450px;}
.y214{bottom:713.637300px;}
.y159{bottom:715.338300px;}
.y7{bottom:717.357300px;}
.y1a9{bottom:717.450300px;}
.y1e8{bottom:718.457850px;}
.y137{bottom:723.835800px;}
.yea{bottom:724.838100px;}
.y77{bottom:731.541300px;}
.y213{bottom:731.637300px;}
.y9c{bottom:732.112500px;}
.ybb{bottom:732.333300px;}
.y55{bottom:732.333450px;}
.y158{bottom:735.138300px;}
.y1a8{bottom:737.250300px;}
.y2d{bottom:738.792300px;}
.y6{bottom:741.661800px;}
.y136{bottom:743.635800px;}
.y212{bottom:749.637300px;}
.y76{bottom:751.341300px;}
.y9b{bottom:751.912500px;}
.yba{bottom:752.133300px;}
.y54{bottom:752.133450px;}
.ye9{bottom:752.888100px;}
.y157{bottom:754.938300px;}
.y2c{bottom:756.792300px;}
.y1a7{bottom:757.050300px;}
.y135{bottom:763.435800px;}
.y5{bottom:765.966300px;}
.y211{bottom:767.637300px;}
.ye8{bottom:770.888100px;}
.y75{bottom:771.141300px;}
.y9a{bottom:771.712500px;}
.yb9{bottom:771.933300px;}
.y53{bottom:771.933450px;}
.y156{bottom:774.738300px;}
.y1a6{bottom:776.850300px;}
.y2b{bottom:781.392300px;}
.y134{bottom:783.235800px;}
.y210{bottom:785.637300px;}
.y74{bottom:790.941300px;}
.y99{bottom:791.512500px;}
.y52{bottom:791.733300px;}
.y155{bottom:794.538300px;}
.y1a5{bottom:796.650300px;}
.ye7{bottom:798.938100px;}
.y2a{bottom:799.392300px;}
.y133{bottom:803.035800px;}
.y20f{bottom:803.637300px;}
.y73{bottom:810.741300px;}
.y98{bottom:811.312500px;}
.y51{bottom:811.533300px;}
.y154{bottom:814.338300px;}
.y1a4{bottom:816.450300px;}
.y29{bottom:817.392300px;}
.y20e{bottom:821.637300px;}
.y132{bottom:822.835800px;}
.ye6{bottom:826.988100px;}
.y97{bottom:831.112500px;}
.y50{bottom:831.333300px;}
.y153{bottom:834.138300px;}
.y28{bottom:835.392300px;}
.y1a3{bottom:836.250300px;}
.y20d{bottom:839.637300px;}
.y131{bottom:842.635800px;}
.y72{bottom:845.424300px;}
.y96{bottom:850.912500px;}
.y4f{bottom:851.133300px;}
.y27{bottom:853.392300px;}
.ye5{bottom:855.038100px;}
.y1a2{bottom:856.050300px;}
.y20c{bottom:857.637300px;}
.y130{bottom:862.435800px;}
.y95{bottom:870.712500px;}
.y4e{bottom:870.933300px;}
.y26{bottom:871.392300px;}
.y20b{bottom:875.637300px;}
.y1c4{bottom:875.850300px;}
.y12f{bottom:882.235800px;}
.ye4{bottom:887.592300px;}
.y25{bottom:889.392300px;}
.y94{bottom:890.512500px;}
.y4d{bottom:890.733300px;}
.y20a{bottom:893.637300px;}
.y93{bottom:910.312500px;}
.y4c{bottom:910.533300px;}
.y24{bottom:911.637300px;}
.y23{bottom:944.548950px;}
.y4b{bottom:945.652950px;}
.hb{height:31.498790px;}
.h3{height:32.064000px;}
.h4{height:33.768000px;}
.h2{height:38.592000px;}
.hd{height:40.080000px;}
.h9{height:43.416000px;}
.h8{height:45.360000px;}
.h6{height:48.240000px;}
.hc{height:48.660000px;}
.hf{height:49.896000px;}
.h7{height:53.064000px;}
.ha{height:53.064600px;}
.h10{height:53.068800px;}
.he{height:53.082000px;}
.h5{height:53.526000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:97.795200px;}
.x1{left:106.299150px;}
.x1f{left:109.143600px;}
.x4{left:113.470200px;}
.x11{left:114.803250px;}
.x21{left:116.013600px;}
.x22{left:121.653600px;}
.x14{left:123.314700px;}
.x1e{left:125.163600px;}
.x15{left:127.871100px;}
.x20{left:130.413600px;}
.x29{left:136.081650px;}
.x7{left:139.006950px;}
.x25{left:141.800850px;}
.x8{left:143.836950px;}
.x26{left:150.304650px;}
.x18{left:154.563600px;}
.x27{left:156.818100px;}
.x5{left:165.049200px;}
.x28{left:170.084100px;}
.x17{left:173.658600px;}
.x19{left:179.508600px;}
.x23{left:215.283600px;}
.x6{left:243.770700px;}
.x9{left:254.506950px;}
.xb{left:274.180500px;}
.x1b{left:424.548600px;}
.x1a{left:437.988600px;}
.x2{left:441.579150px;}
.xc{left:466.165500px;}
.xf{left:490.596300px;}
.xd{left:497.886600px;}
.xe{left:503.270850px;}
.x3{left:510.696450px;}
.x10{left:514.911300px;}
.xa{left:532.013700px;}
.x1d{left:535.998600px;}
.x1c{left:541.743600px;}
.x13{left:602.665800px;}
.x2a{left:604.117500px;}
.x24{left:606.246000px;}
.x16{left:608.242500px;}
@media print{
.v3{vertical-align:-14.557867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.925333pt;}
.v2{vertical-align:14.558400pt;}
.ls4{letter-spacing:-2.053333pt;}
.ls5{letter-spacing:-1.642667pt;}
.ls11{letter-spacing:-0.880000pt;}
.ls18{letter-spacing:-0.816000pt;}
.ls17{letter-spacing:-0.592017pt;}
.lse{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.528000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.410667pt;}
.ls15{letter-spacing:-0.348245pt;}
.ls13{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003200pt;}
.ls14{letter-spacing:0.022400pt;}
.lsa{letter-spacing:0.348245pt;}
.ls6{letter-spacing:0.528000pt;}
.ls8{letter-spacing:0.586667pt;}
.ls9{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.821333pt;}
.ls7{letter-spacing:0.880000pt;}
.ls3{letter-spacing:0.997333pt;}
.ls2{letter-spacing:2.816000pt;}
.lsb{letter-spacing:8.037333pt;}
.lsf{letter-spacing:47.168000pt;}
.wsb{word-spacing:-11.616000pt;}
.ws7{word-spacing:-11.029333pt;}
.ws3b{word-spacing:-10.736000pt;}
.ws15{word-spacing:-10.677333pt;}
.ws1{word-spacing:-10.560000pt;}
.ws39{word-spacing:-10.090667pt;}
.ws24{word-spacing:-10.026667pt;}
.ws2e{word-spacing:-9.706667pt;}
.ws2{word-spacing:-9.504000pt;}
.ws0{word-spacing:-8.448000pt;}
.ws36{word-spacing:-8.256000pt;}
.ws1f{word-spacing:-8.037333pt;}
.ws48{word-spacing:-7.920000pt;}
.ws1d{word-spacing:-7.243503pt;}
.ws8{word-spacing:-6.895258pt;}
.ws42{word-spacing:-6.547012pt;}
.ws47{word-spacing:-6.303241pt;}
.ws4{word-spacing:-3.520000pt;}
.ws10{word-spacing:-2.816000pt;}
.ws49{word-spacing:-1.642667pt;}
.ws14{word-spacing:-1.290667pt;}
.ws12{word-spacing:-0.997333pt;}
.ws1b{word-spacing:-0.880000pt;}
.ws46{word-spacing:-0.821333pt;}
.ws21{word-spacing:-0.704000pt;}
.ws1c{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.528000pt;}
.ws16{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws40{word-spacing:0.058667pt;}
.ws3a{word-spacing:0.410667pt;}
.ws3c{word-spacing:0.528000pt;}
.ws43{word-spacing:0.586667pt;}
.wsd{word-spacing:0.762667pt;}
.ws4a{word-spacing:0.816000pt;}
.ws3d{word-spacing:0.880000pt;}
.ws11{word-spacing:0.938667pt;}
.ws3e{word-spacing:1.584000pt;}
.ws4f{word-spacing:1.600000pt;}
.ws17{word-spacing:1.642667pt;}
.ws13{word-spacing:2.053333pt;}
.ws1a{word-spacing:2.405333pt;}
.wsf{word-spacing:2.581333pt;}
.wsc{word-spacing:2.640000pt;}
.wse{word-spacing:2.698667pt;}
.ws4d{word-spacing:2.720000pt;}
.ws1e{word-spacing:2.757333pt;}
.ws44{word-spacing:3.754667pt;}
.ws4e{word-spacing:4.693333pt;}
.ws9{word-spacing:5.984000pt;}
.ws20{word-spacing:7.333333pt;}
.ws4c{word-spacing:7.520000pt;}
.ws30{word-spacing:84.805333pt;}
.ws34{word-spacing:107.898667pt;}
.ws2f{word-spacing:117.445333pt;}
.ws35{word-spacing:134.565333pt;}
.ws2d{word-spacing:155.898667pt;}
.ws33{word-spacing:172.373333pt;}
.ws29{word-spacing:192.858667pt;}
.ws26{word-spacing:201.658667pt;}
.ws27{word-spacing:202.506667pt;}
.ws31{word-spacing:202.826667pt;}
.ws32{word-spacing:203.680000pt;}
.ws2a{word-spacing:211.200000pt;}
.ws28{word-spacing:221.013333pt;}
.ws2c{word-spacing:236.746667pt;}
.ws2b{word-spacing:238.400000pt;}
.ws6{word-spacing:441.604267pt;}
.ws5{word-spacing:510.093333pt;}
.wsa{word-spacing:511.032000pt;}
.ws3f{word-spacing:514.258667pt;}
.ws4b{word-spacing:515.490667pt;}
.ws45{word-spacing:516.429333pt;}
.ws41{word-spacing:518.482667pt;}
.ws19{word-spacing:520.653333pt;}
.ws38{word-spacing:521.885333pt;}
.ws37{word-spacing:522.824000pt;}
.ws22{word-spacing:524.290667pt;}
.ws23{word-spacing:720.480000pt;}
.ws25{word-spacing:753.226667pt;}
._19{margin-left:-70.282667pt;}
._e{margin-left:-11.029333pt;}
._11{margin-left:-7.469867pt;}
._1c{margin-left:-6.167467pt;}
._6{margin-left:-5.008533pt;}
._5{margin-left:-3.515733pt;}
._0{margin-left:-2.350933pt;}
._1{margin-left:-1.292800pt;}
._2{width:1.213333pt;}
._3{width:2.340800pt;}
._4{width:3.639467pt;}
._9{width:4.624000pt;}
._8{width:5.861333pt;}
._7{width:7.382400pt;}
._a{width:8.322133pt;}
._10{width:9.486400pt;}
._f{width:10.621333pt;}
._d{width:11.952000pt;}
._c{width:13.447467pt;}
._b{width:14.500267pt;}
._22{width:15.910400pt;}
._1b{width:17.422400pt;}
._28{width:18.626133pt;}
._25{width:19.893867pt;}
._23{width:20.962133pt;}
._24{width:22.651733pt;}
._27{width:24.101333pt;}
._26{width:25.577600pt;}
._1e{width:35.765333pt;}
._1a{width:37.312000pt;}
._1f{width:38.645333pt;}
._20{width:39.769067pt;}
._18{width:44.880000pt;}
._17{width:45.818667pt;}
._16{width:47.285333pt;}
._1d{width:50.544000pt;}
._15{width:55.440000pt;}
._21{width:82.010667pt;}
._14{width:176.612267pt;}
._13{width:287.393067pt;}
._12{width:359.200000pt;}
.fs5{font-size:34.824533pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.133867pt;}
.y4{bottom:51.023600pt;}
.y1{bottom:61.133867pt;}
.y3{bottom:63.960533pt;}
.yb8{bottom:103.936933pt;}
.y71{bottom:103.937067pt;}
.yd8{bottom:104.658933pt;}
.y10c{bottom:105.362933pt;}
.y235{bottom:106.344267pt;}
.y103{bottom:106.505467pt;}
.y92{bottom:107.576533pt;}
.ye3{bottom:107.576667pt;}
.y4a{bottom:110.391600pt;}
.y209{bottom:110.629200pt;}
.y22{bottom:117.358800pt;}
.yb7{bottom:118.336933pt;}
.y120{bottom:118.337067pt;}
.y18d{bottom:119.677600pt;}
.y12e{bottom:120.396267pt;}
.y70{bottom:121.976533pt;}
.ye2{bottom:121.976800pt;}
.yd7{bottom:122.258933pt;}
.y234{bottom:122.344267pt;}
.y152{bottom:122.889600pt;}
.y10b{bottom:122.962933pt;}
.y102{bottom:124.105467pt;}
.y16c{bottom:125.382933pt;}
.y208{bottom:126.629200pt;}
.y49{bottom:127.991600pt;}
.y11f{bottom:132.737067pt;}
.y21{bottom:133.358800pt;}
.yb6{bottom:136.376400pt;}
.y91{bottom:136.376533pt;}
.y18c{bottom:137.277600pt;}
.y12d{bottom:137.996267pt;}
.y233{bottom:138.344267pt;}
.yd6{bottom:139.858933pt;}
.y151{bottom:140.489600pt;}
.y10a{bottom:140.562933pt;}
.y101{bottom:141.705467pt;}
.y207{bottom:142.629200pt;}
.y16b{bottom:142.982933pt;}
.y1c3{bottom:144.933600pt;}
.y48{bottom:145.591600pt;}
.yb5{bottom:150.776400pt;}
.y90{bottom:150.776533pt;}
.y232{bottom:154.344267pt;}
.y18b{bottom:154.877600pt;}
.y20{bottom:155.225467pt;}
.y12c{bottom:155.596267pt;}
.yd5{bottom:157.458933pt;}
.y6f{bottom:157.459067pt;}
.y150{bottom:158.089600pt;}
.y109{bottom:158.162933pt;}
.y206{bottom:158.629200pt;}
.y100{bottom:159.305467pt;}
.y16a{bottom:160.582933pt;}
.y1d9{bottom:161.537067pt;}
.y1c2{bottom:162.533600pt;}
.y47{bottom:163.191600pt;}
.yb4{bottom:165.176400pt;}
.y8f{bottom:165.176533pt;}
.y1a1{bottom:165.642933pt;}
.y231{bottom:170.344267pt;}
.y1f{bottom:171.225467pt;}
.y18a{bottom:172.477600pt;}
.y12b{bottom:173.196267pt;}
.y205{bottom:174.629200pt;}
.yd4{bottom:175.058933pt;}
.y6e{bottom:175.059067pt;}
.y14f{bottom:175.689600pt;}
.y108{bottom:175.762933pt;}
.y1d8{bottom:175.937067pt;}
.yff{bottom:176.905467pt;}
.y169{bottom:178.182933pt;}
.y1c1{bottom:180.133600pt;}
.y184{bottom:180.749600pt;}
.y46{bottom:180.791600pt;}
.y1a0{bottom:183.242933pt;}
.y230{bottom:186.344267pt;}
.y1e{bottom:187.225467pt;}
.y204{bottom:190.629200pt;}
.y12a{bottom:190.796267pt;}
.yd3{bottom:192.658933pt;}
.y6d{bottom:192.659067pt;}
.y14e{bottom:193.289600pt;}
.y107{bottom:193.362933pt;}
.y1d7{bottom:193.976533pt;}
.yfe{bottom:194.505467pt;}
.y168{bottom:195.782933pt;}
.y1c0{bottom:197.733600pt;}
.y183{bottom:198.349600pt;}
.y45{bottom:198.391600pt;}
.y19f{bottom:200.842933pt;}
.y22f{bottom:202.344267pt;}
.y1d{bottom:203.225467pt;}
.y189{bottom:203.306933pt;}
.y11e{bottom:205.936267pt;}
.y203{bottom:206.629200pt;}
.y129{bottom:208.396267pt;}
.y8e{bottom:209.552000pt;}
.yb3{bottom:210.061200pt;}
.yd2{bottom:210.258933pt;}
.y6c{bottom:210.259067pt;}
.y14d{bottom:210.889600pt;}
.y106{bottom:210.962933pt;}
.yfd{bottom:212.105467pt;}
.y167{bottom:213.382933pt;}
.y1bf{bottom:215.333600pt;}
.y182{bottom:215.949600pt;}
.y44{bottom:215.991600pt;}
.y22e{bottom:218.344267pt;}
.y1c{bottom:219.225467pt;}
.y202{bottom:222.629200pt;}
.y11d{bottom:223.532267pt;}
.y19a{bottom:225.996267pt;}
.y8d{bottom:227.152000pt;}
.yb2{bottom:227.661200pt;}
.yd1{bottom:227.858933pt;}
.y6b{bottom:227.859067pt;}
.y14c{bottom:228.489600pt;}
.y105{bottom:228.562933pt;}
.yfc{bottom:229.705467pt;}
.y1be{bottom:232.933600pt;}
.y1d6{bottom:232.934667pt;}
.y128{bottom:233.549600pt;}
.y43{bottom:233.591600pt;}
.y22d{bottom:234.344267pt;}
.y1b{bottom:235.225467pt;}
.y166{bottom:238.536267pt;}
.y201{bottom:238.629200pt;}
.y11c{bottom:241.132267pt;}
.y199{bottom:243.596267pt;}
.y8c{bottom:244.752000pt;}
.yb1{bottom:245.261200pt;}
.yd0{bottom:245.458933pt;}
.y6a{bottom:245.459067pt;}
.y14b{bottom:246.089600pt;}
.y104{bottom:246.162933pt;}
.yfb{bottom:247.305467pt;}
.y22c{bottom:250.344267pt;}
.y1bd{bottom:250.533600pt;}
.y1d5{bottom:250.534667pt;}
.y181{bottom:251.149600pt;}
.y42{bottom:251.191600pt;}
.y1a{bottom:251.225467pt;}
.y200{bottom:254.629200pt;}
.y127{bottom:258.702933pt;}
.y11b{bottom:258.732267pt;}
.y198{bottom:261.196267pt;}
.y8b{bottom:262.352000pt;}
.yb0{bottom:262.861200pt;}
.ycf{bottom:263.058933pt;}
.y69{bottom:263.059067pt;}
.y14a{bottom:263.689600pt;}
.ye1{bottom:263.762933pt;}
.yfa{bottom:264.905467pt;}
.y22b{bottom:266.344267pt;}
.y19{bottom:267.225467pt;}
.y1bc{bottom:268.133600pt;}
.y1d4{bottom:268.134667pt;}
.y180{bottom:268.749600pt;}
.y41{bottom:268.791600pt;}
.y1ff{bottom:270.629200pt;}
.y126{bottom:276.302933pt;}
.y11a{bottom:276.332267pt;}
.y197{bottom:278.796267pt;}
.y8a{bottom:279.952000pt;}
.yaf{bottom:280.461200pt;}
.yce{bottom:280.658933pt;}
.y68{bottom:280.659067pt;}
.y165{bottom:281.289600pt;}
.ye0{bottom:281.362933pt;}
.y22a{bottom:282.344267pt;}
.yf9{bottom:282.505467pt;}
.y18{bottom:283.225467pt;}
.y1bb{bottom:285.733600pt;}
.y1d3{bottom:285.734667pt;}
.y17f{bottom:286.349600pt;}
.y40{bottom:286.391600pt;}
.y1fe{bottom:286.629200pt;}
.y149{bottom:288.842933pt;}
.y18e{bottom:293.888267pt;}
.y125{bottom:293.902933pt;}
.y119{bottom:293.932267pt;}
.y196{bottom:296.396267pt;}
.y89{bottom:297.552000pt;}
.yae{bottom:298.061200pt;}
.ycd{bottom:298.258933pt;}
.y67{bottom:298.259067pt;}
.y229{bottom:298.344267pt;}
.y164{bottom:298.889600pt;}
.ydf{bottom:298.962933pt;}
.yf8{bottom:300.105467pt;}
.y1fd{bottom:302.629200pt;}
.y17{bottom:302.998800pt;}
.y1ba{bottom:303.333600pt;}
.y1d2{bottom:303.334667pt;}
.y17e{bottom:303.949600pt;}
.y3f{bottom:303.991600pt;}
.y124{bottom:311.502933pt;}
.y118{bottom:311.532267pt;}
.y148{bottom:313.996267pt;}
.y228{bottom:314.344267pt;}
.y88{bottom:315.152000pt;}
.yad{bottom:315.661200pt;}
.ycc{bottom:315.858933pt;}
.y66{bottom:315.859067pt;}
.y163{bottom:316.489600pt;}
.yde{bottom:316.562933pt;}
.yf7{bottom:317.705467pt;}
.y1fc{bottom:318.629200pt;}
.y1b9{bottom:320.933600pt;}
.y1d1{bottom:320.934667pt;}
.y188{bottom:321.549600pt;}
.y3e{bottom:321.591600pt;}
.y17d{bottom:329.102933pt;}
.y227{bottom:330.344267pt;}
.y147{bottom:331.596267pt;}
.y87{bottom:332.752000pt;}
.yac{bottom:333.262667pt;}
.ycb{bottom:333.458933pt;}
.y65{bottom:333.459067pt;}
.ydd{bottom:334.162933pt;}
.y1fb{bottom:334.629200pt;}
.yf6{bottom:335.305467pt;}
.y123{bottom:336.656267pt;}
.y1b8{bottom:338.533600pt;}
.y1d0{bottom:338.534667pt;}
.y3d{bottom:339.191600pt;}
.y162{bottom:341.642933pt;}
.y117{bottom:342.361600pt;}
.y16{bottom:344.162667pt;}
.y226{bottom:346.344267pt;}
.y187{bottom:346.702933pt;}
.y146{bottom:349.196267pt;}
.y86{bottom:350.352000pt;}
.y1fa{bottom:350.629200pt;}
.yab{bottom:350.862667pt;}
.y190{bottom:351.058933pt;}
.y64{bottom:351.059067pt;}
.ydc{bottom:351.762933pt;}
.y17c{bottom:354.256267pt;}
.y1b7{bottom:356.133600pt;}
.y1cf{bottom:356.134667pt;}
.y3c{bottom:356.791600pt;}
.y15{bottom:357.494667pt;}
.y122{bottom:361.809600pt;}
.y225{bottom:362.344267pt;}
.yca{bottom:364.288267pt;}
.yf5{bottom:366.134800pt;}
.y1f9{bottom:366.629200pt;}
.y145{bottom:366.796267pt;}
.y85{bottom:367.953467pt;}
.yaa{bottom:368.462667pt;}
.y1e7{bottom:368.658933pt;}
.y63{bottom:368.659067pt;}
.ydb{bottom:369.362933pt;}
.y14{bottom:370.826667pt;}
.y17b{bottom:371.856267pt;}
.y1b6{bottom:373.733600pt;}
.y1ce{bottom:373.734667pt;}
.y3b{bottom:374.391600pt;}
.y224{bottom:378.344267pt;}
.y121{bottom:379.409600pt;}
.yc9{bottom:381.888267pt;}
.y1f8{bottom:382.629200pt;}
.y116{bottom:382.636267pt;}
.y144{bottom:384.396267pt;}
.y84{bottom:385.553467pt;}
.ya9{bottom:386.062667pt;}
.y1e6{bottom:386.258933pt;}
.y62{bottom:386.259067pt;}
.yda{bottom:386.962933pt;}
.y13{bottom:387.938667pt;}
.y17a{bottom:389.456267pt;}
.y1b5{bottom:391.333600pt;}
.y1cd{bottom:391.334667pt;}
.y3a{bottom:391.991600pt;}
.y223{bottom:394.344267pt;}
.y1f7{bottom:398.629200pt;}
.y18f{bottom:399.488267pt;}
.y115{bottom:400.236267pt;}
.y143{bottom:401.996267pt;}
.y83{bottom:403.153467pt;}
.ya8{bottom:403.662667pt;}
.y1e5{bottom:403.858933pt;}
.y61{bottom:403.859067pt;}
.yd9{bottom:404.562933pt;}
.yf4{bottom:406.412000pt;}
.y179{bottom:407.056267pt;}
.y1b4{bottom:408.933600pt;}
.y1cc{bottom:408.934667pt;}
.y39{bottom:409.591600pt;}
.y222{bottom:410.344267pt;}
.y1f6{bottom:414.629200pt;}
.y114{bottom:417.836267pt;}
.y12{bottom:418.886533pt;}
.y142{bottom:419.596267pt;}
.y82{bottom:420.753467pt;}
.ya7{bottom:421.262667pt;}
.y1e4{bottom:421.458933pt;}
.y60{bottom:421.459067pt;}
.yc8{bottom:422.162933pt;}
.y178{bottom:424.656267pt;}
.y221{bottom:426.344267pt;}
.y1cb{bottom:426.534667pt;}
.y19e{bottom:427.149600pt;}
.y38{bottom:427.191600pt;}
.yf3{bottom:428.833867pt;}
.y1f5{bottom:430.629200pt;}
.y113{bottom:435.436267pt;}
.y11{bottom:436.486533pt;}
.y161{bottom:437.196267pt;}
.ya6{bottom:438.862667pt;}
.y1e3{bottom:439.058933pt;}
.yc7{bottom:439.762933pt;}
.y177{bottom:442.256267pt;}
.y220{bottom:442.344267pt;}
.y1b3{bottom:444.133600pt;}
.y1ca{bottom:444.134667pt;}
.y141{bottom:444.749600pt;}
.y37{bottom:444.791600pt;}
.yf2{bottom:444.833867pt;}
.y1f4{bottom:446.629200pt;}
.y81{bottom:451.582800pt;}
.y5f{bottom:452.288400pt;}
.y19d{bottom:452.302933pt;}
.y112{bottom:453.036267pt;}
.y10{bottom:454.086533pt;}
.y195{bottom:454.796267pt;}
.ya5{bottom:456.462667pt;}
.y1e2{bottom:456.658933pt;}
.yc6{bottom:457.362933pt;}
.y21f{bottom:458.344267pt;}
.y176{bottom:459.856267pt;}
.y1b2{bottom:461.733600pt;}
.y1c9{bottom:461.734667pt;}
.y160{bottom:462.349600pt;}
.y36{bottom:462.391600pt;}
.y1f3{bottom:462.629200pt;}
.yf1{bottom:469.767200pt;}
.y140{bottom:469.902933pt;}
.y111{bottom:470.636267pt;}
.yf{bottom:471.686533pt;}
.y194{bottom:472.396267pt;}
.ya4{bottom:474.062667pt;}
.y1e1{bottom:474.258933pt;}
.y21e{bottom:474.344267pt;}
.yc5{bottom:474.962933pt;}
.y175{bottom:477.456267pt;}
.y1f2{bottom:478.629200pt;}
.y1b1{bottom:479.333600pt;}
.y1c8{bottom:479.334667pt;}
.y35{bottom:479.991600pt;}
.y13f{bottom:487.502933pt;}
.y110{bottom:488.236267pt;}
.ye{bottom:489.286533pt;}
.y193{bottom:489.996267pt;}
.y21d{bottom:490.344267pt;}
.ya3{bottom:491.662667pt;}
.y80{bottom:491.857467pt;}
.y1e0{bottom:491.858933pt;}
.yc4{bottom:492.562933pt;}
.y5e{bottom:492.563067pt;}
.y1f1{bottom:494.629200pt;}
.yf0{bottom:494.700533pt;}
.y174{bottom:495.056267pt;}
.y1b0{bottom:496.933600pt;}
.y1c7{bottom:496.934667pt;}
.y15f{bottom:497.549600pt;}
.y34{bottom:497.591600pt;}
.y13e{bottom:505.102933pt;}
.y10f{bottom:505.836267pt;}
.y21c{bottom:506.344267pt;}
.yd{bottom:506.886533pt;}
.y7f{bottom:509.457467pt;}
.y1df{bottom:509.458933pt;}
.yc3{bottom:510.162933pt;}
.y5d{bottom:510.163067pt;}
.y1f0{bottom:510.629200pt;}
.y173{bottom:512.656267pt;}
.y1af{bottom:514.533600pt;}
.y1c6{bottom:514.534667pt;}
.y192{bottom:515.149600pt;}
.y33{bottom:515.191600pt;}
.yef{bottom:519.633867pt;}
.y21b{bottom:522.344267pt;}
.ya2{bottom:522.492000pt;}
.y13d{bottom:522.702933pt;}
.y10e{bottom:523.436267pt;}
.yc{bottom:524.486533pt;}
.y1ef{bottom:526.629200pt;}
.y7e{bottom:527.057467pt;}
.y1de{bottom:527.058933pt;}
.yc2{bottom:527.762933pt;}
.y5c{bottom:527.763067pt;}
.y172{bottom:530.256267pt;}
.y1c5{bottom:532.134667pt;}
.y15e{bottom:532.749600pt;}
.y32{bottom:532.791600pt;}
.y21a{bottom:538.344267pt;}
.y13c{bottom:540.302933pt;}
.y10d{bottom:541.036267pt;}
.yb{bottom:542.086533pt;}
.y1ee{bottom:542.629200pt;}
.yee{bottom:544.567200pt;}
.y7d{bottom:544.657467pt;}
.y1dd{bottom:544.658933pt;}
.yc1{bottom:545.362933pt;}
.y5b{bottom:545.363067pt;}
.y171{bottom:547.856267pt;}
.y1ae{bottom:549.733600pt;}
.y15d{bottom:550.349600pt;}
.y31{bottom:550.391600pt;}
.y219{bottom:554.344267pt;}
.y19c{bottom:555.409600pt;}
.y13b{bottom:557.902933pt;}
.y1ed{bottom:558.629200pt;}
.y7c{bottom:562.257467pt;}
.y1dc{bottom:562.258933pt;}
.ya1{bottom:562.766667pt;}
.yc0{bottom:562.962933pt;}
.y5a{bottom:562.963067pt;}
.y170{bottom:565.456267pt;}
.y1ad{bottom:567.333600pt;}
.y15c{bottom:567.949600pt;}
.y30{bottom:567.991600pt;}
.yed{bottom:569.500533pt;}
.y218{bottom:570.344267pt;}
.y186{bottom:573.009600pt;}
.y1ec{bottom:574.629200pt;}
.y13a{bottom:575.502933pt;}
.ya{bottom:577.299867pt;}
.y7b{bottom:579.857467pt;}
.y1db{bottom:579.858933pt;}
.ya0{bottom:580.366667pt;}
.ybf{bottom:580.562933pt;}
.y59{bottom:580.563067pt;}
.y16f{bottom:583.056267pt;}
.y1ac{bottom:584.933600pt;}
.y15b{bottom:585.549600pt;}
.y2f{bottom:585.591600pt;}
.y217{bottom:586.344267pt;}
.y19b{bottom:590.609600pt;}
.y1eb{bottom:590.629200pt;}
.y139{bottom:593.102933pt;}
.yec{bottom:594.433867pt;}
.y9{bottom:594.899867pt;}
.y7a{bottom:597.457467pt;}
.y9f{bottom:597.966667pt;}
.ybe{bottom:598.162933pt;}
.y58{bottom:598.163067pt;}
.y16e{bottom:600.656267pt;}
.y216{bottom:602.344267pt;}
.y1ab{bottom:602.533600pt;}
.y1ea{bottom:606.629200pt;}
.y185{bottom:608.209600pt;}
.y1da{bottom:610.688267pt;}
.y15a{bottom:610.702933pt;}
.y8{bottom:612.499867pt;}
.y79{bottom:615.057467pt;}
.y9e{bottom:615.566667pt;}
.ybd{bottom:615.762933pt;}
.y57{bottom:615.763067pt;}
.y2e{bottom:616.420933pt;}
.y138{bottom:618.256267pt;}
.y215{bottom:618.344267pt;}
.yeb{bottom:619.367200pt;}
.y1aa{bottom:620.133600pt;}
.y1e9{bottom:622.629200pt;}
.y16d{bottom:625.809600pt;}
.y191{bottom:628.302933pt;}
.y78{bottom:632.657467pt;}
.y9d{bottom:633.166667pt;}
.ybc{bottom:633.362933pt;}
.y56{bottom:633.363067pt;}
.y214{bottom:634.344267pt;}
.y159{bottom:635.856267pt;}
.y7{bottom:637.650933pt;}
.y1a9{bottom:637.733600pt;}
.y1e8{bottom:638.629200pt;}
.y137{bottom:643.409600pt;}
.yea{bottom:644.300533pt;}
.y77{bottom:650.258933pt;}
.y213{bottom:650.344267pt;}
.y9c{bottom:650.766667pt;}
.ybb{bottom:650.962933pt;}
.y55{bottom:650.963067pt;}
.y158{bottom:653.456267pt;}
.y1a8{bottom:655.333600pt;}
.y2d{bottom:656.704267pt;}
.y6{bottom:659.254933pt;}
.y136{bottom:661.009600pt;}
.y212{bottom:666.344267pt;}
.y76{bottom:667.858933pt;}
.y9b{bottom:668.366667pt;}
.yba{bottom:668.562933pt;}
.y54{bottom:668.563067pt;}
.ye9{bottom:669.233867pt;}
.y157{bottom:671.056267pt;}
.y2c{bottom:672.704267pt;}
.y1a7{bottom:672.933600pt;}
.y135{bottom:678.609600pt;}
.y5{bottom:680.858933pt;}
.y211{bottom:682.344267pt;}
.ye8{bottom:685.233867pt;}
.y75{bottom:685.458933pt;}
.y9a{bottom:685.966667pt;}
.yb9{bottom:686.162933pt;}
.y53{bottom:686.163067pt;}
.y156{bottom:688.656267pt;}
.y1a6{bottom:690.533600pt;}
.y2b{bottom:694.570933pt;}
.y134{bottom:696.209600pt;}
.y210{bottom:698.344267pt;}
.y74{bottom:703.058933pt;}
.y99{bottom:703.566667pt;}
.y52{bottom:703.762933pt;}
.y155{bottom:706.256267pt;}
.y1a5{bottom:708.133600pt;}
.ye7{bottom:710.167200pt;}
.y2a{bottom:710.570933pt;}
.y133{bottom:713.809600pt;}
.y20f{bottom:714.344267pt;}
.y73{bottom:720.658933pt;}
.y98{bottom:721.166667pt;}
.y51{bottom:721.362933pt;}
.y154{bottom:723.856267pt;}
.y1a4{bottom:725.733600pt;}
.y29{bottom:726.570933pt;}
.y20e{bottom:730.344267pt;}
.y132{bottom:731.409600pt;}
.ye6{bottom:735.100533pt;}
.y97{bottom:738.766667pt;}
.y50{bottom:738.962933pt;}
.y153{bottom:741.456267pt;}
.y28{bottom:742.570933pt;}
.y1a3{bottom:743.333600pt;}
.y20d{bottom:746.344267pt;}
.y131{bottom:749.009600pt;}
.y72{bottom:751.488267pt;}
.y96{bottom:756.366667pt;}
.y4f{bottom:756.562933pt;}
.y27{bottom:758.570933pt;}
.ye5{bottom:760.033867pt;}
.y1a2{bottom:760.933600pt;}
.y20c{bottom:762.344267pt;}
.y130{bottom:766.609600pt;}
.y95{bottom:773.966667pt;}
.y4e{bottom:774.162933pt;}
.y26{bottom:774.570933pt;}
.y20b{bottom:778.344267pt;}
.y1c4{bottom:778.533600pt;}
.y12f{bottom:784.209600pt;}
.ye4{bottom:788.970933pt;}
.y25{bottom:790.570933pt;}
.y94{bottom:791.566667pt;}
.y4d{bottom:791.762933pt;}
.y20a{bottom:794.344267pt;}
.y93{bottom:809.166667pt;}
.y4c{bottom:809.362933pt;}
.y24{bottom:810.344267pt;}
.y23{bottom:839.599067pt;}
.y4b{bottom:840.580400pt;}
.hb{height:27.998925pt;}
.h3{height:28.501333pt;}
.h4{height:30.016000pt;}
.h2{height:34.304000pt;}
.hd{height:35.626667pt;}
.h9{height:38.592000pt;}
.h8{height:40.320000pt;}
.h6{height:42.880000pt;}
.hc{height:43.253333pt;}
.hf{height:44.352000pt;}
.h7{height:47.168000pt;}
.ha{height:47.168533pt;}
.h10{height:47.172267pt;}
.he{height:47.184000pt;}
.h5{height:47.578667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:86.929067pt;}
.x1{left:94.488133pt;}
.x1f{left:97.016533pt;}
.x4{left:100.862400pt;}
.x11{left:102.047333pt;}
.x21{left:103.123200pt;}
.x22{left:108.136533pt;}
.x14{left:109.613067pt;}
.x1e{left:111.256533pt;}
.x15{left:113.663200pt;}
.x20{left:115.923200pt;}
.x29{left:120.961467pt;}
.x7{left:123.561733pt;}
.x25{left:126.045200pt;}
.x8{left:127.855067pt;}
.x26{left:133.604133pt;}
.x18{left:137.389867pt;}
.x27{left:139.393867pt;}
.x5{left:146.710400pt;}
.x28{left:151.185867pt;}
.x17{left:154.363200pt;}
.x19{left:159.563200pt;}
.x23{left:191.363200pt;}
.x6{left:216.685067pt;}
.x9{left:226.228400pt;}
.xb{left:243.716000pt;}
.x1b{left:377.376533pt;}
.x1a{left:389.323200pt;}
.x2{left:392.514800pt;}
.xc{left:414.369333pt;}
.xf{left:436.085600pt;}
.xd{left:442.565867pt;}
.xe{left:447.351867pt;}
.x3{left:453.952400pt;}
.x10{left:457.698933pt;}
.xa{left:472.901067pt;}
.x1d{left:476.443200pt;}
.x1c{left:481.549867pt;}
.x13{left:535.702933pt;}
.x2a{left:536.993333pt;}
.x24{left:538.885333pt;}
.x16{left:540.660000pt;}
}




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