
    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_1a5f4bc768317c965abffb73.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7361bbb4f351b6d98ec183c7.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_b2ca85dbdea5195c50f5c914.woff')format("woff");}.ff3{font-family:ff3;line-height:1.237305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_52cfc76224affa2e19425d13.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_24daff6b16f972eee08ad689.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_72765a8c2cdc321dffb0601b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_9cfe988097de202aaaae3a7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_85bc36c2d78b92de7c898186.woff')format("woff");}.ff8{font-family:ff8;line-height:1.120117;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:ff9;src:url('chunks/assets/font_fd07565a2f40ce7158e4b61f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2cba5926a360747190ef4a97.woff')format("woff");}.ffa{font-family:ffa;line-height:1.082520;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.942800px;}
.ls10{letter-spacing:-7.371000px;}
.ls21{letter-spacing:-4.347000px;}
.ls4{letter-spacing:-4.221000px;}
.ls11{letter-spacing:-3.243000px;}
.ls27{letter-spacing:-2.760000px;}
.ls20{letter-spacing:-2.277000px;}
.ls13{letter-spacing:-1.932000px;}
.ls7{letter-spacing:-1.380000px;}
.ls8{letter-spacing:-1.188000px;}
.ls22{letter-spacing:-1.173000px;}
.ls19{letter-spacing:-1.104000px;}
.ls18{letter-spacing:-0.759000px;}
.ls23{letter-spacing:-0.621000px;}
.ls14{letter-spacing:-0.483000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000300px;}
.ls1e{letter-spacing:0.158700px;}
.ls1f{letter-spacing:0.220800px;}
.ls1a{letter-spacing:0.427800px;}
.ls1b{letter-spacing:0.483000px;}
.ls15{letter-spacing:0.552000px;}
.ls16{letter-spacing:0.634800px;}
.ls28{letter-spacing:1.110900px;}
.ls6{letter-spacing:1.260000px;}
.ls2a{letter-spacing:1.458000px;}
.ls25{letter-spacing:1.725000px;}
.ls26{letter-spacing:1.773300px;}
.ls17{letter-spacing:3.300000px;}
.ls1d{letter-spacing:3.381000px;}
.ls1c{letter-spacing:3.387900px;}
.lsb{letter-spacing:3.648000px;}
.lsf{letter-spacing:4.125000px;}
.ls0{letter-spacing:4.200000px;}
.ls12{letter-spacing:5.106000px;}
.ls3{letter-spacing:5.460000px;}
.ls9{letter-spacing:5.760000px;}
.lsa{letter-spacing:5.880000px;}
.ls24{letter-spacing:5.934000px;}
.ls2{letter-spacing:6.000000px;}
.ls2b{letter-spacing:6.300000px;}
.ls29{letter-spacing:7.200000px;}
.ls2d{letter-spacing:7.530000px;}
.lsd{letter-spacing:7.969500px;}
.ls1{letter-spacing:8.175000px;}
.ls2c{letter-spacing:8.820000px;}
.lsc{letter-spacing:10.391400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-29.250000px;}
.ws40{word-spacing:-28.605000px;}
.ws37{word-spacing:-28.275000px;}
.ws3a{word-spacing:-26.523000px;}
.ws13{word-spacing:-25.200000px;}
.ws22{word-spacing:-24.375000px;}
.ws38{word-spacing:-24.219000px;}
.ws41{word-spacing:-22.860000px;}
.wsc{word-spacing:-22.740000px;}
.ws2{word-spacing:-22.620000px;}
.ws1f{word-spacing:-19.941000px;}
.ws1c{word-spacing:-19.389000px;}
.ws2c{word-spacing:-18.906000px;}
.ws2f{word-spacing:-18.768000px;}
.ws23{word-spacing:-18.630000px;}
.ws3b{word-spacing:-17.703000px;}
.ws1{word-spacing:-17.262000px;}
.wsd{word-spacing:-17.043000px;}
.ws24{word-spacing:-15.939000px;}
.ws2b{word-spacing:-15.870000px;}
.ws3c{word-spacing:-15.561000px;}
.ws16{word-spacing:-15.390000px;}
.ws1b{word-spacing:-15.387000px;}
.ws28{word-spacing:-15.174000px;}
.ws2d{word-spacing:-15.111000px;}
.ws3{word-spacing:-14.820000px;}
.ws2a{word-spacing:-14.283000px;}
.ws1d{word-spacing:-13.338000px;}
.ws1a{word-spacing:-11.303787px;}
.ws3f{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.wsb{word-spacing:-4.200000px;}
.wse{word-spacing:-3.648000px;}
.ws30{word-spacing:-1.863000px;}
.ws7{word-spacing:-1.260000px;}
.ws14{word-spacing:-0.276000px;}
.ws31{word-spacing:-0.138000px;}
.ws6{word-spacing:0.000000px;}
.ws3d{word-spacing:0.414000px;}
.ws21{word-spacing:0.483000px;}
.ws33{word-spacing:0.621000px;}
.ws2e{word-spacing:0.759000px;}
.ws34{word-spacing:1.104000px;}
.ws39{word-spacing:1.173000px;}
.ws9{word-spacing:1.188000px;}
.ws8{word-spacing:1.380000px;}
.ws20{word-spacing:1.932000px;}
.ws29{word-spacing:2.277000px;}
.wsf{word-spacing:2.346000px;}
.ws32{word-spacing:2.553000px;}
.ws35{word-spacing:2.760000px;}
.ws36{word-spacing:2.967000px;}
.ws19{word-spacing:3.174000px;}
.ws5{word-spacing:4.221000px;}
.ws17{word-spacing:4.278000px;}
.ws1e{word-spacing:4.482000px;}
.ws26{word-spacing:4.485000px;}
.ws3e{word-spacing:4.899000px;}
.ws25{word-spacing:7.038000px;}
.ws12{word-spacing:8.349000px;}
.wsa{word-spacing:9.900000px;}
.ws27{word-spacing:10.005000px;}
.ws18{word-spacing:10.074000px;}
.ws11{word-spacing:10.281000px;}
.ws15{word-spacing:11.385000px;}
.ws10{word-spacing:11.454000px;}
._33{margin-left:-17.499000px;}
._a{margin-left:-8.424000px;}
._16{margin-left:-7.322400px;}
._b{margin-left:-6.142800px;}
._9{margin-left:-4.817700px;}
._c{margin-left:-3.484800px;}
._5{margin-left:-1.878000px;}
._1{width:1.056000px;}
._3{width:2.106000px;}
._8{width:3.228900px;}
._4{width:4.265100px;}
._f{width:5.272500px;}
._2{width:6.318000px;}
._6{width:7.620000px;}
._7{width:8.874900px;}
._d{width:10.770000px;}
._1b{width:11.814300px;}
._13{width:13.074000px;}
._12{width:14.268000px;}
._14{width:15.492000px;}
._21{width:16.846500px;}
._28{width:17.896200px;}
._2b{width:19.303800px;}
._24{width:21.183000px;}
._1f{width:22.970100px;}
._31{width:24.605100px;}
._2e{width:25.861500px;}
._2f{width:26.863800px;}
._2d{width:30.176100px;}
._32{width:33.611100px;}
._34{width:35.492400px;}
._1c{width:39.046800px;}
._1d{width:40.082400px;}
._30{width:41.519100px;}
._18{width:43.083600px;}
._19{width:44.456700px;}
._1a{width:45.471000px;}
._2c{width:53.048400px;}
._e{width:85.554000px;}
._17{width:93.708900px;}
._15{width:260.610000px;}
._0{width:446.775000px;}
._29{width:448.681200px;}
._2a{width:449.700000px;}
._23{width:453.597300px;}
._20{width:454.659900px;}
._27{width:455.696100px;}
._25{width:457.134900px;}
._10{width:578.400000px;}
._1e{width:956.005200px;}
._26{width:959.125200px;}
._11{width:963.175200px;}
._22{width:965.155200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.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;}
.fs6{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y165{bottom:106.079100px;}
.y6a{bottom:106.165350px;}
.y208{bottom:106.223100px;}
.y90{bottom:106.268850px;}
.y1ca{bottom:106.278750px;}
.y186{bottom:106.282500px;}
.y120{bottom:106.287300px;}
.yb6{bottom:106.290300px;}
.yfc{bottom:106.296300px;}
.yd8{bottom:106.390500px;}
.y42{bottom:106.392450px;}
.y1eb{bottom:106.544100px;}
.y1ac{bottom:109.294950px;}
.y11f{bottom:123.540300px;}
.yb5{bottom:123.543300px;}
.y207{bottom:126.263100px;}
.yfb{bottom:126.544800px;}
.y69{bottom:126.589350px;}
.y8f{bottom:127.227600px;}
.y41{bottom:127.247700px;}
.y1ea{bottom:127.349850px;}
.y164{bottom:127.382850px;}
.yd7{bottom:127.728750px;}
.y1c9{bottom:128.360250px;}
.y185{bottom:128.500500px;}
.y11e{bottom:140.793300px;}
.yb4{bottom:140.796300px;}
.yfa{bottom:145.045200px;}
.y206{bottom:146.303100px;}
.y68{bottom:147.013350px;}
.y40{bottom:148.102950px;}
.y8e{bottom:148.186350px;}
.y163{bottom:148.686600px;}
.yd6{bottom:149.067000px;}
.y1c8{bottom:150.441750px;}
.y184{bottom:150.718500px;}
.y1ab{bottom:153.395850px;}
.y1e9{bottom:156.660600px;}
.y11d{bottom:158.046300px;}
.yb3{bottom:161.044800px;}
.yf9{bottom:162.298200px;}
.y205{bottom:166.343100px;}
.y67{bottom:167.437350px;}
.y3f{bottom:168.958200px;}
.y8d{bottom:169.145100px;}
.y162{bottom:169.990350px;}
.yd5{bottom:170.405250px;}
.y142{bottom:170.510100px;}
.y1c7{bottom:172.523250px;}
.y183{bottom:172.936500px;}
.y1aa{bottom:173.647350px;}
.y1e8{bottom:177.466350px;}
.y11c{bottom:178.294800px;}
.yf8{bottom:182.546700px;}
.y204{bottom:186.383100px;}
.y66{bottom:187.861350px;}
.y3e{bottom:189.813450px;}
.y8c{bottom:190.103850px;}
.y161{bottom:191.294100px;}
.y141{bottom:191.296350px;}
.yd4{bottom:191.743500px;}
.y1a9{bottom:193.898850px;}
.y182{bottom:195.154500px;}
.y1c{bottom:196.643850px;}
.y11b{bottom:199.796700px;}
.y1c6{bottom:203.094000px;}
.yb2{bottom:205.344300px;}
.y203{bottom:206.423100px;}
.y1e7{bottom:206.777100px;}
.y65{bottom:208.285350px;}
.y3d{bottom:210.668700px;}
.y8b{bottom:211.062600px;}
.y140{bottom:212.082600px;}
.y160{bottom:212.597850px;}
.yd3{bottom:213.081750px;}
.y1a8{bottom:214.150350px;}
.y181{bottom:217.372500px;}
.y1b{bottom:217.643850px;}
.y1c5{bottom:225.175500px;}
.yb1{bottom:225.854550px;}
.yf7{bottom:226.436550px;}
.y202{bottom:226.463100px;}
.y1e6{bottom:227.582850px;}
.y64{bottom:228.709350px;}
.y3c{bottom:231.523950px;}
.y8a{bottom:232.021350px;}
.y13f{bottom:232.868850px;}
.y15f{bottom:233.901600px;}
.y1a7{bottom:234.401850px;}
.yd2{bottom:234.420000px;}
.y1a{bottom:238.649700px;}
.y180{bottom:239.590500px;}
.y11a{bottom:243.822450px;}
.yb0{bottom:246.364800px;}
.y201{bottom:246.503100px;}
.yf6{bottom:247.429800px;}
.y1e5{bottom:248.388600px;}
.y63{bottom:249.133350px;}
.y3b{bottom:252.379200px;}
.y89{bottom:252.980100px;}
.y13e{bottom:253.655100px;}
.y1a6{bottom:254.653350px;}
.y15e{bottom:255.205350px;}
.y1c4{bottom:255.746250px;}
.yd1{bottom:255.758250px;}
.y19{bottom:258.149700px;}
.y17f{bottom:261.808500px;}
.y119{bottom:264.451350px;}
.y200{bottom:266.543100px;}
.yaf{bottom:266.875050px;}
.yf5{bottom:268.423050px;}
.y62{bottom:269.557350px;}
.y3a{bottom:273.234450px;}
.y88{bottom:273.938850px;}
.y13d{bottom:274.441350px;}
.y1a5{bottom:274.904850px;}
.y15d{bottom:276.509100px;}
.yd0{bottom:277.096500px;}
.y18{bottom:277.649700px;}
.y1e4{bottom:277.699350px;}
.y1c3{bottom:277.827750px;}
.y17e{bottom:284.026500px;}
.y118{bottom:284.875350px;}
.y1ff{bottom:286.583100px;}
.yae{bottom:287.385300px;}
.yf4{bottom:289.416300px;}
.y61{bottom:289.981350px;}
.y39{bottom:294.089700px;}
.y87{bottom:294.897600px;}
.y1a4{bottom:295.156350px;}
.y13c{bottom:295.227600px;}
.y17{bottom:297.149700px;}
.y15c{bottom:297.812850px;}
.ycf{bottom:298.434750px;}
.y1e3{bottom:298.505100px;}
.y117{bottom:305.299350px;}
.y1fe{bottom:306.623100px;}
.yad{bottom:307.895550px;}
.y1c2{bottom:308.398500px;}
.y60{bottom:310.405350px;}
.yf3{bottom:310.409550px;}
.y38{bottom:314.944950px;}
.y1a3{bottom:315.407850px;}
.y86{bottom:315.856350px;}
.y13b{bottom:316.013850px;}
.y16{bottom:316.649700px;}
.y15b{bottom:319.116600px;}
.y1e2{bottom:319.310850px;}
.yce{bottom:319.773000px;}
.y116{bottom:325.723350px;}
.y1fd{bottom:326.663100px;}
.y17d{bottom:327.502200px;}
.yac{bottom:328.405800px;}
.y1c1{bottom:330.480000px;}
.y5f{bottom:330.829350px;}
.yf2{bottom:331.402800px;}
.y1a2{bottom:335.659350px;}
.y37{bottom:335.800200px;}
.y15{bottom:336.149700px;}
.y13a{bottom:336.800100px;}
.y85{bottom:336.815100px;}
.y15a{bottom:340.420350px;}
.ycd{bottom:341.111250px;}
.y115{bottom:346.147350px;}
.y1fc{bottom:346.703100px;}
.y1e1{bottom:348.621600px;}
.yab{bottom:348.916050px;}
.y5e{bottom:351.253350px;}
.yf1{bottom:352.396050px;}
.y14{bottom:355.649700px;}
.y1a1{bottom:355.910850px;}
.y36{bottom:356.655450px;}
.y139{bottom:357.586350px;}
.y84{bottom:357.773850px;}
.y1c0{bottom:361.050750px;}
.y159{bottom:361.724100px;}
.ycc{bottom:362.449500px;}
.y114{bottom:366.571350px;}
.y1fb{bottom:366.743100px;}
.yaa{bottom:369.426300px;}
.y1e0{bottom:369.427350px;}
.y5d{bottom:371.677350px;}
.yf0{bottom:373.389300px;}
.y13{bottom:375.149700px;}
.y1a0{bottom:376.162350px;}
.y35{bottom:377.510700px;}
.y138{bottom:378.372600px;}
.y83{bottom:378.732600px;}
.y158{bottom:383.027850px;}
.y1bf{bottom:383.132250px;}
.ycb{bottom:383.787750px;}
.y113{bottom:386.995350px;}
.ya9{bottom:389.936550px;}
.y1df{bottom:390.233100px;}
.y17c{bottom:391.687350px;}
.y5c{bottom:392.101350px;}
.yef{bottom:394.382550px;}
.y12{bottom:394.649700px;}
.y19f{bottom:396.413850px;}
.y34{bottom:398.365950px;}
.y137{bottom:399.158850px;}
.y1fa{bottom:399.533100px;}
.y82{bottom:399.691350px;}
.y157{bottom:404.331600px;}
.yca{bottom:405.126000px;}
.y1be{bottom:405.198000px;}
.y112{bottom:407.419350px;}
.ya8{bottom:410.446800px;}
.y5b{bottom:412.525350px;}
.y17b{bottom:413.905350px;}
.y11{bottom:414.149700px;}
.yee{bottom:415.375800px;}
.y19e{bottom:416.665350px;}
.y33{bottom:419.221200px;}
.y1de{bottom:419.543850px;}
.y136{bottom:419.945100px;}
.y81{bottom:420.650100px;}
.yc9{bottom:426.464250px;}
.y111{bottom:427.843350px;}
.y156{bottom:429.878850px;}
.ya7{bottom:430.957050px;}
.y5a{bottom:432.949350px;}
.y10{bottom:433.649700px;}
.y1bd{bottom:435.768750px;}
.y17a{bottom:436.123350px;}
.yed{bottom:436.369050px;}
.y19d{bottom:436.916850px;}
.y32{bottom:440.076450px;}
.y1dd{bottom:440.349600px;}
.y135{bottom:440.731350px;}
.y80{bottom:441.608850px;}
.yc8{bottom:447.802500px;}
.y110{bottom:448.267350px;}
.ya6{bottom:451.467300px;}
.y59{bottom:453.373350px;}
.y19c{bottom:457.168350px;}
.yec{bottom:457.362300px;}
.y1f9{bottom:457.841250px;}
.y1bc{bottom:457.850250px;}
.y179{bottom:458.341350px;}
.y31{bottom:460.931700px;}
.y1dc{bottom:461.155350px;}
.y134{bottom:461.517600px;}
.y7f{bottom:462.567600px;}
.yf{bottom:465.899700px;}
.y10f{bottom:468.691350px;}
.yc7{bottom:469.140750px;}
.ya5{bottom:471.977550px;}
.y155{bottom:472.434600px;}
.y58{bottom:473.797350px;}
.y19b{bottom:477.419850px;}
.yeb{bottom:478.355550px;}
.y178{bottom:480.559350px;}
.y30{bottom:481.786950px;}
.y133{bottom:482.303850px;}
.y7e{bottom:483.526350px;}
.y1f8{bottom:485.372250px;}
.y1bb{bottom:488.421000px;}
.y10e{bottom:489.115350px;}
.y1db{bottom:490.466100px;}
.yc6{bottom:490.479000px;}
.ya4{bottom:492.487800px;}
.y154{bottom:493.738350px;}
.y57{bottom:494.221350px;}
.y19a{bottom:497.671350px;}
.yea{bottom:499.348800px;}
.y177{bottom:502.777350px;}
.y132{bottom:503.090100px;}
.y7d{bottom:504.485100px;}
.y10d{bottom:509.539350px;}
.y1ba{bottom:510.502500px;}
.y1da{bottom:511.271850px;}
.yc5{bottom:511.817250px;}
.y1f7{bottom:512.903250px;}
.ya3{bottom:512.998050px;}
.y56{bottom:514.645350px;}
.y153{bottom:515.042100px;}
.y199{bottom:517.922850px;}
.ye9{bottom:520.342050px;}
.ye{bottom:523.655400px;}
.y131{bottom:523.839600px;}
.y2f{bottom:523.907250px;}
.y176{bottom:524.995350px;}
.y7c{bottom:525.443850px;}
.y10c{bottom:529.963350px;}
.y1b9{bottom:532.584000px;}
.yc4{bottom:533.155500px;}
.ya2{bottom:533.508300px;}
.y55{bottom:535.069350px;}
.y152{bottom:536.345850px;}
.y198{bottom:538.174350px;}
.y1d9{bottom:540.582600px;}
.ye8{bottom:541.335300px;}
.y130{bottom:544.625850px;}
.y7b{bottom:546.402600px;}
.y175{bottom:547.213350px;}
.y10b{bottom:550.387350px;}
.yd{bottom:550.661400px;}
.ya1{bottom:554.018550px;}
.yc3{bottom:554.493750px;}
.y54{bottom:555.493350px;}
.y197{bottom:558.425850px;}
.y151{bottom:561.893100px;}
.ye7{bottom:562.328550px;}
.y1b8{bottom:563.154750px;}
.y12f{bottom:565.412100px;}
.y7a{bottom:567.361350px;}
.y174{bottom:569.431350px;}
.y1d8{bottom:569.893350px;}
.y10a{bottom:570.811350px;}
.ya0{bottom:574.528800px;}
.yc2{bottom:575.832000px;}
.y53{bottom:575.917350px;}
.yc{bottom:577.667400px;}
.y196{bottom:578.677350px;}
.ye6{bottom:583.321800px;}
.y12e{bottom:586.198350px;}
.y2e{bottom:586.780800px;}
.y79{bottom:588.320100px;}
.y1d7{bottom:590.699100px;}
.y109{bottom:591.235350px;}
.y173{bottom:591.649350px;}
.y9f{bottom:595.039050px;}
.y52{bottom:596.341350px;}
.yc1{bottom:597.170250px;}
.y195{bottom:598.928850px;}
.ye5{bottom:604.315050px;}
.y150{bottom:604.448850px;}
.y2d{bottom:608.395800px;}
.y78{bottom:609.278850px;}
.y12d{bottom:611.228100px;}
.y108{bottom:611.659350px;}
.y172{bottom:613.867350px;}
.y9e{bottom:615.549300px;}
.y51{bottom:616.765350px;}
.yc0{bottom:618.508500px;}
.y194{bottom:619.180350px;}
.y1d6{bottom:620.009850px;}
.ye4{bottom:625.308300px;}
.y14f{bottom:625.752600px;}
.yb{bottom:625.900350px;}
.y2c{bottom:629.952750px;}
.y77{bottom:630.237600px;}
.y107{bottom:632.083350px;}
.y214{bottom:632.442750px;}
.y9d{bottom:636.059550px;}
.y171{bottom:636.085350px;}
.y50{bottom:637.189350px;}
.y193{bottom:639.431850px;}
.ybf{bottom:639.846750px;}
.y1d5{bottom:640.815600px;}
.ye3{bottom:646.301550px;}
.y14e{bottom:647.056350px;}
.y1f6{bottom:649.493850px;}
.y2b{bottom:650.067750px;}
.y76{bottom:651.196350px;}
.y106{bottom:652.507350px;}
.y213{bottom:652.692750px;}
.y12c{bottom:653.266350px;}
.y9c{bottom:656.569800px;}
.ya{bottom:657.409350px;}
.y4f{bottom:657.613350px;}
.y170{bottom:658.303350px;}
.y192{bottom:659.683350px;}
.y1b7{bottom:659.821350px;}
.ye2{bottom:667.294800px;}
.y14d{bottom:668.360100px;}
.y1d4{bottom:670.126350px;}
.y2a{bottom:670.182750px;}
.y1f5{bottom:670.283850px;}
.y75{bottom:672.155100px;}
.y105{bottom:672.931350px;}
.y212{bottom:672.942750px;}
.y12b{bottom:674.052600px;}
.y9b{bottom:677.080050px;}
.y4e{bottom:678.037350px;}
.y191{bottom:679.934850px;}
.y16f{bottom:680.521350px;}
.y1b6{bottom:681.901350px;}
.ybe{bottom:682.452750px;}
.ye1{bottom:688.288050px;}
.y9{bottom:688.918350px;}
.y14c{bottom:689.663850px;}
.y29{bottom:690.297750px;}
.y1d3{bottom:690.932100px;}
.y1f4{bottom:691.073850px;}
.y74{bottom:693.113850px;}
.y211{bottom:693.192750px;}
.y104{bottom:693.355350px;}
.y12a{bottom:694.838850px;}
.y9a{bottom:697.590300px;}
.y4d{bottom:698.461350px;}
.y190{bottom:700.186350px;}
.y16e{bottom:702.739350px;}
.y1b5{bottom:703.981350px;}
.ybd{bottom:707.542500px;}
.ye0{bottom:709.281300px;}
.y28{bottom:710.412750px;}
.y14b{bottom:710.967600px;}
.y1d2{bottom:711.737850px;}
.y1f3{bottom:711.863850px;}
.y103{bottom:713.779350px;}
.y73{bottom:714.072600px;}
.y129{bottom:715.625100px;}
.y99{bottom:718.100550px;}
.y4c{bottom:718.885350px;}
.y8{bottom:720.427350px;}
.y18f{bottom:720.437850px;}
.y16d{bottom:724.957350px;}
.y1b4{bottom:726.061350px;}
.y210{bottom:726.192750px;}
.ydf{bottom:730.274550px;}
.y27{bottom:730.527750px;}
.y14a{bottom:732.271350px;}
.y1d1{bottom:732.543600px;}
.ybc{bottom:732.632250px;}
.y102{bottom:734.203350px;}
.y72{bottom:735.031350px;}
.y128{bottom:736.411350px;}
.y98{bottom:738.610800px;}
.y4b{bottom:739.309350px;}
.y18e{bottom:740.689350px;}
.y1f2{bottom:741.158850px;}
.y16c{bottom:747.175350px;}
.y1b3{bottom:748.141350px;}
.y26{bottom:750.642750px;}
.yde{bottom:751.267800px;}
.y149{bottom:753.575100px;}
.y101{bottom:754.627350px;}
.y71{bottom:755.990100px;}
.y127{bottom:757.197600px;}
.y97{bottom:759.121050px;}
.y4a{bottom:759.733350px;}
.y18d{bottom:760.940850px;}
.y1d0{bottom:761.854350px;}
.y1f1{bottom:761.948850px;}
.y20f{bottom:767.697750px;}
.y16b{bottom:769.393350px;}
.y1b2{bottom:770.221350px;}
.y25{bottom:770.757750px;}
.y148{bottom:774.878850px;}
.y100{bottom:775.051350px;}
.ydd{bottom:776.504550px;}
.y70{bottom:776.948850px;}
.y126{bottom:777.983850px;}
.y96{bottom:779.631300px;}
.y49{bottom:780.157350px;}
.y18c{bottom:781.192350px;}
.y7{bottom:781.688850px;}
.y1cf{bottom:782.660100px;}
.y1f0{bottom:782.738850px;}
.y20e{bottom:787.197750px;}
.y24{bottom:790.872750px;}
.y16a{bottom:791.611350px;}
.y1b1{bottom:792.301350px;}
.yff{bottom:795.475350px;}
.ybb{bottom:796.010100px;}
.y147{bottom:796.182600px;}
.y6f{bottom:797.907600px;}
.y125{bottom:798.770100px;}
.y95{bottom:800.141550px;}
.y48{bottom:800.581350px;}
.y18b{bottom:801.443850px;}
.y1ef{bottom:803.528850px;}
.y20d{bottom:806.697750px;}
.y23{bottom:810.987750px;}
.y6{bottom:811.193850px;}
.y1ce{bottom:811.970850px;}
.y169{bottom:813.829350px;}
.y1b0{bottom:814.381350px;}
.yfe{bottom:815.899350px;}
.yba{bottom:817.348350px;}
.y146{bottom:817.486350px;}
.ydc{bottom:818.744400px;}
.y6e{bottom:818.866350px;}
.y124{bottom:819.556350px;}
.y94{bottom:820.651800px;}
.y47{bottom:821.005350px;}
.y18a{bottom:821.695350px;}
.y20c{bottom:826.197750px;}
.y22{bottom:831.102750px;}
.y5{bottom:832.193850px;}
.y1cd{bottom:832.776600px;}
.y1ee{bottom:832.823850px;}
.y168{bottom:836.047350px;}
.y1af{bottom:836.461350px;}
.yb9{bottom:838.686600px;}
.y145{bottom:838.790100px;}
.ydb{bottom:839.721600px;}
.y6d{bottom:839.825100px;}
.y123{bottom:840.342600px;}
.yfd{bottom:840.584100px;}
.y93{bottom:841.162050px;}
.y46{bottom:841.429350px;}
.y189{bottom:841.946850px;}
.y20b{bottom:845.697750px;}
.y21{bottom:851.217750px;}
.y1ed{bottom:853.613850px;}
.y167{bottom:858.265350px;}
.y1ae{bottom:858.541350px;}
.yb8{bottom:860.024850px;}
.y144{bottom:860.093850px;}
.yda{bottom:860.714850px;}
.y6c{bottom:860.783850px;}
.y122{bottom:861.128850px;}
.y92{bottom:861.672300px;}
.y4{bottom:861.698850px;}
.y45{bottom:861.853350px;}
.y1cc{bottom:862.087350px;}
.y188{bottom:862.198350px;}
.y20a{bottom:865.197750px;}
.y20{bottom:871.332750px;}
.y166{bottom:880.483350px;}
.y1ad{bottom:880.621350px;}
.yb7{bottom:881.363100px;}
.y143{bottom:881.397600px;}
.yd9{bottom:881.708100px;}
.y6b{bottom:881.742600px;}
.y121{bottom:881.915100px;}
.y91{bottom:882.191100px;}
.y44{bottom:882.277350px;}
.y187{bottom:882.449850px;}
.y3{bottom:882.698850px;}
.y1cb{bottom:882.893100px;}
.y1ec{bottom:882.908850px;}
.y209{bottom:884.697750px;}
.y43{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:904.197750px;}
.y1e{bottom:948.189000px;}
.y1d{bottom:966.189000px;}
.he{height:33.870539px;}
.hc{height:40.757812px;}
.h14{height:40.936945px;}
.h8{height:41.396484px;}
.hf{height:45.852539px;}
.h13{height:46.359375px;}
.h4{height:50.947266px;}
.h10{height:52.918945px;}
.h3{height:53.494629px;}
.ha{height:58.589355px;}
.h11{height:58.653555px;}
.h7{height:58.798828px;}
.hb{height:59.600098px;}
.h12{height:59.937012px;}
.h16{height:61.738770px;}
.h2{height:63.684082px;}
.hd{height:67.618652px;}
.h15{height:67.765652px;}
.h9{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:82.490550px;}
.x1{left:83.686650px;}
.x5{left:84.900600px;}
.xa{left:86.122050px;}
.x7{left:95.842050px;}
.xb{left:104.001300px;}
.x6{left:105.030600px;}
.x4{left:106.365600px;}
.x8{left:115.196550px;}
.x3{left:232.730400px;}
.x2{left:233.828550px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.060267pt;}
.ls10{letter-spacing:-6.552000pt;}
.ls21{letter-spacing:-3.864000pt;}
.ls4{letter-spacing:-3.752000pt;}
.ls11{letter-spacing:-2.882667pt;}
.ls27{letter-spacing:-2.453333pt;}
.ls20{letter-spacing:-2.024000pt;}
.ls13{letter-spacing:-1.717333pt;}
.ls7{letter-spacing:-1.226667pt;}
.ls8{letter-spacing:-1.056000pt;}
.ls22{letter-spacing:-1.042667pt;}
.ls19{letter-spacing:-0.981333pt;}
.ls18{letter-spacing:-0.674667pt;}
.ls23{letter-spacing:-0.552000pt;}
.ls14{letter-spacing:-0.429333pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000267pt;}
.ls1e{letter-spacing:0.141067pt;}
.ls1f{letter-spacing:0.196267pt;}
.ls1a{letter-spacing:0.380267pt;}
.ls1b{letter-spacing:0.429333pt;}
.ls15{letter-spacing:0.490667pt;}
.ls16{letter-spacing:0.564267pt;}
.ls28{letter-spacing:0.987467pt;}
.ls6{letter-spacing:1.120000pt;}
.ls2a{letter-spacing:1.296000pt;}
.ls25{letter-spacing:1.533333pt;}
.ls26{letter-spacing:1.576267pt;}
.ls17{letter-spacing:2.933333pt;}
.ls1d{letter-spacing:3.005333pt;}
.ls1c{letter-spacing:3.011467pt;}
.lsb{letter-spacing:3.242667pt;}
.lsf{letter-spacing:3.666667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls12{letter-spacing:4.538667pt;}
.ls3{letter-spacing:4.853333pt;}
.ls9{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.226667pt;}
.ls24{letter-spacing:5.274667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls2b{letter-spacing:5.600000pt;}
.ls29{letter-spacing:6.400000pt;}
.ls2d{letter-spacing:6.693333pt;}
.lsd{letter-spacing:7.084000pt;}
.ls1{letter-spacing:7.266667pt;}
.ls2c{letter-spacing:7.840000pt;}
.lsc{letter-spacing:9.236800pt;}
.ws0{word-spacing:-26.000000pt;}
.ws40{word-spacing:-25.426667pt;}
.ws37{word-spacing:-25.133333pt;}
.ws3a{word-spacing:-23.576000pt;}
.ws13{word-spacing:-22.400000pt;}
.ws22{word-spacing:-21.666667pt;}
.ws38{word-spacing:-21.528000pt;}
.ws41{word-spacing:-20.320000pt;}
.wsc{word-spacing:-20.213333pt;}
.ws2{word-spacing:-20.106667pt;}
.ws1f{word-spacing:-17.725333pt;}
.ws1c{word-spacing:-17.234667pt;}
.ws2c{word-spacing:-16.805333pt;}
.ws2f{word-spacing:-16.682667pt;}
.ws23{word-spacing:-16.560000pt;}
.ws3b{word-spacing:-15.736000pt;}
.ws1{word-spacing:-15.344000pt;}
.wsd{word-spacing:-15.149333pt;}
.ws24{word-spacing:-14.168000pt;}
.ws2b{word-spacing:-14.106667pt;}
.ws3c{word-spacing:-13.832000pt;}
.ws16{word-spacing:-13.680000pt;}
.ws1b{word-spacing:-13.677333pt;}
.ws28{word-spacing:-13.488000pt;}
.ws2d{word-spacing:-13.432000pt;}
.ws3{word-spacing:-13.173333pt;}
.ws2a{word-spacing:-12.696000pt;}
.ws1d{word-spacing:-11.856000pt;}
.ws1a{word-spacing:-10.047811pt;}
.ws3f{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.wsb{word-spacing:-3.733333pt;}
.wse{word-spacing:-3.242667pt;}
.ws30{word-spacing:-1.656000pt;}
.ws7{word-spacing:-1.120000pt;}
.ws14{word-spacing:-0.245333pt;}
.ws31{word-spacing:-0.122667pt;}
.ws6{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.368000pt;}
.ws21{word-spacing:0.429333pt;}
.ws33{word-spacing:0.552000pt;}
.ws2e{word-spacing:0.674667pt;}
.ws34{word-spacing:0.981333pt;}
.ws39{word-spacing:1.042667pt;}
.ws9{word-spacing:1.056000pt;}
.ws8{word-spacing:1.226667pt;}
.ws20{word-spacing:1.717333pt;}
.ws29{word-spacing:2.024000pt;}
.wsf{word-spacing:2.085333pt;}
.ws32{word-spacing:2.269333pt;}
.ws35{word-spacing:2.453333pt;}
.ws36{word-spacing:2.637333pt;}
.ws19{word-spacing:2.821333pt;}
.ws5{word-spacing:3.752000pt;}
.ws17{word-spacing:3.802667pt;}
.ws1e{word-spacing:3.984000pt;}
.ws26{word-spacing:3.986667pt;}
.ws3e{word-spacing:4.354667pt;}
.ws25{word-spacing:6.256000pt;}
.ws12{word-spacing:7.421333pt;}
.wsa{word-spacing:8.800000pt;}
.ws27{word-spacing:8.893333pt;}
.ws18{word-spacing:8.954667pt;}
.ws11{word-spacing:9.138667pt;}
.ws15{word-spacing:10.120000pt;}
.ws10{word-spacing:10.181333pt;}
._33{margin-left:-15.554667pt;}
._a{margin-left:-7.488000pt;}
._16{margin-left:-6.508800pt;}
._b{margin-left:-5.460267pt;}
._9{margin-left:-4.282400pt;}
._c{margin-left:-3.097600pt;}
._5{margin-left:-1.669333pt;}
._1{width:0.938667pt;}
._3{width:1.872000pt;}
._8{width:2.870133pt;}
._4{width:3.791200pt;}
._f{width:4.686667pt;}
._2{width:5.616000pt;}
._6{width:6.773333pt;}
._7{width:7.888800pt;}
._d{width:9.573333pt;}
._1b{width:10.501600pt;}
._13{width:11.621333pt;}
._12{width:12.682667pt;}
._14{width:13.770667pt;}
._21{width:14.974667pt;}
._28{width:15.907733pt;}
._2b{width:17.158933pt;}
._24{width:18.829333pt;}
._1f{width:20.417867pt;}
._31{width:21.871200pt;}
._2e{width:22.988000pt;}
._2f{width:23.878933pt;}
._2d{width:26.823200pt;}
._32{width:29.876533pt;}
._34{width:31.548800pt;}
._1c{width:34.708267pt;}
._1d{width:35.628800pt;}
._30{width:36.905867pt;}
._18{width:38.296533pt;}
._19{width:39.517067pt;}
._1a{width:40.418667pt;}
._2c{width:47.154133pt;}
._e{width:76.048000pt;}
._17{width:83.296800pt;}
._15{width:231.653333pt;}
._0{width:397.133333pt;}
._29{width:398.827733pt;}
._2a{width:399.733333pt;}
._23{width:403.197600pt;}
._20{width:404.142133pt;}
._27{width:405.063200pt;}
._25{width:406.342133pt;}
._10{width:514.133333pt;}
._1e{width:849.782400pt;}
._26{width:852.555733pt;}
._11{width:856.155733pt;}
._22{width:857.915733pt;}
.fsa{font-size:27.984000pt;}
.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;}
.fs6{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y165{bottom:94.292533pt;}
.y6a{bottom:94.369200pt;}
.y208{bottom:94.420533pt;}
.y90{bottom:94.461200pt;}
.y1ca{bottom:94.470000pt;}
.y186{bottom:94.473333pt;}
.y120{bottom:94.477600pt;}
.yb6{bottom:94.480267pt;}
.yfc{bottom:94.485600pt;}
.yd8{bottom:94.569333pt;}
.y42{bottom:94.571067pt;}
.y1eb{bottom:94.705867pt;}
.y1ac{bottom:97.151067pt;}
.y11f{bottom:109.813600pt;}
.yb5{bottom:109.816267pt;}
.y207{bottom:112.233867pt;}
.yfb{bottom:112.484267pt;}
.y69{bottom:112.523867pt;}
.y8f{bottom:113.091200pt;}
.y41{bottom:113.109067pt;}
.y1ea{bottom:113.199867pt;}
.y164{bottom:113.229200pt;}
.yd7{bottom:113.536667pt;}
.y1c9{bottom:114.098000pt;}
.y185{bottom:114.222667pt;}
.y11e{bottom:125.149600pt;}
.yb4{bottom:125.152267pt;}
.yfa{bottom:128.929067pt;}
.y206{bottom:130.047200pt;}
.y68{bottom:130.678533pt;}
.y40{bottom:131.647067pt;}
.y8e{bottom:131.721200pt;}
.y163{bottom:132.165867pt;}
.yd6{bottom:132.504000pt;}
.y1c8{bottom:133.726000pt;}
.y184{bottom:133.972000pt;}
.y1ab{bottom:136.351867pt;}
.y1e9{bottom:139.253867pt;}
.y11d{bottom:140.485600pt;}
.yb3{bottom:143.150933pt;}
.yf9{bottom:144.265067pt;}
.y205{bottom:147.860533pt;}
.y67{bottom:148.833200pt;}
.y3f{bottom:150.185067pt;}
.y8d{bottom:150.351200pt;}
.y162{bottom:151.102533pt;}
.yd5{bottom:151.471333pt;}
.y142{bottom:151.564533pt;}
.y1c7{bottom:153.354000pt;}
.y183{bottom:153.721333pt;}
.y1aa{bottom:154.353200pt;}
.y1e8{bottom:157.747867pt;}
.y11c{bottom:158.484267pt;}
.yf8{bottom:162.263733pt;}
.y204{bottom:165.673867pt;}
.y66{bottom:166.987867pt;}
.y3e{bottom:168.723067pt;}
.y8c{bottom:168.981200pt;}
.y161{bottom:170.039200pt;}
.y141{bottom:170.041200pt;}
.yd4{bottom:170.438667pt;}
.y1a9{bottom:172.354533pt;}
.y182{bottom:173.470667pt;}
.y1c{bottom:174.794533pt;}
.y11b{bottom:177.597067pt;}
.y1c6{bottom:180.528000pt;}
.yb2{bottom:182.528267pt;}
.y203{bottom:183.487200pt;}
.y1e7{bottom:183.801867pt;}
.y65{bottom:185.142533pt;}
.y3d{bottom:187.261067pt;}
.y8b{bottom:187.611200pt;}
.y140{bottom:188.517867pt;}
.y160{bottom:188.975867pt;}
.yd3{bottom:189.406000pt;}
.y1a8{bottom:190.355867pt;}
.y181{bottom:193.220000pt;}
.y1b{bottom:193.461200pt;}
.y1c5{bottom:200.156000pt;}
.yb1{bottom:200.759600pt;}
.yf7{bottom:201.276933pt;}
.y202{bottom:201.300533pt;}
.y1e6{bottom:202.295867pt;}
.y64{bottom:203.297200pt;}
.y3c{bottom:205.799067pt;}
.y8a{bottom:206.241200pt;}
.y13f{bottom:206.994533pt;}
.y15f{bottom:207.912533pt;}
.y1a7{bottom:208.357200pt;}
.yd2{bottom:208.373333pt;}
.y1a{bottom:212.133067pt;}
.y180{bottom:212.969333pt;}
.y11a{bottom:216.731067pt;}
.yb0{bottom:218.990933pt;}
.y201{bottom:219.113867pt;}
.yf6{bottom:219.937600pt;}
.y1e5{bottom:220.789867pt;}
.y63{bottom:221.451867pt;}
.y3b{bottom:224.337067pt;}
.y89{bottom:224.871200pt;}
.y13e{bottom:225.471200pt;}
.y1a6{bottom:226.358533pt;}
.y15e{bottom:226.849200pt;}
.y1c4{bottom:227.330000pt;}
.yd1{bottom:227.340667pt;}
.y19{bottom:229.466400pt;}
.y17f{bottom:232.718667pt;}
.y119{bottom:235.067867pt;}
.y200{bottom:236.927200pt;}
.yaf{bottom:237.222267pt;}
.yf5{bottom:238.598267pt;}
.y62{bottom:239.606533pt;}
.y3a{bottom:242.875067pt;}
.y88{bottom:243.501200pt;}
.y13d{bottom:243.947867pt;}
.y1a5{bottom:244.359867pt;}
.y15d{bottom:245.785867pt;}
.yd0{bottom:246.308000pt;}
.y18{bottom:246.799733pt;}
.y1e4{bottom:246.843867pt;}
.y1c3{bottom:246.958000pt;}
.y17e{bottom:252.468000pt;}
.y118{bottom:253.222533pt;}
.y1ff{bottom:254.740533pt;}
.yae{bottom:255.453600pt;}
.yf4{bottom:257.258933pt;}
.y61{bottom:257.761200pt;}
.y39{bottom:261.413067pt;}
.y87{bottom:262.131200pt;}
.y1a4{bottom:262.361200pt;}
.y13c{bottom:262.424533pt;}
.y17{bottom:264.133067pt;}
.y15c{bottom:264.722533pt;}
.ycf{bottom:265.275333pt;}
.y1e3{bottom:265.337867pt;}
.y117{bottom:271.377200pt;}
.y1fe{bottom:272.553867pt;}
.yad{bottom:273.684933pt;}
.y1c2{bottom:274.132000pt;}
.y60{bottom:275.915867pt;}
.yf3{bottom:275.919600pt;}
.y38{bottom:279.951067pt;}
.y1a3{bottom:280.362533pt;}
.y86{bottom:280.761200pt;}
.y13b{bottom:280.901200pt;}
.y16{bottom:281.466400pt;}
.y15b{bottom:283.659200pt;}
.y1e2{bottom:283.831867pt;}
.yce{bottom:284.242667pt;}
.y116{bottom:289.531867pt;}
.y1fd{bottom:290.367200pt;}
.y17d{bottom:291.113067pt;}
.yac{bottom:291.916267pt;}
.y1c1{bottom:293.760000pt;}
.y5f{bottom:294.070533pt;}
.yf2{bottom:294.580267pt;}
.y1a2{bottom:298.363867pt;}
.y37{bottom:298.489067pt;}
.y15{bottom:298.799733pt;}
.y13a{bottom:299.377867pt;}
.y85{bottom:299.391200pt;}
.y15a{bottom:302.595867pt;}
.ycd{bottom:303.210000pt;}
.y115{bottom:307.686533pt;}
.y1fc{bottom:308.180533pt;}
.y1e1{bottom:309.885867pt;}
.yab{bottom:310.147600pt;}
.y5e{bottom:312.225200pt;}
.yf1{bottom:313.240933pt;}
.y14{bottom:316.133067pt;}
.y1a1{bottom:316.365200pt;}
.y36{bottom:317.027067pt;}
.y139{bottom:317.854533pt;}
.y84{bottom:318.021200pt;}
.y1c0{bottom:320.934000pt;}
.y159{bottom:321.532533pt;}
.ycc{bottom:322.177333pt;}
.y114{bottom:325.841200pt;}
.y1fb{bottom:325.993867pt;}
.yaa{bottom:328.378933pt;}
.y1e0{bottom:328.379867pt;}
.y5d{bottom:330.379867pt;}
.yf0{bottom:331.901600pt;}
.y13{bottom:333.466400pt;}
.y1a0{bottom:334.366533pt;}
.y35{bottom:335.565067pt;}
.y138{bottom:336.331200pt;}
.y83{bottom:336.651200pt;}
.y158{bottom:340.469200pt;}
.y1bf{bottom:340.562000pt;}
.ycb{bottom:341.144667pt;}
.y113{bottom:343.995867pt;}
.ya9{bottom:346.610267pt;}
.y1df{bottom:346.873867pt;}
.y17c{bottom:348.166533pt;}
.y5c{bottom:348.534533pt;}
.yef{bottom:350.562267pt;}
.y12{bottom:350.799733pt;}
.y19f{bottom:352.367867pt;}
.y34{bottom:354.103067pt;}
.y137{bottom:354.807867pt;}
.y1fa{bottom:355.140533pt;}
.y82{bottom:355.281200pt;}
.y157{bottom:359.405867pt;}
.yca{bottom:360.112000pt;}
.y1be{bottom:360.176000pt;}
.y112{bottom:362.150533pt;}
.ya8{bottom:364.841600pt;}
.y5b{bottom:366.689200pt;}
.y17b{bottom:367.915867pt;}
.y11{bottom:368.133067pt;}
.yee{bottom:369.222933pt;}
.y19e{bottom:370.369200pt;}
.y33{bottom:372.641067pt;}
.y1de{bottom:372.927867pt;}
.y136{bottom:373.284533pt;}
.y81{bottom:373.911200pt;}
.yc9{bottom:379.079333pt;}
.y111{bottom:380.305200pt;}
.y156{bottom:382.114533pt;}
.ya7{bottom:383.072933pt;}
.y5a{bottom:384.843867pt;}
.y10{bottom:385.466400pt;}
.y1bd{bottom:387.350000pt;}
.y17a{bottom:387.665200pt;}
.yed{bottom:387.883600pt;}
.y19d{bottom:388.370533pt;}
.y32{bottom:391.179067pt;}
.y1dd{bottom:391.421867pt;}
.y135{bottom:391.761200pt;}
.y80{bottom:392.541200pt;}
.yc8{bottom:398.046667pt;}
.y110{bottom:398.459867pt;}
.ya6{bottom:401.304267pt;}
.y59{bottom:402.998533pt;}
.y19c{bottom:406.371867pt;}
.yec{bottom:406.544267pt;}
.y1f9{bottom:406.970000pt;}
.y1bc{bottom:406.978000pt;}
.y179{bottom:407.414533pt;}
.y31{bottom:409.717067pt;}
.y1dc{bottom:409.915867pt;}
.y134{bottom:410.237867pt;}
.y7f{bottom:411.171200pt;}
.yf{bottom:414.133067pt;}
.y10f{bottom:416.614533pt;}
.yc7{bottom:417.014000pt;}
.ya5{bottom:419.535600pt;}
.y155{bottom:419.941867pt;}
.y58{bottom:421.153200pt;}
.y19b{bottom:424.373200pt;}
.yeb{bottom:425.204933pt;}
.y178{bottom:427.163867pt;}
.y30{bottom:428.255067pt;}
.y133{bottom:428.714533pt;}
.y7e{bottom:429.801200pt;}
.y1f8{bottom:431.442000pt;}
.y1bb{bottom:434.152000pt;}
.y10e{bottom:434.769200pt;}
.y1db{bottom:435.969867pt;}
.yc6{bottom:435.981333pt;}
.ya4{bottom:437.766933pt;}
.y154{bottom:438.878533pt;}
.y57{bottom:439.307867pt;}
.y19a{bottom:442.374533pt;}
.yea{bottom:443.865600pt;}
.y177{bottom:446.913200pt;}
.y132{bottom:447.191200pt;}
.y7d{bottom:448.431200pt;}
.y10d{bottom:452.923867pt;}
.y1ba{bottom:453.780000pt;}
.y1da{bottom:454.463867pt;}
.yc5{bottom:454.948667pt;}
.y1f7{bottom:455.914000pt;}
.ya3{bottom:455.998267pt;}
.y56{bottom:457.462533pt;}
.y153{bottom:457.815200pt;}
.y199{bottom:460.375867pt;}
.ye9{bottom:462.526267pt;}
.ye{bottom:465.471467pt;}
.y131{bottom:465.635200pt;}
.y2f{bottom:465.695333pt;}
.y176{bottom:466.662533pt;}
.y7c{bottom:467.061200pt;}
.y10c{bottom:471.078533pt;}
.y1b9{bottom:473.408000pt;}
.yc4{bottom:473.916000pt;}
.ya2{bottom:474.229600pt;}
.y55{bottom:475.617200pt;}
.y152{bottom:476.751867pt;}
.y198{bottom:478.377200pt;}
.y1d9{bottom:480.517867pt;}
.ye8{bottom:481.186933pt;}
.y130{bottom:484.111867pt;}
.y7b{bottom:485.691200pt;}
.y175{bottom:486.411867pt;}
.y10b{bottom:489.233200pt;}
.yd{bottom:489.476800pt;}
.ya1{bottom:492.460933pt;}
.yc3{bottom:492.883333pt;}
.y54{bottom:493.771867pt;}
.y197{bottom:496.378533pt;}
.y151{bottom:499.460533pt;}
.ye7{bottom:499.847600pt;}
.y1b8{bottom:500.582000pt;}
.y12f{bottom:502.588533pt;}
.y7a{bottom:504.321200pt;}
.y174{bottom:506.161200pt;}
.y1d8{bottom:506.571867pt;}
.y10a{bottom:507.387867pt;}
.ya0{bottom:510.692267pt;}
.yc2{bottom:511.850667pt;}
.y53{bottom:511.926533pt;}
.yc{bottom:513.482133pt;}
.y196{bottom:514.379867pt;}
.ye6{bottom:518.508267pt;}
.y12e{bottom:521.065200pt;}
.y2e{bottom:521.582933pt;}
.y79{bottom:522.951200pt;}
.y1d7{bottom:525.065867pt;}
.y109{bottom:525.542533pt;}
.y173{bottom:525.910533pt;}
.y9f{bottom:528.923600pt;}
.y52{bottom:530.081200pt;}
.yc1{bottom:530.818000pt;}
.y195{bottom:532.381200pt;}
.ye5{bottom:537.168933pt;}
.y150{bottom:537.287867pt;}
.y2d{bottom:540.796267pt;}
.y78{bottom:541.581200pt;}
.y12d{bottom:543.313867pt;}
.y108{bottom:543.697200pt;}
.y172{bottom:545.659867pt;}
.y9e{bottom:547.154933pt;}
.y51{bottom:548.235867pt;}
.yc0{bottom:549.785333pt;}
.y194{bottom:550.382533pt;}
.y1d6{bottom:551.119867pt;}
.ye4{bottom:555.829600pt;}
.y14f{bottom:556.224533pt;}
.yb{bottom:556.355867pt;}
.y2c{bottom:559.958000pt;}
.y77{bottom:560.211200pt;}
.y107{bottom:561.851867pt;}
.y214{bottom:562.171333pt;}
.y9d{bottom:565.386267pt;}
.y171{bottom:565.409200pt;}
.y50{bottom:566.390533pt;}
.y193{bottom:568.383867pt;}
.ybf{bottom:568.752667pt;}
.y1d5{bottom:569.613867pt;}
.ye3{bottom:574.490267pt;}
.y14e{bottom:575.161200pt;}
.y1f6{bottom:577.327867pt;}
.y2b{bottom:577.838000pt;}
.y76{bottom:578.841200pt;}
.y106{bottom:580.006533pt;}
.y213{bottom:580.171333pt;}
.y12c{bottom:580.681200pt;}
.y9c{bottom:583.617600pt;}
.ya{bottom:584.363867pt;}
.y4f{bottom:584.545200pt;}
.y170{bottom:585.158533pt;}
.y192{bottom:586.385200pt;}
.y1b7{bottom:586.507867pt;}
.ye2{bottom:593.150933pt;}
.y14d{bottom:594.097867pt;}
.y1d4{bottom:595.667867pt;}
.y2a{bottom:595.718000pt;}
.y1f5{bottom:595.807867pt;}
.y75{bottom:597.471200pt;}
.y105{bottom:598.161200pt;}
.y212{bottom:598.171333pt;}
.y12b{bottom:599.157867pt;}
.y9b{bottom:601.848933pt;}
.y4e{bottom:602.699867pt;}
.y191{bottom:604.386533pt;}
.y16f{bottom:604.907867pt;}
.y1b6{bottom:606.134533pt;}
.ybe{bottom:606.624667pt;}
.ye1{bottom:611.811600pt;}
.y9{bottom:612.371867pt;}
.y14c{bottom:613.034533pt;}
.y29{bottom:613.598000pt;}
.y1d3{bottom:614.161867pt;}
.y1f4{bottom:614.287867pt;}
.y74{bottom:616.101200pt;}
.y211{bottom:616.171333pt;}
.y104{bottom:616.315867pt;}
.y12a{bottom:617.634533pt;}
.y9a{bottom:620.080267pt;}
.y4d{bottom:620.854533pt;}
.y190{bottom:622.387867pt;}
.y16e{bottom:624.657200pt;}
.y1b5{bottom:625.761200pt;}
.ybd{bottom:628.926667pt;}
.ye0{bottom:630.472267pt;}
.y28{bottom:631.478000pt;}
.y14b{bottom:631.971200pt;}
.y1d2{bottom:632.655867pt;}
.y1f3{bottom:632.767867pt;}
.y103{bottom:634.470533pt;}
.y73{bottom:634.731200pt;}
.y129{bottom:636.111200pt;}
.y99{bottom:638.311600pt;}
.y4c{bottom:639.009200pt;}
.y8{bottom:640.379867pt;}
.y18f{bottom:640.389200pt;}
.y16d{bottom:644.406533pt;}
.y1b4{bottom:645.387867pt;}
.y210{bottom:645.504667pt;}
.ydf{bottom:649.132933pt;}
.y27{bottom:649.358000pt;}
.y14a{bottom:650.907867pt;}
.y1d1{bottom:651.149867pt;}
.ybc{bottom:651.228667pt;}
.y102{bottom:652.625200pt;}
.y72{bottom:653.361200pt;}
.y128{bottom:654.587867pt;}
.y98{bottom:656.542933pt;}
.y4b{bottom:657.163867pt;}
.y18e{bottom:658.390533pt;}
.y1f2{bottom:658.807867pt;}
.y16c{bottom:664.155867pt;}
.y1b3{bottom:665.014533pt;}
.y26{bottom:667.238000pt;}
.yde{bottom:667.793600pt;}
.y149{bottom:669.844533pt;}
.y101{bottom:670.779867pt;}
.y71{bottom:671.991200pt;}
.y127{bottom:673.064533pt;}
.y97{bottom:674.774267pt;}
.y4a{bottom:675.318533pt;}
.y18d{bottom:676.391867pt;}
.y1d0{bottom:677.203867pt;}
.y1f1{bottom:677.287867pt;}
.y20f{bottom:682.398000pt;}
.y16b{bottom:683.905200pt;}
.y1b2{bottom:684.641200pt;}
.y25{bottom:685.118000pt;}
.y148{bottom:688.781200pt;}
.y100{bottom:688.934533pt;}
.ydd{bottom:690.226267pt;}
.y70{bottom:690.621200pt;}
.y126{bottom:691.541200pt;}
.y96{bottom:693.005600pt;}
.y49{bottom:693.473200pt;}
.y18c{bottom:694.393200pt;}
.y7{bottom:694.834533pt;}
.y1cf{bottom:695.697867pt;}
.y1f0{bottom:695.767867pt;}
.y20e{bottom:699.731333pt;}
.y24{bottom:702.998000pt;}
.y16a{bottom:703.654533pt;}
.y1b1{bottom:704.267867pt;}
.yff{bottom:707.089200pt;}
.ybb{bottom:707.564533pt;}
.y147{bottom:707.717867pt;}
.y6f{bottom:709.251200pt;}
.y125{bottom:710.017867pt;}
.y95{bottom:711.236933pt;}
.y48{bottom:711.627867pt;}
.y18b{bottom:712.394533pt;}
.y1ef{bottom:714.247867pt;}
.y20d{bottom:717.064667pt;}
.y23{bottom:720.878000pt;}
.y6{bottom:721.061200pt;}
.y1ce{bottom:721.751867pt;}
.y169{bottom:723.403867pt;}
.y1b0{bottom:723.894533pt;}
.yfe{bottom:725.243867pt;}
.yba{bottom:726.531867pt;}
.y146{bottom:726.654533pt;}
.ydc{bottom:727.772800pt;}
.y6e{bottom:727.881200pt;}
.y124{bottom:728.494533pt;}
.y94{bottom:729.468267pt;}
.y47{bottom:729.782533pt;}
.y18a{bottom:730.395867pt;}
.y20c{bottom:734.398000pt;}
.y22{bottom:738.758000pt;}
.y5{bottom:739.727867pt;}
.y1cd{bottom:740.245867pt;}
.y1ee{bottom:740.287867pt;}
.y168{bottom:743.153200pt;}
.y1af{bottom:743.521200pt;}
.yb9{bottom:745.499200pt;}
.y145{bottom:745.591200pt;}
.ydb{bottom:746.419200pt;}
.y6d{bottom:746.511200pt;}
.y123{bottom:746.971200pt;}
.yfd{bottom:747.185867pt;}
.y93{bottom:747.699600pt;}
.y46{bottom:747.937200pt;}
.y189{bottom:748.397200pt;}
.y20b{bottom:751.731333pt;}
.y21{bottom:756.638000pt;}
.y1ed{bottom:758.767867pt;}
.y167{bottom:762.902533pt;}
.y1ae{bottom:763.147867pt;}
.yb8{bottom:764.466533pt;}
.y144{bottom:764.527867pt;}
.yda{bottom:765.079867pt;}
.y6c{bottom:765.141200pt;}
.y122{bottom:765.447867pt;}
.y92{bottom:765.930933pt;}
.y4{bottom:765.954533pt;}
.y45{bottom:766.091867pt;}
.y1cc{bottom:766.299867pt;}
.y188{bottom:766.398533pt;}
.y20a{bottom:769.064667pt;}
.y20{bottom:774.518000pt;}
.y166{bottom:782.651867pt;}
.y1ad{bottom:782.774533pt;}
.yb7{bottom:783.433867pt;}
.y143{bottom:783.464533pt;}
.yd9{bottom:783.740533pt;}
.y6b{bottom:783.771200pt;}
.y121{bottom:783.924533pt;}
.y91{bottom:784.169867pt;}
.y44{bottom:784.246533pt;}
.y187{bottom:784.399867pt;}
.y3{bottom:784.621200pt;}
.y1cb{bottom:784.793867pt;}
.y1ec{bottom:784.807867pt;}
.y209{bottom:786.398000pt;}
.y43{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:803.731333pt;}
.y1e{bottom:842.834667pt;}
.y1d{bottom:858.834667pt;}
.he{height:30.107146pt;}
.hc{height:36.229167pt;}
.h14{height:36.388396pt;}
.h8{height:36.796875pt;}
.hf{height:40.757812pt;}
.h13{height:41.208333pt;}
.h4{height:45.286458pt;}
.h10{height:47.039062pt;}
.h3{height:47.550781pt;}
.ha{height:52.079427pt;}
.h11{height:52.136494pt;}
.h7{height:52.265625pt;}
.hb{height:52.977865pt;}
.h12{height:53.277344pt;}
.h16{height:54.878906pt;}
.h2{height:56.608073pt;}
.hd{height:60.105469pt;}
.h15{height:60.236135pt;}
.h9{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:73.324933pt;}
.x1{left:74.388133pt;}
.x5{left:75.467200pt;}
.xa{left:76.552933pt;}
.x7{left:85.192933pt;}
.xb{left:92.445600pt;}
.x6{left:93.360533pt;}
.x4{left:94.547200pt;}
.x8{left:102.396933pt;}
.x3{left:206.871467pt;}
.x2{left:207.847600pt;}
}




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