
    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_734dd0d5f37578fdfd0b56c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_5abe3144e371c15c05a8f82c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_26342c3c8a4fb15120300b5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_25d2b57b065790cb912de2da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_e0ae7721ca45c22cfa10d508.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_9bcc5e6a36c0726e390027aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-95.541600px;}
.v5{vertical-align:-57.784200px;}
.v6{vertical-align:-17.007600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.257400px;}
.v2{vertical-align:78.560400px;}
.v3{vertical-align:157.075200px;}
.lsa{letter-spacing:-8.880000px;}
.ls2{letter-spacing:-5.940000px;}
.ls9{letter-spacing:-3.996000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.ls7{letter-spacing:1.200000px;}
.lsb{letter-spacing:1.320000px;}
.ls4{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.400000px;}
.ls8{letter-spacing:3.600000px;}
.ls3{letter-spacing:4.200000px;}
.lsc{letter-spacing:70.344000px;}
.ls1{letter-spacing:189.000000px;}
.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;}
}
.wsd{word-spacing:-133.500000px;}
.ws2e{word-spacing:-39.000000px;}
.ws43{word-spacing:-34.200000px;}
.ws4a{word-spacing:-32.160000px;}
.ws42{word-spacing:-30.000000px;}
.ws4{word-spacing:-27.000000px;}
.ws61{word-spacing:-21.120000px;}
.ws5{word-spacing:-21.060000px;}
.ws82{word-spacing:-15.240000px;}
.ws54{word-spacing:-13.200000px;}
.wsc{word-spacing:-12.960000px;}
.wsa{word-spacing:-10.800000px;}
.ws80{word-spacing:-9.000000px;}
.ws1d{word-spacing:-8.760000px;}
.ws81{word-spacing:-7.920000px;}
.ws56{word-spacing:-7.200000px;}
.ws44{word-spacing:-6.600000px;}
.ws36{word-spacing:-6.480000px;}
.ws62{word-spacing:-6.240000px;}
.ws55{word-spacing:-6.120000px;}
.ws1c{word-spacing:-4.440000px;}
.ws53{word-spacing:-4.200000px;}
.ws15{word-spacing:-3.960000px;}
.ws60{word-spacing:-3.600000px;}
.ws58{word-spacing:-3.240000px;}
.ws6{word-spacing:-3.132000px;}
.ws8{word-spacing:-2.592000px;}
.ws5d{word-spacing:-2.400000px;}
.ws31{word-spacing:-2.280000px;}
.ws2{word-spacing:-2.160000px;}
.ws45{word-spacing:-2.040000px;}
.ws9{word-spacing:-1.404000px;}
.ws3{word-spacing:-1.200000px;}
.ws7{word-spacing:-1.080000px;}
.ws1{word-spacing:-0.300000px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.240000px;}
.ws57{word-spacing:0.840000px;}
.ws4f{word-spacing:1.560000px;}
.ws4d{word-spacing:1.800000px;}
.ws51{word-spacing:2.040000px;}
.ws1e{word-spacing:2.160000px;}
.ws41{word-spacing:3.240000px;}
.ws74{word-spacing:3.757200px;}
.ws5f{word-spacing:3.996000px;}
.ws12{word-spacing:6.360000px;}
.ws63{word-spacing:6.480000px;}
.ws37{word-spacing:6.960000px;}
.ws38{word-spacing:8.520000px;}
.ws29{word-spacing:8.670000px;}
.ws16{word-spacing:8.880000px;}
.ws28{word-spacing:9.078000px;}
.ws75{word-spacing:9.090000px;}
.ws35{word-spacing:9.840000px;}
.ws3e{word-spacing:10.920000px;}
.ws50{word-spacing:12.000000px;}
.ws66{word-spacing:12.360000px;}
.ws13{word-spacing:12.480000px;}
.ws64{word-spacing:12.720000px;}
.ws7c{word-spacing:13.440000px;}
.ws40{word-spacing:13.560000px;}
.ws67{word-spacing:14.040000px;}
.ws4e{word-spacing:15.000000px;}
.ws30{word-spacing:15.960000px;}
.ws65{word-spacing:16.560000px;}
.ws2f{word-spacing:16.800000px;}
.ws4c{word-spacing:17.520000px;}
.ws1a{word-spacing:17.640000px;}
.ws52{word-spacing:18.600000px;}
.ws33{word-spacing:19.200000px;}
.ws79{word-spacing:19.320000px;}
.ws3f{word-spacing:21.480000px;}
.ws49{word-spacing:23.040000px;}
.ws48{word-spacing:23.880000px;}
.ws7b{word-spacing:26.760000px;}
.ws34{word-spacing:28.800000px;}
.ws5b{word-spacing:29.160000px;}
.ws3c{word-spacing:30.240000px;}
.ws32{word-spacing:30.360000px;}
.ws7d{word-spacing:30.480000px;}
.ws7a{word-spacing:31.200000px;}
.ws3b{word-spacing:31.560000px;}
.ws2c{word-spacing:32.436000px;}
.ws1b{word-spacing:32.520000px;}
.ws19{word-spacing:32.640000px;}
.ws2b{word-spacing:32.844000px;}
.ws78{word-spacing:33.840000px;}
.ws17{word-spacing:33.960000px;}
.ws2d{word-spacing:36.720000px;}
.ws6b{word-spacing:39.720000px;}
.ws3a{word-spacing:39.960000px;}
.ws7e{word-spacing:40.200000px;}
.ws46{word-spacing:42.720000px;}
.ws6a{word-spacing:43.692000px;}
.ws69{word-spacing:43.800000px;}
.ws2a{word-spacing:45.288000px;}
.ws59{word-spacing:45.840000px;}
.ws73{word-spacing:46.200000px;}
.ws72{word-spacing:46.560000px;}
.ws7f{word-spacing:48.120000px;}
.ws47{word-spacing:49.200000px;}
.ws39{word-spacing:49.440000px;}
.ws76{word-spacing:53.400000px;}
.ws18{word-spacing:58.320000px;}
.ws5a{word-spacing:61.080000px;}
.ws71{word-spacing:63.960000px;}
.ws68{word-spacing:68.040000px;}
.ws3d{word-spacing:69.480000px;}
.ws70{word-spacing:70.356000px;}
.ws77{word-spacing:74.280000px;}
.wsb{word-spacing:75.960000px;}
.ws6e{word-spacing:76.200000px;}
.ws6f{word-spacing:76.440000px;}
.ws20{word-spacing:82.200000px;}
.ws27{word-spacing:86.400000px;}
.ws5e{word-spacing:88.080000px;}
.ws6d{word-spacing:97.200000px;}
.ws1f{word-spacing:102.480000px;}
.ws6c{word-spacing:106.920000px;}
.wsf{word-spacing:118.489200px;}
.ws10{word-spacing:118.489800px;}
.wse{word-spacing:122.140800px;}
.ws24{word-spacing:150.000000px;}
.ws5c{word-spacing:158.040000px;}
.ws25{word-spacing:163.800000px;}
.ws26{word-spacing:176.640000px;}
.ws11{word-spacing:187.937400px;}
.ws22{word-spacing:210.444000px;}
.ws23{word-spacing:217.740000px;}
.ws21{word-spacing:357.048000px;}
.ws4b{word-spacing:534.253800px;}
._4d{margin-left:-1237.922400px;}
._4b{margin-left:-903.741000px;}
._33{margin-left:-902.324400px;}
._34{margin-left:-835.710000px;}
._38{margin-left:-825.787800px;}
._13{margin-left:-49.021200px;}
._2f{margin-left:-39.622800px;}
._1c{margin-left:-34.843200px;}
._2e{margin-left:-30.429000px;}
._7{margin-left:-18.845400px;}
._35{margin-left:-16.608000px;}
._15{margin-left:-15.072000px;}
._b{margin-left:-13.835400px;}
._9{margin-left:-12.622800px;}
._3{margin-left:-11.016000px;}
._c{margin-left:-9.684000px;}
._0{margin-left:-8.355000px;}
._2{margin-left:-7.260000px;}
._6{margin-left:-5.388600px;}
._8{margin-left:-3.812400px;}
._5{margin-left:-2.608200px;}
._4{margin-left:-1.435800px;}
._1a{width:1.071000px;}
._1{width:2.100000px;}
._2b{width:3.120000px;}
._2c{width:4.800000px;}
._a{width:5.940000px;}
._1d{width:7.160400px;}
._43{width:8.256000px;}
._1f{width:9.945000px;}
._2d{width:11.463000px;}
._12{width:12.984000px;}
._20{width:14.149200px;}
._1e{width:15.259200px;}
._39{width:16.329600px;}
._14{width:17.460000px;}
._2a{width:18.624000px;}
._e{width:19.716000px;}
._29{width:21.444000px;}
._26{width:22.452000px;}
._f{width:23.640000px;}
._25{width:25.403400px;}
._24{width:26.568600px;}
._3b{width:28.392000px;}
._11{width:31.644000px;}
._28{width:33.120000px;}
._27{width:34.452000px;}
._3a{width:35.628000px;}
._41{width:36.984000px;}
._40{width:38.232000px;}
._10{width:39.564000px;}
._30{width:40.704000px;}
._32{width:42.408000px;}
._48{width:47.388000px;}
._d{width:48.876000px;}
._22{width:49.926000px;}
._21{width:51.428400px;}
._23{width:52.866600px;}
._47{width:54.089400px;}
._3f{width:56.844000px;}
._4a{width:59.472000px;}
._4c{width:60.564000px;}
._31{width:61.656000px;}
._49{width:62.772000px;}
._46{width:64.404000px;}
._3e{width:68.076000px;}
._3d{width:72.420000px;}
._3c{width:74.076000px;}
._37{width:75.084000px;}
._36{width:81.708000px;}
._45{width:85.800000px;}
._44{width:125.988000px;}
._42{width:146.040000px;}
._16{width:173.586000px;}
._18{width:213.982200px;}
._17{width:230.990400px;}
._19{width:368.980200px;}
._1b{width:710.946000px;}
.fc5{color:transparent;}
.fc3{color:rgb(110,165,185);}
.fc2{color:rgb(4,6,6);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fsb{font-size:102.000000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.fsf{font-size:121.200000px;}
.fse{font-size:132.000000px;}
.fs1{font-size:150.000000px;}
.fsc{font-size:156.000000px;}
.fs8{font-size:168.000000px;}
.fs0{font-size:180.000000px;}
.fsa{font-size:190.080000px;}
.fs2{font-size:216.000000px;}
.fs9{font-size:228.000000px;}
.fs4{font-size:534.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:17.356200px;}
.y2d{bottom:17.923050px;}
.y111{bottom:63.446400px;}
.y125{bottom:65.266200px;}
.y118{bottom:71.950350px;}
.y1d{bottom:93.446250px;}
.y9c{bottom:93.931500px;}
.yd{bottom:95.017200px;}
.y124{bottom:101.266200px;}
.y11c{bottom:112.981800px;}
.y64{bottom:125.213850px;}
.y1c{bottom:125.846250px;}
.y17a{bottom:128.089050px;}
.y9b{bottom:129.931500px;}
.y123{bottom:137.266200px;}
.y117{bottom:139.852800px;}
.y63{bottom:155.813850px;}
.y1b{bottom:158.246100px;}
.y197{bottom:158.666100px;}
.y179{bottom:164.089050px;}
.y9a{bottom:165.931500px;}
.y11b{bottom:167.300700px;}
.y61{bottom:170.240250px;}
.y122{bottom:173.266200px;}
.yce{bottom:173.396100px;}
.yd9{bottom:173.879550px;}
.y116{bottom:175.852800px;}
.y78{bottom:177.624900px;}
.yc{bottom:189.317250px;}
.y196{bottom:194.666100px;}
.y169{bottom:198.459000px;}
.y99{bottom:201.931500px;}
.y136{bottom:209.266200px;}
.ycd{bottom:209.396100px;}
.y5d{bottom:209.430600px;}
.yd8{bottom:209.879550px;}
.y158{bottom:217.593000px;}
.y11a{bottom:222.553500px;}
.y1a{bottom:223.046100px;}
.y77{bottom:224.424900px;}
.y195{bottom:230.666100px;}
.y168{bottom:234.459000px;}
.y178{bottom:236.089050px;}
.y98{bottom:237.931500px;}
.y113{bottom:238.025100px;}
.y121{bottom:245.266200px;}
.ycc{bottom:245.396100px;}
.y5c{bottom:245.430600px;}
.yd7{bottom:245.879550px;}
.yb{bottom:247.556700px;}
.yaf{bottom:249.907800px;}
.y157{bottom:253.593000px;}
.y13d{bottom:255.172050px;}
.yeb{bottom:256.020900px;}
.y147{bottom:257.305800px;}
.y119{bottom:258.553500px;}
.y194{bottom:266.666100px;}
.y51{bottom:266.854200px;}
.y167{bottom:270.459000px;}
.y76{bottom:271.224900px;}
.y177{bottom:272.089050px;}
.y97{bottom:273.931500px;}
.y112{bottom:274.025100px;}
.ycb{bottom:281.396100px;}
.yd6{bottom:281.879550px;}
.y1a4{bottom:285.628650px;}
.yae{bottom:285.907800px;}
.y19{bottom:287.846250px;}
.y156{bottom:289.593000px;}
.yea{bottom:292.020900px;}
.y146{bottom:293.305800px;}
.y50{bottom:293.854200px;}
.yfb{bottom:298.380300px;}
.y193{bottom:302.666100px;}
.y115{bottom:312.540900px;}
.y120{bottom:317.266200px;}
.yca{bottom:317.396100px;}
.yd5{bottom:317.879550px;}
.y1a3{bottom:321.628650px;}
.yad{bottom:321.907800px;}
.ye9{bottom:328.020900px;}
.y87{bottom:329.650950px;}
.yfa{bottom:334.380300px;}
.ya{bottom:334.522050px;}
.y192{bottom:338.666100px;}
.y110{bottom:340.173600px;}
.y176{bottom:344.089050px;}
.y96{bottom:345.931500px;}
.y114{bottom:348.540900px;}
.y2c{bottom:349.545750px;}
.y3f{bottom:351.549450px;}
.y4e{bottom:351.774600px;}
.y68{bottom:352.528350px;}
.y18{bottom:352.646250px;}
.ye8{bottom:352.710150px;}
.y11f{bottom:353.266200px;}
.yc9{bottom:353.396100px;}
.yd4{bottom:353.879550px;}
.y1a2{bottom:357.628650px;}
.ybb{bottom:358.083600px;}
.y75{bottom:364.824900px;}
.y86{bottom:365.650950px;}
.yf9{bottom:370.380300px;}
.y9{bottom:370.522050px;}
.y191{bottom:374.666100px;}
.y10f{bottom:376.173600px;}
.yc4{bottom:376.344150px;}
.y175{bottom:380.089050px;}
.y95{bottom:381.931500px;}
.y67{bottom:383.128350px;}
.y2b{bottom:385.545750px;}
.y3c{bottom:386.033700px;}
.ye7{bottom:388.710150px;}
.yc8{bottom:389.396100px;}
.yd3{bottom:389.879550px;}
.y1a1{bottom:393.628650px;}
.yac{bottom:393.907800px;}
.yba{bottom:394.083600px;}
.y155{bottom:400.711050px;}
.y4b{bottom:401.445000px;}
.y85{bottom:401.650950px;}
.yf8{bottom:406.380300px;}
.y8{bottom:406.522050px;}
.yc3{bottom:412.344150px;}
.y66{bottom:413.728350px;}
.y17{bottom:417.446250px;}
.y2a{bottom:421.545750px;}
.y3b{bottom:422.033700px;}
.y164{bottom:424.242300px;}
.ye6{bottom:424.710150px;}
.y166{bottom:425.239950px;}
.y11e{bottom:425.266200px;}
.yc7{bottom:425.396100px;}
.yd2{bottom:425.879550px;}
.y1a0{bottom:429.628650px;}
.yab{bottom:429.907800px;}
.yb9{bottom:430.083600px;}
.y84{bottom:437.650950px;}
.y8a{bottom:441.284550px;}
.yf7{bottom:442.380300px;}
.y65{bottom:444.328350px;}
.y4f{bottom:445.286850px;}
.y60{bottom:446.040150px;}
.y190{bottom:446.666100px;}
.yc2{bottom:448.344150px;}
.y145{bottom:450.575850px;}
.y10e{bottom:450.813300px;}
.y174{bottom:452.089050px;}
.y1b1{bottom:453.611100px;}
.y29{bottom:457.545750px;}
.y3a{bottom:458.033700px;}
.y74{bottom:458.424900px;}
.ye5{bottom:460.710150px;}
.y165{bottom:461.239950px;}
.y11d{bottom:461.266200px;}
.yc6{bottom:461.396100px;}
.yd1{bottom:461.879550px;}
.yaa{bottom:465.907800px;}
.yb8{bottom:466.083600px;}
.y44{bottom:471.550650px;}
.y154{bottom:472.711050px;}
.y83{bottom:473.650950px;}
.y7{bottom:477.162900px;}
.y16{bottom:482.246250px;}
.yc1{bottom:484.344150px;}
.y5b{bottom:485.230650px;}
.y43{bottom:485.391600px;}
.y13c{bottom:485.948850px;}
.y144{bottom:486.575850px;}
.y10d{bottom:486.813300px;}
.y173{bottom:488.089050px;}
.y1b0{bottom:489.611100px;}
.ye4{bottom:496.710150px;}
.y198{bottom:497.709900px;}
.y42{bottom:501.623850px;}
.y19f{bottom:501.628650px;}
.ya9{bottom:501.907800px;}
.y82{bottom:509.650950px;}
.yf6{bottom:514.380300px;}
.yc0{bottom:520.344150px;}
.y143{bottom:522.575850px;}
.y10c{bottom:522.813300px;}
.y41{bottom:523.313850px;}
.y1af{bottom:525.611100px;}
.y28{bottom:528.473850px;}
.y39{bottom:530.033700px;}
.y133{bottom:530.183400px;}
.y187{bottom:531.175650px;}
.ye3{bottom:532.710150px;}
.yc5{bottom:533.396100px;}
.yd0{bottom:533.879550px;}
.y5a{bottom:535.676700px;}
.ya8{bottom:537.907800px;}
.yb7{bottom:538.083600px;}
.y153{bottom:544.711050px;}
.y15{bottom:547.046100px;}
.yf5{bottom:550.380300px;}
.y18f{bottom:551.466900px;}
.y73{bottom:552.024900px;}
.y1a5{bottom:552.276750px;}
.y40{bottom:557.715000px;}
.y142{bottom:558.575850px;}
.y10b{bottom:558.813300px;}
.y172{bottom:560.089050px;}
.y135{bottom:564.384150px;}
.y27{bottom:564.473850px;}
.y38{bottom:566.033700px;}
.y132{bottom:566.183400px;}
.y186{bottom:567.175650px;}
.ye2{bottom:568.710150px;}
.ya7{bottom:573.907800px;}
.y94{bottom:577.947300px;}
.y81{bottom:585.250950px;}
.y134{bottom:585.984150px;}
.yf4{bottom:586.380300px;}
.ybc{bottom:589.481550px;}
.ybf{bottom:592.344150px;}
.yda{bottom:593.733450px;}
.y171{bottom:596.089050px;}
.y1ae{bottom:597.611100px;}
.y6{bottom:599.452350px;}
.y26{bottom:600.473850px;}
.y37{bottom:602.033700px;}
.y131{bottom:602.183400px;}
.y59{bottom:604.076700px;}
.y18e{bottom:605.679450px;}
.y19e{bottom:606.429450px;}
.ya6{bottom:609.907800px;}
.y14{bottom:611.846250px;}
.y162{bottom:613.454850px;}
.y80{bottom:621.250950px;}
.y49{bottom:621.330750px;}
.yf3{bottom:622.380300px;}
.y93{bottom:622.947300px;}
.y10a{bottom:630.813300px;}
.y170{bottom:632.089050px;}
.y152{bottom:634.569300px;}
.y163{bottom:635.011950px;}
.y25{bottom:636.473850px;}
.y36{bottom:638.033700px;}
.y130{bottom:638.183400px;}
.y185{bottom:639.175650px;}
.ye1{bottom:640.710150px;}
.yb6{bottom:642.884250px;}
.ycf{bottom:643.367700px;}
.y6b{bottom:644.738250px;}
.y72{bottom:645.624900px;}
.ya5{bottom:645.907800px;}
.ybd{bottom:648.300450px;}
.y48{bottom:653.730750px;}
.y7f{bottom:657.250950px;}
.y18d{bottom:659.892000px;}
.y19d{bottom:660.642000px;}
.y109{bottom:666.813300px;}
.y92{bottom:667.947300px;}
.y141{bottom:669.021000px;}
.y151{bottom:670.569300px;}
.y24{bottom:672.473850px;}
.y58{bottom:672.476700px;}
.y35{bottom:674.033700px;}
.y184{bottom:675.175650px;}
.y6a{bottom:675.338250px;}
.y13{bottom:676.646250px;}
.y5{bottom:679.798800px;}
.ya4{bottom:681.907800px;}
.yf2{bottom:694.380300px;}
.yb5{bottom:697.096950px;}
.ybe{bottom:701.348850px;}
.y1ad{bottom:702.411900px;}
.yec{bottom:702.513000px;}
.y108{bottom:702.813300px;}
.y16f{bottom:704.089050px;}
.y140{bottom:705.021000px;}
.y69{bottom:705.938250px;}
.y150{bottom:706.569300px;}
.y23{bottom:708.473850px;}
.y34{bottom:710.033700px;}
.y12f{bottom:710.183400px;}
.y18c{bottom:710.915700px;}
.y19c{bottom:711.665700px;}
.y91{bottom:712.947300px;}
.y13b{bottom:715.555200px;}
.y5f{bottom:715.635000px;}
.ya3{bottom:717.907800px;}
.y3e{bottom:721.858200px;}
.y7e{bottom:724.273350px;}
.y4d{bottom:725.156400px;}
.yf1{bottom:730.380300px;}
.y4{bottom:733.798800px;}
.y107{bottom:738.813300px;}
.y71{bottom:739.224900px;}
.y16e{bottom:740.089050px;}
.y13f{bottom:741.021000px;}
.y12{bottom:741.446250px;}
.y14f{bottom:742.569300px;}
.y12e{bottom:746.183400px;}
.y183{bottom:747.175650px;}
.ye0{bottom:750.198450px;}
.yb4{bottom:751.309500px;}
.y88{bottom:752.851800px;}
.y1ac{bottom:756.624450px;}
.y57{bottom:756.895050px;}
.y7d{bottom:760.273350px;}
.y18b{bottom:765.128250px;}
.y19b{bottom:765.878250px;}
.yf0{bottom:766.380300px;}
.y4a{bottom:771.158250px;}
.y106{bottom:774.813300px;}
.y3d{bottom:774.916200px;}
.y161{bottom:775.468650px;}
.y13e{bottom:777.021000px;}
.y14e{bottom:778.569300px;}
.y33{bottom:782.033700px;}
.y12d{bottom:782.183400px;}
.y182{bottom:783.175650px;}
.y22{bottom:788.921700px;}
.ya2{bottom:789.907800px;}
.y15f{bottom:789.911550px;}
.y56{bottom:792.895050px;}
.y7c{bottom:796.273350px;}
.yb3{bottom:802.333050px;}
.yef{bottom:802.380300px;}
.y90{bottom:802.947300px;}
.ydf{bottom:803.927550px;}
.y52{bottom:806.074950px;}
.y11{bottom:806.246100px;}
.y105{bottom:810.813300px;}
.y1ab{bottom:810.837000px;}
.y160{bottom:811.468650px;}
.y4c{bottom:812.021400px;}
.y16d{bottom:812.089050px;}
.y32{bottom:818.033700px;}
.y12c{bottom:818.183400px;}
.y21{bottom:824.921700px;}
.ya1{bottom:825.907800px;}
.y3{bottom:832.188000px;}
.y7b{bottom:832.273350px;}
.y70{bottom:832.824900px;}
.yee{bottom:838.380300px;}
.y18a{bottom:838.474800px;}
.y19a{bottom:839.224800px;}
.y104{bottom:846.813300px;}
.y8f{bottom:847.947300px;}
.y31{bottom:854.033700px;}
.y12b{bottom:854.183400px;}
.yde{bottom:854.951250px;}
.y181{bottom:855.175650px;}
.yb2{bottom:856.545750px;}
.y47{bottom:857.573400px;}
.y20{bottom:860.921700px;}
.y1aa{bottom:861.860700px;}
.ya0{bottom:861.907800px;}
.y7a{bottom:868.273350px;}
.y10{bottom:871.046100px;}
.yed{bottom:874.380300px;}
.y14d{bottom:875.868600px;}
.y103{bottom:882.813300px;}
.y16c{bottom:884.089050px;}
.y30{bottom:890.033700px;}
.y12a{bottom:890.183400px;}
.y180{bottom:891.175650px;}
.y8e{bottom:892.947300px;}
.y189{bottom:897.252300px;}
.y9f{bottom:897.907800px;}
.y199{bottom:898.002300px;}
.y46{bottom:901.280850px;}
.y6e{bottom:902.526750px;}
.ydd{bottom:909.163800px;}
.y14c{bottom:911.868600px;}
.y2{bottom:912.870900px;}
.y1a9{bottom:916.073250px;}
.y2f{bottom:926.033700px;}
.y6f{bottom:926.424900px;}
.yb1{bottom:929.892150px;}
.y6d{bottom:933.126750px;}
.y45{bottom:933.680850px;}
.y9e{bottom:933.907800px;}
.yf{bottom:935.846250px;}
.y15c{bottom:936.037650px;}
.y8d{bottom:937.947300px;}
.y138{bottom:945.161550px;}
.y14b{bottom:947.868600px;}
.y102{bottom:954.813300px;}
.y13a{bottom:956.011200px;}
.y16b{bottom:956.089050px;}
.y17f{bottom:963.175650px;}
.y6c{bottom:963.726750px;}
.y79{bottom:967.744500px;}
.y9d{bottom:969.907800px;}
.y15b{bottom:972.397800px;}
.y15e{bottom:974.870700px;}
.y5e{bottom:977.317050px;}
.ydc{bottom:982.510200px;}
.y8c{bottom:982.947300px;}
.y14a{bottom:983.868600px;}
.yfc{bottom:986.984550px;}
.yb0{bottom:988.669800px;}
.y1a6{bottom:988.933350px;}
.y1a8{bottom:989.419800px;}
.y101{bottom:990.813300px;}
.y139{bottom:992.011200px;}
.y129{bottom:995.703150px;}
.y17e{bottom:999.175650px;}
.y15a{bottom:1008.757800px;}
.y54{bottom:1016.507400px;}
.y149{bottom:1019.868600px;}
.y100{bottom:1026.813300px;}
.y8b{bottom:1027.947300px;}
.y1{bottom:1031.453100px;}
.y128{bottom:1031.703150px;}
.y17d{bottom:1035.175650px;}
.ydb{bottom:1041.287850px;}
.y159{bottom:1045.117800px;}
.y1a7{bottom:1048.197300px;}
.ye{bottom:1050.095550px;}
.y53{bottom:1052.507400px;}
.y62{bottom:1060.728450px;}
.yff{bottom:1062.813300px;}
.y127{bottom:1067.703150px;}
.y16a{bottom:1073.162550px;}
.y188{bottom:1080.390750px;}
.y2e{bottom:1092.027600px;}
.y89{bottom:1094.422200px;}
.y1f{bottom:1094.422350px;}
.yfe{bottom:1098.813300px;}
.y17c{bottom:1107.175650px;}
.y1b2{bottom:1108.342800px;}
.y55{bottom:1123.162350px;}
.y148{bottom:1137.752250px;}
.y17b{bottom:1143.175650px;}
.y137{bottom:1147.427550px;}
.y15d{bottom:1152.534600px;}
.y126{bottom:1163.618400px;}
.yfd{bottom:1170.813300px;}
.h1a{height:63.175781px;}
.h10{height:64.080000px;}
.he{height:68.352000px;}
.h15{height:70.872070px;}
.hf{height:76.896000px;}
.h9{height:83.378906px;}
.h1d{height:84.212695px;}
.h14{height:89.499023px;}
.hc{height:94.763672px;}
.hb{height:95.923828px;}
.h8{height:105.292969px;}
.h1c{height:106.345898px;}
.h7{height:106.582031px;}
.h17{height:108.392578px;}
.h1b{height:117.240234px;}
.h19{height:123.222656px;}
.h4{height:131.616211px;}
.h3{height:133.227539px;}
.h16{height:138.556641px;}
.h11{height:147.410156px;}
.h5{height:157.939453px;}
.h2{height:159.873047px;}
.h13{height:168.825937px;}
.h6{height:191.847656px;}
.h12{height:202.505859px;}
.hd{height:233.971200px;}
.h18{height:365.560547px;}
.ha{height:474.290039px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w1{width:1785.750000px;}
.w0{width:1785.825000px;}
.x0{left:0.000000px;}
.x3e{left:13.429200px;}
.x10{left:20.179200px;}
.x24{left:33.357300px;}
.xe{left:54.792000px;}
.x4d{left:68.031450px;}
.xf{left:69.519750px;}
.x2c{left:72.283350px;}
.x4c{left:76.535400px;}
.x12{left:83.179050px;}
.x59{left:87.602400px;}
.x54{left:90.301200px;}
.x5a{left:92.852400px;}
.x2b{left:96.659550px;}
.x1{left:102.047250px;}
.x44{left:105.236250px;}
.x43{left:108.425100px;}
.x51{left:111.614100px;}
.x5d{left:114.590550px;}
.xc{left:117.622650px;}
.x4{left:119.586600px;}
.x4a{left:124.370100px;}
.x35{left:125.899500px;}
.x34{left:134.768400px;}
.x3{left:137.125950px;}
.xb{left:152.143500px;}
.x11{left:154.062750px;}
.x36{left:159.820800px;}
.x20{left:162.404550px;}
.x32{left:164.232150px;}
.x3b{left:168.324900px;}
.x57{left:169.771500px;}
.x52{left:170.834700px;}
.x37{left:174.275250px;}
.x30{left:179.927850px;}
.x28{left:185.688600px;}
.x2d{left:195.660900px;}
.x2{left:197.185050px;}
.x3d{left:230.129100px;}
.x46{left:249.669450px;}
.xa{left:253.081050px;}
.x55{left:275.137800px;}
.x6{left:277.582050px;}
.x56{left:280.629900px;}
.x58{left:291.614100px;}
.x47{left:297.152400px;}
.x8{left:307.186650px;}
.x9{left:314.247000px;}
.x5{left:319.561950px;}
.x53{left:334.842450px;}
.x41{left:378.374250px;}
.x38{left:394.319250px;}
.x7{left:423.011850px;}
.x31{left:653.581650px;}
.x33{left:657.035400px;}
.x27{left:729.699750px;}
.x26{left:732.094500px;}
.x2e{left:740.905500px;}
.x1a{left:752.639700px;}
.x45{left:794.055150px;}
.x4b{left:799.369950px;}
.x25{left:822.442950px;}
.x29{left:824.837550px;}
.x2a{left:827.232300px;}
.x23{left:829.771800px;}
.x21{left:834.561000px;}
.x2f{left:879.064200px;}
.x50{left:903.543300px;}
.x4e{left:906.360150px;}
.x1c{left:912.265650px;}
.x40{left:926.929200px;}
.x5b{left:933.679200px;}
.x3a{left:984.702600px;}
.x3f{left:985.765800px;}
.x3c{left:1004.899500px;}
.x22{left:1014.094500px;}
.x1d{left:1101.841500px;}
.x1e{left:1106.093400px;}
.x48{left:1131.952950px;}
.x49{left:1138.896300px;}
.x1f{left:1174.293300px;}
.x39{left:1209.988500px;}
.x5c{left:1252.685400px;}
.x19{left:1254.726450px;}
.x13{left:1266.596400px;}
.x14{left:1272.974400px;}
.x4f{left:1329.184350px;}
.x18{left:1330.198800px;}
.x1b{left:1376.438850px;}
.x17{left:1405.671300px;}
.x16{left:1486.458750px;}
.x15{left:1567.246050px;}
.x42{left:1745.756850px;}
.xd{left:1752.005850px;}
@media print{
.v4{vertical-align:-84.925867pt;}
.v5{vertical-align:-51.363733pt;}
.v6{vertical-align:-15.117867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.895467pt;}
.v2{vertical-align:69.831467pt;}
.v3{vertical-align:139.622400pt;}
.lsa{letter-spacing:-7.893333pt;}
.ls2{letter-spacing:-5.280000pt;}
.ls9{letter-spacing:-3.552000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.ls7{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.173333pt;}
.ls4{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.133333pt;}
.ls8{letter-spacing:3.200000pt;}
.ls3{letter-spacing:3.733333pt;}
.lsc{letter-spacing:62.528000pt;}
.ls1{letter-spacing:168.000000pt;}
.wsd{word-spacing:-118.666667pt;}
.ws2e{word-spacing:-34.666667pt;}
.ws43{word-spacing:-30.400000pt;}
.ws4a{word-spacing:-28.586667pt;}
.ws42{word-spacing:-26.666667pt;}
.ws4{word-spacing:-24.000000pt;}
.ws61{word-spacing:-18.773333pt;}
.ws5{word-spacing:-18.720000pt;}
.ws82{word-spacing:-13.546667pt;}
.ws54{word-spacing:-11.733333pt;}
.wsc{word-spacing:-11.520000pt;}
.wsa{word-spacing:-9.600000pt;}
.ws80{word-spacing:-8.000000pt;}
.ws1d{word-spacing:-7.786667pt;}
.ws81{word-spacing:-7.040000pt;}
.ws56{word-spacing:-6.400000pt;}
.ws44{word-spacing:-5.866667pt;}
.ws36{word-spacing:-5.760000pt;}
.ws62{word-spacing:-5.546667pt;}
.ws55{word-spacing:-5.440000pt;}
.ws1c{word-spacing:-3.946667pt;}
.ws53{word-spacing:-3.733333pt;}
.ws15{word-spacing:-3.520000pt;}
.ws60{word-spacing:-3.200000pt;}
.ws58{word-spacing:-2.880000pt;}
.ws6{word-spacing:-2.784000pt;}
.ws8{word-spacing:-2.304000pt;}
.ws5d{word-spacing:-2.133333pt;}
.ws31{word-spacing:-2.026667pt;}
.ws2{word-spacing:-1.920000pt;}
.ws45{word-spacing:-1.813333pt;}
.ws9{word-spacing:-1.248000pt;}
.ws3{word-spacing:-1.066667pt;}
.ws7{word-spacing:-0.960000pt;}
.ws1{word-spacing:-0.266667pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.213333pt;}
.ws57{word-spacing:0.746667pt;}
.ws4f{word-spacing:1.386667pt;}
.ws4d{word-spacing:1.600000pt;}
.ws51{word-spacing:1.813333pt;}
.ws1e{word-spacing:1.920000pt;}
.ws41{word-spacing:2.880000pt;}
.ws74{word-spacing:3.339733pt;}
.ws5f{word-spacing:3.552000pt;}
.ws12{word-spacing:5.653333pt;}
.ws63{word-spacing:5.760000pt;}
.ws37{word-spacing:6.186667pt;}
.ws38{word-spacing:7.573333pt;}
.ws29{word-spacing:7.706667pt;}
.ws16{word-spacing:7.893333pt;}
.ws28{word-spacing:8.069333pt;}
.ws75{word-spacing:8.080000pt;}
.ws35{word-spacing:8.746667pt;}
.ws3e{word-spacing:9.706667pt;}
.ws50{word-spacing:10.666667pt;}
.ws66{word-spacing:10.986667pt;}
.ws13{word-spacing:11.093333pt;}
.ws64{word-spacing:11.306667pt;}
.ws7c{word-spacing:11.946667pt;}
.ws40{word-spacing:12.053333pt;}
.ws67{word-spacing:12.480000pt;}
.ws4e{word-spacing:13.333333pt;}
.ws30{word-spacing:14.186667pt;}
.ws65{word-spacing:14.720000pt;}
.ws2f{word-spacing:14.933333pt;}
.ws4c{word-spacing:15.573333pt;}
.ws1a{word-spacing:15.680000pt;}
.ws52{word-spacing:16.533333pt;}
.ws33{word-spacing:17.066667pt;}
.ws79{word-spacing:17.173333pt;}
.ws3f{word-spacing:19.093333pt;}
.ws49{word-spacing:20.480000pt;}
.ws48{word-spacing:21.226667pt;}
.ws7b{word-spacing:23.786667pt;}
.ws34{word-spacing:25.600000pt;}
.ws5b{word-spacing:25.920000pt;}
.ws3c{word-spacing:26.880000pt;}
.ws32{word-spacing:26.986667pt;}
.ws7d{word-spacing:27.093333pt;}
.ws7a{word-spacing:27.733333pt;}
.ws3b{word-spacing:28.053333pt;}
.ws2c{word-spacing:28.832000pt;}
.ws1b{word-spacing:28.906667pt;}
.ws19{word-spacing:29.013333pt;}
.ws2b{word-spacing:29.194667pt;}
.ws78{word-spacing:30.080000pt;}
.ws17{word-spacing:30.186667pt;}
.ws2d{word-spacing:32.640000pt;}
.ws6b{word-spacing:35.306667pt;}
.ws3a{word-spacing:35.520000pt;}
.ws7e{word-spacing:35.733333pt;}
.ws46{word-spacing:37.973333pt;}
.ws6a{word-spacing:38.837333pt;}
.ws69{word-spacing:38.933333pt;}
.ws2a{word-spacing:40.256000pt;}
.ws59{word-spacing:40.746667pt;}
.ws73{word-spacing:41.066667pt;}
.ws72{word-spacing:41.386667pt;}
.ws7f{word-spacing:42.773333pt;}
.ws47{word-spacing:43.733333pt;}
.ws39{word-spacing:43.946667pt;}
.ws76{word-spacing:47.466667pt;}
.ws18{word-spacing:51.840000pt;}
.ws5a{word-spacing:54.293333pt;}
.ws71{word-spacing:56.853333pt;}
.ws68{word-spacing:60.480000pt;}
.ws3d{word-spacing:61.760000pt;}
.ws70{word-spacing:62.538667pt;}
.ws77{word-spacing:66.026667pt;}
.wsb{word-spacing:67.520000pt;}
.ws6e{word-spacing:67.733333pt;}
.ws6f{word-spacing:67.946667pt;}
.ws20{word-spacing:73.066667pt;}
.ws27{word-spacing:76.800000pt;}
.ws5e{word-spacing:78.293333pt;}
.ws6d{word-spacing:86.400000pt;}
.ws1f{word-spacing:91.093333pt;}
.ws6c{word-spacing:95.040000pt;}
.wsf{word-spacing:105.323733pt;}
.ws10{word-spacing:105.324267pt;}
.wse{word-spacing:108.569600pt;}
.ws24{word-spacing:133.333333pt;}
.ws5c{word-spacing:140.480000pt;}
.ws25{word-spacing:145.600000pt;}
.ws26{word-spacing:157.013333pt;}
.ws11{word-spacing:167.055467pt;}
.ws22{word-spacing:187.061333pt;}
.ws23{word-spacing:193.546667pt;}
.ws21{word-spacing:317.376000pt;}
.ws4b{word-spacing:474.892267pt;}
._4d{margin-left:-1100.375467pt;}
._4b{margin-left:-803.325333pt;}
._33{margin-left:-802.066133pt;}
._34{margin-left:-742.853333pt;}
._38{margin-left:-734.033600pt;}
._13{margin-left:-43.574400pt;}
._2f{margin-left:-35.220267pt;}
._1c{margin-left:-30.971733pt;}
._2e{margin-left:-27.048000pt;}
._7{margin-left:-16.751467pt;}
._35{margin-left:-14.762667pt;}
._15{margin-left:-13.397333pt;}
._b{margin-left:-12.298133pt;}
._9{margin-left:-11.220267pt;}
._3{margin-left:-9.792000pt;}
._c{margin-left:-8.608000pt;}
._0{margin-left:-7.426667pt;}
._2{margin-left:-6.453333pt;}
._6{margin-left:-4.789867pt;}
._8{margin-left:-3.388800pt;}
._5{margin-left:-2.318400pt;}
._4{margin-left:-1.276267pt;}
._1a{width:0.952000pt;}
._1{width:1.866667pt;}
._2b{width:2.773333pt;}
._2c{width:4.266667pt;}
._a{width:5.280000pt;}
._1d{width:6.364800pt;}
._43{width:7.338667pt;}
._1f{width:8.840000pt;}
._2d{width:10.189333pt;}
._12{width:11.541333pt;}
._20{width:12.577067pt;}
._1e{width:13.563733pt;}
._39{width:14.515200pt;}
._14{width:15.520000pt;}
._2a{width:16.554667pt;}
._e{width:17.525333pt;}
._29{width:19.061333pt;}
._26{width:19.957333pt;}
._f{width:21.013333pt;}
._25{width:22.580800pt;}
._24{width:23.616533pt;}
._3b{width:25.237333pt;}
._11{width:28.128000pt;}
._28{width:29.440000pt;}
._27{width:30.624000pt;}
._3a{width:31.669333pt;}
._41{width:32.874667pt;}
._40{width:33.984000pt;}
._10{width:35.168000pt;}
._30{width:36.181333pt;}
._32{width:37.696000pt;}
._48{width:42.122667pt;}
._d{width:43.445333pt;}
._22{width:44.378667pt;}
._21{width:45.714133pt;}
._23{width:46.992533pt;}
._47{width:48.079467pt;}
._3f{width:50.528000pt;}
._4a{width:52.864000pt;}
._4c{width:53.834667pt;}
._31{width:54.805333pt;}
._49{width:55.797333pt;}
._46{width:57.248000pt;}
._3e{width:60.512000pt;}
._3d{width:64.373333pt;}
._3c{width:65.845333pt;}
._37{width:66.741333pt;}
._36{width:72.629333pt;}
._45{width:76.266667pt;}
._44{width:111.989333pt;}
._42{width:129.813333pt;}
._16{width:154.298667pt;}
._18{width:190.206400pt;}
._17{width:205.324800pt;}
._19{width:327.982400pt;}
._1b{width:631.952000pt;}
.fsd{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fsb{font-size:90.666667pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.fsf{font-size:107.733333pt;}
.fse{font-size:117.333333pt;}
.fs1{font-size:133.333333pt;}
.fsc{font-size:138.666667pt;}
.fs8{font-size:149.333333pt;}
.fs0{font-size:160.000000pt;}
.fsa{font-size:168.960000pt;}
.fs2{font-size:192.000000pt;}
.fs9{font-size:202.666667pt;}
.fs4{font-size:474.666667pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:15.427733pt;}
.y2d{bottom:15.931600pt;}
.y111{bottom:56.396800pt;}
.y125{bottom:58.014400pt;}
.y118{bottom:63.955867pt;}
.y1d{bottom:83.063333pt;}
.y9c{bottom:83.494667pt;}
.yd{bottom:84.459733pt;}
.y124{bottom:90.014400pt;}
.y11c{bottom:100.428267pt;}
.y64{bottom:111.301200pt;}
.y1c{bottom:111.863333pt;}
.y17a{bottom:113.856933pt;}
.y9b{bottom:115.494667pt;}
.y123{bottom:122.014400pt;}
.y117{bottom:124.313600pt;}
.y63{bottom:138.501200pt;}
.y1b{bottom:140.663200pt;}
.y197{bottom:141.036533pt;}
.y179{bottom:145.856933pt;}
.y9a{bottom:147.494667pt;}
.y11b{bottom:148.711733pt;}
.y61{bottom:151.324667pt;}
.y122{bottom:154.014400pt;}
.yce{bottom:154.129867pt;}
.yd9{bottom:154.559600pt;}
.y116{bottom:156.313600pt;}
.y78{bottom:157.888800pt;}
.yc{bottom:168.282000pt;}
.y196{bottom:173.036533pt;}
.y169{bottom:176.408000pt;}
.y99{bottom:179.494667pt;}
.y136{bottom:186.014400pt;}
.ycd{bottom:186.129867pt;}
.y5d{bottom:186.160533pt;}
.yd8{bottom:186.559600pt;}
.y158{bottom:193.416000pt;}
.y11a{bottom:197.825333pt;}
.y1a{bottom:198.263200pt;}
.y77{bottom:199.488800pt;}
.y195{bottom:205.036533pt;}
.y168{bottom:208.408000pt;}
.y178{bottom:209.856933pt;}
.y98{bottom:211.494667pt;}
.y113{bottom:211.577867pt;}
.y121{bottom:218.014400pt;}
.ycc{bottom:218.129867pt;}
.y5c{bottom:218.160533pt;}
.yd7{bottom:218.559600pt;}
.yb{bottom:220.050400pt;}
.yaf{bottom:222.140267pt;}
.y157{bottom:225.416000pt;}
.y13d{bottom:226.819600pt;}
.yeb{bottom:227.574133pt;}
.y147{bottom:228.716267pt;}
.y119{bottom:229.825333pt;}
.y194{bottom:237.036533pt;}
.y51{bottom:237.203733pt;}
.y167{bottom:240.408000pt;}
.y76{bottom:241.088800pt;}
.y177{bottom:241.856933pt;}
.y97{bottom:243.494667pt;}
.y112{bottom:243.577867pt;}
.ycb{bottom:250.129867pt;}
.yd6{bottom:250.559600pt;}
.y1a4{bottom:253.892133pt;}
.yae{bottom:254.140267pt;}
.y19{bottom:255.863333pt;}
.y156{bottom:257.416000pt;}
.yea{bottom:259.574133pt;}
.y146{bottom:260.716267pt;}
.y50{bottom:261.203733pt;}
.yfb{bottom:265.226933pt;}
.y193{bottom:269.036533pt;}
.y115{bottom:277.814133pt;}
.y120{bottom:282.014400pt;}
.yca{bottom:282.129867pt;}
.yd5{bottom:282.559600pt;}
.y1a3{bottom:285.892133pt;}
.yad{bottom:286.140267pt;}
.ye9{bottom:291.574133pt;}
.y87{bottom:293.023067pt;}
.yfa{bottom:297.226933pt;}
.ya{bottom:297.352933pt;}
.y192{bottom:301.036533pt;}
.y110{bottom:302.376533pt;}
.y176{bottom:305.856933pt;}
.y96{bottom:307.494667pt;}
.y114{bottom:309.814133pt;}
.y2c{bottom:310.707333pt;}
.y3f{bottom:312.488400pt;}
.y4e{bottom:312.688533pt;}
.y68{bottom:313.358533pt;}
.y18{bottom:313.463333pt;}
.ye8{bottom:313.520133pt;}
.y11f{bottom:314.014400pt;}
.yc9{bottom:314.129867pt;}
.yd4{bottom:314.559600pt;}
.y1a2{bottom:317.892133pt;}
.ybb{bottom:318.296533pt;}
.y75{bottom:324.288800pt;}
.y86{bottom:325.023067pt;}
.yf9{bottom:329.226933pt;}
.y9{bottom:329.352933pt;}
.y191{bottom:333.036533pt;}
.y10f{bottom:334.376533pt;}
.yc4{bottom:334.528133pt;}
.y175{bottom:337.856933pt;}
.y95{bottom:339.494667pt;}
.y67{bottom:340.558533pt;}
.y2b{bottom:342.707333pt;}
.y3c{bottom:343.141067pt;}
.ye7{bottom:345.520133pt;}
.yc8{bottom:346.129867pt;}
.yd3{bottom:346.559600pt;}
.y1a1{bottom:349.892133pt;}
.yac{bottom:350.140267pt;}
.yba{bottom:350.296533pt;}
.y155{bottom:356.187600pt;}
.y4b{bottom:356.840000pt;}
.y85{bottom:357.023067pt;}
.yf8{bottom:361.226933pt;}
.y8{bottom:361.352933pt;}
.yc3{bottom:366.528133pt;}
.y66{bottom:367.758533pt;}
.y17{bottom:371.063333pt;}
.y2a{bottom:374.707333pt;}
.y3b{bottom:375.141067pt;}
.y164{bottom:377.104267pt;}
.ye6{bottom:377.520133pt;}
.y166{bottom:377.991067pt;}
.y11e{bottom:378.014400pt;}
.yc7{bottom:378.129867pt;}
.yd2{bottom:378.559600pt;}
.y1a0{bottom:381.892133pt;}
.yab{bottom:382.140267pt;}
.yb9{bottom:382.296533pt;}
.y84{bottom:389.023067pt;}
.y8a{bottom:392.252933pt;}
.yf7{bottom:393.226933pt;}
.y65{bottom:394.958533pt;}
.y4f{bottom:395.810533pt;}
.y60{bottom:396.480133pt;}
.y190{bottom:397.036533pt;}
.yc2{bottom:398.528133pt;}
.y145{bottom:400.511867pt;}
.y10e{bottom:400.722933pt;}
.y174{bottom:401.856933pt;}
.y1b1{bottom:403.209867pt;}
.y29{bottom:406.707333pt;}
.y3a{bottom:407.141067pt;}
.y74{bottom:407.488800pt;}
.ye5{bottom:409.520133pt;}
.y165{bottom:409.991067pt;}
.y11d{bottom:410.014400pt;}
.yc6{bottom:410.129867pt;}
.yd1{bottom:410.559600pt;}
.yaa{bottom:414.140267pt;}
.yb8{bottom:414.296533pt;}
.y44{bottom:419.156133pt;}
.y154{bottom:420.187600pt;}
.y83{bottom:421.023067pt;}
.y7{bottom:424.144800pt;}
.y16{bottom:428.663333pt;}
.yc1{bottom:430.528133pt;}
.y5b{bottom:431.316133pt;}
.y43{bottom:431.459200pt;}
.y13c{bottom:431.954533pt;}
.y144{bottom:432.511867pt;}
.y10d{bottom:432.722933pt;}
.y173{bottom:433.856933pt;}
.y1b0{bottom:435.209867pt;}
.ye4{bottom:441.520133pt;}
.y198{bottom:442.408800pt;}
.y42{bottom:445.887867pt;}
.y19f{bottom:445.892133pt;}
.ya9{bottom:446.140267pt;}
.y82{bottom:453.023067pt;}
.yf6{bottom:457.226933pt;}
.yc0{bottom:462.528133pt;}
.y143{bottom:464.511867pt;}
.y10c{bottom:464.722933pt;}
.y41{bottom:465.167867pt;}
.y1af{bottom:467.209867pt;}
.y28{bottom:469.754533pt;}
.y39{bottom:471.141067pt;}
.y133{bottom:471.274133pt;}
.y187{bottom:472.156133pt;}
.ye3{bottom:473.520133pt;}
.yc5{bottom:474.129867pt;}
.yd0{bottom:474.559600pt;}
.y5a{bottom:476.157067pt;}
.ya8{bottom:478.140267pt;}
.yb7{bottom:478.296533pt;}
.y153{bottom:484.187600pt;}
.y15{bottom:486.263200pt;}
.yf5{bottom:489.226933pt;}
.y18f{bottom:490.192800pt;}
.y73{bottom:490.688800pt;}
.y1a5{bottom:490.912667pt;}
.y40{bottom:495.746667pt;}
.y142{bottom:496.511867pt;}
.y10b{bottom:496.722933pt;}
.y172{bottom:497.856933pt;}
.y135{bottom:501.674800pt;}
.y27{bottom:501.754533pt;}
.y38{bottom:503.141067pt;}
.y132{bottom:503.274133pt;}
.y186{bottom:504.156133pt;}
.ye2{bottom:505.520133pt;}
.ya7{bottom:510.140267pt;}
.y94{bottom:513.730933pt;}
.y81{bottom:520.223067pt;}
.y134{bottom:520.874800pt;}
.yf4{bottom:521.226933pt;}
.ybc{bottom:523.983600pt;}
.ybf{bottom:526.528133pt;}
.yda{bottom:527.763067pt;}
.y171{bottom:529.856933pt;}
.y1ae{bottom:531.209867pt;}
.y6{bottom:532.846533pt;}
.y26{bottom:533.754533pt;}
.y37{bottom:535.141067pt;}
.y131{bottom:535.274133pt;}
.y59{bottom:536.957067pt;}
.y18e{bottom:538.381733pt;}
.y19e{bottom:539.048400pt;}
.ya6{bottom:542.140267pt;}
.y14{bottom:543.863333pt;}
.y162{bottom:545.293200pt;}
.y80{bottom:552.223067pt;}
.y49{bottom:552.294000pt;}
.yf3{bottom:553.226933pt;}
.y93{bottom:553.730933pt;}
.y10a{bottom:560.722933pt;}
.y170{bottom:561.856933pt;}
.y152{bottom:564.061600pt;}
.y163{bottom:564.455067pt;}
.y25{bottom:565.754533pt;}
.y36{bottom:567.141067pt;}
.y130{bottom:567.274133pt;}
.y185{bottom:568.156133pt;}
.ye1{bottom:569.520133pt;}
.yb6{bottom:571.452667pt;}
.ycf{bottom:571.882400pt;}
.y6b{bottom:573.100667pt;}
.y72{bottom:573.888800pt;}
.ya5{bottom:574.140267pt;}
.ybd{bottom:576.267067pt;}
.y48{bottom:581.094000pt;}
.y7f{bottom:584.223067pt;}
.y18d{bottom:586.570667pt;}
.y19d{bottom:587.237333pt;}
.y109{bottom:592.722933pt;}
.y92{bottom:593.730933pt;}
.y141{bottom:594.685333pt;}
.y151{bottom:596.061600pt;}
.y24{bottom:597.754533pt;}
.y58{bottom:597.757067pt;}
.y35{bottom:599.141067pt;}
.y184{bottom:600.156133pt;}
.y6a{bottom:600.300667pt;}
.y13{bottom:601.463333pt;}
.y5{bottom:604.265600pt;}
.ya4{bottom:606.140267pt;}
.yf2{bottom:617.226933pt;}
.yb5{bottom:619.641733pt;}
.ybe{bottom:623.421200pt;}
.y1ad{bottom:624.366133pt;}
.yec{bottom:624.456000pt;}
.y108{bottom:624.722933pt;}
.y16f{bottom:625.856933pt;}
.y140{bottom:626.685333pt;}
.y69{bottom:627.500667pt;}
.y150{bottom:628.061600pt;}
.y23{bottom:629.754533pt;}
.y34{bottom:631.141067pt;}
.y12f{bottom:631.274133pt;}
.y18c{bottom:631.925067pt;}
.y19c{bottom:632.591733pt;}
.y91{bottom:633.730933pt;}
.y13b{bottom:636.049067pt;}
.y5f{bottom:636.120000pt;}
.ya3{bottom:638.140267pt;}
.y3e{bottom:641.651733pt;}
.y7e{bottom:643.798533pt;}
.y4d{bottom:644.583467pt;}
.yf1{bottom:649.226933pt;}
.y4{bottom:652.265600pt;}
.y107{bottom:656.722933pt;}
.y71{bottom:657.088800pt;}
.y16e{bottom:657.856933pt;}
.y13f{bottom:658.685333pt;}
.y12{bottom:659.063333pt;}
.y14f{bottom:660.061600pt;}
.y12e{bottom:663.274133pt;}
.y183{bottom:664.156133pt;}
.ye0{bottom:666.843067pt;}
.yb4{bottom:667.830667pt;}
.y88{bottom:669.201600pt;}
.y1ac{bottom:672.555067pt;}
.y57{bottom:672.795600pt;}
.y7d{bottom:675.798533pt;}
.y18b{bottom:680.114000pt;}
.y19b{bottom:680.780667pt;}
.yf0{bottom:681.226933pt;}
.y4a{bottom:685.474000pt;}
.y106{bottom:688.722933pt;}
.y3d{bottom:688.814400pt;}
.y161{bottom:689.305467pt;}
.y13e{bottom:690.685333pt;}
.y14e{bottom:692.061600pt;}
.y33{bottom:695.141067pt;}
.y12d{bottom:695.274133pt;}
.y182{bottom:696.156133pt;}
.y22{bottom:701.263733pt;}
.ya2{bottom:702.140267pt;}
.y15f{bottom:702.143600pt;}
.y56{bottom:704.795600pt;}
.y7c{bottom:707.798533pt;}
.yb3{bottom:713.184933pt;}
.yef{bottom:713.226933pt;}
.y90{bottom:713.730933pt;}
.ydf{bottom:714.602267pt;}
.y52{bottom:716.511067pt;}
.y11{bottom:716.663200pt;}
.y105{bottom:720.722933pt;}
.y1ab{bottom:720.744000pt;}
.y160{bottom:721.305467pt;}
.y4c{bottom:721.796800pt;}
.y16d{bottom:721.856933pt;}
.y32{bottom:727.141067pt;}
.y12c{bottom:727.274133pt;}
.y21{bottom:733.263733pt;}
.ya1{bottom:734.140267pt;}
.y3{bottom:739.722667pt;}
.y7b{bottom:739.798533pt;}
.y70{bottom:740.288800pt;}
.yee{bottom:745.226933pt;}
.y18a{bottom:745.310933pt;}
.y19a{bottom:745.977600pt;}
.y104{bottom:752.722933pt;}
.y8f{bottom:753.730933pt;}
.y31{bottom:759.141067pt;}
.y12b{bottom:759.274133pt;}
.yde{bottom:759.956667pt;}
.y181{bottom:760.156133pt;}
.yb2{bottom:761.374000pt;}
.y47{bottom:762.287467pt;}
.y20{bottom:765.263733pt;}
.y1aa{bottom:766.098400pt;}
.ya0{bottom:766.140267pt;}
.y7a{bottom:771.798533pt;}
.y10{bottom:774.263200pt;}
.yed{bottom:777.226933pt;}
.y14d{bottom:778.549867pt;}
.y103{bottom:784.722933pt;}
.y16c{bottom:785.856933pt;}
.y30{bottom:791.141067pt;}
.y12a{bottom:791.274133pt;}
.y180{bottom:792.156133pt;}
.y8e{bottom:793.730933pt;}
.y189{bottom:797.557600pt;}
.y9f{bottom:798.140267pt;}
.y199{bottom:798.224267pt;}
.y46{bottom:801.138533pt;}
.y6e{bottom:802.246000pt;}
.ydd{bottom:808.145600pt;}
.y14c{bottom:810.549867pt;}
.y2{bottom:811.440800pt;}
.y1a9{bottom:814.287333pt;}
.y2f{bottom:823.141067pt;}
.y6f{bottom:823.488800pt;}
.yb1{bottom:826.570800pt;}
.y6d{bottom:829.446000pt;}
.y45{bottom:829.938533pt;}
.y9e{bottom:830.140267pt;}
.yf{bottom:831.863333pt;}
.y15c{bottom:832.033467pt;}
.y8d{bottom:833.730933pt;}
.y138{bottom:840.143600pt;}
.y14b{bottom:842.549867pt;}
.y102{bottom:848.722933pt;}
.y13a{bottom:849.787733pt;}
.y16b{bottom:849.856933pt;}
.y17f{bottom:856.156133pt;}
.y6c{bottom:856.646000pt;}
.y79{bottom:860.217333pt;}
.y9d{bottom:862.140267pt;}
.y15b{bottom:864.353600pt;}
.y15e{bottom:866.551733pt;}
.y5e{bottom:868.726267pt;}
.ydc{bottom:873.342400pt;}
.y8c{bottom:873.730933pt;}
.y14a{bottom:874.549867pt;}
.yfc{bottom:877.319600pt;}
.yb0{bottom:878.817600pt;}
.y1a6{bottom:879.051867pt;}
.y1a8{bottom:879.484267pt;}
.y101{bottom:880.722933pt;}
.y139{bottom:881.787733pt;}
.y129{bottom:885.069467pt;}
.y17e{bottom:888.156133pt;}
.y15a{bottom:896.673600pt;}
.y54{bottom:903.562133pt;}
.y149{bottom:906.549867pt;}
.y100{bottom:912.722933pt;}
.y8b{bottom:913.730933pt;}
.y1{bottom:916.847200pt;}
.y128{bottom:917.069467pt;}
.y17d{bottom:920.156133pt;}
.ydb{bottom:925.589200pt;}
.y159{bottom:928.993600pt;}
.y1a7{bottom:931.730933pt;}
.ye{bottom:933.418267pt;}
.y53{bottom:935.562133pt;}
.y62{bottom:942.869733pt;}
.yff{bottom:944.722933pt;}
.y127{bottom:949.069467pt;}
.y16a{bottom:953.922267pt;}
.y188{bottom:960.347333pt;}
.y2e{bottom:970.691200pt;}
.y89{bottom:972.819733pt;}
.y1f{bottom:972.819867pt;}
.yfe{bottom:976.722933pt;}
.y17c{bottom:984.156133pt;}
.y1b2{bottom:985.193600pt;}
.y55{bottom:998.366533pt;}
.y148{bottom:1011.335333pt;}
.y17b{bottom:1016.156133pt;}
.y137{bottom:1019.935600pt;}
.y15d{bottom:1024.475200pt;}
.y126{bottom:1034.327467pt;}
.yfd{bottom:1040.722933pt;}
.h1a{height:56.156250pt;}
.h10{height:56.960000pt;}
.he{height:60.757333pt;}
.h15{height:62.997396pt;}
.hf{height:68.352000pt;}
.h9{height:74.114583pt;}
.h1d{height:74.855729pt;}
.h14{height:79.554688pt;}
.hc{height:84.234375pt;}
.hb{height:85.265625pt;}
.h8{height:93.593750pt;}
.h1c{height:94.529687pt;}
.h7{height:94.739583pt;}
.h17{height:96.348958pt;}
.h1b{height:104.213542pt;}
.h19{height:109.531250pt;}
.h4{height:116.992188pt;}
.h3{height:118.424479pt;}
.h16{height:123.161458pt;}
.h11{height:131.031250pt;}
.h5{height:140.390625pt;}
.h2{height:142.109375pt;}
.h13{height:150.067500pt;}
.h6{height:170.531250pt;}
.h12{height:180.005208pt;}
.hd{height:207.974400pt;}
.h18{height:324.942708pt;}
.ha{height:421.591146pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w1{width:1587.333333pt;}
.w0{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x3e{left:11.937067pt;}
.x10{left:17.937067pt;}
.x24{left:29.650933pt;}
.xe{left:48.704000pt;}
.x4d{left:60.472400pt;}
.xf{left:61.795333pt;}
.x2c{left:64.251867pt;}
.x4c{left:68.031467pt;}
.x12{left:73.936933pt;}
.x59{left:77.868800pt;}
.x54{left:80.267733pt;}
.x5a{left:82.535467pt;}
.x2b{left:85.919600pt;}
.x1{left:90.708667pt;}
.x44{left:93.543333pt;}
.x43{left:96.377867pt;}
.x51{left:99.212533pt;}
.x5d{left:101.858267pt;}
.xc{left:104.553467pt;}
.x4{left:106.299200pt;}
.x4a{left:110.551200pt;}
.x35{left:111.910667pt;}
.x34{left:119.794133pt;}
.x3{left:121.889733pt;}
.xb{left:135.238667pt;}
.x11{left:136.944667pt;}
.x36{left:142.062933pt;}
.x20{left:144.359600pt;}
.x32{left:145.984133pt;}
.x3b{left:149.622133pt;}
.x57{left:150.908000pt;}
.x52{left:151.853067pt;}
.x37{left:154.911333pt;}
.x30{left:159.935867pt;}
.x28{left:165.056533pt;}
.x2d{left:173.920800pt;}
.x2{left:175.275600pt;}
.x3d{left:204.559200pt;}
.x46{left:221.928400pt;}
.xa{left:224.960933pt;}
.x55{left:244.566933pt;}
.x6{left:246.739600pt;}
.x56{left:249.448800pt;}
.x58{left:259.212533pt;}
.x47{left:264.135467pt;}
.x8{left:273.054800pt;}
.x9{left:279.330667pt;}
.x5{left:284.055067pt;}
.x53{left:297.637733pt;}
.x41{left:336.332667pt;}
.x38{left:350.506000pt;}
.x7{left:376.010533pt;}
.x31{left:580.961467pt;}
.x33{left:584.031467pt;}
.x27{left:648.622000pt;}
.x26{left:650.750667pt;}
.x2e{left:658.582667pt;}
.x1a{left:669.013067pt;}
.x45{left:705.826800pt;}
.x4b{left:710.551067pt;}
.x25{left:731.060400pt;}
.x29{left:733.188933pt;}
.x2a{left:735.317600pt;}
.x23{left:737.574933pt;}
.x21{left:741.832000pt;}
.x2f{left:781.390400pt;}
.x50{left:803.149600pt;}
.x4e{left:805.653467pt;}
.x1c{left:810.902800pt;}
.x40{left:823.937067pt;}
.x5b{left:829.937067pt;}
.x3a{left:875.291200pt;}
.x3f{left:876.236267pt;}
.x3c{left:893.244000pt;}
.x22{left:901.417333pt;}
.x1d{left:979.414667pt;}
.x1e{left:983.194133pt;}
.x48{left:1006.180400pt;}
.x49{left:1012.352267pt;}
.x1f{left:1043.816267pt;}
.x39{left:1075.545333pt;}
.x5c{left:1113.498133pt;}
.x19{left:1115.312400pt;}
.x13{left:1125.863467pt;}
.x14{left:1131.532800pt;}
.x4f{left:1181.497200pt;}
.x18{left:1182.398933pt;}
.x1b{left:1223.501200pt;}
.x17{left:1249.485600pt;}
.x16{left:1321.296667pt;}
.x15{left:1393.107600pt;}
.x42{left:1551.783867pt;}
.xd{left:1557.338533pt;}
}




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