
    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_1e3fd28daf0048cf21a1eac5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_058f6b0d51d9096be4a7f90e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e06ad593918014f6e8af8306.woff')format("woff");}.ff3{font-family:ff3;line-height:1.219727;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_bb577d4a679a7e4f63ff3473.woff')format("woff");}.ff4{font-family:ff4;line-height:1.182129;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_8ba23bca4117a577573716f4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aeb5e88b201409dff0b9826d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_61d536b5d7b9d23d37926d31.woff')format("woff");}.ff7{font-family:ff7;line-height:1.219727;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:ff8;src:url('chunks/assets/font_252a99b90dcabdee11011764.woff')format("woff");}.ff8{font-family:ff8;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-16.977000px;}
.v3{vertical-align:-11.982000px;}
.v5{vertical-align:-10.894800px;}
.v6{vertical-align:-8.857200px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.978400px;}
.v1{vertical-align:13.962000px;}
.v2{vertical-align:16.977000px;}
.ls2d{letter-spacing:-4.692000px;}
.ls1e{letter-spacing:-4.209000px;}
.ls24{letter-spacing:-3.105000px;}
.ls25{letter-spacing:-2.898000px;}
.ls8{letter-spacing:-2.484000px;}
.ls3c{letter-spacing:-2.331000px;}
.ls2c{letter-spacing:-2.277000px;}
.ls38{letter-spacing:-2.205000px;}
.ls9{letter-spacing:-2.184000px;}
.ls17{letter-spacing:-1.794000px;}
.lsa{letter-spacing:-1.764000px;}
.ls23{letter-spacing:-1.725000px;}
.ls6{letter-spacing:-1.380000px;}
.ls26{letter-spacing:-1.242000px;}
.ls28{letter-spacing:-1.035000px;}
.lse{letter-spacing:-1.020000px;}
.ls3b{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.414000px;}
.ls2e{letter-spacing:-0.324000px;}
.ls2b{letter-spacing:-0.138000px;}
.ls7{letter-spacing:-0.108000px;}
.ls32{letter-spacing:-0.081000px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000300px;}
.ls1f{letter-spacing:0.001863px;}
.ls39{letter-spacing:0.002301px;}
.ls14{letter-spacing:0.003000px;}
.ls13{letter-spacing:0.018600px;}
.ls10{letter-spacing:0.042000px;}
.ls29{letter-spacing:0.117300px;}
.ls33{letter-spacing:0.931500px;}
.ls5{letter-spacing:1.260000px;}
.ls2a{letter-spacing:1.269600px;}
.ls3a{letter-spacing:1.291500px;}
.ls15{letter-spacing:1.587000px;}
.ls18{letter-spacing:1.656000px;}
.ls16{letter-spacing:2.400000px;}
.ls36{letter-spacing:2.898000px;}
.ls35{letter-spacing:3.906000px;}
.lsd{letter-spacing:4.178400px;}
.ls1{letter-spacing:4.200000px;}
.ls2f{letter-spacing:4.485000px;}
.ls2{letter-spacing:4.650000px;}
.ls22{letter-spacing:5.550000px;}
.lsb{letter-spacing:5.760000px;}
.ls20{letter-spacing:5.865000px;}
.lsc{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls0{letter-spacing:6.300000px;}
.ls21{letter-spacing:7.521000px;}
.ls12{letter-spacing:7.659000px;}
.ls34{letter-spacing:7.673400px;}
.ls37{letter-spacing:8.045100px;}
.ls1c{letter-spacing:8.160156px;}
.ls1d{letter-spacing:8.160756px;}
.ls30{letter-spacing:8.901000px;}
.ls19{letter-spacing:9.108000px;}
.ls1b{letter-spacing:11.895600px;}
.ls1a{letter-spacing:13.662000px;}
.ls31{letter-spacing:15.594000px;}
.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;}
}
.ws13{word-spacing:-42.360000px;}
.ws3{word-spacing:-30.348000px;}
.ws20{word-spacing:-26.625000px;}
.ws2{word-spacing:-26.568000px;}
.ws0{word-spacing:-25.725000px;}
.ws4{word-spacing:-24.192000px;}
.ws6{word-spacing:-23.604000px;}
.ws42{word-spacing:-22.860000px;}
.wsa{word-spacing:-22.740000px;}
.ws38{word-spacing:-22.680000px;}
.ws8{word-spacing:-22.620000px;}
.ws3a{word-spacing:-21.609000px;}
.ws15{word-spacing:-19.389000px;}
.ws7{word-spacing:-18.984000px;}
.ws5{word-spacing:-18.564000px;}
.ws1{word-spacing:-18.102000px;}
.ws3f{word-spacing:-17.703000px;}
.ws14{word-spacing:-17.043000px;}
.ws2a{word-spacing:-16.905000px;}
.wsc{word-spacing:-16.860000px;}
.ws25{word-spacing:-16.629000px;}
.ws24{word-spacing:-15.801000px;}
.ws3b{word-spacing:-15.561000px;}
.ws21{word-spacing:-15.318000px;}
.ws18{word-spacing:-15.249000px;}
.ws9{word-spacing:-14.820000px;}
.ws2b{word-spacing:-14.766000px;}
.ws37{word-spacing:-14.559000px;}
.ws12{word-spacing:-13.800000px;}
.ws40{word-spacing:-13.356000px;}
.ws19{word-spacing:-13.338000px;}
.ws1c{word-spacing:-12.834000px;}
.ws16{word-spacing:-11.844000px;}
.ws17{word-spacing:-11.303787px;}
.ws41{word-spacing:-10.320849px;}
.wsb{word-spacing:-9.829380px;}
.ws39{word-spacing:-7.797000px;}
.ws3e{word-spacing:-6.300000px;}
.wsd{word-spacing:-6.000000px;}
.ws3c{word-spacing:-4.968000px;}
.ws11{word-spacing:-4.200000px;}
.ws1a{word-spacing:-2.400000px;}
.ws2e{word-spacing:-1.932000px;}
.ws1b{word-spacing:-1.656000px;}
.ws22{word-spacing:-1.587000px;}
.wsf{word-spacing:-1.260000px;}
.ws2f{word-spacing:-0.897000px;}
.ws2d{word-spacing:-0.483000px;}
.ws1e{word-spacing:-0.345000px;}
.ws34{word-spacing:-0.138000px;}
.wse{word-spacing:0.000000px;}
.ws2c{word-spacing:0.138000px;}
.ws36{word-spacing:0.324000px;}
.ws43{word-spacing:1.008000px;}
.ws28{word-spacing:1.035000px;}
.ws10{word-spacing:1.380000px;}
.ws32{word-spacing:1.656000px;}
.ws33{word-spacing:2.001000px;}
.ws30{word-spacing:2.070000px;}
.ws44{word-spacing:2.331000px;}
.ws3d{word-spacing:2.829000px;}
.ws27{word-spacing:2.898000px;}
.ws26{word-spacing:3.105000px;}
.ws29{word-spacing:4.002000px;}
.ws1f{word-spacing:4.374000px;}
.ws35{word-spacing:4.692000px;}
.ws1d{word-spacing:5.244000px;}
.ws31{word-spacing:5.589000px;}
.ws23{word-spacing:7.797000px;}
._25{margin-left:-15.739500px;}
._9{margin-left:-10.141200px;}
._23{margin-left:-8.432400px;}
._c{margin-left:-7.359000px;}
._24{margin-left:-6.307200px;}
._8{margin-left:-5.305200px;}
._b{margin-left:-4.249200px;}
._a{margin-left:-2.626800px;}
._6{margin-left:-1.365000px;}
._3{width:1.056000px;}
._1{width:2.820000px;}
._0{width:3.855000px;}
._5{width:5.286600px;}
._4{width:6.318000px;}
._7{width:7.474800px;}
._e{width:8.664000px;}
._13{width:9.808500px;}
._1c{width:10.950300px;}
._1b{width:12.858600px;}
._17{width:14.082900px;}
._1a{width:15.410700px;}
._19{width:16.580400px;}
._12{width:18.347400px;}
._27{width:19.782000px;}
._26{width:20.843100px;}
._14{width:22.604400px;}
._2b{width:24.215340px;}
._2a{width:25.618200px;}
._1f{width:27.704160px;}
._29{width:28.924380px;}
._2f{width:30.822054px;}
._28{width:32.424000px;}
._15{width:33.480600px;}
._2d{width:35.066700px;}
._2e{width:36.422100px;}
._2c{width:40.509000px;}
._1d{width:43.445160px;}
._d{width:85.554000px;}
._16{width:114.120000px;}
._11{width:260.610000px;}
._21{width:454.920000px;}
._2{width:456.600000px;}
._18{width:457.605000px;}
._f{width:578.400000px;}
._20{width:955.291200px;}
._10{width:958.411200px;}
._1e{width:962.461200px;}
._22{width:964.441200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fsd{font-size:36.729000px;}
.fs9{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fsc{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y82{bottom:104.165400px;}
.y1a9{bottom:106.213350px;}
.ycf{bottom:106.290300px;}
.y1cb{bottom:106.291500px;}
.y167{bottom:106.293300px;}
.ya9{bottom:106.295850px;}
.y123{bottom:106.296300px;}
.y1eb{bottom:106.296900px;}
.y188{bottom:106.309350px;}
.y20{bottom:106.320150px;}
.y5c{bottom:109.294800px;}
.y35{bottom:112.098750px;}
.yce{bottom:123.543300px;}
.y166{bottom:123.546300px;}
.y81{bottom:125.667300px;}
.y1f{bottom:125.910150px;}
.y1ea{bottom:126.151950px;}
.y122{bottom:126.544800px;}
.ya8{bottom:126.688950px;}
.y1ca{bottom:126.750300px;}
.y5b{bottom:127.795200px;}
.yf2{bottom:130.796700px;}
.y34{bottom:132.350250px;}
.y187{bottom:133.682850px;}
.y1a8{bottom:134.090850px;}
.ycd{bottom:140.796300px;}
.y165{bottom:143.794800px;}
.y121{bottom:145.045200px;}
.y5a{bottom:145.048200px;}
.y1e{bottom:145.500150px;}
.y1e9{bottom:146.026950px;}
.ya7{bottom:147.112950px;}
.y80{bottom:147.169350px;}
.y33{bottom:152.601750px;}
.y1c9{bottom:153.997800px;}
.y186{bottom:154.268100px;}
.y1a7{bottom:155.164350px;}
.ycc{bottom:161.044800px;}
.y164{bottom:162.295200px;}
.y120{bottom:162.298200px;}
.y1d{bottom:165.090150px;}
.y59{bottom:165.296700px;}
.y1e8{bottom:165.901950px;}
.ya6{bottom:167.536950px;}
.y7f{bottom:168.671250px;}
.y1c8{bottom:174.426600px;}
.yf1{bottom:174.839550px;}
.y163{bottom:179.548200px;}
.y185{bottom:181.641600px;}
.y11f{bottom:182.546700px;}
.y1a6{bottom:183.041850px;}
.y145{bottom:183.800250px;}
.y1c{bottom:184.680150px;}
.y1e7{bottom:185.776950px;}
.y58{bottom:186.798750px;}
.ya5{bottom:187.960950px;}
.y7e{bottom:190.173300px;}
.yf0{bottom:196.246800px;}
.y162{bottom:199.796700px;}
.y1c7{bottom:201.674100px;}
.y184{bottom:202.226850px;}
.y20c{bottom:203.442750px;}
.y144{bottom:204.048750px;}
.y1a5{bottom:204.115350px;}
.y1b{bottom:204.274650px;}
.ycb{bottom:205.156800px;}
.yfd{bottom:205.352850px;}
.y1e6{bottom:205.651950px;}
.y57{bottom:208.300650px;}
.ya4{bottom:208.384950px;}
.y7d{bottom:208.676700px;}
.y32{bottom:213.351750px;}
.yef{bottom:217.654050px;}
.y161{bottom:218.297250px;}
.y1c6{bottom:222.133350px;}
.y20b{bottom:223.692750px;}
.y1a{bottom:223.864650px;}
.y1a4{bottom:225.188850px;}
.y1e5{bottom:225.526950px;}
.yca{bottom:225.667050px;}
.yfc{bottom:225.863100px;}
.y11e{bottom:226.500750px;}
.ya3{bottom:228.808950px;}
.y7c{bottom:228.925200px;}
.y183{bottom:229.600350px;}
.y56{bottom:229.802550px;}
.y31{bottom:233.601750px;}
.y160{bottom:235.550250px;}
.yee{bottom:239.061300px;}
.y19{bottom:243.454650px;}
.y20a{bottom:243.942750px;}
.y1e4{bottom:245.401950px;}
.yc9{bottom:246.177300px;}
.y1a3{bottom:246.262350px;}
.yfb{bottom:246.373350px;}
.y11d{bottom:246.993750px;}
.y7b{bottom:247.428600px;}
.y143{bottom:248.061150px;}
.ya2{bottom:249.232950px;}
.y1c5{bottom:249.380850px;}
.y182{bottom:250.185600px;}
.y55{bottom:251.304600px;}
.y15f{bottom:255.798750px;}
.yed{bottom:260.468550px;}
.y18{bottom:263.044650px;}
.y209{bottom:264.192750px;}
.y1e3{bottom:265.276950px;}
.yc8{bottom:266.687550px;}
.yfa{bottom:266.883600px;}
.y11c{bottom:267.486750px;}
.y7a{bottom:267.677100px;}
.y142{bottom:268.519650px;}
.ya1{bottom:269.656950px;}
.y54{bottom:269.799000px;}
.y1c4{bottom:269.840100px;}
.y1a2{bottom:274.139850px;}
.y181{bottom:277.559100px;}
.yec{bottom:281.875800px;}
.y1e2{bottom:285.151950px;}
.y53{bottom:287.052000px;}
.yc7{bottom:287.197800px;}
.yf9{bottom:287.393850px;}
.y11b{bottom:287.979750px;}
.y141{bottom:288.978150px;}
.y79{bottom:289.179150px;}
.ya0{bottom:290.080950px;}
.y1c3{bottom:290.299350px;}
.y1a1{bottom:295.213350px;}
.y17{bottom:295.399650px;}
.y208{bottom:297.192750px;}
.y15e{bottom:299.830500px;}
.yeb{bottom:303.283050px;}
.y52{bottom:304.305000px;}
.y1e1{bottom:305.026950px;}
.yc6{bottom:307.708050px;}
.yf8{bottom:307.904100px;}
.y11a{bottom:308.472750px;}
.y140{bottom:309.436650px;}
.y9f{bottom:310.443150px;}
.y78{bottom:310.681050px;}
.y1a0{bottom:316.286850px;}
.y1c2{bottom:317.546850px;}
.y15d{bottom:321.410250px;}
.y51{bottom:321.558000px;}
.yea{bottom:324.690300px;}
.y1e0{bottom:324.901950px;}
.yc5{bottom:328.218300px;}
.yf7{bottom:328.414350px;}
.y119{bottom:328.965750px;}
.y13f{bottom:329.895150px;}
.y9e{bottom:330.867150px;}
.y77{bottom:332.183100px;}
.y1c1{bottom:338.006100px;}
.y207{bottom:338.697750px;}
.y50{bottom:341.806500px;}
.y15c{bottom:342.990000px;}
.y19f{bottom:344.164350px;}
.y16{bottom:344.764650px;}
.ye9{bottom:346.097550px;}
.yc4{bottom:348.728550px;}
.yf6{bottom:348.924600px;}
.y180{bottom:349.220700px;}
.y118{bottom:349.458750px;}
.y13e{bottom:350.352450px;}
.y9d{bottom:351.291150px;}
.y1df{bottom:357.526950px;}
.y206{bottom:358.197750px;}
.y4f{bottom:363.308550px;}
.y15b{bottom:364.569750px;}
.y1c0{bottom:365.253600px;}
.y15{bottom:365.854650px;}
.ye8{bottom:367.504800px;}
.yc3{bottom:369.238800px;}
.yf5{bottom:369.434850px;}
.y17f{bottom:369.799950px;}
.y117{bottom:369.951750px;}
.y13d{bottom:370.795650px;}
.y9c{bottom:371.715150px;}
.y19e{bottom:372.041850px;}
.y76{bottom:376.190850px;}
.y205{bottom:377.697750px;}
.y14{bottom:386.977350px;}
.ye7{bottom:388.912050px;}
.yc2{bottom:389.749050px;}
.yf4{bottom:389.945100px;}
.y17e{bottom:390.379200px;}
.y116{bottom:390.444750px;}
.y13c{bottom:391.254150px;}
.y9b{bottom:392.139150px;}
.y1bf{bottom:392.501100px;}
.y19d{bottom:393.115350px;}
.y75{bottom:396.442350px;}
.y204{bottom:397.197750px;}
.y13{bottom:406.567350px;}
.y4e{bottom:407.227500px;}
.y15a{bottom:407.413950px;}
.yc1{bottom:410.259300px;}
.ye6{bottom:410.319300px;}
.yf3{bottom:410.455350px;}
.y115{bottom:410.937750px;}
.y17d{bottom:410.958450px;}
.y13b{bottom:411.712650px;}
.y9a{bottom:412.563150px;}
.y1be{bottom:412.960350px;}
.y1de{bottom:415.677000px;}
.y74{bottom:416.693850px;}
.y203{bottom:416.697750px;}
.y19c{bottom:420.992850px;}
.y12{bottom:426.157350px;}
.y4d{bottom:427.875750px;}
.yc0{bottom:430.965600px;}
.y114{bottom:431.430750px;}
.y17c{bottom:431.537700px;}
.ye5{bottom:431.726550px;}
.y13a{bottom:432.171150px;}
.y99{bottom:432.987150px;}
.y1bd{bottom:433.419600px;}
.y202{bottom:436.197750px;}
.y73{bottom:436.945350px;}
.y19b{bottom:442.066350px;}
.y1dd{bottom:443.040000px;}
.y11{bottom:445.747350px;}
.y4c{bottom:448.524000px;}
.ybf{bottom:451.475850px;}
.y113{bottom:451.923750px;}
.y17b{bottom:452.116950px;}
.y139{bottom:452.629650px;}
.ye4{bottom:453.133800px;}
.y98{bottom:453.411150px;}
.y201{bottom:455.697750px;}
.y72{bottom:457.196850px;}
.y1bc{bottom:460.667100px;}
.y10{bottom:465.337350px;}
.y4b{bottom:469.172250px;}
.y19a{bottom:469.943850px;}
.y159{bottom:471.056550px;}
.ybe{bottom:471.986100px;}
.y112{bottom:472.416750px;}
.y17a{bottom:472.696200px;}
.y138{bottom:473.088150px;}
.y97{bottom:473.835150px;}
.ye3{bottom:474.541050px;}
.y200{bottom:475.197750px;}
.y71{bottom:477.448350px;}
.y1bb{bottom:481.126350px;}
.yf{bottom:484.927350px;}
.y4a{bottom:489.820500px;}
.y199{bottom:491.017350px;}
.ybd{bottom:492.496350px;}
.y158{bottom:492.636300px;}
.y111{bottom:492.909750px;}
.y179{bottom:493.275450px;}
.y137{bottom:493.546650px;}
.y96{bottom:494.259150px;}
.y1ff{bottom:494.697750px;}
.ye2{bottom:495.948300px;}
.y70{bottom:497.699850px;}
.ye{bottom:504.517350px;}
.y1ba{bottom:508.373850px;}
.y49{bottom:510.468750px;}
.y1dc{bottom:512.351400px;}
.ybc{bottom:513.006600px;}
.y110{bottom:513.402750px;}
.y178{bottom:513.854700px;}
.y136{bottom:514.005150px;}
.y1fe{bottom:514.197750px;}
.y157{bottom:514.216050px;}
.y95{bottom:514.683150px;}
.ye1{bottom:517.355550px;}
.y6f{bottom:517.945350px;}
.y198{bottom:518.894850px;}
.yd{bottom:524.107350px;}
.y1b9{bottom:528.833100px;}
.y48{bottom:531.117000px;}
.ybb{bottom:533.516850px;}
.y1fd{bottom:533.697750px;}
.y10f{bottom:533.895750px;}
.y135{bottom:534.463650px;}
.y94{bottom:535.107150px;}
.y156{bottom:535.795800px;}
.y6e{bottom:538.196850px;}
.ye0{bottom:538.762800px;}
.y1db{bottom:539.772150px;}
.y197{bottom:539.968350px;}
.y177{bottom:542.936700px;}
.yc{bottom:543.697350px;}
.y47{bottom:551.765250px;}
.y1fc{bottom:553.197750px;}
.yba{bottom:554.027100px;}
.y10e{bottom:554.324400px;}
.y134{bottom:554.922150px;}
.y93{bottom:555.531150px;}
.y1b8{bottom:556.080600px;}
.y155{bottom:557.375550px;}
.y6d{bottom:558.448350px;}
.ydf{bottom:560.170050px;}
.y1da{bottom:560.388900px;}
.y196{bottom:567.845850px;}
.y46{bottom:572.413500px;}
.y1fb{bottom:572.697750px;}
.yb9{bottom:574.537350px;}
.y10d{bottom:574.817400px;}
.y133{bottom:575.380650px;}
.y92{bottom:575.955150px;}
.yb{bottom:576.052350px;}
.y1b7{bottom:576.539850px;}
.y6c{bottom:578.699850px;}
.y154{bottom:578.955300px;}
.y30{bottom:579.432750px;}
.yde{bottom:581.577300px;}
.y1d9{bottom:587.809650px;}
.y1fa{bottom:592.197750px;}
.y45{bottom:593.061750px;}
.y176{bottom:594.012600px;}
.yb8{bottom:595.047600px;}
.y10c{bottom:595.310400px;}
.y195{bottom:595.723350px;}
.y132{bottom:595.839150px;}
.y91{bottom:596.379150px;}
.y6b{bottom:598.949850px;}
.y2f{bottom:599.684250px;}
.y153{bottom:600.535050px;}
.ydd{bottom:602.984550px;}
.y1b6{bottom:603.787350px;}
.y1d8{bottom:608.426400px;}
.y1f9{bottom:611.697750px;}
.y44{bottom:613.710000px;}
.y175{bottom:614.591850px;}
.yb7{bottom:615.557850px;}
.y10b{bottom:615.803400px;}
.y131{bottom:616.297650px;}
.y194{bottom:616.796850px;}
.y90{bottom:616.803150px;}
.y6a{bottom:619.195350px;}
.y2e{bottom:619.935750px;}
.y152{bottom:622.114800px;}
.y1b5{bottom:624.246600px;}
.ydc{bottom:624.397800px;}
.y1f8{bottom:631.197750px;}
.ya{bottom:633.918300px;}
.y43{bottom:634.358250px;}
.y174{bottom:635.171100px;}
.y1d7{bottom:635.847150px;}
.yb6{bottom:636.068100px;}
.y10a{bottom:636.296400px;}
.y130{bottom:636.740850px;}
.y8f{bottom:637.227150px;}
.y193{bottom:637.870350px;}
.y69{bottom:639.446850px;}
.y2d{bottom:640.187250px;}
.y151{bottom:643.694550px;}
.y1b4{bottom:644.705850px;}
.ydb{bottom:645.805050px;}
.y1f7{bottom:650.697750px;}
.y42{bottom:655.006500px;}
.y173{bottom:655.750350px;}
.y1d6{bottom:656.463900px;}
.yb5{bottom:656.578350px;}
.y109{bottom:656.789400px;}
.y12f{bottom:657.199350px;}
.y8e{bottom:657.651150px;}
.y68{bottom:659.698350px;}
.y2c{bottom:660.438750px;}
.y9{bottom:661.008300px;}
.y150{bottom:665.301450px;}
.y192{bottom:665.747850px;}
.yda{bottom:667.212300px;}
.y1f6{bottom:670.197750px;}
.y1b3{bottom:671.953350px;}
.y41{bottom:675.639450px;}
.y172{bottom:676.329600px;}
.y1d5{bottom:677.080650px;}
.yb4{bottom:677.088600px;}
.y108{bottom:677.282400px;}
.y12e{bottom:677.657850px;}
.y8d{bottom:678.058050px;}
.y67{bottom:679.949850px;}
.y2b{bottom:680.690250px;}
.y191{bottom:686.821350px;}
.y14f{bottom:686.881200px;}
.yd9{bottom:688.619550px;}
.y1f5{bottom:689.697750px;}
.y1b2{bottom:692.412600px;}
.y40{bottom:696.287700px;}
.y171{bottom:696.908850px;}
.yb3{bottom:697.598850px;}
.y1d4{bottom:697.697400px;}
.y107{bottom:697.775400px;}
.y12d{bottom:698.116350px;}
.y8c{bottom:698.482050px;}
.y66{bottom:700.195350px;}
.y2a{bottom:700.941750px;}
.y190{bottom:707.894850px;}
.y14e{bottom:708.460950px;}
.y1f4{bottom:709.197750px;}
.y8{bottom:709.366500px;}
.yd8{bottom:710.026800px;}
.y1b1{bottom:712.871850px;}
.y3f{bottom:716.928300px;}
.y170{bottom:717.488100px;}
.yb2{bottom:718.109100px;}
.y106{bottom:718.268400px;}
.y1d3{bottom:718.314150px;}
.y12c{bottom:718.574850px;}
.y8b{bottom:718.906050px;}
.y65{bottom:720.446850px;}
.y29{bottom:721.193250px;}
.y1f3{bottom:728.697750px;}
.y14d{bottom:730.040700px;}
.yd7{bottom:731.443350px;}
.y18f{bottom:735.772350px;}
.y3e{bottom:737.568900px;}
.y16f{bottom:738.067350px;}
.yb1{bottom:738.619350px;}
.y105{bottom:738.761400px;}
.y1d2{bottom:738.942000px;}
.y12b{bottom:739.033350px;}
.y8a{bottom:739.330050px;}
.y1b0{bottom:740.119350px;}
.y64{bottom:740.698350px;}
.y7{bottom:740.956500px;}
.y28{bottom:741.444750px;}
.y1f2{bottom:748.197750px;}
.y14c{bottom:751.620450px;}
.yd6{bottom:752.850600px;}
.y18e{bottom:756.845850px;}
.y3d{bottom:758.163600px;}
.y16e{bottom:758.646600px;}
.yb0{bottom:759.129600px;}
.y104{bottom:759.254400px;}
.y12a{bottom:759.491850px;}
.y89{bottom:759.754050px;}
.y1af{bottom:760.578600px;}
.y63{bottom:760.949850px;}
.y27{bottom:761.696250px;}
.y1d1{bottom:766.362750px;}
.y1f1{bottom:767.697750px;}
.y14b{bottom:773.200200px;}
.yd5{bottom:774.257850px;}
.y3c{bottom:778.811850px;}
.y16d{bottom:779.225850px;}
.yaf{bottom:779.639850px;}
.y103{bottom:779.747400px;}
.y129{bottom:779.950350px;}
.y88{bottom:780.157350px;}
.y62{bottom:781.199850px;}
.y26{bottom:781.947750px;}
.y18d{bottom:784.723350px;}
.y1d0{bottom:786.990300px;}
.y1f0{bottom:787.197750px;}
.y1ae{bottom:787.826100px;}
.y14a{bottom:794.798100px;}
.yd4{bottom:795.665100px;}
.y3b{bottom:799.460100px;}
.y16c{bottom:799.805100px;}
.yae{bottom:800.150100px;}
.y102{bottom:800.240400px;}
.y128{bottom:800.408850px;}
.y87{bottom:800.581350px;}
.y61{bottom:801.446850px;}
.y6{bottom:802.324800px;}
.y18c{bottom:805.796850px;}
.y1ef{bottom:806.697750px;}
.y1ad{bottom:808.285350px;}
.y1cf{bottom:814.411050px;}
.y149{bottom:816.377850px;}
.yd3{bottom:817.072350px;}
.y3a{bottom:820.108350px;}
.y16b{bottom:820.384350px;}
.yad{bottom:820.660350px;}
.y101{bottom:820.733400px;}
.y127{bottom:820.867350px;}
.y86{bottom:821.005350px;}
.y60{bottom:821.698350px;}
.y1ee{bottom:826.197750px;}
.y5{bottom:831.919800px;}
.y18b{bottom:833.674350px;}
.y1ce{bottom:835.044600px;}
.y1ac{bottom:835.532850px;}
.y148{bottom:837.957600px;}
.yd2{bottom:838.479600px;}
.y39{bottom:840.756600px;}
.y16a{bottom:840.963600px;}
.yac{bottom:841.170600px;}
.y100{bottom:841.226400px;}
.y126{bottom:841.325850px;}
.y85{bottom:841.429350px;}
.y5f{bottom:841.949850px;}
.y25{bottom:842.697750px;}
.y1ed{bottom:845.697750px;}
.y18a{bottom:854.747850px;}
.y1ab{bottom:855.992100px;}
.y147{bottom:859.537350px;}
.yd1{bottom:859.886850px;}
.y38{bottom:861.404850px;}
.y4{bottom:861.514800px;}
.y169{bottom:861.542850px;}
.yab{bottom:861.680850px;}
.yff{bottom:861.719400px;}
.y125{bottom:861.784350px;}
.y84{bottom:861.853350px;}
.y5e{bottom:862.199850px;}
.y1cd{bottom:862.465350px;}
.y24{bottom:863.697750px;}
.y1ec{bottom:865.197750px;}
.y146{bottom:881.121600px;}
.yd0{bottom:881.294100px;}
.y37{bottom:882.053100px;}
.y168{bottom:882.122100px;}
.yaa{bottom:882.191100px;}
.yfe{bottom:882.208350px;}
.y124{bottom:882.242850px;}
.y83{bottom:882.277350px;}
.y5d{bottom:882.449850px;}
.y3{bottom:882.604800px;}
.y189{bottom:882.625350px;}
.y1cc{bottom:883.082100px;}
.y1aa{bottom:883.239600px;}
.y23{bottom:884.697750px;}
.y36{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.h10{height:37.983820px;}
.h13{height:39.987727px;}
.hc{height:44.414062px;}
.h11{height:49.965820px;}
.h12{height:51.969727px;}
.h4{height:55.517578px;}
.h23{height:55.597378px;}
.h9{height:57.744141px;}
.h3{height:58.293457px;}
.h20{height:60.564148px;}
.h22{height:60.586948px;}
.h21{height:60.588148px;}
.h1d{height:60.631348px;}
.h1f{height:60.633148px;}
.h1e{height:60.753148px;}
.hb{height:63.845215px;}
.h19{height:63.861415px;}
.hf{height:63.906415px;}
.h17{height:63.968815px;}
.hd{height:64.059415px;}
.h18{height:65.621562px;}
.ha{height:66.405762px;}
.h1b{height:66.410562px;}
.h14{height:66.411762px;}
.h15{height:66.423762px;}
.h16{height:66.429762px;}
.he{height:66.436362px;}
.h1a{height:66.663162px;}
.h2{height:69.396973px;}
.h1c{height:74.948730px;}
.h7{height:77.724609px;}
.h8{height:80.841797px;}
.h5{height:99.931641px;}
.h6{height:103.939453px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.592600px;}
.x1{left:82.214250px;}
.x6{left:83.400150px;}
.x4{left:85.080600px;}
.x9{left:95.827200px;}
.x8{left:104.027550px;}
.x5{left:105.029250px;}
.x3{left:106.365600px;}
.xb{left:110.317200px;}
.xa{left:114.750450px;}
.x2{left:233.415450px;}
@media print{
.v4{vertical-align:-15.090667pt;}
.v3{vertical-align:-10.650667pt;}
.v5{vertical-align:-9.684267pt;}
.v6{vertical-align:-7.873067pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.980800pt;}
.v1{vertical-align:12.410667pt;}
.v2{vertical-align:15.090667pt;}
.ls2d{letter-spacing:-4.170667pt;}
.ls1e{letter-spacing:-3.741333pt;}
.ls24{letter-spacing:-2.760000pt;}
.ls25{letter-spacing:-2.576000pt;}
.ls8{letter-spacing:-2.208000pt;}
.ls3c{letter-spacing:-2.072000pt;}
.ls2c{letter-spacing:-2.024000pt;}
.ls38{letter-spacing:-1.960000pt;}
.ls9{letter-spacing:-1.941333pt;}
.ls17{letter-spacing:-1.594667pt;}
.lsa{letter-spacing:-1.568000pt;}
.ls23{letter-spacing:-1.533333pt;}
.ls6{letter-spacing:-1.226667pt;}
.ls26{letter-spacing:-1.104000pt;}
.ls28{letter-spacing:-0.920000pt;}
.lse{letter-spacing:-0.906667pt;}
.ls3b{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.368000pt;}
.ls2e{letter-spacing:-0.288000pt;}
.ls2b{letter-spacing:-0.122667pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls32{letter-spacing:-0.072000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000267pt;}
.ls1f{letter-spacing:0.001656pt;}
.ls39{letter-spacing:0.002045pt;}
.ls14{letter-spacing:0.002667pt;}
.ls13{letter-spacing:0.016533pt;}
.ls10{letter-spacing:0.037333pt;}
.ls29{letter-spacing:0.104267pt;}
.ls33{letter-spacing:0.828000pt;}
.ls5{letter-spacing:1.120000pt;}
.ls2a{letter-spacing:1.128533pt;}
.ls3a{letter-spacing:1.148000pt;}
.ls15{letter-spacing:1.410667pt;}
.ls18{letter-spacing:1.472000pt;}
.ls16{letter-spacing:2.133333pt;}
.ls36{letter-spacing:2.576000pt;}
.ls35{letter-spacing:3.472000pt;}
.lsd{letter-spacing:3.714133pt;}
.ls1{letter-spacing:3.733333pt;}
.ls2f{letter-spacing:3.986667pt;}
.ls2{letter-spacing:4.133333pt;}
.ls22{letter-spacing:4.933333pt;}
.lsb{letter-spacing:5.120000pt;}
.ls20{letter-spacing:5.213333pt;}
.lsc{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls0{letter-spacing:5.600000pt;}
.ls21{letter-spacing:6.685333pt;}
.ls12{letter-spacing:6.808000pt;}
.ls34{letter-spacing:6.820800pt;}
.ls37{letter-spacing:7.151200pt;}
.ls1c{letter-spacing:7.253472pt;}
.ls1d{letter-spacing:7.254005pt;}
.ls30{letter-spacing:7.912000pt;}
.ls19{letter-spacing:8.096000pt;}
.ls1b{letter-spacing:10.573867pt;}
.ls1a{letter-spacing:12.144000pt;}
.ls31{letter-spacing:13.861333pt;}
.ws13{word-spacing:-37.653333pt;}
.ws3{word-spacing:-26.976000pt;}
.ws20{word-spacing:-23.666667pt;}
.ws2{word-spacing:-23.616000pt;}
.ws0{word-spacing:-22.866667pt;}
.ws4{word-spacing:-21.504000pt;}
.ws6{word-spacing:-20.981333pt;}
.ws42{word-spacing:-20.320000pt;}
.wsa{word-spacing:-20.213333pt;}
.ws38{word-spacing:-20.160000pt;}
.ws8{word-spacing:-20.106667pt;}
.ws3a{word-spacing:-19.208000pt;}
.ws15{word-spacing:-17.234667pt;}
.ws7{word-spacing:-16.874667pt;}
.ws5{word-spacing:-16.501333pt;}
.ws1{word-spacing:-16.090667pt;}
.ws3f{word-spacing:-15.736000pt;}
.ws14{word-spacing:-15.149333pt;}
.ws2a{word-spacing:-15.026667pt;}
.wsc{word-spacing:-14.986667pt;}
.ws25{word-spacing:-14.781333pt;}
.ws24{word-spacing:-14.045333pt;}
.ws3b{word-spacing:-13.832000pt;}
.ws21{word-spacing:-13.616000pt;}
.ws18{word-spacing:-13.554667pt;}
.ws9{word-spacing:-13.173333pt;}
.ws2b{word-spacing:-13.125333pt;}
.ws37{word-spacing:-12.941333pt;}
.ws12{word-spacing:-12.266667pt;}
.ws40{word-spacing:-11.872000pt;}
.ws19{word-spacing:-11.856000pt;}
.ws1c{word-spacing:-11.408000pt;}
.ws16{word-spacing:-10.528000pt;}
.ws17{word-spacing:-10.047811pt;}
.ws41{word-spacing:-9.174088pt;}
.wsb{word-spacing:-8.737227pt;}
.ws39{word-spacing:-6.930667pt;}
.ws3e{word-spacing:-5.600000pt;}
.wsd{word-spacing:-5.333333pt;}
.ws3c{word-spacing:-4.416000pt;}
.ws11{word-spacing:-3.733333pt;}
.ws1a{word-spacing:-2.133333pt;}
.ws2e{word-spacing:-1.717333pt;}
.ws1b{word-spacing:-1.472000pt;}
.ws22{word-spacing:-1.410667pt;}
.wsf{word-spacing:-1.120000pt;}
.ws2f{word-spacing:-0.797333pt;}
.ws2d{word-spacing:-0.429333pt;}
.ws1e{word-spacing:-0.306667pt;}
.ws34{word-spacing:-0.122667pt;}
.wse{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.122667pt;}
.ws36{word-spacing:0.288000pt;}
.ws43{word-spacing:0.896000pt;}
.ws28{word-spacing:0.920000pt;}
.ws10{word-spacing:1.226667pt;}
.ws32{word-spacing:1.472000pt;}
.ws33{word-spacing:1.778667pt;}
.ws30{word-spacing:1.840000pt;}
.ws44{word-spacing:2.072000pt;}
.ws3d{word-spacing:2.514667pt;}
.ws27{word-spacing:2.576000pt;}
.ws26{word-spacing:2.760000pt;}
.ws29{word-spacing:3.557333pt;}
.ws1f{word-spacing:3.888000pt;}
.ws35{word-spacing:4.170667pt;}
.ws1d{word-spacing:4.661333pt;}
.ws31{word-spacing:4.968000pt;}
.ws23{word-spacing:6.930667pt;}
._25{margin-left:-13.990667pt;}
._9{margin-left:-9.014400pt;}
._23{margin-left:-7.495467pt;}
._c{margin-left:-6.541333pt;}
._24{margin-left:-5.606400pt;}
._8{margin-left:-4.715733pt;}
._b{margin-left:-3.777067pt;}
._a{margin-left:-2.334933pt;}
._6{margin-left:-1.213333pt;}
._3{width:0.938667pt;}
._1{width:2.506667pt;}
._0{width:3.426667pt;}
._5{width:4.699200pt;}
._4{width:5.616000pt;}
._7{width:6.644267pt;}
._e{width:7.701333pt;}
._13{width:8.718667pt;}
._1c{width:9.733600pt;}
._1b{width:11.429867pt;}
._17{width:12.518133pt;}
._1a{width:13.698400pt;}
._19{width:14.738133pt;}
._12{width:16.308800pt;}
._27{width:17.584000pt;}
._26{width:18.527200pt;}
._14{width:20.092800pt;}
._2b{width:21.524747pt;}
._2a{width:22.771733pt;}
._1f{width:24.625920pt;}
._29{width:25.710560pt;}
._2f{width:27.397381pt;}
._28{width:28.821333pt;}
._15{width:29.760533pt;}
._2d{width:31.170400pt;}
._2e{width:32.375200pt;}
._2c{width:36.008000pt;}
._1d{width:38.617920pt;}
._d{width:76.048000pt;}
._16{width:101.440000pt;}
._11{width:231.653333pt;}
._21{width:404.373333pt;}
._2{width:405.866667pt;}
._18{width:406.760000pt;}
._f{width:514.133333pt;}
._20{width:849.147733pt;}
._10{width:851.921067pt;}
._1e{width:855.521067pt;}
._22{width:857.281067pt;}
.fsa{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fsd{font-size:32.648000pt;}
.fs9{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fsc{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y82{bottom:92.591467pt;}
.y1a9{bottom:94.411867pt;}
.ycf{bottom:94.480267pt;}
.y1cb{bottom:94.481333pt;}
.y167{bottom:94.482933pt;}
.ya9{bottom:94.485200pt;}
.y123{bottom:94.485600pt;}
.y1eb{bottom:94.486133pt;}
.y188{bottom:94.497200pt;}
.y20{bottom:94.506800pt;}
.y5c{bottom:97.150933pt;}
.y35{bottom:99.643333pt;}
.yce{bottom:109.816267pt;}
.y166{bottom:109.818933pt;}
.y81{bottom:111.704267pt;}
.y1f{bottom:111.920133pt;}
.y1ea{bottom:112.135067pt;}
.y122{bottom:112.484267pt;}
.ya8{bottom:112.612400pt;}
.y1ca{bottom:112.666933pt;}
.y5b{bottom:113.595733pt;}
.yf2{bottom:116.263733pt;}
.y34{bottom:117.644667pt;}
.y187{bottom:118.829200pt;}
.y1a8{bottom:119.191867pt;}
.ycd{bottom:125.152267pt;}
.y165{bottom:127.817600pt;}
.y121{bottom:128.929067pt;}
.y5a{bottom:128.931733pt;}
.y1e{bottom:129.333467pt;}
.y1e9{bottom:129.801733pt;}
.ya7{bottom:130.767067pt;}
.y80{bottom:130.817200pt;}
.y33{bottom:135.646000pt;}
.y1c9{bottom:136.886933pt;}
.y186{bottom:137.127200pt;}
.y1a7{bottom:137.923867pt;}
.ycc{bottom:143.150933pt;}
.y164{bottom:144.262400pt;}
.y120{bottom:144.265067pt;}
.y1d{bottom:146.746800pt;}
.y59{bottom:146.930400pt;}
.y1e8{bottom:147.468400pt;}
.ya6{bottom:148.921733pt;}
.y7f{bottom:149.930000pt;}
.y1c8{bottom:155.045867pt;}
.yf1{bottom:155.412933pt;}
.y163{bottom:159.598400pt;}
.y185{bottom:161.459200pt;}
.y11f{bottom:162.263733pt;}
.y1a6{bottom:162.703867pt;}
.y145{bottom:163.378000pt;}
.y1c{bottom:164.160133pt;}
.y1e7{bottom:165.135067pt;}
.y58{bottom:166.043333pt;}
.ya5{bottom:167.076400pt;}
.y7e{bottom:169.042933pt;}
.yf0{bottom:174.441600pt;}
.y162{bottom:177.597067pt;}
.y1c7{bottom:179.265867pt;}
.y184{bottom:179.757200pt;}
.y20c{bottom:180.838000pt;}
.y144{bottom:181.376667pt;}
.y1a5{bottom:181.435867pt;}
.y1b{bottom:181.577467pt;}
.ycb{bottom:182.361600pt;}
.yfd{bottom:182.535867pt;}
.y1e6{bottom:182.801733pt;}
.y57{bottom:185.156133pt;}
.ya4{bottom:185.231067pt;}
.y7d{bottom:185.490400pt;}
.y32{bottom:189.646000pt;}
.yef{bottom:193.470267pt;}
.y161{bottom:194.042000pt;}
.y1c6{bottom:197.451867pt;}
.y20b{bottom:198.838000pt;}
.y1a{bottom:198.990800pt;}
.y1a4{bottom:200.167867pt;}
.y1e5{bottom:200.468400pt;}
.yca{bottom:200.592933pt;}
.yfc{bottom:200.767200pt;}
.y11e{bottom:201.334000pt;}
.ya3{bottom:203.385733pt;}
.y7c{bottom:203.489067pt;}
.y183{bottom:204.089200pt;}
.y56{bottom:204.268933pt;}
.y31{bottom:207.646000pt;}
.y160{bottom:209.378000pt;}
.yee{bottom:212.498933pt;}
.y19{bottom:216.404133pt;}
.y20a{bottom:216.838000pt;}
.y1e4{bottom:218.135067pt;}
.yc9{bottom:218.824267pt;}
.y1a3{bottom:218.899867pt;}
.yfb{bottom:218.998533pt;}
.y11d{bottom:219.550000pt;}
.y7b{bottom:219.936533pt;}
.y143{bottom:220.498800pt;}
.ya2{bottom:221.540400pt;}
.y1c5{bottom:221.671867pt;}
.y182{bottom:222.387200pt;}
.y55{bottom:223.381867pt;}
.y15f{bottom:227.376667pt;}
.yed{bottom:231.527600pt;}
.y18{bottom:233.817467pt;}
.y209{bottom:234.838000pt;}
.y1e3{bottom:235.801733pt;}
.yc8{bottom:237.055600pt;}
.yfa{bottom:237.229867pt;}
.y11c{bottom:237.766000pt;}
.y7a{bottom:237.935200pt;}
.y142{bottom:238.684133pt;}
.ya1{bottom:239.695067pt;}
.y54{bottom:239.821333pt;}
.y1c4{bottom:239.857867pt;}
.y1a2{bottom:243.679867pt;}
.y181{bottom:246.719200pt;}
.yec{bottom:250.556267pt;}
.y1e2{bottom:253.468400pt;}
.y53{bottom:255.157333pt;}
.yc7{bottom:255.286933pt;}
.yf9{bottom:255.461200pt;}
.y11b{bottom:255.982000pt;}
.y141{bottom:256.869467pt;}
.y79{bottom:257.048133pt;}
.ya0{bottom:257.849733pt;}
.y1c3{bottom:258.043867pt;}
.y1a1{bottom:262.411867pt;}
.y17{bottom:262.577467pt;}
.y208{bottom:264.171333pt;}
.y15e{bottom:266.516000pt;}
.yeb{bottom:269.584933pt;}
.y52{bottom:270.493333pt;}
.y1e1{bottom:271.135067pt;}
.yc6{bottom:273.518267pt;}
.yf8{bottom:273.692533pt;}
.y11a{bottom:274.198000pt;}
.y140{bottom:275.054800pt;}
.y9f{bottom:275.949467pt;}
.y78{bottom:276.160933pt;}
.y1a0{bottom:281.143867pt;}
.y1c2{bottom:282.263867pt;}
.y15d{bottom:285.698000pt;}
.y51{bottom:285.829333pt;}
.yea{bottom:288.613600pt;}
.y1e0{bottom:288.801733pt;}
.yc5{bottom:291.749600pt;}
.yf7{bottom:291.923867pt;}
.y119{bottom:292.414000pt;}
.y13f{bottom:293.240133pt;}
.y9e{bottom:294.104133pt;}
.y77{bottom:295.273867pt;}
.y1c1{bottom:300.449867pt;}
.y207{bottom:301.064667pt;}
.y50{bottom:303.828000pt;}
.y15c{bottom:304.880000pt;}
.y19f{bottom:305.923867pt;}
.y16{bottom:306.457467pt;}
.ye9{bottom:307.642267pt;}
.yc4{bottom:309.980933pt;}
.yf6{bottom:310.155200pt;}
.y180{bottom:310.418400pt;}
.y118{bottom:310.630000pt;}
.y13e{bottom:311.424400pt;}
.y9d{bottom:312.258800pt;}
.y1df{bottom:317.801733pt;}
.y206{bottom:318.398000pt;}
.y4f{bottom:322.940933pt;}
.y15b{bottom:324.062000pt;}
.y1c0{bottom:324.669867pt;}
.y15{bottom:325.204133pt;}
.ye8{bottom:326.670933pt;}
.yc3{bottom:328.212267pt;}
.yf5{bottom:328.386533pt;}
.y17f{bottom:328.711067pt;}
.y117{bottom:328.846000pt;}
.y13d{bottom:329.596133pt;}
.y9c{bottom:330.413467pt;}
.y19e{bottom:330.703867pt;}
.y76{bottom:334.391867pt;}
.y205{bottom:335.731333pt;}
.y14{bottom:343.979867pt;}
.ye7{bottom:345.699600pt;}
.yc2{bottom:346.443600pt;}
.yf4{bottom:346.617867pt;}
.y17e{bottom:347.003733pt;}
.y116{bottom:347.062000pt;}
.y13c{bottom:347.781467pt;}
.y9b{bottom:348.568133pt;}
.y1bf{bottom:348.889867pt;}
.y19d{bottom:349.435867pt;}
.y75{bottom:352.393200pt;}
.y204{bottom:353.064667pt;}
.y13{bottom:361.393200pt;}
.y4e{bottom:361.980000pt;}
.y15a{bottom:362.145733pt;}
.yc1{bottom:364.674933pt;}
.ye6{bottom:364.728267pt;}
.yf3{bottom:364.849200pt;}
.y115{bottom:365.278000pt;}
.y17d{bottom:365.296400pt;}
.y13b{bottom:365.966800pt;}
.y9a{bottom:366.722800pt;}
.y1be{bottom:367.075867pt;}
.y1de{bottom:369.490667pt;}
.y74{bottom:370.394533pt;}
.y203{bottom:370.398000pt;}
.y19c{bottom:374.215867pt;}
.y12{bottom:378.806533pt;}
.y4d{bottom:380.334000pt;}
.yc0{bottom:383.080533pt;}
.y114{bottom:383.494000pt;}
.y17c{bottom:383.589067pt;}
.ye5{bottom:383.756933pt;}
.y13a{bottom:384.152133pt;}
.y99{bottom:384.877467pt;}
.y1bd{bottom:385.261867pt;}
.y202{bottom:387.731333pt;}
.y73{bottom:388.395867pt;}
.y19b{bottom:392.947867pt;}
.y1dd{bottom:393.813333pt;}
.y11{bottom:396.219867pt;}
.y4c{bottom:398.688000pt;}
.ybf{bottom:401.311867pt;}
.y113{bottom:401.710000pt;}
.y17b{bottom:401.881733pt;}
.y139{bottom:402.337467pt;}
.ye4{bottom:402.785600pt;}
.y98{bottom:403.032133pt;}
.y201{bottom:405.064667pt;}
.y72{bottom:406.397200pt;}
.y1bc{bottom:409.481867pt;}
.y10{bottom:413.633200pt;}
.y4b{bottom:417.042000pt;}
.y19a{bottom:417.727867pt;}
.y159{bottom:418.716933pt;}
.ybe{bottom:419.543200pt;}
.y112{bottom:419.926000pt;}
.y17a{bottom:420.174400pt;}
.y138{bottom:420.522800pt;}
.y97{bottom:421.186800pt;}
.ye3{bottom:421.814267pt;}
.y200{bottom:422.398000pt;}
.y71{bottom:424.398533pt;}
.y1bb{bottom:427.667867pt;}
.yf{bottom:431.046533pt;}
.y4a{bottom:435.396000pt;}
.y199{bottom:436.459867pt;}
.ybd{bottom:437.774533pt;}
.y158{bottom:437.898933pt;}
.y111{bottom:438.142000pt;}
.y179{bottom:438.467067pt;}
.y137{bottom:438.708133pt;}
.y96{bottom:439.341467pt;}
.y1ff{bottom:439.731333pt;}
.ye2{bottom:440.842933pt;}
.y70{bottom:442.399867pt;}
.ye{bottom:448.459867pt;}
.y1ba{bottom:451.887867pt;}
.y49{bottom:453.750000pt;}
.y1dc{bottom:455.423467pt;}
.ybc{bottom:456.005867pt;}
.y110{bottom:456.358000pt;}
.y178{bottom:456.759733pt;}
.y136{bottom:456.893467pt;}
.y1fe{bottom:457.064667pt;}
.y157{bottom:457.080933pt;}
.y95{bottom:457.496133pt;}
.ye1{bottom:459.871600pt;}
.y6f{bottom:460.395867pt;}
.y198{bottom:461.239867pt;}
.yd{bottom:465.873200pt;}
.y1b9{bottom:470.073867pt;}
.y48{bottom:472.104000pt;}
.ybb{bottom:474.237200pt;}
.y1fd{bottom:474.398000pt;}
.y10f{bottom:474.574000pt;}
.y135{bottom:475.078800pt;}
.y94{bottom:475.650800pt;}
.y156{bottom:476.262933pt;}
.y6e{bottom:478.397200pt;}
.ye0{bottom:478.900267pt;}
.y1db{bottom:479.797467pt;}
.y197{bottom:479.971867pt;}
.y177{bottom:482.610400pt;}
.yc{bottom:483.286533pt;}
.y47{bottom:490.458000pt;}
.y1fc{bottom:491.731333pt;}
.yba{bottom:492.468533pt;}
.y10e{bottom:492.732800pt;}
.y134{bottom:493.264133pt;}
.y93{bottom:493.805467pt;}
.y1b8{bottom:494.293867pt;}
.y155{bottom:495.444933pt;}
.y6d{bottom:496.398533pt;}
.ydf{bottom:497.928933pt;}
.y1da{bottom:498.123467pt;}
.y196{bottom:504.751867pt;}
.y46{bottom:508.812000pt;}
.y1fb{bottom:509.064667pt;}
.yb9{bottom:510.699867pt;}
.y10d{bottom:510.948800pt;}
.y133{bottom:511.449467pt;}
.y92{bottom:511.960133pt;}
.yb{bottom:512.046533pt;}
.y1b7{bottom:512.479867pt;}
.y6c{bottom:514.399867pt;}
.y154{bottom:514.626933pt;}
.y30{bottom:515.051333pt;}
.yde{bottom:516.957600pt;}
.y1d9{bottom:522.497467pt;}
.y1fa{bottom:526.398000pt;}
.y45{bottom:527.166000pt;}
.y176{bottom:528.011200pt;}
.yb8{bottom:528.931200pt;}
.y10c{bottom:529.164800pt;}
.y195{bottom:529.531867pt;}
.y132{bottom:529.634800pt;}
.y91{bottom:530.114800pt;}
.y6b{bottom:532.399867pt;}
.y2f{bottom:533.052667pt;}
.y153{bottom:533.808933pt;}
.ydd{bottom:535.986267pt;}
.y1b6{bottom:536.699867pt;}
.y1d8{bottom:540.823467pt;}
.y1f9{bottom:543.731333pt;}
.y44{bottom:545.520000pt;}
.y175{bottom:546.303867pt;}
.yb7{bottom:547.162533pt;}
.y10b{bottom:547.380800pt;}
.y131{bottom:547.820133pt;}
.y194{bottom:548.263867pt;}
.y90{bottom:548.269467pt;}
.y6a{bottom:550.395867pt;}
.y2e{bottom:551.054000pt;}
.y152{bottom:552.990933pt;}
.y1b5{bottom:554.885867pt;}
.ydc{bottom:555.020267pt;}
.y1f8{bottom:561.064667pt;}
.ya{bottom:563.482933pt;}
.y43{bottom:563.874000pt;}
.y174{bottom:564.596533pt;}
.y1d7{bottom:565.197467pt;}
.yb6{bottom:565.393867pt;}
.y10a{bottom:565.596800pt;}
.y130{bottom:565.991867pt;}
.y8f{bottom:566.424133pt;}
.y193{bottom:566.995867pt;}
.y69{bottom:568.397200pt;}
.y2d{bottom:569.055333pt;}
.y151{bottom:572.172933pt;}
.y1b4{bottom:573.071867pt;}
.ydb{bottom:574.048933pt;}
.y1f7{bottom:578.398000pt;}
.y42{bottom:582.228000pt;}
.y173{bottom:582.889200pt;}
.y1d6{bottom:583.523467pt;}
.yb5{bottom:583.625200pt;}
.y109{bottom:583.812800pt;}
.y12f{bottom:584.177200pt;}
.y8e{bottom:584.578800pt;}
.y68{bottom:586.398533pt;}
.y2c{bottom:587.056667pt;}
.y9{bottom:587.562933pt;}
.y150{bottom:591.379067pt;}
.y192{bottom:591.775867pt;}
.yda{bottom:593.077600pt;}
.y1f6{bottom:595.731333pt;}
.y1b3{bottom:597.291867pt;}
.y41{bottom:600.568400pt;}
.y172{bottom:601.181867pt;}
.y1d5{bottom:601.849467pt;}
.yb4{bottom:601.856533pt;}
.y108{bottom:602.028800pt;}
.y12e{bottom:602.362533pt;}
.y8d{bottom:602.718267pt;}
.y67{bottom:604.399867pt;}
.y2b{bottom:605.058000pt;}
.y191{bottom:610.507867pt;}
.y14f{bottom:610.561067pt;}
.yd9{bottom:612.106267pt;}
.y1f5{bottom:613.064667pt;}
.y1b2{bottom:615.477867pt;}
.y40{bottom:618.922400pt;}
.y171{bottom:619.474533pt;}
.yb3{bottom:620.087867pt;}
.y1d4{bottom:620.175467pt;}
.y107{bottom:620.244800pt;}
.y12d{bottom:620.547867pt;}
.y8c{bottom:620.872933pt;}
.y66{bottom:622.395867pt;}
.y2a{bottom:623.059333pt;}
.y190{bottom:629.239867pt;}
.y14e{bottom:629.743067pt;}
.y1f4{bottom:630.398000pt;}
.y8{bottom:630.548000pt;}
.yd8{bottom:631.134933pt;}
.y1b1{bottom:633.663867pt;}
.y3f{bottom:637.269600pt;}
.y170{bottom:637.767200pt;}
.yb2{bottom:638.319200pt;}
.y106{bottom:638.460800pt;}
.y1d3{bottom:638.501467pt;}
.y12c{bottom:638.733200pt;}
.y8b{bottom:639.027600pt;}
.y65{bottom:640.397200pt;}
.y29{bottom:641.060667pt;}
.y1f3{bottom:647.731333pt;}
.y14d{bottom:648.925067pt;}
.yd7{bottom:650.171867pt;}
.y18f{bottom:654.019867pt;}
.y3e{bottom:655.616800pt;}
.y16f{bottom:656.059867pt;}
.yb1{bottom:656.550533pt;}
.y105{bottom:656.676800pt;}
.y1d2{bottom:656.837333pt;}
.y12b{bottom:656.918533pt;}
.y8a{bottom:657.182267pt;}
.y1b0{bottom:657.883867pt;}
.y64{bottom:658.398533pt;}
.y7{bottom:658.628000pt;}
.y28{bottom:659.062000pt;}
.y1f2{bottom:665.064667pt;}
.y14c{bottom:668.107067pt;}
.yd6{bottom:669.200533pt;}
.y18e{bottom:672.751867pt;}
.y3d{bottom:673.923200pt;}
.y16e{bottom:674.352533pt;}
.yb0{bottom:674.781867pt;}
.y104{bottom:674.892800pt;}
.y12a{bottom:675.103867pt;}
.y89{bottom:675.336933pt;}
.y1af{bottom:676.069867pt;}
.y63{bottom:676.399867pt;}
.y27{bottom:677.063333pt;}
.y1d1{bottom:681.211333pt;}
.y1f1{bottom:682.398000pt;}
.y14b{bottom:687.289067pt;}
.yd5{bottom:688.229200pt;}
.y3c{bottom:692.277200pt;}
.y16d{bottom:692.645200pt;}
.yaf{bottom:693.013200pt;}
.y103{bottom:693.108800pt;}
.y129{bottom:693.289200pt;}
.y88{bottom:693.473200pt;}
.y62{bottom:694.399867pt;}
.y26{bottom:695.064667pt;}
.y18d{bottom:697.531867pt;}
.y1d0{bottom:699.546933pt;}
.y1f0{bottom:699.731333pt;}
.y1ae{bottom:700.289867pt;}
.y14a{bottom:706.487200pt;}
.yd4{bottom:707.257867pt;}
.y3b{bottom:710.631200pt;}
.y16c{bottom:710.937867pt;}
.yae{bottom:711.244533pt;}
.y102{bottom:711.324800pt;}
.y128{bottom:711.474533pt;}
.y87{bottom:711.627867pt;}
.y61{bottom:712.397200pt;}
.y6{bottom:713.177600pt;}
.y18c{bottom:716.263867pt;}
.y1ef{bottom:717.064667pt;}
.y1ad{bottom:718.475867pt;}
.y1cf{bottom:723.920933pt;}
.y149{bottom:725.669200pt;}
.yd3{bottom:726.286533pt;}
.y3a{bottom:728.985200pt;}
.y16b{bottom:729.230533pt;}
.yad{bottom:729.475867pt;}
.y101{bottom:729.540800pt;}
.y127{bottom:729.659867pt;}
.y86{bottom:729.782533pt;}
.y60{bottom:730.398533pt;}
.y1ee{bottom:734.398000pt;}
.y5{bottom:739.484267pt;}
.y18b{bottom:741.043867pt;}
.y1ce{bottom:742.261867pt;}
.y1ac{bottom:742.695867pt;}
.y148{bottom:744.851200pt;}
.yd2{bottom:745.315200pt;}
.y39{bottom:747.339200pt;}
.y16a{bottom:747.523200pt;}
.yac{bottom:747.707200pt;}
.y100{bottom:747.756800pt;}
.y126{bottom:747.845200pt;}
.y85{bottom:747.937200pt;}
.y5f{bottom:748.399867pt;}
.y25{bottom:749.064667pt;}
.y1ed{bottom:751.731333pt;}
.y18a{bottom:759.775867pt;}
.y1ab{bottom:760.881867pt;}
.y147{bottom:764.033200pt;}
.yd1{bottom:764.343867pt;}
.y38{bottom:765.693200pt;}
.y4{bottom:765.790933pt;}
.y169{bottom:765.815867pt;}
.yab{bottom:765.938533pt;}
.yff{bottom:765.972800pt;}
.y125{bottom:766.030533pt;}
.y84{bottom:766.091867pt;}
.y5e{bottom:766.399867pt;}
.y1cd{bottom:766.635867pt;}
.y24{bottom:767.731333pt;}
.y1ec{bottom:769.064667pt;}
.y146{bottom:783.219200pt;}
.yd0{bottom:783.372533pt;}
.y37{bottom:784.047200pt;}
.y168{bottom:784.108533pt;}
.yaa{bottom:784.169867pt;}
.yfe{bottom:784.185200pt;}
.y124{bottom:784.215867pt;}
.y83{bottom:784.246533pt;}
.y5d{bottom:784.399867pt;}
.y3{bottom:784.537600pt;}
.y189{bottom:784.555867pt;}
.y1cc{bottom:784.961867pt;}
.y1aa{bottom:785.101867pt;}
.y23{bottom:786.398000pt;}
.y36{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.h10{height:33.763396pt;}
.h13{height:35.544646pt;}
.hc{height:39.479167pt;}
.h11{height:44.414062pt;}
.h12{height:46.195312pt;}
.h4{height:49.348958pt;}
.h23{height:49.419892pt;}
.h9{height:51.328125pt;}
.h3{height:51.816406pt;}
.h20{height:53.834798pt;}
.h22{height:53.855065pt;}
.h21{height:53.856131pt;}
.h1d{height:53.894531pt;}
.h1f{height:53.896131pt;}
.h1e{height:54.002798pt;}
.hb{height:56.751302pt;}
.h19{height:56.765702pt;}
.hf{height:56.805702pt;}
.h17{height:56.861169pt;}
.hd{height:56.941702pt;}
.h18{height:58.330277pt;}
.ha{height:59.027344pt;}
.h1b{height:59.031610pt;}
.h14{height:59.032677pt;}
.h15{height:59.043344pt;}
.h16{height:59.048677pt;}
.he{height:59.054544pt;}
.h1a{height:59.256144pt;}
.h2{height:61.686198pt;}
.h1c{height:66.621094pt;}
.h7{height:69.088542pt;}
.h8{height:71.859375pt;}
.h5{height:88.828125pt;}
.h6{height:92.390625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.637867pt;}
.x1{left:73.079333pt;}
.x6{left:74.133467pt;}
.x4{left:75.627200pt;}
.x9{left:85.179733pt;}
.x8{left:92.468933pt;}
.x5{left:93.359333pt;}
.x3{left:94.547200pt;}
.xb{left:98.059733pt;}
.xa{left:102.000400pt;}
.x2{left:207.480400pt;}
}




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