
    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_755aec27f35a47bc2d44570c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_71443fd78b1d3907a02193c9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197754;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_6c3f7d1d06b42de770e7ae2f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0f3f00b023d3d83d18595681.woff')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_aae222b952526d683ff66d9c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5dce21276c48744209342282.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_a4b50877f0a3484c66dfda75.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_d60b08c4e3fff82aaf33c7b7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.947266;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_6cd1f7d25ed415821aebdcf8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_cc226352551bd949ebbf77a0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.678711;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:ffb;src:url('chunks/assets/font_64a0becab914bf7d47497463.woff')format("woff");}.ffb{font-family:ffb;line-height:1.028000;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);}
.v1{vertical-align:-14.400000px;}
.v3{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls7{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000600px;}
.ls18{letter-spacing:0.005400px;}
.ls1c{letter-spacing:0.022200px;}
.ls1b{letter-spacing:0.022800px;}
.ls10{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.130200px;}
.ls6{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.306000px;}
.ls20{letter-spacing:0.306600px;}
.lsd{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.384000px;}
.ls4{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.503400px;}
.ls5{letter-spacing:0.504000px;}
.lse{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.936000px;}
.ls19{letter-spacing:1.008000px;}
.lsc{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.152000px;}
.ls11{letter-spacing:1.440000px;}
.ls1e{letter-spacing:1.584000px;}
.ls2b{letter-spacing:3.168000px;}
.ls13{letter-spacing:3.300000px;}
.ls2c{letter-spacing:3.408000px;}
.ls2a{letter-spacing:4.752000px;}
.ls28{letter-spacing:6.496200px;}
.ls2{letter-spacing:7.380000px;}
.ls0{letter-spacing:8.460000px;}
.ls27{letter-spacing:10.440000px;}
.ls1{letter-spacing:10.740000px;}
.ls1a{letter-spacing:11.448000px;}
.lsb{letter-spacing:11.592000px;}
.ls3{letter-spacing:11.952000px;}
.ls29{letter-spacing:12.168000px;}
.ls1f{letter-spacing:12.312000px;}
.ls23{letter-spacing:12.672000px;}
.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;}
}
.ws2d{word-spacing:-61.200000px;}
.ws29{word-spacing:-60.840000px;}
.ws31{word-spacing:-60.696000px;}
.ws4{word-spacing:-60.480000px;}
.wsd{word-spacing:-60.120000px;}
.ws25{word-spacing:-59.976000px;}
.ws26{word-spacing:-50.112000px;}
.ws2e{word-spacing:-49.968000px;}
.wse{word-spacing:-49.608000px;}
.ws1d{word-spacing:-49.464000px;}
.ws1c{word-spacing:-49.392000px;}
.ws1f{word-spacing:-49.320000px;}
.wsc{word-spacing:-49.248000px;}
.ws11{word-spacing:-49.176000px;}
.ws13{word-spacing:-49.104000px;}
.ws10{word-spacing:-49.032000px;}
.ws6{word-spacing:-48.960000px;}
.wsf{word-spacing:-48.888000px;}
.ws1a{word-spacing:-48.816000px;}
.ws14{word-spacing:-48.744000px;}
.ws7{word-spacing:-48.672000px;}
.ws12{word-spacing:-48.600000px;}
.ws3{word-spacing:-48.528000px;}
.ws2{word-spacing:-47.820000px;}
.ws1{word-spacing:-40.440000px;}
.ws22{word-spacing:-37.080000px;}
.ws27{word-spacing:-36.648000px;}
.ws5{word-spacing:-36.576000px;}
.ws8{word-spacing:-36.504000px;}
.ws2a{word-spacing:-36.432000px;}
.ws1e{word-spacing:-36.360000px;}
.ws21{word-spacing:-36.288000px;}
.ws2f{word-spacing:-36.000000px;}
.ws30{word-spacing:-35.928000px;}
.ws2c{word-spacing:-35.856000px;}
.ws24{word-spacing:-35.712000px;}
.ws20{word-spacing:-35.640000px;}
.ws2b{word-spacing:-35.064000px;}
.ws16{word-spacing:-32.832000px;}
.ws19{word-spacing:-32.736000px;}
.ws17{word-spacing:-32.352000px;}
.wsa{word-spacing:-25.320000px;}
.ws28{word-spacing:-20.376000px;}
.wsb{word-spacing:-20.232000px;}
.ws23{word-spacing:-17.784000px;}
.ws15{word-spacing:-16.860000px;}
.ws1b{word-spacing:-14.162400px;}
.ws18{word-spacing:-13.488000px;}
.ws32{word-spacing:-12.336000px;}
.ws33{word-spacing:-9.441600px;}
.ws9{word-spacing:0.000000px;}
.ws0{word-spacing:129.300000px;}
._13{margin-left:-948.900000px;}
._1c{margin-left:-30.456000px;}
._1a{margin-left:-27.060000px;}
._19{margin-left:-19.980000px;}
._17{margin-left:-18.120000px;}
._11{margin-left:-15.252000px;}
._16{margin-left:-14.028000px;}
._1b{margin-left:-12.996000px;}
._4{margin-left:-11.880000px;}
._8{margin-left:-10.740000px;}
._a{margin-left:-9.240000px;}
._12{margin-left:-8.100000px;}
._c{margin-left:-6.660000px;}
._2{margin-left:-5.580000px;}
._18{margin-left:-4.512000px;}
._9{margin-left:-3.420000px;}
._0{margin-left:-2.400000px;}
._7{margin-left:-1.260000px;}
._6{width:1.200000px;}
._3{width:2.700000px;}
._1{width:4.200000px;}
._10{width:5.328000px;}
._f{width:6.384000px;}
._5{width:8.040000px;}
._d{width:9.552000px;}
._e{width:10.848000px;}
._b{width:12.720000px;}
._15{width:13.896000px;}
._14{width:15.660000px;}
._1f{width:17.244000px;}
._31{width:27.108000px;}
._50{width:41.160000px;}
._30{width:42.996000px;}
._58{width:54.048000px;}
._28{width:55.272000px;}
._53{width:56.568000px;}
._22{width:58.344000px;}
._25{width:63.516000px;}
._2b{width:68.580000px;}
._57{width:71.424000px;}
._4b{width:79.056000px;}
._3b{width:83.280000px;}
._56{width:87.360000px;}
._3a{width:99.168000px;}
._37{width:101.664000px;}
._2d{width:102.792000px;}
._39{width:115.056000px;}
._38{width:116.592000px;}
._4f{width:118.848000px;}
._36{width:133.440000px;}
._5b{width:134.688000px;}
._44{width:137.712000px;}
._3c{width:139.632000px;}
._3d{width:143.568000px;}
._35{width:150.061800px;}
._5e{width:153.216000px;}
._3e{width:157.872000px;}
._42{width:162.444000px;}
._1d{width:164.220000px;}
._4e{width:165.660000px;}
._23{width:167.088000px;}
._5d{width:169.104000px;}
._5f{width:187.212000px;}
._4c{width:195.612000px;}
._21{width:199.644000px;}
._26{width:201.084000px;}
._3f{width:211.596000px;}
._24{width:222.636000px;}
._45{width:262.896000px;}
._46{width:266.832000px;}
._34{width:270.528000px;}
._47{width:279.780000px;}
._59{width:291.684000px;}
._5a{width:299.124000px;}
._2e{width:302.052000px;}
._49{width:309.444000px;}
._27{width:320.388000px;}
._43{width:326.244000px;}
._51{width:329.604000px;}
._2f{width:331.248000px;}
._1e{width:332.676000px;}
._5c{width:334.788000px;}
._4d{width:336.420000px;}
._32{width:338.052000px;}
._2c{width:340.692000px;}
._33{width:343.908000px;}
._40{width:345.348000px;}
._29{width:351.444000px;}
._2a{width:353.844000px;}
._54{width:355.716000px;}
._20{width:358.980000px;}
._41{width:360.708000px;}
._52{width:366.276000px;}
._48{width:368.148000px;}
._55{width:373.764000px;}
._4a{width:376.356000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:33.600000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs3{font-size:51.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.257850px;}
.yf4{bottom:138.257700px;}
.yb4{bottom:138.257850px;}
.y90{bottom:138.335850px;}
.ycf{bottom:138.473850px;}
.y44{bottom:139.367850px;}
.y20{bottom:139.376250px;}
.y6a{bottom:139.547850px;}
.y14c{bottom:141.869850px;}
.ybb{bottom:142.339350px;}
.y11e{bottom:143.735850px;}
.y14b{bottom:157.013850px;}
.yba{bottom:157.339350px;}
.y11d{bottom:158.735850px;}
.y8f{bottom:160.241850px;}
.yce{bottom:160.379850px;}
.yf3{bottom:160.757700px;}
.yb3{bottom:160.757850px;}
.y69{bottom:161.453850px;}
.y1f{bottom:161.876250px;}
.y43{bottom:162.461850px;}
.y14a{bottom:172.157850px;}
.yb9{bottom:172.339350px;}
.y11c{bottom:173.735850px;}
.y8e{bottom:182.147850px;}
.ycd{bottom:182.285850px;}
.yf2{bottom:183.257700px;}
.yb2{bottom:183.257850px;}
.y68{bottom:183.359850px;}
.y1e{bottom:183.782250px;}
.y42{bottom:185.555850px;}
.y149{bottom:187.301850px;}
.yb8{bottom:187.339350px;}
.y11b{bottom:188.735850px;}
.yb7{bottom:202.339350px;}
.y148{bottom:202.445850px;}
.y11a{bottom:203.735850px;}
.y8d{bottom:204.053850px;}
.ycc{bottom:204.191850px;}
.y67{bottom:205.265850px;}
.y1d{bottom:205.688250px;}
.yf1{bottom:205.757700px;}
.yb1{bottom:205.757850px;}
.y41{bottom:208.649850px;}
.yb6{bottom:217.339350px;}
.y147{bottom:217.589850px;}
.y119{bottom:218.735850px;}
.y8c{bottom:225.959850px;}
.ycb{bottom:226.097850px;}
.y66{bottom:227.171850px;}
.y1c{bottom:227.594250px;}
.yf0{bottom:228.257700px;}
.yb0{bottom:228.257850px;}
.y40{bottom:231.743850px;}
.yb5{bottom:232.339350px;}
.y146{bottom:232.733850px;}
.y118{bottom:233.735850px;}
.y8b{bottom:247.865850px;}
.y145{bottom:247.877850px;}
.yca{bottom:248.003850px;}
.y117{bottom:248.735850px;}
.y65{bottom:249.077850px;}
.y1b{bottom:249.500250px;}
.yef{bottom:250.757700px;}
.yaf{bottom:250.757850px;}
.y3f{bottom:254.837850px;}
.y144{bottom:263.021850px;}
.y116{bottom:263.735850px;}
.y8a{bottom:269.771850px;}
.yc9{bottom:269.909850px;}
.y64{bottom:270.983850px;}
.y1a{bottom:271.406250px;}
.yee{bottom:273.257700px;}
.yae{bottom:273.257850px;}
.y173{bottom:277.829850px;}
.y3e{bottom:277.931850px;}
.y143{bottom:278.165850px;}
.y115{bottom:278.735850px;}
.y89{bottom:291.677850px;}
.yc8{bottom:291.815850px;}
.y63{bottom:292.889850px;}
.y142{bottom:293.309850px;}
.y19{bottom:293.312250px;}
.y114{bottom:293.735850px;}
.yed{bottom:295.757700px;}
.yad{bottom:295.757850px;}
.y172{bottom:296.579850px;}
.y3d{bottom:301.025850px;}
.y141{bottom:308.453850px;}
.y113{bottom:308.735850px;}
.y88{bottom:313.583850px;}
.yc7{bottom:313.721850px;}
.y62{bottom:314.795850px;}
.y18{bottom:315.218250px;}
.y171{bottom:315.329850px;}
.yec{bottom:318.257700px;}
.yac{bottom:318.257850px;}
.y140{bottom:323.597850px;}
.y112{bottom:323.735850px;}
.y3c{bottom:324.119850px;}
.y87{bottom:335.489850px;}
.yc6{bottom:335.627850px;}
.y61{bottom:336.701850px;}
.y17{bottom:337.124250px;}
.y111{bottom:338.735850px;}
.y13f{bottom:338.741850px;}
.yeb{bottom:340.757700px;}
.yab{bottom:340.757850px;}
.y3b{bottom:347.213850px;}
.y170{bottom:352.829850px;}
.y110{bottom:353.735850px;}
.y13e{bottom:353.885850px;}
.y86{bottom:357.395850px;}
.yc5{bottom:357.533850px;}
.y60{bottom:358.607850px;}
.y16{bottom:359.030250px;}
.yea{bottom:363.257700px;}
.yaa{bottom:363.257850px;}
.y10f{bottom:368.735850px;}
.y13d{bottom:369.029850px;}
.y3a{bottom:370.307850px;}
.y85{bottom:379.301850px;}
.yc4{bottom:379.439850px;}
.y5f{bottom:380.513850px;}
.y15{bottom:380.936250px;}
.y10e{bottom:383.735850px;}
.y13c{bottom:384.173850px;}
.ye9{bottom:385.757700px;}
.ya9{bottom:385.757850px;}
.y39{bottom:393.401850px;}
.y16f{bottom:394.079850px;}
.y10d{bottom:398.735850px;}
.y13b{bottom:399.317850px;}
.y84{bottom:401.207850px;}
.yc3{bottom:401.345850px;}
.y5e{bottom:402.419850px;}
.y14{bottom:402.842250px;}
.ye8{bottom:408.257700px;}
.ya8{bottom:408.257850px;}
.y16e{bottom:409.079850px;}
.y10c{bottom:413.735850px;}
.y13a{bottom:414.461850px;}
.y38{bottom:416.495850px;}
.y83{bottom:423.113850px;}
.yc2{bottom:423.251850px;}
.y16d{bottom:424.079850px;}
.y5d{bottom:424.325850px;}
.y13{bottom:424.748250px;}
.y10b{bottom:428.735850px;}
.y139{bottom:429.605850px;}
.ye7{bottom:430.757700px;}
.ya7{bottom:430.757850px;}
.y16c{bottom:439.079850px;}
.y37{bottom:439.589850px;}
.y138{bottom:444.749850px;}
.y82{bottom:445.019850px;}
.yc1{bottom:445.037850px;}
.y5c{bottom:446.231850px;}
.y12{bottom:446.654250px;}
.y10a{bottom:450.107850px;}
.ye6{bottom:453.257700px;}
.ya6{bottom:453.257850px;}
.y16b{bottom:454.079850px;}
.y137{bottom:459.893850px;}
.y36{bottom:462.683850px;}
.y81{bottom:466.925850px;}
.yc0{bottom:466.943850px;}
.y5b{bottom:468.137850px;}
.y11{bottom:468.560250px;}
.y16a{bottom:469.079850px;}
.y136{bottom:475.037850px;}
.ye5{bottom:475.757700px;}
.ya5{bottom:475.757850px;}
.y35{bottom:485.777850px;}
.y80{bottom:488.831850px;}
.ybf{bottom:488.849850px;}
.y5a{bottom:490.043850px;}
.y135{bottom:490.181850px;}
.y169{bottom:490.463850px;}
.y10{bottom:490.466250px;}
.y109{bottom:495.227850px;}
.ye4{bottom:498.257700px;}
.ya4{bottom:498.257850px;}
.y134{bottom:505.325850px;}
.y34{bottom:508.871850px;}
.y7f{bottom:510.737850px;}
.ybe{bottom:510.755850px;}
.y59{bottom:511.949850px;}
.yf{bottom:512.372250px;}
.y108{bottom:517.871850px;}
.y133{bottom:520.469850px;}
.ye3{bottom:520.757700px;}
.ya3{bottom:520.757850px;}
.y33{bottom:531.965850px;}
.y7e{bottom:532.643850px;}
.ybd{bottom:532.661850px;}
.y58{bottom:533.855850px;}
.ye{bottom:534.278250px;}
.y168{bottom:535.463850px;}
.y132{bottom:535.613850px;}
.y107{bottom:540.515850px;}
.ye2{bottom:543.257700px;}
.ya2{bottom:543.257850px;}
.y167{bottom:550.463850px;}
.y131{bottom:550.757850px;}
.y7d{bottom:554.549850px;}
.ybc{bottom:554.567850px;}
.y32{bottom:555.059850px;}
.y57{bottom:555.761850px;}
.yd{bottom:556.184250px;}
.y106{bottom:563.159850px;}
.y166{bottom:565.463850px;}
.ye1{bottom:565.757700px;}
.ya1{bottom:565.757850px;}
.y7c{bottom:576.455850px;}
.y56{bottom:577.667850px;}
.yc{bottom:578.090250px;}
.y31{bottom:578.153850px;}
.y165{bottom:580.463850px;}
.y130{bottom:580.757850px;}
.y105{bottom:585.803850px;}
.ye0{bottom:588.257700px;}
.ya0{bottom:588.257850px;}
.y164{bottom:595.463850px;}
.y12f{bottom:595.757850px;}
.y7b{bottom:598.361850px;}
.y55{bottom:599.573850px;}
.yb{bottom:599.996250px;}
.y30{bottom:601.247850px;}
.y104{bottom:608.447850px;}
.y163{bottom:610.463850px;}
.ydf{bottom:610.757700px;}
.y9f{bottom:610.757850px;}
.y7a{bottom:620.267850px;}
.y54{bottom:621.479850px;}
.ya{bottom:621.902250px;}
.y2f{bottom:624.341850px;}
.y162{bottom:625.463850px;}
.y12e{bottom:625.757850px;}
.y103{bottom:631.091850px;}
.yde{bottom:633.257700px;}
.y9e{bottom:633.257850px;}
.y161{bottom:640.463850px;}
.y12d{bottom:640.757850px;}
.y79{bottom:642.173850px;}
.y53{bottom:643.385850px;}
.y9{bottom:643.808250px;}
.y2e{bottom:647.435850px;}
.y102{bottom:653.735850px;}
.y160{bottom:655.463850px;}
.ydd{bottom:655.757700px;}
.y9d{bottom:655.757850px;}
.y78{bottom:664.079850px;}
.y52{bottom:665.291850px;}
.y8{bottom:665.714250px;}
.y15f{bottom:670.463850px;}
.y2d{bottom:670.529850px;}
.y12c{bottom:670.757850px;}
.y101{bottom:676.379850px;}
.ydc{bottom:678.257700px;}
.y9c{bottom:678.257850px;}
.y15e{bottom:685.463850px;}
.y12b{bottom:685.757850px;}
.y77{bottom:685.985850px;}
.y51{bottom:687.197850px;}
.y7{bottom:687.620250px;}
.y2c{bottom:693.623850px;}
.y100{bottom:699.023850px;}
.y15d{bottom:700.463850px;}
.ydb{bottom:700.757700px;}
.y9b{bottom:700.757850px;}
.y76{bottom:707.891850px;}
.y50{bottom:709.103850px;}
.y6{bottom:709.526250px;}
.y15c{bottom:715.463850px;}
.y12a{bottom:715.757850px;}
.y2b{bottom:716.717850px;}
.yff{bottom:721.667850px;}
.yda{bottom:723.257700px;}
.y9a{bottom:723.257850px;}
.y75{bottom:729.797850px;}
.y15b{bottom:730.463850px;}
.y129{bottom:730.757850px;}
.y4f{bottom:731.009850px;}
.y5{bottom:731.427150px;}
.y2a{bottom:739.811850px;}
.yfe{bottom:744.311850px;}
.y15a{bottom:745.463850px;}
.yd9{bottom:745.757700px;}
.y99{bottom:745.757850px;}
.y74{bottom:751.703850px;}
.y4e{bottom:752.915850px;}
.y4{bottom:753.327150px;}
.y159{bottom:760.463850px;}
.y128{bottom:760.757850px;}
.y29{bottom:762.905850px;}
.yfd{bottom:766.955850px;}
.yd8{bottom:768.257700px;}
.y98{bottom:768.257850px;}
.y73{bottom:773.609850px;}
.y4d{bottom:774.821850px;}
.y158{bottom:775.463850px;}
.y127{bottom:775.757850px;}
.y28{bottom:785.999850px;}
.yfc{bottom:789.599850px;}
.y157{bottom:790.463850px;}
.yd7{bottom:790.757700px;}
.y97{bottom:790.757850px;}
.y72{bottom:795.515850px;}
.y4c{bottom:796.727850px;}
.y156{bottom:805.463850px;}
.y126{bottom:805.757850px;}
.y27{bottom:809.093850px;}
.yfb{bottom:812.243850px;}
.yd6{bottom:813.257700px;}
.y96{bottom:813.257850px;}
.y3{bottom:813.612150px;}
.y71{bottom:817.421850px;}
.y4b{bottom:818.633850px;}
.y155{bottom:820.463850px;}
.y125{bottom:820.757850px;}
.y26{bottom:832.187850px;}
.yfa{bottom:834.887850px;}
.y154{bottom:835.463850px;}
.yd5{bottom:835.757700px;}
.y95{bottom:835.757850px;}
.y70{bottom:839.327850px;}
.y4a{bottom:840.539850px;}
.y153{bottom:850.463850px;}
.y124{bottom:850.757850px;}
.y25{bottom:855.281850px;}
.yf9{bottom:857.531850px;}
.yd4{bottom:858.257700px;}
.y94{bottom:858.257850px;}
.y6f{bottom:861.233850px;}
.y49{bottom:862.445850px;}
.y152{bottom:865.463850px;}
.y123{bottom:865.757850px;}
.y24{bottom:878.375850px;}
.yf8{bottom:880.175850px;}
.y151{bottom:880.463850px;}
.yd3{bottom:880.757700px;}
.y2{bottom:880.757850px;}
.y6e{bottom:883.139850px;}
.y48{bottom:884.351850px;}
.y150{bottom:895.463850px;}
.y122{bottom:895.757850px;}
.y23{bottom:901.469850px;}
.yf7{bottom:902.819850px;}
.yd2{bottom:903.257700px;}
.y93{bottom:903.257850px;}
.y6d{bottom:905.045850px;}
.y47{bottom:906.257850px;}
.y14f{bottom:910.463850px;}
.y121{bottom:910.757850px;}
.y22{bottom:924.563850px;}
.yf6{bottom:925.463850px;}
.yd1{bottom:925.757700px;}
.y92{bottom:925.757850px;}
.y6c{bottom:926.951850px;}
.y46{bottom:928.163850px;}
.y14e{bottom:940.463850px;}
.y120{bottom:940.757850px;}
.y21{bottom:947.657850px;}
.yf5{bottom:948.107850px;}
.yd0{bottom:948.257700px;}
.y91{bottom:948.257850px;}
.y6b{bottom:948.857850px;}
.y45{bottom:949.457850px;}
.y14d{bottom:955.607850px;}
.y11f{bottom:955.757850px;}
.ha{height:39.072000px;}
.h7{height:40.757812px;}
.h8{height:46.312500px;}
.h4{height:50.580000px;}
.h2{height:57.890625px;}
.h6{height:61.136719px;}
.h5{height:69.468750px;}
.h9{height:69.948750px;}
.h3{height:115.781250px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x1{left:88.759800px;}
.x2{left:103.641750px;}
.x5{left:112.477950px;}
.x4{left:127.381950px;}
.x8{left:156.791250px;}
.x6{left:211.915650px;}
.x7{left:235.812000px;}
.x3{left:625.781250px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v3{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000533pt;}
.ls18{letter-spacing:0.004800pt;}
.ls1c{letter-spacing:0.019733pt;}
.ls1b{letter-spacing:0.020267pt;}
.ls10{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.115733pt;}
.ls6{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.272000pt;}
.ls20{letter-spacing:0.272533pt;}
.lsd{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.341333pt;}
.ls4{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.447467pt;}
.ls5{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.832000pt;}
.ls19{letter-spacing:0.896000pt;}
.lsc{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.024000pt;}
.ls11{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:1.408000pt;}
.ls2b{letter-spacing:2.816000pt;}
.ls13{letter-spacing:2.933333pt;}
.ls2c{letter-spacing:3.029333pt;}
.ls2a{letter-spacing:4.224000pt;}
.ls28{letter-spacing:5.774400pt;}
.ls2{letter-spacing:6.560000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls27{letter-spacing:9.280000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls1a{letter-spacing:10.176000pt;}
.lsb{letter-spacing:10.304000pt;}
.ls3{letter-spacing:10.624000pt;}
.ls29{letter-spacing:10.816000pt;}
.ls1f{letter-spacing:10.944000pt;}
.ls23{letter-spacing:11.264000pt;}
.ws2d{word-spacing:-54.400000pt;}
.ws29{word-spacing:-54.080000pt;}
.ws31{word-spacing:-53.952000pt;}
.ws4{word-spacing:-53.760000pt;}
.wsd{word-spacing:-53.440000pt;}
.ws25{word-spacing:-53.312000pt;}
.ws26{word-spacing:-44.544000pt;}
.ws2e{word-spacing:-44.416000pt;}
.wse{word-spacing:-44.096000pt;}
.ws1d{word-spacing:-43.968000pt;}
.ws1c{word-spacing:-43.904000pt;}
.ws1f{word-spacing:-43.840000pt;}
.wsc{word-spacing:-43.776000pt;}
.ws11{word-spacing:-43.712000pt;}
.ws13{word-spacing:-43.648000pt;}
.ws10{word-spacing:-43.584000pt;}
.ws6{word-spacing:-43.520000pt;}
.wsf{word-spacing:-43.456000pt;}
.ws1a{word-spacing:-43.392000pt;}
.ws14{word-spacing:-43.328000pt;}
.ws7{word-spacing:-43.264000pt;}
.ws12{word-spacing:-43.200000pt;}
.ws3{word-spacing:-43.136000pt;}
.ws2{word-spacing:-42.506667pt;}
.ws1{word-spacing:-35.946667pt;}
.ws22{word-spacing:-32.960000pt;}
.ws27{word-spacing:-32.576000pt;}
.ws5{word-spacing:-32.512000pt;}
.ws8{word-spacing:-32.448000pt;}
.ws2a{word-spacing:-32.384000pt;}
.ws1e{word-spacing:-32.320000pt;}
.ws21{word-spacing:-32.256000pt;}
.ws2f{word-spacing:-32.000000pt;}
.ws30{word-spacing:-31.936000pt;}
.ws2c{word-spacing:-31.872000pt;}
.ws24{word-spacing:-31.744000pt;}
.ws20{word-spacing:-31.680000pt;}
.ws2b{word-spacing:-31.168000pt;}
.ws16{word-spacing:-29.184000pt;}
.ws19{word-spacing:-29.098667pt;}
.ws17{word-spacing:-28.757333pt;}
.wsa{word-spacing:-22.506667pt;}
.ws28{word-spacing:-18.112000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws23{word-spacing:-15.808000pt;}
.ws15{word-spacing:-14.986667pt;}
.ws1b{word-spacing:-12.588800pt;}
.ws18{word-spacing:-11.989333pt;}
.ws32{word-spacing:-10.965333pt;}
.ws33{word-spacing:-8.392533pt;}
.ws9{word-spacing:0.000000pt;}
.ws0{word-spacing:114.933333pt;}
._13{margin-left:-843.466667pt;}
._1c{margin-left:-27.072000pt;}
._1a{margin-left:-24.053333pt;}
._19{margin-left:-17.760000pt;}
._17{margin-left:-16.106667pt;}
._11{margin-left:-13.557333pt;}
._16{margin-left:-12.469333pt;}
._1b{margin-left:-11.552000pt;}
._4{margin-left:-10.560000pt;}
._8{margin-left:-9.546667pt;}
._a{margin-left:-8.213333pt;}
._12{margin-left:-7.200000pt;}
._c{margin-left:-5.920000pt;}
._2{margin-left:-4.960000pt;}
._18{margin-left:-4.010667pt;}
._9{margin-left:-3.040000pt;}
._0{margin-left:-2.133333pt;}
._7{margin-left:-1.120000pt;}
._6{width:1.066667pt;}
._3{width:2.400000pt;}
._1{width:3.733333pt;}
._10{width:4.736000pt;}
._f{width:5.674667pt;}
._5{width:7.146667pt;}
._d{width:8.490667pt;}
._e{width:9.642667pt;}
._b{width:11.306667pt;}
._15{width:12.352000pt;}
._14{width:13.920000pt;}
._1f{width:15.328000pt;}
._31{width:24.096000pt;}
._50{width:36.586667pt;}
._30{width:38.218667pt;}
._58{width:48.042667pt;}
._28{width:49.130667pt;}
._53{width:50.282667pt;}
._22{width:51.861333pt;}
._25{width:56.458667pt;}
._2b{width:60.960000pt;}
._57{width:63.488000pt;}
._4b{width:70.272000pt;}
._3b{width:74.026667pt;}
._56{width:77.653333pt;}
._3a{width:88.149333pt;}
._37{width:90.368000pt;}
._2d{width:91.370667pt;}
._39{width:102.272000pt;}
._38{width:103.637333pt;}
._4f{width:105.642667pt;}
._36{width:118.613333pt;}
._5b{width:119.722667pt;}
._44{width:122.410667pt;}
._3c{width:124.117333pt;}
._3d{width:127.616000pt;}
._35{width:133.388267pt;}
._5e{width:136.192000pt;}
._3e{width:140.330667pt;}
._42{width:144.394667pt;}
._1d{width:145.973333pt;}
._4e{width:147.253333pt;}
._23{width:148.522667pt;}
._5d{width:150.314667pt;}
._5f{width:166.410667pt;}
._4c{width:173.877333pt;}
._21{width:177.461333pt;}
._26{width:178.741333pt;}
._3f{width:188.085333pt;}
._24{width:197.898667pt;}
._45{width:233.685333pt;}
._46{width:237.184000pt;}
._34{width:240.469333pt;}
._47{width:248.693333pt;}
._59{width:259.274667pt;}
._5a{width:265.888000pt;}
._2e{width:268.490667pt;}
._49{width:275.061333pt;}
._27{width:284.789333pt;}
._43{width:289.994667pt;}
._51{width:292.981333pt;}
._2f{width:294.442667pt;}
._1e{width:295.712000pt;}
._5c{width:297.589333pt;}
._4d{width:299.040000pt;}
._32{width:300.490667pt;}
._2c{width:302.837333pt;}
._33{width:305.696000pt;}
._40{width:306.976000pt;}
._29{width:312.394667pt;}
._2a{width:314.528000pt;}
._54{width:316.192000pt;}
._20{width:319.093333pt;}
._41{width:320.629333pt;}
._52{width:325.578667pt;}
._48{width:327.242667pt;}
._55{width:332.234667pt;}
._4a{width:334.538667pt;}
.fs6{font-size:29.866667pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs3{font-size:45.333333pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:82.895867pt;}
.yf4{bottom:122.895733pt;}
.yb4{bottom:122.895867pt;}
.y90{bottom:122.965200pt;}
.ycf{bottom:123.087867pt;}
.y44{bottom:123.882533pt;}
.y20{bottom:123.890000pt;}
.y6a{bottom:124.042533pt;}
.y14c{bottom:126.106533pt;}
.ybb{bottom:126.523867pt;}
.y11e{bottom:127.765200pt;}
.y14b{bottom:139.567867pt;}
.yba{bottom:139.857200pt;}
.y11d{bottom:141.098533pt;}
.y8f{bottom:142.437200pt;}
.yce{bottom:142.559867pt;}
.yf3{bottom:142.895733pt;}
.yb3{bottom:142.895867pt;}
.y69{bottom:143.514533pt;}
.y1f{bottom:143.890000pt;}
.y43{bottom:144.410533pt;}
.y14a{bottom:153.029200pt;}
.yb9{bottom:153.190533pt;}
.y11c{bottom:154.431867pt;}
.y8e{bottom:161.909200pt;}
.ycd{bottom:162.031867pt;}
.yf2{bottom:162.895733pt;}
.yb2{bottom:162.895867pt;}
.y68{bottom:162.986533pt;}
.y1e{bottom:163.362000pt;}
.y42{bottom:164.938533pt;}
.y149{bottom:166.490533pt;}
.yb8{bottom:166.523867pt;}
.y11b{bottom:167.765200pt;}
.yb7{bottom:179.857200pt;}
.y148{bottom:179.951867pt;}
.y11a{bottom:181.098533pt;}
.y8d{bottom:181.381200pt;}
.ycc{bottom:181.503867pt;}
.y67{bottom:182.458533pt;}
.y1d{bottom:182.834000pt;}
.yf1{bottom:182.895733pt;}
.yb1{bottom:182.895867pt;}
.y41{bottom:185.466533pt;}
.yb6{bottom:193.190533pt;}
.y147{bottom:193.413200pt;}
.y119{bottom:194.431867pt;}
.y8c{bottom:200.853200pt;}
.ycb{bottom:200.975867pt;}
.y66{bottom:201.930533pt;}
.y1c{bottom:202.306000pt;}
.yf0{bottom:202.895733pt;}
.yb0{bottom:202.895867pt;}
.y40{bottom:205.994533pt;}
.yb5{bottom:206.523867pt;}
.y146{bottom:206.874533pt;}
.y118{bottom:207.765200pt;}
.y8b{bottom:220.325200pt;}
.y145{bottom:220.335867pt;}
.yca{bottom:220.447867pt;}
.y117{bottom:221.098533pt;}
.y65{bottom:221.402533pt;}
.y1b{bottom:221.778000pt;}
.yef{bottom:222.895733pt;}
.yaf{bottom:222.895867pt;}
.y3f{bottom:226.522533pt;}
.y144{bottom:233.797200pt;}
.y116{bottom:234.431867pt;}
.y8a{bottom:239.797200pt;}
.yc9{bottom:239.919867pt;}
.y64{bottom:240.874533pt;}
.y1a{bottom:241.250000pt;}
.yee{bottom:242.895733pt;}
.yae{bottom:242.895867pt;}
.y173{bottom:246.959867pt;}
.y3e{bottom:247.050533pt;}
.y143{bottom:247.258533pt;}
.y115{bottom:247.765200pt;}
.y89{bottom:259.269200pt;}
.yc8{bottom:259.391867pt;}
.y63{bottom:260.346533pt;}
.y142{bottom:260.719867pt;}
.y19{bottom:260.722000pt;}
.y114{bottom:261.098533pt;}
.yed{bottom:262.895733pt;}
.yad{bottom:262.895867pt;}
.y172{bottom:263.626533pt;}
.y3d{bottom:267.578533pt;}
.y141{bottom:274.181200pt;}
.y113{bottom:274.431867pt;}
.y88{bottom:278.741200pt;}
.yc7{bottom:278.863867pt;}
.y62{bottom:279.818533pt;}
.y18{bottom:280.194000pt;}
.y171{bottom:280.293200pt;}
.yec{bottom:282.895733pt;}
.yac{bottom:282.895867pt;}
.y140{bottom:287.642533pt;}
.y112{bottom:287.765200pt;}
.y3c{bottom:288.106533pt;}
.y87{bottom:298.213200pt;}
.yc6{bottom:298.335867pt;}
.y61{bottom:299.290533pt;}
.y17{bottom:299.666000pt;}
.y111{bottom:301.098533pt;}
.y13f{bottom:301.103867pt;}
.yeb{bottom:302.895733pt;}
.yab{bottom:302.895867pt;}
.y3b{bottom:308.634533pt;}
.y170{bottom:313.626533pt;}
.y110{bottom:314.431867pt;}
.y13e{bottom:314.565200pt;}
.y86{bottom:317.685200pt;}
.yc5{bottom:317.807867pt;}
.y60{bottom:318.762533pt;}
.y16{bottom:319.138000pt;}
.yea{bottom:322.895733pt;}
.yaa{bottom:322.895867pt;}
.y10f{bottom:327.765200pt;}
.y13d{bottom:328.026533pt;}
.y3a{bottom:329.162533pt;}
.y85{bottom:337.157200pt;}
.yc4{bottom:337.279867pt;}
.y5f{bottom:338.234533pt;}
.y15{bottom:338.610000pt;}
.y10e{bottom:341.098533pt;}
.y13c{bottom:341.487867pt;}
.ye9{bottom:342.895733pt;}
.ya9{bottom:342.895867pt;}
.y39{bottom:349.690533pt;}
.y16f{bottom:350.293200pt;}
.y10d{bottom:354.431867pt;}
.y13b{bottom:354.949200pt;}
.y84{bottom:356.629200pt;}
.yc3{bottom:356.751867pt;}
.y5e{bottom:357.706533pt;}
.y14{bottom:358.082000pt;}
.ye8{bottom:362.895733pt;}
.ya8{bottom:362.895867pt;}
.y16e{bottom:363.626533pt;}
.y10c{bottom:367.765200pt;}
.y13a{bottom:368.410533pt;}
.y38{bottom:370.218533pt;}
.y83{bottom:376.101200pt;}
.yc2{bottom:376.223867pt;}
.y16d{bottom:376.959867pt;}
.y5d{bottom:377.178533pt;}
.y13{bottom:377.554000pt;}
.y10b{bottom:381.098533pt;}
.y139{bottom:381.871867pt;}
.ye7{bottom:382.895733pt;}
.ya7{bottom:382.895867pt;}
.y16c{bottom:390.293200pt;}
.y37{bottom:390.746533pt;}
.y138{bottom:395.333200pt;}
.y82{bottom:395.573200pt;}
.yc1{bottom:395.589200pt;}
.y5c{bottom:396.650533pt;}
.y12{bottom:397.026000pt;}
.y10a{bottom:400.095867pt;}
.ye6{bottom:402.895733pt;}
.ya6{bottom:402.895867pt;}
.y16b{bottom:403.626533pt;}
.y137{bottom:408.794533pt;}
.y36{bottom:411.274533pt;}
.y81{bottom:415.045200pt;}
.yc0{bottom:415.061200pt;}
.y5b{bottom:416.122533pt;}
.y11{bottom:416.498000pt;}
.y16a{bottom:416.959867pt;}
.y136{bottom:422.255867pt;}
.ye5{bottom:422.895733pt;}
.ya5{bottom:422.895867pt;}
.y35{bottom:431.802533pt;}
.y80{bottom:434.517200pt;}
.ybf{bottom:434.533200pt;}
.y5a{bottom:435.594533pt;}
.y135{bottom:435.717200pt;}
.y169{bottom:435.967867pt;}
.y10{bottom:435.970000pt;}
.y109{bottom:440.202533pt;}
.ye4{bottom:442.895733pt;}
.ya4{bottom:442.895867pt;}
.y134{bottom:449.178533pt;}
.y34{bottom:452.330533pt;}
.y7f{bottom:453.989200pt;}
.ybe{bottom:454.005200pt;}
.y59{bottom:455.066533pt;}
.yf{bottom:455.442000pt;}
.y108{bottom:460.330533pt;}
.y133{bottom:462.639867pt;}
.ye3{bottom:462.895733pt;}
.ya3{bottom:462.895867pt;}
.y33{bottom:472.858533pt;}
.y7e{bottom:473.461200pt;}
.ybd{bottom:473.477200pt;}
.y58{bottom:474.538533pt;}
.ye{bottom:474.914000pt;}
.y168{bottom:475.967867pt;}
.y132{bottom:476.101200pt;}
.y107{bottom:480.458533pt;}
.ye2{bottom:482.895733pt;}
.ya2{bottom:482.895867pt;}
.y167{bottom:489.301200pt;}
.y131{bottom:489.562533pt;}
.y7d{bottom:492.933200pt;}
.ybc{bottom:492.949200pt;}
.y32{bottom:493.386533pt;}
.y57{bottom:494.010533pt;}
.yd{bottom:494.386000pt;}
.y106{bottom:500.586533pt;}
.y166{bottom:502.634533pt;}
.ye1{bottom:502.895733pt;}
.ya1{bottom:502.895867pt;}
.y7c{bottom:512.405200pt;}
.y56{bottom:513.482533pt;}
.yc{bottom:513.858000pt;}
.y31{bottom:513.914533pt;}
.y165{bottom:515.967867pt;}
.y130{bottom:516.229200pt;}
.y105{bottom:520.714533pt;}
.ye0{bottom:522.895733pt;}
.ya0{bottom:522.895867pt;}
.y164{bottom:529.301200pt;}
.y12f{bottom:529.562533pt;}
.y7b{bottom:531.877200pt;}
.y55{bottom:532.954533pt;}
.yb{bottom:533.330000pt;}
.y30{bottom:534.442533pt;}
.y104{bottom:540.842533pt;}
.y163{bottom:542.634533pt;}
.ydf{bottom:542.895733pt;}
.y9f{bottom:542.895867pt;}
.y7a{bottom:551.349200pt;}
.y54{bottom:552.426533pt;}
.ya{bottom:552.802000pt;}
.y2f{bottom:554.970533pt;}
.y162{bottom:555.967867pt;}
.y12e{bottom:556.229200pt;}
.y103{bottom:560.970533pt;}
.yde{bottom:562.895733pt;}
.y9e{bottom:562.895867pt;}
.y161{bottom:569.301200pt;}
.y12d{bottom:569.562533pt;}
.y79{bottom:570.821200pt;}
.y53{bottom:571.898533pt;}
.y9{bottom:572.274000pt;}
.y2e{bottom:575.498533pt;}
.y102{bottom:581.098533pt;}
.y160{bottom:582.634533pt;}
.ydd{bottom:582.895733pt;}
.y9d{bottom:582.895867pt;}
.y78{bottom:590.293200pt;}
.y52{bottom:591.370533pt;}
.y8{bottom:591.746000pt;}
.y15f{bottom:595.967867pt;}
.y2d{bottom:596.026533pt;}
.y12c{bottom:596.229200pt;}
.y101{bottom:601.226533pt;}
.ydc{bottom:602.895733pt;}
.y9c{bottom:602.895867pt;}
.y15e{bottom:609.301200pt;}
.y12b{bottom:609.562533pt;}
.y77{bottom:609.765200pt;}
.y51{bottom:610.842533pt;}
.y7{bottom:611.218000pt;}
.y2c{bottom:616.554533pt;}
.y100{bottom:621.354533pt;}
.y15d{bottom:622.634533pt;}
.ydb{bottom:622.895733pt;}
.y9b{bottom:622.895867pt;}
.y76{bottom:629.237200pt;}
.y50{bottom:630.314533pt;}
.y6{bottom:630.690000pt;}
.y15c{bottom:635.967867pt;}
.y12a{bottom:636.229200pt;}
.y2b{bottom:637.082533pt;}
.yff{bottom:641.482533pt;}
.yda{bottom:642.895733pt;}
.y9a{bottom:642.895867pt;}
.y75{bottom:648.709200pt;}
.y15b{bottom:649.301200pt;}
.y129{bottom:649.562533pt;}
.y4f{bottom:649.786533pt;}
.y5{bottom:650.157467pt;}
.y2a{bottom:657.610533pt;}
.yfe{bottom:661.610533pt;}
.y15a{bottom:662.634533pt;}
.yd9{bottom:662.895733pt;}
.y99{bottom:662.895867pt;}
.y74{bottom:668.181200pt;}
.y4e{bottom:669.258533pt;}
.y4{bottom:669.624133pt;}
.y159{bottom:675.967867pt;}
.y128{bottom:676.229200pt;}
.y29{bottom:678.138533pt;}
.yfd{bottom:681.738533pt;}
.yd8{bottom:682.895733pt;}
.y98{bottom:682.895867pt;}
.y73{bottom:687.653200pt;}
.y4d{bottom:688.730533pt;}
.y158{bottom:689.301200pt;}
.y127{bottom:689.562533pt;}
.y28{bottom:698.666533pt;}
.yfc{bottom:701.866533pt;}
.y157{bottom:702.634533pt;}
.yd7{bottom:702.895733pt;}
.y97{bottom:702.895867pt;}
.y72{bottom:707.125200pt;}
.y4c{bottom:708.202533pt;}
.y156{bottom:715.967867pt;}
.y126{bottom:716.229200pt;}
.y27{bottom:719.194533pt;}
.yfb{bottom:721.994533pt;}
.yd6{bottom:722.895733pt;}
.y96{bottom:722.895867pt;}
.y3{bottom:723.210800pt;}
.y71{bottom:726.597200pt;}
.y4b{bottom:727.674533pt;}
.y155{bottom:729.301200pt;}
.y125{bottom:729.562533pt;}
.y26{bottom:739.722533pt;}
.yfa{bottom:742.122533pt;}
.y154{bottom:742.634533pt;}
.yd5{bottom:742.895733pt;}
.y95{bottom:742.895867pt;}
.y70{bottom:746.069200pt;}
.y4a{bottom:747.146533pt;}
.y153{bottom:755.967867pt;}
.y124{bottom:756.229200pt;}
.y25{bottom:760.250533pt;}
.yf9{bottom:762.250533pt;}
.yd4{bottom:762.895733pt;}
.y94{bottom:762.895867pt;}
.y6f{bottom:765.541200pt;}
.y49{bottom:766.618533pt;}
.y152{bottom:769.301200pt;}
.y123{bottom:769.562533pt;}
.y24{bottom:780.778533pt;}
.yf8{bottom:782.378533pt;}
.y151{bottom:782.634533pt;}
.yd3{bottom:782.895733pt;}
.y2{bottom:782.895867pt;}
.y6e{bottom:785.013200pt;}
.y48{bottom:786.090533pt;}
.y150{bottom:795.967867pt;}
.y122{bottom:796.229200pt;}
.y23{bottom:801.306533pt;}
.yf7{bottom:802.506533pt;}
.yd2{bottom:802.895733pt;}
.y93{bottom:802.895867pt;}
.y6d{bottom:804.485200pt;}
.y47{bottom:805.562533pt;}
.y14f{bottom:809.301200pt;}
.y121{bottom:809.562533pt;}
.y22{bottom:821.834533pt;}
.yf6{bottom:822.634533pt;}
.yd1{bottom:822.895733pt;}
.y92{bottom:822.895867pt;}
.y6c{bottom:823.957200pt;}
.y46{bottom:825.034533pt;}
.y14e{bottom:835.967867pt;}
.y120{bottom:836.229200pt;}
.y21{bottom:842.362533pt;}
.yf5{bottom:842.762533pt;}
.yd0{bottom:842.895733pt;}
.y91{bottom:842.895867pt;}
.y6b{bottom:843.429200pt;}
.y45{bottom:843.962533pt;}
.y14d{bottom:849.429200pt;}
.y11f{bottom:849.562533pt;}
.ha{height:34.730667pt;}
.h7{height:36.229167pt;}
.h8{height:41.166667pt;}
.h4{height:44.960000pt;}
.h2{height:51.458333pt;}
.h6{height:54.343750pt;}
.h5{height:61.750000pt;}
.h9{height:62.176667pt;}
.h3{height:102.916667pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x1{left:78.897600pt;}
.x2{left:92.126000pt;}
.x5{left:99.980400pt;}
.x4{left:113.228400pt;}
.x8{left:139.370000pt;}
.x6{left:188.369467pt;}
.x7{left:209.610667pt;}
.x3{left:556.250000pt;}
}




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