
    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_c7dcf6a01d72e3225de3468a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_bede2a56b2caf7ee086b9fae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_14c41e1dc7630d3af01e74e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.896973;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_3d1003a8aaa4840baaa05cae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ef41df1455a7ea24f9d51065.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912598;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_20e004fb1a993c21c1611157.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dedcbb1fbf28e654dca71fe6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_be6d4df6f1abee0b5ede2e6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_95fbae51cff8751f3d44146e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.928223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:48.240000px;}
.ls23{letter-spacing:-1.192320px;}
.ls28{letter-spacing:-1.179072px;}
.ls31{letter-spacing:-0.936000px;}
.ls2f{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.673920px;}
.ls1e{letter-spacing:-0.537840px;}
.ls2e{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.432000px;}
.ls27{letter-spacing:-0.417312px;}
.ls26{letter-spacing:-0.397440px;}
.ls17{letter-spacing:-0.380160px;}
.ls7{letter-spacing:-0.362232px;}
.lsc{letter-spacing:-0.357840px;}
.ls11{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.276480px;}
.ls24{letter-spacing:-0.264960px;}
.ls22{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.204480px;}
.lsa{letter-spacing:-0.178992px;}
.ls13{letter-spacing:-0.172224px;}
.ls2d{letter-spacing:-0.144000px;}
.ls3d{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.126720px;}
.ls19{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.lsf{letter-spacing:0.153360px;}
.ls3{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.253440px;}
.ls25{letter-spacing:0.264960px;}
.ls21{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.306720px;}
.ls9{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.335808px;}
.lse{letter-spacing:0.357840px;}
.ls1b{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.792000px;}
.ls1f{letter-spacing:0.896400px;}
.ls4{letter-spacing:0.900000px;}
.ls3a{letter-spacing:0.936000px;}
.ls2a{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.620000px;}
.ls2{letter-spacing:2.340000px;}
.ls2c{letter-spacing:7.920000px;}
.ls33{letter-spacing:12.240000px;}
.ls36{letter-spacing:15.120000px;}
.ls34{letter-spacing:17.280000px;}
.ls12{letter-spacing:18.720000px;}
.ls2b{letter-spacing:23.760000px;}
.ls38{letter-spacing:26.225280px;}
.ls35{letter-spacing:32.400000px;}
.ls39{letter-spacing:46.800000px;}
.ls3c{letter-spacing:57.060000px;}
.ls20{letter-spacing:1446.456000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-20.697768px;}
.ws2{word-spacing:-20.386080px;}
.ws5{word-spacing:-20.340000px;}
.ws1f{word-spacing:-18.936000px;}
.ws20{word-spacing:-18.792000px;}
.ws1b{word-spacing:-18.432000px;}
.ws15{word-spacing:-18.288000px;}
.ws1d{word-spacing:-18.216000px;}
.ws11{word-spacing:-18.144000px;}
.ws1e{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.928000px;}
.ws18{word-spacing:-17.856000px;}
.ws16{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.568000px;}
.ws19{word-spacing:-17.496000px;}
.ws7{word-spacing:-17.280000px;}
.ws1a{word-spacing:-17.208000px;}
.ws1c{word-spacing:-17.064000px;}
.ws8{word-spacing:-17.003520px;}
.wse{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.175808px;}
.ws12{word-spacing:-15.836400px;}
.ws17{word-spacing:-15.380928px;}
.ws13{word-spacing:-15.298560px;}
.ws14{word-spacing:-15.238800px;}
.ws4{word-spacing:-13.824000px;}
.ws6{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.137840px;}
.ws9{word-spacing:-12.780000px;}
.wsa{word-spacing:-12.575520px;}
.wsd{word-spacing:0.000000px;}
._58{margin-left:-230.760000px;}
._20{margin-left:-4.724640px;}
._c{margin-left:-3.312000px;}
._18{margin-left:-2.304000px;}
._1{margin-left:-1.179360px;}
._0{width:1.251360px;}
._1a{width:2.592000px;}
._19{width:4.248000px;}
._23{width:6.048000px;}
._22{width:7.947360px;}
._8{width:9.288000px;}
._9{width:10.395360px;}
._d{width:11.736000px;}
._34{width:12.798720px;}
._33{width:13.968000px;}
._32{width:15.528000px;}
._21{width:16.848000px;}
._17{width:19.296000px;}
._12{width:21.240000px;}
._13{width:22.296000px;}
._3f{width:23.304000px;}
._11{width:24.318720px;}
._35{width:25.351200px;}
._16{width:26.352000px;}
._1d{width:27.836640px;}
._1c{width:28.872000px;}
._1b{width:30.312000px;}
._24{width:31.597920px;}
._f{width:32.832000px;}
._e{width:34.614720px;}
._25{width:36.144000px;}
._36{width:37.152000px;}
._27{width:38.424000px;}
._28{width:39.600000px;}
._10{width:40.896000px;}
._4{width:42.696240px;}
._2{width:43.716000px;}
._3{width:45.180000px;}
._2a{width:46.188000px;}
._37{width:47.916000px;}
._2b{width:49.059360px;}
._2c{width:50.273280px;}
._7{width:52.120800px;}
._26{width:53.331840px;}
._2d{width:54.623520px;}
._29{width:55.704000px;}
._46{width:57.000000px;}
._44{width:58.392000px;}
._3e{width:59.832000px;}
._50{width:60.984000px;}
._30{width:62.064000px;}
._31{width:63.459360px;}
._3b{width:65.304000px;}
._1f{width:67.131360px;}
._1e{width:69.048000px;}
._39{width:70.531920px;}
._5{width:71.644080px;}
._6{width:73.224000px;}
._a{width:75.216000px;}
._3a{width:76.824000px;}
._b{width:78.318720px;}
._40{width:79.416000px;}
._3d{width:81.000000px;}
._4b{width:83.304000px;}
._43{width:85.265280px;}
._42{width:86.355360px;}
._47{width:89.523360px;}
._52{width:92.880000px;}
._51{width:93.888000px;}
._4d{width:94.968000px;}
._4e{width:96.336000px;}
._3c{width:97.992000px;}
._4f{width:102.312000px;}
._55{width:108.504000px;}
._56{width:109.800000px;}
._54{width:114.624000px;}
._2e{width:115.776000px;}
._2f{width:117.216000px;}
._14{width:119.736000px;}
._15{width:121.347360px;}
._57{width:123.812640px;}
._53{width:133.200000px;}
._38{width:134.856000px;}
._49{width:136.764000px;}
._45{width:195.867360px;}
._48{width:209.475360px;}
._4a{width:382.800000px;}
._4c{width:495.315360px;}
._41{width:768.528000px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(180,180,180);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs4{font-size:12.240000px;}
.fsf{font-size:24.000000px;}
.fsd{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs8{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fsc{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:81.360000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.860000px;}
.y184{bottom:7.500000px;}
.ycc{bottom:17.100000px;}
.yd8{bottom:23.220000px;}
.ycd{bottom:26.460000px;}
.ycf{bottom:32.400000px;}
.ycb{bottom:35.820000px;}
.yd7{bottom:41.760000px;}
.yd0{bottom:47.700000px;}
.yd4{bottom:47.730000px;}
.yd9{bottom:47.880000px;}
.y12a{bottom:102.816000px;}
.ye5{bottom:103.176000px;}
.yf1{bottom:106.776000px;}
.y15b{bottom:107.136000px;}
.yc5{bottom:107.676000px;}
.y13b{bottom:109.476000px;}
.y97{bottom:110.016000px;}
.yf9{bottom:110.736000px;}
.y52{bottom:112.356000px;}
.y127{bottom:121.356000px;}
.yf8{bottom:124.596000px;}
.y129{bottom:125.136000px;}
.ye4{bottom:125.496000px;}
.yf0{bottom:129.276000px;}
.yc4{bottom:129.996000px;}
.y183{bottom:130.536000px;}
.y7d{bottom:130.896000px;}
.y13a{bottom:131.796000px;}
.y51{bottom:134.676000px;}
.y32{bottom:137.736000px;}
.y126{bottom:143.676000px;}
.y128{bottom:147.456000px;}
.y96{bottom:147.636000px;}
.ye3{bottom:147.816000px;}
.y7c{bottom:150.510000px;}
.yef{bottom:151.590000px;}
.yc3{bottom:152.310000px;}
.y139{bottom:154.110000px;}
.y182{bottom:154.290000px;}
.y15a{bottom:154.830000px;}
.y50{bottom:156.990000px;}
.y31{bottom:160.050000px;}
.yf7{bottom:161.490000px;}
.y125{bottom:165.990000px;}
.y95{bottom:169.770000px;}
.y7b{bottom:169.950000px;}
.ye2{bottom:170.130000px;}
.yee{bottom:173.910000px;}
.y30{bottom:174.090000px;}
.yc2{bottom:174.630000px;}
.y138{bottom:176.430000px;}
.y181{bottom:178.230000px;}
.y159{bottom:178.590000px;}
.y4f{bottom:179.310000px;}
.yf6{bottom:182.010000px;}
.y124{bottom:188.490000px;}
.y2f{bottom:188.850000px;}
.y94{bottom:192.090000px;}
.ye1{bottom:192.450000px;}
.y7a{bottom:194.610000px;}
.yed{bottom:196.230000px;}
.yc1{bottom:196.950000px;}
.y137{bottom:198.750000px;}
.y4e{bottom:201.630000px;}
.y180{bottom:201.990000px;}
.y158{bottom:202.350000px;}
.yf5{bottom:202.530000px;}
.y2e{bottom:203.430000px;}
.y123{bottom:210.810000px;}
.y93{bottom:214.410000px;}
.ye0{bottom:214.770000px;}
.yec{bottom:218.550000px;}
.y2d{bottom:219.090000px;}
.yc0{bottom:219.450000px;}
.y136{bottom:221.070000px;}
.yf4{bottom:222.870000px;}
.y4d{bottom:223.950000px;}
.y17f{bottom:225.750000px;}
.y157{bottom:226.110000px;}
.y122{bottom:233.130000px;}
.y92{bottom:236.730000px;}
.ydf{bottom:237.090000px;}
.y2c{bottom:239.250000px;}
.yeb{bottom:240.870000px;}
.ybf{bottom:241.770000px;}
.y135{bottom:243.390000px;}
.y4c{bottom:246.450000px;}
.y17e{bottom:249.510000px;}
.y156{bottom:250.050000px;}
.yf3{bottom:251.670000px;}
.y121{bottom:255.450000px;}
.y91{bottom:259.230000px;}
.yde{bottom:259.410000px;}
.y2b{bottom:259.950000px;}
.yea{bottom:263.190000px;}
.ybe{bottom:264.090000px;}
.y134{bottom:265.710000px;}
.y4b{bottom:268.770000px;}
.y17d{bottom:273.450000px;}
.y155{bottom:273.810000px;}
.y120{bottom:277.770000px;}
.y90{bottom:281.595000px;}
.ydd{bottom:281.955000px;}
.ye9{bottom:285.555000px;}
.ybd{bottom:286.455000px;}
.y2a{bottom:287.535000px;}
.y133{bottom:288.075000px;}
.y4a{bottom:291.135000px;}
.y17c{bottom:297.255000px;}
.y154{bottom:297.615000px;}
.y11f{bottom:300.135000px;}
.y29{bottom:301.395000px;}
.y8f{bottom:303.915000px;}
.ydc{bottom:304.275000px;}
.ye8{bottom:307.875000px;}
.ybc{bottom:308.775000px;}
.y132{bottom:310.395000px;}
.y49{bottom:313.455000px;}
.y17b{bottom:321.015000px;}
.y153{bottom:321.375000px;}
.y28{bottom:322.095000px;}
.y11e{bottom:322.455000px;}
.y8e{bottom:326.235000px;}
.ydb{bottom:326.595000px;}
.ye7{bottom:330.195000px;}
.ybb{bottom:331.095000px;}
.y131{bottom:332.895000px;}
.y48{bottom:335.775000px;}
.y27{bottom:342.795000px;}
.y11d{bottom:344.775000px;}
.y152{bottom:345.315000px;}
.y8d{bottom:348.555000px;}
.yda{bottom:349.635000px;}
.ye6{bottom:352.515000px;}
.yba{bottom:353.415000px;}
.y130{bottom:355.215000px;}
.y47{bottom:358.095000px;}
.y11c{bottom:367.095000px;}
.y17a{bottom:368.715000px;}
.y151{bottom:369.075000px;}
.y26{bottom:370.335000px;}
.y8c{bottom:370.875000px;}
.yb9{bottom:375.735000px;}
.y12f{bottom:377.535000px;}
.y46{bottom:380.415000px;}
.y25{bottom:384.195000px;}
.y11b{bottom:389.415000px;}
.y179{bottom:392.475000px;}
.yd6{bottom:392.835000px;}
.y8b{bottom:393.195000px;}
.yb8{bottom:398.055000px;}
.y12e{bottom:399.855000px;}
.y45{bottom:402.735000px;}
.y24{bottom:404.895000px;}
.y11a{bottom:411.735000px;}
.y8a{bottom:415.515000px;}
.y178{bottom:416.235000px;}
.y150{bottom:416.595000px;}
.yb7{bottom:420.375000px;}
.y12d{bottom:422.175000px;}
.y44{bottom:425.055000px;}
.y23{bottom:432.435000px;}
.y119{bottom:434.235000px;}
.y89{bottom:437.835000px;}
.y177{bottom:439.995000px;}
.y14f{bottom:440.535000px;}
.yb6{bottom:442.875000px;}
.y12c{bottom:445.395000px;}
.y22{bottom:446.295000px;}
.y43{bottom:447.375000px;}
.yd5{bottom:454.935000px;}
.y118{bottom:456.555000px;}
.y88{bottom:460.155000px;}
.y176{bottom:463.935000px;}
.y14e{bottom:464.295000px;}
.yb5{bottom:465.195000px;}
.y21{bottom:466.995000px;}
.y42{bottom:469.875000px;}
.y117{bottom:478.875000px;}
.y87{bottom:482.475000px;}
.y12b{bottom:482.655000px;}
.yb4{bottom:487.515000px;}
.y175{bottom:487.695000px;}
.y14d{bottom:488.055000px;}
.y41{bottom:492.195000px;}
.y20{bottom:494.535000px;}
.y116{bottom:501.195000px;}
.y86{bottom:504.975000px;}
.y1f{bottom:508.395000px;}
.yb3{bottom:509.835000px;}
.y174{bottom:511.455000px;}
.y14c{bottom:511.815000px;}
.y40{bottom:514.515000px;}
.yd3{bottom:516.855000px;}
.y115{bottom:523.515000px;}
.y85{bottom:527.295000px;}
.y1e{bottom:529.095000px;}
.yb2{bottom:532.155000px;}
.y173{bottom:535.215000px;}
.y14b{bottom:535.575000px;}
.y3f{bottom:536.835000px;}
.y114{bottom:545.835000px;}
.y84{bottom:549.615000px;}
.yb1{bottom:554.475000px;}
.y1d{bottom:556.635000px;}
.y172{bottom:558.975000px;}
.y3e{bottom:559.155000px;}
.y14a{bottom:559.515000px;}
.y113{bottom:568.185000px;}
.y1c{bottom:570.525000px;}
.y83{bottom:571.965000px;}
.yb0{bottom:576.825000px;}
.yd2{bottom:578.805000px;}
.y3d{bottom:581.505000px;}
.y171{bottom:582.945000px;}
.y149{bottom:583.305000px;}
.y112{bottom:590.505000px;}
.y1b{bottom:591.225000px;}
.y82{bottom:594.285000px;}
.yaf{bottom:599.145000px;}
.y3c{bottom:603.825000px;}
.y170{bottom:606.705000px;}
.y148{bottom:607.065000px;}
.y1a{bottom:611.925000px;}
.y111{bottom:612.825000px;}
.y81{bottom:616.605000px;}
.yae{bottom:621.465000px;}
.y3b{bottom:626.145000px;}
.y16f{bottom:630.465000px;}
.y147{bottom:630.825000px;}
.y19{bottom:632.625000px;}
.y110{bottom:635.145000px;}
.y80{bottom:638.925000px;}
.yd1{bottom:640.905000px;}
.yad{bottom:643.605000px;}
.y3a{bottom:648.465000px;}
.y16e{bottom:654.225000px;}
.y146{bottom:654.765000px;}
.y10f{bottom:657.645000px;}
.y18{bottom:660.165000px;}
.y7f{bottom:661.245000px;}
.y39{bottom:670.785000px;}
.y79{bottom:673.665000px;}
.y17{bottom:674.025000px;}
.yac{bottom:678.165000px;}
.y145{bottom:678.525000px;}
.y10e{bottom:679.965000px;}
.y7e{bottom:683.565000px;}
.y38{bottom:693.105000px;}
.y68{bottom:695.985000px;}
.yab{bottom:700.485000px;}
.y16{bottom:701.565000px;}
.y16d{bottom:701.925000px;}
.y10d{bottom:702.285000px;}
.yce{bottom:702.825000px;}
.y78{bottom:705.885000px;}
.y37{bottom:715.605000px;}
.y67{bottom:718.305000px;}
.yaa{bottom:722.805000px;}
.y10c{bottom:724.605000px;}
.y16c{bottom:725.685000px;}
.y144{bottom:726.045000px;}
.y77{bottom:728.385000px;}
.y15{bottom:729.105000px;}
.y36{bottom:737.925000px;}
.y66{bottom:740.625000px;}
.ya9{bottom:745.125000px;}
.y10b{bottom:746.925000px;}
.y16b{bottom:749.445000px;}
.y143{bottom:749.985000px;}
.y76{bottom:750.705000px;}
.y14{bottom:754.305000px;}
.y35{bottom:760.245000px;}
.y65{bottom:762.945000px;}
.yca{bottom:764.745000px;}
.ya8{bottom:767.625000px;}
.y10a{bottom:769.245000px;}
.y75{bottom:773.025000px;}
.y16a{bottom:773.385000px;}
.y142{bottom:773.745000px;}
.y13{bottom:779.505000px;}
.y34{bottom:782.565000px;}
.y64{bottom:785.265000px;}
.ya7{bottom:789.945000px;}
.y109{bottom:791.565000px;}
.y74{bottom:795.345000px;}
.y169{bottom:797.145000px;}
.y141{bottom:797.505000px;}
.y33{bottom:803.625000px;}
.y12{bottom:804.525000px;}
.y63{bottom:807.585000px;}
.ya6{bottom:812.265000px;}
.y108{bottom:813.885000px;}
.y73{bottom:817.665000px;}
.yf2{bottom:817.845000px;}
.y168{bottom:820.905000px;}
.y140{bottom:821.265000px;}
.y11{bottom:824.145000px;}
.y62{bottom:829.905000px;}
.yc9{bottom:832.245000px;}
.ya5{bottom:834.585000px;}
.y107{bottom:836.205000px;}
.y10{bottom:838.545000px;}
.y72{bottom:839.985000px;}
.y167{bottom:844.665000px;}
.y13f{bottom:845.205000px;}
.y61{bottom:852.450000px;}
.yc8{bottom:852.810000px;}
.ya4{bottom:856.950000px;}
.y106{bottom:858.570000px;}
.yf{bottom:861.810000px;}
.y71{bottom:862.350000px;}
.y166{bottom:868.650000px;}
.y13e{bottom:869.010000px;}
.y60{bottom:874.770000px;}
.ya3{bottom:879.270000px;}
.y105{bottom:880.890000px;}
.yc7{bottom:882.330000px;}
.y70{bottom:884.670000px;}
.y13d{bottom:892.230000px;}
.y165{bottom:892.410000px;}
.ye{bottom:895.110000px;}
.y5f{bottom:897.090000px;}
.ya2{bottom:901.590000px;}
.y104{bottom:903.390000px;}
.y6f{bottom:906.990000px;}
.yc6{bottom:907.170000px;}
.y164{bottom:916.170000px;}
.y5e{bottom:919.410000px;}
.ya1{bottom:923.910000px;}
.y103{bottom:925.710000px;}
.yd{bottom:928.590000px;}
.y6e{bottom:929.310000px;}
.y13c{bottom:929.490000px;}
.y163{bottom:939.930000px;}
.y5d{bottom:941.730000px;}
.ya0{bottom:946.230000px;}
.y102{bottom:948.030000px;}
.y6d{bottom:951.630000px;}
.y162{bottom:963.870000px;}
.yc{bottom:966.210000px;}
.y5c{bottom:966.390000px;}
.y9f{bottom:968.550000px;}
.y101{bottom:970.350000px;}
.y6c{bottom:974.130000px;}
.yb{bottom:974.490000px;}
.y161{bottom:987.630000px;}
.y1{bottom:988.710000px;}
.y9e{bottom:990.870000px;}
.y100{bottom:992.670000px;}
.y6b{bottom:996.450000px;}
.ya{bottom:998.430000px;}
.y5b{bottom:1004.010000px;}
.y160{bottom:1011.390000px;}
.y9d{bottom:1013.370000px;}
.yff{bottom:1014.990000px;}
.y9{bottom:1016.430000px;}
.y6a{bottom:1018.770000px;}
.y8{bottom:1026.150000px;}
.y15f{bottom:1035.150000px;}
.y9c{bottom:1035.690000px;}
.yfe{bottom:1037.310000px;}
.y69{bottom:1041.090000px;}
.y7{bottom:1043.610000px;}
.y5a{bottom:1046.490000px;}
.y6{bottom:1050.810000px;}
.y9b{bottom:1058.010000px;}
.y15e{bottom:1058.910000px;}
.yfd{bottom:1059.630000px;}
.y59{bottom:1063.410000px;}
.y5{bottom:1070.970000px;}
.y4{bottom:1079.430000px;}
.y9a{bottom:1080.330000px;}
.yfc{bottom:1081.950000px;}
.y15d{bottom:1082.850000px;}
.y58{bottom:1085.730000px;}
.y3{bottom:1099.410000px;}
.y99{bottom:1102.290000px;}
.yfb{bottom:1104.270000px;}
.y15c{bottom:1106.610000px;}
.y57{bottom:1108.050000px;}
.y98{bottom:1127.310000px;}
.yfa{bottom:1127.490000px;}
.y56{bottom:1130.400000px;}
.y55{bottom:1151.460000px;}
.y54{bottom:1172.880000px;}
.y53{bottom:1192.320000px;}
.h5{height:3.903750px;}
.ha{height:4.002188px;}
.h7{height:8.295469px;}
.h21{height:17.273438px;}
.h2{height:20.160000px;}
.h17{height:21.011484px;}
.h1e{height:25.013672px;}
.h11{height:32.693906px;}
.hc{height:33.518320px;}
.h10{height:35.519414px;}
.h1a{height:41.522695px;}
.h15{height:44.024062px;}
.h13{height:44.149219px;}
.h3{height:44.893125px;}
.h18{height:46.025156px;}
.hf{height:48.026250px;}
.h4{height:48.796875px;}
.h8{height:49.042969px;}
.h19{height:49.320000px;}
.hd{height:50.027344px;}
.h16{height:55.594687px;}
.h12{height:57.092344px;}
.h6{height:57.380273px;}
.h20{height:58.531992px;}
.he{height:60.878320px;}
.h1b{height:61.200000px;}
.h1c{height:61.236000px;}
.h1d{height:61.380000px;}
.h14{height:63.175781px;}
.hb{height:63.957656px;}
.h9{height:73.195312px;}
.h1f{height:105.332344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:73.656000px;}
.w4{width:84.600000px;}
.w8{width:100.980000px;}
.w2{width:141.876000px;}
.w7{width:235.110000px;}
.w5{width:256.350000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x2{left:11.700000px;}
.x19{left:75.000000px;}
.x9{left:95.795987px;}
.xb{left:118.115987px;}
.x17{left:122.615987px;}
.xa{left:157.169987px;}
.x7{left:172.829987px;}
.x10{left:180.030000px;}
.xc{left:247.889987px;}
.x8{left:302.474987px;}
.x4{left:307.334987px;}
.x6{left:338.474987px;}
.x11{left:436.395000px;}
.x14{left:449.354987px;}
.x5{left:451.874987px;}
.xd{left:462.674987px;}
.x16{left:489.494987px;}
.x12{left:510.045000px;}
.x18{left:516.704987px;}
.x1{left:658.905000px;}
.xe{left:670.064987px;}
.x13{left:745.170000px;}
.x15{left:748.589987px;}
.x3{left:795.749987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:42.880000pt;}
.ls23{letter-spacing:-1.059840pt;}
.ls28{letter-spacing:-1.048064pt;}
.ls31{letter-spacing:-0.832000pt;}
.ls2f{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.599040pt;}
.ls1e{letter-spacing:-0.478080pt;}
.ls2e{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls27{letter-spacing:-0.370944pt;}
.ls26{letter-spacing:-0.353280pt;}
.ls17{letter-spacing:-0.337920pt;}
.ls7{letter-spacing:-0.321984pt;}
.lsc{letter-spacing:-0.318080pt;}
.ls11{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.245760pt;}
.ls24{letter-spacing:-0.235520pt;}
.ls22{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.181760pt;}
.lsa{letter-spacing:-0.159104pt;}
.ls13{letter-spacing:-0.153088pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls3d{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.112640pt;}
.ls19{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.lsf{letter-spacing:0.136320pt;}
.ls3{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.225280pt;}
.ls25{letter-spacing:0.235520pt;}
.ls21{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.272640pt;}
.ls9{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.298496pt;}
.lse{letter-spacing:0.318080pt;}
.ls1b{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.704000pt;}
.ls1f{letter-spacing:0.796800pt;}
.ls4{letter-spacing:0.800000pt;}
.ls3a{letter-spacing:0.832000pt;}
.ls2a{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.440000pt;}
.ls2{letter-spacing:2.080000pt;}
.ls2c{letter-spacing:7.040000pt;}
.ls33{letter-spacing:10.880000pt;}
.ls36{letter-spacing:13.440000pt;}
.ls34{letter-spacing:15.360000pt;}
.ls12{letter-spacing:16.640000pt;}
.ls2b{letter-spacing:21.120000pt;}
.ls38{letter-spacing:23.311360pt;}
.ls35{letter-spacing:28.800000pt;}
.ls39{letter-spacing:41.600000pt;}
.ls3c{letter-spacing:50.720000pt;}
.ls20{letter-spacing:1285.738667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.398016pt;}
.ws2{word-spacing:-18.120960pt;}
.ws5{word-spacing:-18.080000pt;}
.ws1f{word-spacing:-16.832000pt;}
.ws20{word-spacing:-16.704000pt;}
.ws1b{word-spacing:-16.384000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws1d{word-spacing:-16.192000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws1e{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.936000pt;}
.ws18{word-spacing:-15.872000pt;}
.ws16{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.616000pt;}
.ws19{word-spacing:-15.552000pt;}
.ws7{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-15.296000pt;}
.ws1c{word-spacing:-15.168000pt;}
.ws8{word-spacing:-15.114240pt;}
.wse{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.378496pt;}
.ws12{word-spacing:-14.076800pt;}
.ws17{word-spacing:-13.671936pt;}
.ws13{word-spacing:-13.598720pt;}
.ws14{word-spacing:-13.545600pt;}
.ws4{word-spacing:-12.288000pt;}
.ws6{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.678080pt;}
.ws9{word-spacing:-11.360000pt;}
.wsa{word-spacing:-11.178240pt;}
.wsd{word-spacing:0.000000pt;}
._58{margin-left:-205.120000pt;}
._20{margin-left:-4.199680pt;}
._c{margin-left:-2.944000pt;}
._18{margin-left:-2.048000pt;}
._1{margin-left:-1.048320pt;}
._0{width:1.112320pt;}
._1a{width:2.304000pt;}
._19{width:3.776000pt;}
._23{width:5.376000pt;}
._22{width:7.064320pt;}
._8{width:8.256000pt;}
._9{width:9.240320pt;}
._d{width:10.432000pt;}
._34{width:11.376640pt;}
._33{width:12.416000pt;}
._32{width:13.802667pt;}
._21{width:14.976000pt;}
._17{width:17.152000pt;}
._12{width:18.880000pt;}
._13{width:19.818667pt;}
._3f{width:20.714667pt;}
._11{width:21.616640pt;}
._35{width:22.534400pt;}
._16{width:23.424000pt;}
._1d{width:24.743680pt;}
._1c{width:25.664000pt;}
._1b{width:26.944000pt;}
._24{width:28.087040pt;}
._f{width:29.184000pt;}
._e{width:30.768640pt;}
._25{width:32.128000pt;}
._36{width:33.024000pt;}
._27{width:34.154667pt;}
._28{width:35.200000pt;}
._10{width:36.352000pt;}
._4{width:37.952213pt;}
._2{width:38.858667pt;}
._3{width:40.160000pt;}
._2a{width:41.056000pt;}
._37{width:42.592000pt;}
._2b{width:43.608320pt;}
._2c{width:44.687360pt;}
._7{width:46.329600pt;}
._26{width:47.406080pt;}
._2d{width:48.554240pt;}
._29{width:49.514667pt;}
._46{width:50.666667pt;}
._44{width:51.904000pt;}
._3e{width:53.184000pt;}
._50{width:54.208000pt;}
._30{width:55.168000pt;}
._31{width:56.408320pt;}
._3b{width:58.048000pt;}
._1f{width:59.672320pt;}
._1e{width:61.376000pt;}
._39{width:62.695040pt;}
._5{width:63.683627pt;}
._6{width:65.088000pt;}
._a{width:66.858667pt;}
._3a{width:68.288000pt;}
._b{width:69.616640pt;}
._40{width:70.592000pt;}
._3d{width:72.000000pt;}
._4b{width:74.048000pt;}
._43{width:75.791360pt;}
._42{width:76.760320pt;}
._47{width:79.576320pt;}
._52{width:82.560000pt;}
._51{width:83.456000pt;}
._4d{width:84.416000pt;}
._4e{width:85.632000pt;}
._3c{width:87.104000pt;}
._4f{width:90.944000pt;}
._55{width:96.448000pt;}
._56{width:97.600000pt;}
._54{width:101.888000pt;}
._2e{width:102.912000pt;}
._2f{width:104.192000pt;}
._14{width:106.432000pt;}
._15{width:107.864320pt;}
._57{width:110.055680pt;}
._53{width:118.400000pt;}
._38{width:119.872000pt;}
._49{width:121.568000pt;}
._45{width:174.104320pt;}
._48{width:186.200320pt;}
._4a{width:340.266667pt;}
._4c{width:440.280320pt;}
._41{width:683.136000pt;}
.fs2{font-size:5.120000pt;}
.fs4{font-size:10.880000pt;}
.fsf{font-size:21.333333pt;}
.fsd{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fsc{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:72.320000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.320000pt;}
.y184{bottom:6.666667pt;}
.ycc{bottom:15.200000pt;}
.yd8{bottom:20.640000pt;}
.ycd{bottom:23.520000pt;}
.ycf{bottom:28.800000pt;}
.ycb{bottom:31.840000pt;}
.yd7{bottom:37.120000pt;}
.yd0{bottom:42.400000pt;}
.yd4{bottom:42.426667pt;}
.yd9{bottom:42.560000pt;}
.y12a{bottom:91.392000pt;}
.ye5{bottom:91.712000pt;}
.yf1{bottom:94.912000pt;}
.y15b{bottom:95.232000pt;}
.yc5{bottom:95.712000pt;}
.y13b{bottom:97.312000pt;}
.y97{bottom:97.792000pt;}
.yf9{bottom:98.432000pt;}
.y52{bottom:99.872000pt;}
.y127{bottom:107.872000pt;}
.yf8{bottom:110.752000pt;}
.y129{bottom:111.232000pt;}
.ye4{bottom:111.552000pt;}
.yf0{bottom:114.912000pt;}
.yc4{bottom:115.552000pt;}
.y183{bottom:116.032000pt;}
.y7d{bottom:116.352000pt;}
.y13a{bottom:117.152000pt;}
.y51{bottom:119.712000pt;}
.y32{bottom:122.432000pt;}
.y126{bottom:127.712000pt;}
.y128{bottom:131.072000pt;}
.y96{bottom:131.232000pt;}
.ye3{bottom:131.392000pt;}
.y7c{bottom:133.786667pt;}
.yef{bottom:134.746667pt;}
.yc3{bottom:135.386667pt;}
.y139{bottom:136.986667pt;}
.y182{bottom:137.146667pt;}
.y15a{bottom:137.626667pt;}
.y50{bottom:139.546667pt;}
.y31{bottom:142.266667pt;}
.yf7{bottom:143.546667pt;}
.y125{bottom:147.546667pt;}
.y95{bottom:150.906667pt;}
.y7b{bottom:151.066667pt;}
.ye2{bottom:151.226667pt;}
.yee{bottom:154.586667pt;}
.y30{bottom:154.746667pt;}
.yc2{bottom:155.226667pt;}
.y138{bottom:156.826667pt;}
.y181{bottom:158.426667pt;}
.y159{bottom:158.746667pt;}
.y4f{bottom:159.386667pt;}
.yf6{bottom:161.786667pt;}
.y124{bottom:167.546667pt;}
.y2f{bottom:167.866667pt;}
.y94{bottom:170.746667pt;}
.ye1{bottom:171.066667pt;}
.y7a{bottom:172.986667pt;}
.yed{bottom:174.426667pt;}
.yc1{bottom:175.066667pt;}
.y137{bottom:176.666667pt;}
.y4e{bottom:179.226667pt;}
.y180{bottom:179.546667pt;}
.y158{bottom:179.866667pt;}
.yf5{bottom:180.026667pt;}
.y2e{bottom:180.826667pt;}
.y123{bottom:187.386667pt;}
.y93{bottom:190.586667pt;}
.ye0{bottom:190.906667pt;}
.yec{bottom:194.266667pt;}
.y2d{bottom:194.746667pt;}
.yc0{bottom:195.066667pt;}
.y136{bottom:196.506667pt;}
.yf4{bottom:198.106667pt;}
.y4d{bottom:199.066667pt;}
.y17f{bottom:200.666667pt;}
.y157{bottom:200.986667pt;}
.y122{bottom:207.226667pt;}
.y92{bottom:210.426667pt;}
.ydf{bottom:210.746667pt;}
.y2c{bottom:212.666667pt;}
.yeb{bottom:214.106667pt;}
.ybf{bottom:214.906667pt;}
.y135{bottom:216.346667pt;}
.y4c{bottom:219.066667pt;}
.y17e{bottom:221.786667pt;}
.y156{bottom:222.266667pt;}
.yf3{bottom:223.706667pt;}
.y121{bottom:227.066667pt;}
.y91{bottom:230.426667pt;}
.yde{bottom:230.586667pt;}
.y2b{bottom:231.066667pt;}
.yea{bottom:233.946667pt;}
.ybe{bottom:234.746667pt;}
.y134{bottom:236.186667pt;}
.y4b{bottom:238.906667pt;}
.y17d{bottom:243.066667pt;}
.y155{bottom:243.386667pt;}
.y120{bottom:246.906667pt;}
.y90{bottom:250.306667pt;}
.ydd{bottom:250.626667pt;}
.ye9{bottom:253.826667pt;}
.ybd{bottom:254.626667pt;}
.y2a{bottom:255.586667pt;}
.y133{bottom:256.066667pt;}
.y4a{bottom:258.786667pt;}
.y17c{bottom:264.226667pt;}
.y154{bottom:264.546667pt;}
.y11f{bottom:266.786667pt;}
.y29{bottom:267.906667pt;}
.y8f{bottom:270.146667pt;}
.ydc{bottom:270.466667pt;}
.ye8{bottom:273.666667pt;}
.ybc{bottom:274.466667pt;}
.y132{bottom:275.906667pt;}
.y49{bottom:278.626667pt;}
.y17b{bottom:285.346667pt;}
.y153{bottom:285.666667pt;}
.y28{bottom:286.306667pt;}
.y11e{bottom:286.626667pt;}
.y8e{bottom:289.986667pt;}
.ydb{bottom:290.306667pt;}
.ye7{bottom:293.506667pt;}
.ybb{bottom:294.306667pt;}
.y131{bottom:295.906667pt;}
.y48{bottom:298.466667pt;}
.y27{bottom:304.706667pt;}
.y11d{bottom:306.466667pt;}
.y152{bottom:306.946667pt;}
.y8d{bottom:309.826667pt;}
.yda{bottom:310.786667pt;}
.ye6{bottom:313.346667pt;}
.yba{bottom:314.146667pt;}
.y130{bottom:315.746667pt;}
.y47{bottom:318.306667pt;}
.y11c{bottom:326.306667pt;}
.y17a{bottom:327.746667pt;}
.y151{bottom:328.066667pt;}
.y26{bottom:329.186667pt;}
.y8c{bottom:329.666667pt;}
.yb9{bottom:333.986667pt;}
.y12f{bottom:335.586667pt;}
.y46{bottom:338.146667pt;}
.y25{bottom:341.506667pt;}
.y11b{bottom:346.146667pt;}
.y179{bottom:348.866667pt;}
.yd6{bottom:349.186667pt;}
.y8b{bottom:349.506667pt;}
.yb8{bottom:353.826667pt;}
.y12e{bottom:355.426667pt;}
.y45{bottom:357.986667pt;}
.y24{bottom:359.906667pt;}
.y11a{bottom:365.986667pt;}
.y8a{bottom:369.346667pt;}
.y178{bottom:369.986667pt;}
.y150{bottom:370.306667pt;}
.yb7{bottom:373.666667pt;}
.y12d{bottom:375.266667pt;}
.y44{bottom:377.826667pt;}
.y23{bottom:384.386667pt;}
.y119{bottom:385.986667pt;}
.y89{bottom:389.186667pt;}
.y177{bottom:391.106667pt;}
.y14f{bottom:391.586667pt;}
.yb6{bottom:393.666667pt;}
.y12c{bottom:395.906667pt;}
.y22{bottom:396.706667pt;}
.y43{bottom:397.666667pt;}
.yd5{bottom:404.386667pt;}
.y118{bottom:405.826667pt;}
.y88{bottom:409.026667pt;}
.y176{bottom:412.386667pt;}
.y14e{bottom:412.706667pt;}
.yb5{bottom:413.506667pt;}
.y21{bottom:415.106667pt;}
.y42{bottom:417.666667pt;}
.y117{bottom:425.666667pt;}
.y87{bottom:428.866667pt;}
.y12b{bottom:429.026667pt;}
.yb4{bottom:433.346667pt;}
.y175{bottom:433.506667pt;}
.y14d{bottom:433.826667pt;}
.y41{bottom:437.506667pt;}
.y20{bottom:439.586667pt;}
.y116{bottom:445.506667pt;}
.y86{bottom:448.866667pt;}
.y1f{bottom:451.906667pt;}
.yb3{bottom:453.186667pt;}
.y174{bottom:454.626667pt;}
.y14c{bottom:454.946667pt;}
.y40{bottom:457.346667pt;}
.yd3{bottom:459.426667pt;}
.y115{bottom:465.346667pt;}
.y85{bottom:468.706667pt;}
.y1e{bottom:470.306667pt;}
.yb2{bottom:473.026667pt;}
.y173{bottom:475.746667pt;}
.y14b{bottom:476.066667pt;}
.y3f{bottom:477.186667pt;}
.y114{bottom:485.186667pt;}
.y84{bottom:488.546667pt;}
.yb1{bottom:492.866667pt;}
.y1d{bottom:494.786667pt;}
.y172{bottom:496.866667pt;}
.y3e{bottom:497.026667pt;}
.y14a{bottom:497.346667pt;}
.y113{bottom:505.053333pt;}
.y1c{bottom:507.133333pt;}
.y83{bottom:508.413333pt;}
.yb0{bottom:512.733333pt;}
.yd2{bottom:514.493333pt;}
.y3d{bottom:516.893333pt;}
.y171{bottom:518.173333pt;}
.y149{bottom:518.493333pt;}
.y112{bottom:524.893333pt;}
.y1b{bottom:525.533333pt;}
.y82{bottom:528.253333pt;}
.yaf{bottom:532.573333pt;}
.y3c{bottom:536.733333pt;}
.y170{bottom:539.293333pt;}
.y148{bottom:539.613333pt;}
.y1a{bottom:543.933333pt;}
.y111{bottom:544.733333pt;}
.y81{bottom:548.093333pt;}
.yae{bottom:552.413333pt;}
.y3b{bottom:556.573333pt;}
.y16f{bottom:560.413333pt;}
.y147{bottom:560.733333pt;}
.y19{bottom:562.333333pt;}
.y110{bottom:564.573333pt;}
.y80{bottom:567.933333pt;}
.yd1{bottom:569.693333pt;}
.yad{bottom:572.093333pt;}
.y3a{bottom:576.413333pt;}
.y16e{bottom:581.533333pt;}
.y146{bottom:582.013333pt;}
.y10f{bottom:584.573333pt;}
.y18{bottom:586.813333pt;}
.y7f{bottom:587.773333pt;}
.y39{bottom:596.253333pt;}
.y79{bottom:598.813333pt;}
.y17{bottom:599.133333pt;}
.yac{bottom:602.813333pt;}
.y145{bottom:603.133333pt;}
.y10e{bottom:604.413333pt;}
.y7e{bottom:607.613333pt;}
.y38{bottom:616.093333pt;}
.y68{bottom:618.653333pt;}
.yab{bottom:622.653333pt;}
.y16{bottom:623.613333pt;}
.y16d{bottom:623.933333pt;}
.y10d{bottom:624.253333pt;}
.yce{bottom:624.733333pt;}
.y78{bottom:627.453333pt;}
.y37{bottom:636.093333pt;}
.y67{bottom:638.493333pt;}
.yaa{bottom:642.493333pt;}
.y10c{bottom:644.093333pt;}
.y16c{bottom:645.053333pt;}
.y144{bottom:645.373333pt;}
.y77{bottom:647.453333pt;}
.y15{bottom:648.093333pt;}
.y36{bottom:655.933333pt;}
.y66{bottom:658.333333pt;}
.ya9{bottom:662.333333pt;}
.y10b{bottom:663.933333pt;}
.y16b{bottom:666.173333pt;}
.y143{bottom:666.653333pt;}
.y76{bottom:667.293333pt;}
.y14{bottom:670.493333pt;}
.y35{bottom:675.773333pt;}
.y65{bottom:678.173333pt;}
.yca{bottom:679.773333pt;}
.ya8{bottom:682.333333pt;}
.y10a{bottom:683.773333pt;}
.y75{bottom:687.133333pt;}
.y16a{bottom:687.453333pt;}
.y142{bottom:687.773333pt;}
.y13{bottom:692.893333pt;}
.y34{bottom:695.613333pt;}
.y64{bottom:698.013333pt;}
.ya7{bottom:702.173333pt;}
.y109{bottom:703.613333pt;}
.y74{bottom:706.973333pt;}
.y169{bottom:708.573333pt;}
.y141{bottom:708.893333pt;}
.y33{bottom:714.333333pt;}
.y12{bottom:715.133333pt;}
.y63{bottom:717.853333pt;}
.ya6{bottom:722.013333pt;}
.y108{bottom:723.453333pt;}
.y73{bottom:726.813333pt;}
.yf2{bottom:726.973333pt;}
.y168{bottom:729.693333pt;}
.y140{bottom:730.013333pt;}
.y11{bottom:732.573333pt;}
.y62{bottom:737.693333pt;}
.yc9{bottom:739.773333pt;}
.ya5{bottom:741.853333pt;}
.y107{bottom:743.293333pt;}
.y10{bottom:745.373333pt;}
.y72{bottom:746.653333pt;}
.y167{bottom:750.813333pt;}
.y13f{bottom:751.293333pt;}
.y61{bottom:757.733333pt;}
.yc8{bottom:758.053333pt;}
.ya4{bottom:761.733333pt;}
.y106{bottom:763.173333pt;}
.yf{bottom:766.053333pt;}
.y71{bottom:766.533333pt;}
.y166{bottom:772.133333pt;}
.y13e{bottom:772.453333pt;}
.y60{bottom:777.573333pt;}
.ya3{bottom:781.573333pt;}
.y105{bottom:783.013333pt;}
.yc7{bottom:784.293333pt;}
.y70{bottom:786.373333pt;}
.y13d{bottom:793.093333pt;}
.y165{bottom:793.253333pt;}
.ye{bottom:795.653333pt;}
.y5f{bottom:797.413333pt;}
.ya2{bottom:801.413333pt;}
.y104{bottom:803.013333pt;}
.y6f{bottom:806.213333pt;}
.yc6{bottom:806.373333pt;}
.y164{bottom:814.373333pt;}
.y5e{bottom:817.253333pt;}
.ya1{bottom:821.253333pt;}
.y103{bottom:822.853333pt;}
.yd{bottom:825.413333pt;}
.y6e{bottom:826.053333pt;}
.y13c{bottom:826.213333pt;}
.y163{bottom:835.493333pt;}
.y5d{bottom:837.093333pt;}
.ya0{bottom:841.093333pt;}
.y102{bottom:842.693333pt;}
.y6d{bottom:845.893333pt;}
.y162{bottom:856.773333pt;}
.yc{bottom:858.853333pt;}
.y5c{bottom:859.013333pt;}
.y9f{bottom:860.933333pt;}
.y101{bottom:862.533333pt;}
.y6c{bottom:865.893333pt;}
.yb{bottom:866.213333pt;}
.y161{bottom:877.893333pt;}
.y1{bottom:878.853333pt;}
.y9e{bottom:880.773333pt;}
.y100{bottom:882.373333pt;}
.y6b{bottom:885.733333pt;}
.ya{bottom:887.493333pt;}
.y5b{bottom:892.453333pt;}
.y160{bottom:899.013333pt;}
.y9d{bottom:900.773333pt;}
.yff{bottom:902.213333pt;}
.y9{bottom:903.493333pt;}
.y6a{bottom:905.573333pt;}
.y8{bottom:912.133333pt;}
.y15f{bottom:920.133333pt;}
.y9c{bottom:920.613333pt;}
.yfe{bottom:922.053333pt;}
.y69{bottom:925.413333pt;}
.y7{bottom:927.653333pt;}
.y5a{bottom:930.213333pt;}
.y6{bottom:934.053333pt;}
.y9b{bottom:940.453333pt;}
.y15e{bottom:941.253333pt;}
.yfd{bottom:941.893333pt;}
.y59{bottom:945.253333pt;}
.y5{bottom:951.973333pt;}
.y4{bottom:959.493333pt;}
.y9a{bottom:960.293333pt;}
.yfc{bottom:961.733333pt;}
.y15d{bottom:962.533333pt;}
.y58{bottom:965.093333pt;}
.y3{bottom:977.253333pt;}
.y99{bottom:979.813333pt;}
.yfb{bottom:981.573333pt;}
.y15c{bottom:983.653333pt;}
.y57{bottom:984.933333pt;}
.y98{bottom:1002.053333pt;}
.yfa{bottom:1002.213333pt;}
.y56{bottom:1004.800000pt;}
.y55{bottom:1023.520000pt;}
.y54{bottom:1042.560000pt;}
.y53{bottom:1059.840000pt;}
.h5{height:3.470000pt;}
.ha{height:3.557500pt;}
.h7{height:7.373750pt;}
.h21{height:15.354167pt;}
.h2{height:17.920000pt;}
.h17{height:18.676875pt;}
.h1e{height:22.234375pt;}
.h11{height:29.061250pt;}
.hc{height:29.794062pt;}
.h10{height:31.572812pt;}
.h1a{height:36.909063pt;}
.h15{height:39.132500pt;}
.h13{height:39.243750pt;}
.h3{height:39.905000pt;}
.h18{height:40.911250pt;}
.hf{height:42.690000pt;}
.h4{height:43.375000pt;}
.h8{height:43.593750pt;}
.h19{height:43.840000pt;}
.hd{height:44.468750pt;}
.h16{height:49.417500pt;}
.h12{height:50.748750pt;}
.h6{height:51.004687pt;}
.h20{height:52.028437pt;}
.he{height:54.114063pt;}
.h1b{height:54.400000pt;}
.h1c{height:54.432000pt;}
.h1d{height:54.560000pt;}
.h14{height:56.156250pt;}
.hb{height:56.851250pt;}
.h9{height:65.062500pt;}
.h1f{height:93.628750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:65.472000pt;}
.w4{width:75.200000pt;}
.w8{width:89.760000pt;}
.w2{width:126.112000pt;}
.w7{width:208.986667pt;}
.w5{width:227.866667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x2{left:10.400000pt;}
.x19{left:66.666667pt;}
.x9{left:85.151988pt;}
.xb{left:104.991988pt;}
.x17{left:108.991988pt;}
.xa{left:139.706655pt;}
.x7{left:153.626655pt;}
.x10{left:160.026667pt;}
.xc{left:220.346655pt;}
.x8{left:268.866655pt;}
.x4{left:273.186655pt;}
.x6{left:300.866655pt;}
.x11{left:387.906667pt;}
.x14{left:399.426655pt;}
.x5{left:401.666655pt;}
.xd{left:411.266655pt;}
.x16{left:435.106655pt;}
.x12{left:453.373333pt;}
.x18{left:459.293322pt;}
.x1{left:585.693333pt;}
.xe{left:595.613322pt;}
.x13{left:662.373333pt;}
.x15{left:665.413322pt;}
.x3{left:707.333322pt;}
}




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