
    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_5919fb334c40ea57ccdd5678.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ccb5a3cea0fc13cac3e4bc48.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_538f41c26373c492ebdb09e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_45b6451dd972e40bb907c39b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_1a6dcb39b7c8274a4ddd7b14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_331b82f0bbaa46ccec6e4ec2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_34977cbf55649811a60616a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_cc9db11049cdc1fbf13f615f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_63cf429f4d54622083cbdbcd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_c950d3266070de56a1266739.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_ea7df5e38eba6fa4904321ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.977539;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:ffc;src:url('chunks/assets/font_52bc0982b96fb3f9e8730ae2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.977539;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:ffd;src:url('chunks/assets/font_c5bb7999caf5e8dd9cd62c52.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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);}
.m2{transform:matrix(0.275650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275650,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.276875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276875,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v2{vertical-align:30.240000px;}
.ls8{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.105600px;}
.ls19{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls16{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.311760px;}
.ls5{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.080000px;}
.lse{letter-spacing:3.780000px;}
.lsd{letter-spacing:4.500000px;}
.ls1f{letter-spacing:27.540000px;}
.ls13{letter-spacing:74.826720px;}
.ls12{letter-spacing:78.426720px;}
.ls14{letter-spacing:95.106720px;}
.ls11{letter-spacing:98.706720px;}
.ls18{letter-spacing:110.250720px;}
.ls17{letter-spacing:110.970720px;}
.lsf{letter-spacing:118.146720px;}
.ls3{letter-spacing:269.202240px;}
.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;}
}
.ws5{word-spacing:-41.940000px;}
.ws9{word-spacing:-16.020000px;}
.ws3{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.824000px;}
.ws6{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._14{margin-left:-3.295680px;}
._13{margin-left:-2.098320px;}
._1{margin-left:-1.080000px;}
._0{width:1.056000px;}
._5{width:2.350320px;}
._6{width:3.560400px;}
._b{width:4.652160px;}
._7{width:6.394320px;}
._4{width:7.410240px;}
._3{width:8.426160px;}
._11{width:9.856560px;}
._10{width:10.995840px;}
._8{width:12.310560px;}
._9{width:13.312080px;}
._27{width:15.960240px;}
._a{width:16.971840px;}
._d{width:18.187440px;}
._c{width:19.262400px;}
._f{width:20.451600px;}
._e{width:21.513600px;}
._12{width:22.757280px;}
._17{width:24.680880px;}
._22{width:25.716480px;}
._26{width:26.796000px;}
._1e{width:28.704480px;}
._1d{width:30.119040px;}
._28{width:31.333920px;}
._18{width:32.628960px;}
._1a{width:33.883920px;}
._19{width:35.138880px;}
._1b{width:36.453600px;}
._24{width:38.304000px;}
._23{width:39.412800px;}
._1c{width:40.566720px;}
._25{width:42.112320px;}
._29{width:43.385760px;}
._2a{width:44.784000px;}
._1f{width:47.568960px;}
._20{width:48.752160px;}
._2c{width:50.763360px;}
._21{width:51.831600px;}
._16{width:53.365680px;}
._31{width:56.473200px;}
._32{width:58.490880px;}
._38{width:64.538880px;}
._37{width:65.768880px;}
._39{width:67.767840px;}
._33{width:71.592480px;}
._34{width:73.054080px;}
._15{width:81.452880px;}
._2b{width:98.604000px;}
._35{width:180.833280px;}
._2f{width:208.622160px;}
._30{width:210.374880px;}
._2e{width:246.718080px;}
._2d{width:247.884480px;}
._36{width:273.182640px;}
._2{width:2930.897760px;}
.fc4{color:transparent;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(57,109,140);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs8{font-size:167.760000px;}
.y4c{bottom:-6.660000px;}
.y0{bottom:0.000000px;}
.y37{bottom:4.500000px;}
.y47{bottom:6.120000px;}
.y4b{bottom:11.160000px;}
.y49{bottom:13.320000px;}
.y45{bottom:15.480000px;}
.y36{bottom:23.220000px;}
.y35{bottom:41.760000px;}
.y44{bottom:43.560000px;}
.y3{bottom:56.736000px;}
.y34{bottom:60.480000px;}
.y4f{bottom:68.076000px;}
.y43{bottom:71.634000px;}
.y2{bottom:72.216000px;}
.y33{bottom:79.020000px;}
.y4e{bottom:83.556000px;}
.y3d{bottom:85.716000px;}
.y1{bottom:88.776000px;}
.y42{bottom:89.994000px;}
.y32{bottom:97.740000px;}
.y4d{bottom:100.116000px;}
.y41{bottom:108.174000px;}
.y31{bottom:116.280000px;}
.y40{bottom:125.634000px;}
.y30{bottom:134.820000px;}
.y117{bottom:141.156000px;}
.ycb{bottom:141.336000px;}
.ybb{bottom:141.516000px;}
.yed{bottom:141.696000px;}
.y103{bottom:142.236000px;}
.y3f{bottom:142.914000px;}
.y76{bottom:142.956000px;}
.y2f{bottom:153.540000px;}
.y3e{bottom:159.834000px;}
.y116{bottom:166.890000px;}
.yca{bottom:167.250000px;}
.yba{bottom:167.430000px;}
.yec{bottom:167.610000px;}
.y99{bottom:167.790000px;}
.y102{bottom:168.150000px;}
.y75{bottom:168.690000px;}
.y2e{bottom:172.080000px;}
.y12b{bottom:189.390000px;}
.y2d{bottom:190.830000px;}
.y115{bottom:192.990000px;}
.yc9{bottom:193.350000px;}
.yb9{bottom:193.530000px;}
.y98{bottom:193.710000px;}
.y101{bottom:194.250000px;}
.y74{bottom:194.610000px;}
.y2c{bottom:209.370000px;}
.y12a{bottom:215.490000px;}
.y114{bottom:218.910000px;}
.yc8{bottom:219.090000px;}
.yeb{bottom:219.450000px;}
.y97{bottom:219.630000px;}
.y100{bottom:219.990000px;}
.y73{bottom:220.530000px;}
.y20{bottom:223.590000px;}
.y2b{bottom:227.910000px;}
.y129{bottom:241.590000px;}
.y1f{bottom:242.130000px;}
.y113{bottom:244.830000px;}
.yc7{bottom:245.010000px;}
.yb8{bottom:245.550000px;}
.y96{bottom:245.730000px;}
.yff{bottom:245.910000px;}
.y72{bottom:246.270000px;}
.y2a{bottom:246.630000px;}
.y1e{bottom:260.850000px;}
.y29{bottom:265.170000px;}
.y128{bottom:267.690000px;}
.y112{bottom:270.570000px;}
.yc6{bottom:270.930000px;}
.yb7{bottom:271.290000px;}
.y95{bottom:271.470000px;}
.yfe{bottom:271.830000px;}
.y71{bottom:272.190000px;}
.y3c{bottom:277.410000px;}
.y1d{bottom:280.110000px;}
.y28{bottom:283.890000px;}
.y127{bottom:293.835000px;}
.ye5{bottom:296.715000px;}
.yc5{bottom:297.075000px;}
.yb6{bottom:297.255000px;}
.y94{bottom:297.435000px;}
.yfd{bottom:297.975000px;}
.y70{bottom:298.155000px;}
.y1c{bottom:299.550000px;}
.y27{bottom:302.430000px;}
.y3b{bottom:303.375000px;}
.y3a{bottom:309.855000px;}
.y1b{bottom:318.810000px;}
.y126{bottom:319.935000px;}
.y26{bottom:320.970000px;}
.ye4{bottom:322.635000px;}
.yc4{bottom:322.815000px;}
.yb5{bottom:323.175000px;}
.y93{bottom:323.355000px;}
.yfc{bottom:323.895000px;}
.y6f{bottom:324.255000px;}
.y39{bottom:329.295000px;}
.y1a{bottom:338.250000px;}
.y25{bottom:339.690000px;}
.y125{bottom:346.035000px;}
.y38{bottom:348.555000px;}
.yc3{bottom:348.735000px;}
.yb4{bottom:348.915000px;}
.y92{bottom:349.275000px;}
.yfb{bottom:349.635000px;}
.y6e{bottom:350.175000px;}
.y19{bottom:357.150000px;}
.y24{bottom:358.230000px;}
.y14{bottom:362.955000px;}
.y124{bottom:372.135000px;}
.ye3{bottom:374.475000px;}
.yc2{bottom:374.655000px;}
.yb3{bottom:374.835000px;}
.y91{bottom:375.015000px;}
.yea{bottom:375.375000px;}
.yfa{bottom:375.555000px;}
.y6d{bottom:375.915000px;}
.y18{bottom:376.050000px;}
.y23{bottom:376.950000px;}
.y17{bottom:394.950000px;}
.y22{bottom:395.490000px;}
.y123{bottom:398.235000px;}
.ye2{bottom:400.215000px;}
.yc1{bottom:400.755000px;}
.y90{bottom:400.935000px;}
.ye9{bottom:401.115000px;}
.yf9{bottom:401.655000px;}
.y6c{bottom:401.835000px;}
.y16{bottom:413.850000px;}
.y21{bottom:414.210000px;}
.y122{bottom:424.335000px;}
.ye1{bottom:426.135000px;}
.yc0{bottom:426.675000px;}
.y8f{bottom:426.855000px;}
.yb2{bottom:427.035000px;}
.yf8{bottom:427.575000px;}
.y6b{bottom:427.755000px;}
.y15{bottom:432.750000px;}
.y121{bottom:450.435000px;}
.ye0{bottom:452.055000px;}
.y111{bottom:452.235000px;}
.ybf{bottom:452.415000px;}
.y8e{bottom:452.775000px;}
.yb1{bottom:452.955000px;}
.yf7{bottom:453.495000px;}
.y6a{bottom:453.675000px;}
.y120{bottom:476.535000px;}
.ydf{bottom:477.975000px;}
.y110{bottom:478.155000px;}
.ybe{bottom:478.515000px;}
.y8d{bottom:478.875000px;}
.yf6{bottom:479.235000px;}
.y69{bottom:479.415000px;}
.y11f{bottom:502.635000px;}
.yde{bottom:503.715000px;}
.y10f{bottom:504.075000px;}
.ybd{bottom:504.435000px;}
.yb0{bottom:504.615000px;}
.y8c{bottom:504.975000px;}
.y68{bottom:505.335000px;}
.y11e{bottom:528.735000px;}
.ydd{bottom:529.815000px;}
.ybc{bottom:530.355000px;}
.yaf{bottom:530.535000px;}
.y8b{bottom:530.715000px;}
.y67{bottom:531.255000px;}
.y11d{bottom:554.865000px;}
.ydc{bottom:555.765000px;}
.y10e{bottom:555.945000px;}
.yae{bottom:556.485000px;}
.y8a{bottom:556.665000px;}
.y66{bottom:557.205000px;}
.y11c{bottom:580.965000px;}
.ydb{bottom:581.685000px;}
.y10d{bottom:581.865000px;}
.yad{bottom:582.405000px;}
.y89{bottom:582.585000px;}
.y65{bottom:582.945000px;}
.yf5{bottom:602.385000px;}
.y11b{bottom:607.065000px;}
.yda{bottom:607.605000px;}
.y10c{bottom:607.785000px;}
.yac{bottom:608.145000px;}
.y88{bottom:608.505000px;}
.y64{bottom:608.865000px;}
.yf4{bottom:621.465000px;}
.y11a{bottom:633.165000px;}
.yd9{bottom:633.345000px;}
.y10b{bottom:633.705000px;}
.yab{bottom:634.065000px;}
.y87{bottom:634.245000px;}
.y63{bottom:634.785000px;}
.yf3{bottom:640.545000px;}
.yd8{bottom:659.265000px;}
.y10a{bottom:659.445000px;}
.yf2{bottom:659.805000px;}
.yaa{bottom:659.985000px;}
.y86{bottom:660.165000px;}
.ye8{bottom:660.345000px;}
.y62{bottom:660.705000px;}
.yd7{bottom:685.185000px;}
.y109{bottom:685.365000px;}
.ya9{bottom:685.905000px;}
.y85{bottom:686.085000px;}
.ye7{bottom:686.265000px;}
.y61{bottom:686.445000px;}
.yd6{bottom:711.105000px;}
.y108{bottom:711.465000px;}
.ya8{bottom:711.645000px;}
.y84{bottom:712.005000px;}
.ye6{bottom:712.185000px;}
.y60{bottom:712.365000px;}
.yd5{bottom:736.845000px;}
.y107{bottom:737.385000px;}
.ya7{bottom:737.565000px;}
.y83{bottom:738.105000px;}
.y5f{bottom:738.285000px;}
.yd4{bottom:762.765000px;}
.y106{bottom:763.305000px;}
.ya6{bottom:763.485000px;}
.y119{bottom:763.665000px;}
.y82{bottom:763.845000px;}
.y5e{bottom:764.205000px;}
.yd3{bottom:788.685000px;}
.ya5{bottom:789.225000px;}
.y118{bottom:789.585000px;}
.y81{bottom:789.765000px;}
.y5d{bottom:789.945000px;}
.yd2{bottom:814.470000px;}
.ya4{bottom:815.190000px;}
.yf1{bottom:815.370000px;}
.y80{bottom:815.730000px;}
.y5c{bottom:815.910000px;}
.y13{bottom:817.530000px;}
.y12{bottom:838.230000px;}
.yd1{bottom:840.390000px;}
.ya3{bottom:841.110000px;}
.yf0{bottom:841.290000px;}
.y7f{bottom:841.470000px;}
.y5b{bottom:841.830000px;}
.y11{bottom:858.030000px;}
.yd0{bottom:866.490000px;}
.ya2{bottom:867.030000px;}
.yef{bottom:867.210000px;}
.y7e{bottom:867.390000px;}
.y5a{bottom:867.570000px;}
.y10{bottom:890.430000px;}
.ycf{bottom:892.590000px;}
.ya1{bottom:892.770000px;}
.yee{bottom:893.130000px;}
.y7d{bottom:893.310000px;}
.y59{bottom:893.490000px;}
.yf{bottom:915.990000px;}
.yce{bottom:918.510000px;}
.ya0{bottom:918.690000px;}
.y105{bottom:918.870000px;}
.y7c{bottom:919.230000px;}
.y58{bottom:919.410000px;}
.ye{bottom:944.250000px;}
.y9f{bottom:944.610000px;}
.y104{bottom:944.790000px;}
.y7b{bottom:944.970000px;}
.y57{bottom:945.330000px;}
.y9e{bottom:970.530000px;}
.y7a{bottom:970.890000px;}
.y56{bottom:971.070000px;}
.yd{bottom:972.330000px;}
.y9d{bottom:996.270000px;}
.ycd{bottom:996.630000px;}
.y79{bottom:996.810000px;}
.y55{bottom:996.990000px;}
.yc{bottom:997.710000px;}
.yb{bottom:1014.090000px;}
.y4a{bottom:1015.530000px;}
.y9c{bottom:1022.190000px;}
.ycc{bottom:1022.370000px;}
.y78{bottom:1022.730000px;}
.y54{bottom:1022.910000px;}
.ya{bottom:1030.650000px;}
.y48{bottom:1045.410000px;}
.y9{bottom:1047.030000px;}
.y9b{bottom:1048.290000px;}
.y77{bottom:1048.470000px;}
.y53{bottom:1048.830000px;}
.y8{bottom:1063.590000px;}
.y9a{bottom:1074.420000px;}
.y52{bottom:1074.600000px;}
.y7{bottom:1080.000000px;}
.y46{bottom:1086.300000px;}
.y6{bottom:1096.560000px;}
.y51{bottom:1100.520000px;}
.y5{bottom:1112.940000px;}
.y50{bottom:1126.440000px;}
.y4{bottom:1129.320000px;}
.h13{height:27.540000px;}
.h12{height:27.576000px;}
.h6{height:37.771172px;}
.h15{height:41.726953px;}
.hf{height:45.360000px;}
.h3{height:47.980898px;}
.h14{height:52.817344px;}
.he{height:52.971680px;}
.h2{height:52.998047px;}
.hd{height:53.709961px;}
.ha{height:58.621992px;}
.hb{height:58.651172px;}
.h1{height:59.439023px;}
.h9{height:60.226875px;}
.h16{height:61.423863px;}
.h4{height:64.249453px;}
.h7{height:65.010937px;}
.h5{height:67.945078px;}
.h10{height:117.137109px;}
.h11{height:164.647266px;}
.hc{height:172.440000px;}
.h8{height:446.835000px;}
.h0{height:1188.000000px;}
.w5{width:182.370000px;}
.w2{width:201.990000px;}
.w7{width:205.950000px;}
.w6{width:283.530000px;}
.w3{width:554.145000px;}
.w4{width:739.950000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x15{left:68.939986px;}
.x8{left:73.259986px;}
.x3{left:74.339986px;}
.x13{left:77.219986px;}
.x2{left:91.439986px;}
.x4{left:99.935986px;}
.x14{left:117.035986px;}
.xf{left:124.380000px;}
.xd{left:170.850000px;}
.x7{left:220.529986px;}
.x9{left:276.330000px;}
.x6{left:278.669986px;}
.xe{left:310.575000px;}
.x10{left:338.655000px;}
.x5{left:346.574986px;}
.xc{left:364.575000px;}
.xa{left:472.754986px;}
.x12{left:515.264986px;}
.x1{left:819.329986px;}
.x11{left:832.829986px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v2{vertical-align:26.880000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.093867pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls16{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.277120pt;}
.ls5{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.960000pt;}
.lse{letter-spacing:3.360000pt;}
.lsd{letter-spacing:4.000000pt;}
.ls1f{letter-spacing:24.480000pt;}
.ls13{letter-spacing:66.512640pt;}
.ls12{letter-spacing:69.712640pt;}
.ls14{letter-spacing:84.539307pt;}
.ls11{letter-spacing:87.739307pt;}
.ls18{letter-spacing:98.000640pt;}
.ls17{letter-spacing:98.640640pt;}
.lsf{letter-spacing:105.019307pt;}
.ls3{letter-spacing:239.290880pt;}
.ws5{word-spacing:-37.280000pt;}
.ws9{word-spacing:-14.240000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.288000pt;}
.ws6{word-spacing:-12.005120pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._14{margin-left:-2.929493pt;}
._13{margin-left:-1.865173pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.938667pt;}
._5{width:2.089173pt;}
._6{width:3.164800pt;}
._b{width:4.135253pt;}
._7{width:5.683840pt;}
._4{width:6.586880pt;}
._3{width:7.489920pt;}
._11{width:8.761387pt;}
._10{width:9.774080pt;}
._8{width:10.942720pt;}
._9{width:11.832960pt;}
._27{width:14.186880pt;}
._a{width:15.086080pt;}
._d{width:16.166613pt;}
._c{width:17.122133pt;}
._f{width:18.179200pt;}
._e{width:19.123200pt;}
._12{width:20.228693pt;}
._17{width:21.938560pt;}
._22{width:22.859093pt;}
._26{width:23.818667pt;}
._1e{width:25.515093pt;}
._1d{width:26.772480pt;}
._28{width:27.852373pt;}
._18{width:29.003520pt;}
._1a{width:30.119040pt;}
._19{width:31.234560pt;}
._1b{width:32.403200pt;}
._24{width:34.048000pt;}
._23{width:35.033600pt;}
._1c{width:36.059307pt;}
._25{width:37.433173pt;}
._29{width:38.565120pt;}
._2a{width:39.808000pt;}
._1f{width:42.283520pt;}
._20{width:43.335253pt;}
._2c{width:45.122987pt;}
._21{width:46.072533pt;}
._16{width:47.436160pt;}
._31{width:50.198400pt;}
._32{width:51.991893pt;}
._38{width:57.367893pt;}
._37{width:58.461227pt;}
._39{width:60.238080pt;}
._33{width:63.637760pt;}
._34{width:64.936960pt;}
._15{width:72.402560pt;}
._2b{width:87.648000pt;}
._35{width:160.740693pt;}
._2f{width:185.441920pt;}
._30{width:186.999893pt;}
._2e{width:219.304960pt;}
._2d{width:220.341760pt;}
._36{width:242.829013pt;}
._2{width:2605.242453pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs8{font-size:149.120000pt;}
.y4c{bottom:-5.920000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:4.000000pt;}
.y47{bottom:5.440000pt;}
.y4b{bottom:9.920000pt;}
.y49{bottom:11.840000pt;}
.y45{bottom:13.760000pt;}
.y36{bottom:20.640000pt;}
.y35{bottom:37.120000pt;}
.y44{bottom:38.720000pt;}
.y3{bottom:50.432000pt;}
.y34{bottom:53.760000pt;}
.y4f{bottom:60.512000pt;}
.y43{bottom:63.674667pt;}
.y2{bottom:64.192000pt;}
.y33{bottom:70.240000pt;}
.y4e{bottom:74.272000pt;}
.y3d{bottom:76.192000pt;}
.y1{bottom:78.912000pt;}
.y42{bottom:79.994667pt;}
.y32{bottom:86.880000pt;}
.y4d{bottom:88.992000pt;}
.y41{bottom:96.154667pt;}
.y31{bottom:103.360000pt;}
.y40{bottom:111.674667pt;}
.y30{bottom:119.840000pt;}
.y117{bottom:125.472000pt;}
.ycb{bottom:125.632000pt;}
.ybb{bottom:125.792000pt;}
.yed{bottom:125.952000pt;}
.y103{bottom:126.432000pt;}
.y3f{bottom:127.034667pt;}
.y76{bottom:127.072000pt;}
.y2f{bottom:136.480000pt;}
.y3e{bottom:142.074667pt;}
.y116{bottom:148.346667pt;}
.yca{bottom:148.666667pt;}
.yba{bottom:148.826667pt;}
.yec{bottom:148.986667pt;}
.y99{bottom:149.146667pt;}
.y102{bottom:149.466667pt;}
.y75{bottom:149.946667pt;}
.y2e{bottom:152.960000pt;}
.y12b{bottom:168.346667pt;}
.y2d{bottom:169.626667pt;}
.y115{bottom:171.546667pt;}
.yc9{bottom:171.866667pt;}
.yb9{bottom:172.026667pt;}
.y98{bottom:172.186667pt;}
.y101{bottom:172.666667pt;}
.y74{bottom:172.986667pt;}
.y2c{bottom:186.106667pt;}
.y12a{bottom:191.546667pt;}
.y114{bottom:194.586667pt;}
.yc8{bottom:194.746667pt;}
.yeb{bottom:195.066667pt;}
.y97{bottom:195.226667pt;}
.y100{bottom:195.546667pt;}
.y73{bottom:196.026667pt;}
.y20{bottom:198.746667pt;}
.y2b{bottom:202.586667pt;}
.y129{bottom:214.746667pt;}
.y1f{bottom:215.226667pt;}
.y113{bottom:217.626667pt;}
.yc7{bottom:217.786667pt;}
.yb8{bottom:218.266667pt;}
.y96{bottom:218.426667pt;}
.yff{bottom:218.586667pt;}
.y72{bottom:218.906667pt;}
.y2a{bottom:219.226667pt;}
.y1e{bottom:231.866667pt;}
.y29{bottom:235.706667pt;}
.y128{bottom:237.946667pt;}
.y112{bottom:240.506667pt;}
.yc6{bottom:240.826667pt;}
.yb7{bottom:241.146667pt;}
.y95{bottom:241.306667pt;}
.yfe{bottom:241.626667pt;}
.y71{bottom:241.946667pt;}
.y3c{bottom:246.586667pt;}
.y1d{bottom:248.986667pt;}
.y28{bottom:252.346667pt;}
.y127{bottom:261.186667pt;}
.ye5{bottom:263.746667pt;}
.yc5{bottom:264.066667pt;}
.yb6{bottom:264.226667pt;}
.y94{bottom:264.386667pt;}
.yfd{bottom:264.866667pt;}
.y70{bottom:265.026667pt;}
.y1c{bottom:266.266667pt;}
.y27{bottom:268.826667pt;}
.y3b{bottom:269.666667pt;}
.y3a{bottom:275.426667pt;}
.y1b{bottom:283.386667pt;}
.y126{bottom:284.386667pt;}
.y26{bottom:285.306667pt;}
.ye4{bottom:286.786667pt;}
.yc4{bottom:286.946667pt;}
.yb5{bottom:287.266667pt;}
.y93{bottom:287.426667pt;}
.yfc{bottom:287.906667pt;}
.y6f{bottom:288.226667pt;}
.y39{bottom:292.706667pt;}
.y1a{bottom:300.666667pt;}
.y25{bottom:301.946667pt;}
.y125{bottom:307.586667pt;}
.y38{bottom:309.826667pt;}
.yc3{bottom:309.986667pt;}
.yb4{bottom:310.146667pt;}
.y92{bottom:310.466667pt;}
.yfb{bottom:310.786667pt;}
.y6e{bottom:311.266667pt;}
.y19{bottom:317.466667pt;}
.y24{bottom:318.426667pt;}
.y14{bottom:322.626667pt;}
.y124{bottom:330.786667pt;}
.ye3{bottom:332.866667pt;}
.yc2{bottom:333.026667pt;}
.yb3{bottom:333.186667pt;}
.y91{bottom:333.346667pt;}
.yea{bottom:333.666667pt;}
.yfa{bottom:333.826667pt;}
.y6d{bottom:334.146667pt;}
.y18{bottom:334.266667pt;}
.y23{bottom:335.066667pt;}
.y17{bottom:351.066667pt;}
.y22{bottom:351.546667pt;}
.y123{bottom:353.986667pt;}
.ye2{bottom:355.746667pt;}
.yc1{bottom:356.226667pt;}
.y90{bottom:356.386667pt;}
.ye9{bottom:356.546667pt;}
.yf9{bottom:357.026667pt;}
.y6c{bottom:357.186667pt;}
.y16{bottom:367.866667pt;}
.y21{bottom:368.186667pt;}
.y122{bottom:377.186667pt;}
.ye1{bottom:378.786667pt;}
.yc0{bottom:379.266667pt;}
.y8f{bottom:379.426667pt;}
.yb2{bottom:379.586667pt;}
.yf8{bottom:380.066667pt;}
.y6b{bottom:380.226667pt;}
.y15{bottom:384.666667pt;}
.y121{bottom:400.386667pt;}
.ye0{bottom:401.826667pt;}
.y111{bottom:401.986667pt;}
.ybf{bottom:402.146667pt;}
.y8e{bottom:402.466667pt;}
.yb1{bottom:402.626667pt;}
.yf7{bottom:403.106667pt;}
.y6a{bottom:403.266667pt;}
.y120{bottom:423.586667pt;}
.ydf{bottom:424.866667pt;}
.y110{bottom:425.026667pt;}
.ybe{bottom:425.346667pt;}
.y8d{bottom:425.666667pt;}
.yf6{bottom:425.986667pt;}
.y69{bottom:426.146667pt;}
.y11f{bottom:446.786667pt;}
.yde{bottom:447.746667pt;}
.y10f{bottom:448.066667pt;}
.ybd{bottom:448.386667pt;}
.yb0{bottom:448.546667pt;}
.y8c{bottom:448.866667pt;}
.y68{bottom:449.186667pt;}
.y11e{bottom:469.986667pt;}
.ydd{bottom:470.946667pt;}
.ybc{bottom:471.426667pt;}
.yaf{bottom:471.586667pt;}
.y8b{bottom:471.746667pt;}
.y67{bottom:472.226667pt;}
.y11d{bottom:493.213333pt;}
.ydc{bottom:494.013333pt;}
.y10e{bottom:494.173333pt;}
.yae{bottom:494.653333pt;}
.y8a{bottom:494.813333pt;}
.y66{bottom:495.293333pt;}
.y11c{bottom:516.413333pt;}
.ydb{bottom:517.053333pt;}
.y10d{bottom:517.213333pt;}
.yad{bottom:517.693333pt;}
.y89{bottom:517.853333pt;}
.y65{bottom:518.173333pt;}
.yf5{bottom:535.453333pt;}
.y11b{bottom:539.613333pt;}
.yda{bottom:540.093333pt;}
.y10c{bottom:540.253333pt;}
.yac{bottom:540.573333pt;}
.y88{bottom:540.893333pt;}
.y64{bottom:541.213333pt;}
.yf4{bottom:552.413333pt;}
.y11a{bottom:562.813333pt;}
.yd9{bottom:562.973333pt;}
.y10b{bottom:563.293333pt;}
.yab{bottom:563.613333pt;}
.y87{bottom:563.773333pt;}
.y63{bottom:564.253333pt;}
.yf3{bottom:569.373333pt;}
.yd8{bottom:586.013333pt;}
.y10a{bottom:586.173333pt;}
.yf2{bottom:586.493333pt;}
.yaa{bottom:586.653333pt;}
.y86{bottom:586.813333pt;}
.ye8{bottom:586.973333pt;}
.y62{bottom:587.293333pt;}
.yd7{bottom:609.053333pt;}
.y109{bottom:609.213333pt;}
.ya9{bottom:609.693333pt;}
.y85{bottom:609.853333pt;}
.ye7{bottom:610.013333pt;}
.y61{bottom:610.173333pt;}
.yd6{bottom:632.093333pt;}
.y108{bottom:632.413333pt;}
.ya8{bottom:632.573333pt;}
.y84{bottom:632.893333pt;}
.ye6{bottom:633.053333pt;}
.y60{bottom:633.213333pt;}
.yd5{bottom:654.973333pt;}
.y107{bottom:655.453333pt;}
.ya7{bottom:655.613333pt;}
.y83{bottom:656.093333pt;}
.y5f{bottom:656.253333pt;}
.yd4{bottom:678.013333pt;}
.y106{bottom:678.493333pt;}
.ya6{bottom:678.653333pt;}
.y119{bottom:678.813333pt;}
.y82{bottom:678.973333pt;}
.y5e{bottom:679.293333pt;}
.yd3{bottom:701.053333pt;}
.ya5{bottom:701.533333pt;}
.y118{bottom:701.853333pt;}
.y81{bottom:702.013333pt;}
.y5d{bottom:702.173333pt;}
.yd2{bottom:723.973333pt;}
.ya4{bottom:724.613333pt;}
.yf1{bottom:724.773333pt;}
.y80{bottom:725.093333pt;}
.y5c{bottom:725.253333pt;}
.y13{bottom:726.693333pt;}
.y12{bottom:745.093333pt;}
.yd1{bottom:747.013333pt;}
.ya3{bottom:747.653333pt;}
.yf0{bottom:747.813333pt;}
.y7f{bottom:747.973333pt;}
.y5b{bottom:748.293333pt;}
.y11{bottom:762.693333pt;}
.yd0{bottom:770.213333pt;}
.ya2{bottom:770.693333pt;}
.yef{bottom:770.853333pt;}
.y7e{bottom:771.013333pt;}
.y5a{bottom:771.173333pt;}
.y10{bottom:791.493333pt;}
.ycf{bottom:793.413333pt;}
.ya1{bottom:793.573333pt;}
.yee{bottom:793.893333pt;}
.y7d{bottom:794.053333pt;}
.y59{bottom:794.213333pt;}
.yf{bottom:814.213333pt;}
.yce{bottom:816.453333pt;}
.ya0{bottom:816.613333pt;}
.y105{bottom:816.773333pt;}
.y7c{bottom:817.093333pt;}
.y58{bottom:817.253333pt;}
.ye{bottom:839.333333pt;}
.y9f{bottom:839.653333pt;}
.y104{bottom:839.813333pt;}
.y7b{bottom:839.973333pt;}
.y57{bottom:840.293333pt;}
.y9e{bottom:862.693333pt;}
.y7a{bottom:863.013333pt;}
.y56{bottom:863.173333pt;}
.yd{bottom:864.293333pt;}
.y9d{bottom:885.573333pt;}
.ycd{bottom:885.893333pt;}
.y79{bottom:886.053333pt;}
.y55{bottom:886.213333pt;}
.yc{bottom:886.853333pt;}
.yb{bottom:901.413333pt;}
.y4a{bottom:902.693333pt;}
.y9c{bottom:908.613333pt;}
.ycc{bottom:908.773333pt;}
.y78{bottom:909.093333pt;}
.y54{bottom:909.253333pt;}
.ya{bottom:916.133333pt;}
.y48{bottom:929.253333pt;}
.y9{bottom:930.693333pt;}
.y9b{bottom:931.813333pt;}
.y77{bottom:931.973333pt;}
.y53{bottom:932.293333pt;}
.y8{bottom:945.413333pt;}
.y9a{bottom:955.040000pt;}
.y52{bottom:955.200000pt;}
.y7{bottom:960.000000pt;}
.y46{bottom:965.600000pt;}
.y6{bottom:974.720000pt;}
.y51{bottom:978.240000pt;}
.y5{bottom:989.280000pt;}
.y50{bottom:1001.280000pt;}
.y4{bottom:1003.840000pt;}
.h13{height:24.480000pt;}
.h12{height:24.512000pt;}
.h6{height:33.574375pt;}
.h15{height:37.090625pt;}
.hf{height:40.320000pt;}
.h3{height:42.649687pt;}
.h14{height:46.948750pt;}
.he{height:47.085938pt;}
.h2{height:47.109375pt;}
.hd{height:47.742188pt;}
.ha{height:52.108438pt;}
.hb{height:52.134375pt;}
.h1{height:52.834688pt;}
.h9{height:53.535000pt;}
.h16{height:54.598989pt;}
.h4{height:57.110625pt;}
.h7{height:57.787500pt;}
.h5{height:60.395625pt;}
.h10{height:104.121875pt;}
.h11{height:146.353125pt;}
.hc{height:153.280000pt;}
.h8{height:397.186667pt;}
.h0{height:1056.000000pt;}
.w5{width:162.106667pt;}
.w2{width:179.546667pt;}
.w7{width:183.066667pt;}
.w6{width:252.026667pt;}
.w3{width:492.573333pt;}
.w4{width:657.733333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x15{left:61.279988pt;}
.x8{left:65.119988pt;}
.x3{left:66.079988pt;}
.x13{left:68.639988pt;}
.x2{left:81.279988pt;}
.x4{left:88.831988pt;}
.x14{left:104.031988pt;}
.xf{left:110.560000pt;}
.xd{left:151.866667pt;}
.x7{left:196.026655pt;}
.x9{left:245.626667pt;}
.x6{left:247.706655pt;}
.xe{left:276.066667pt;}
.x10{left:301.026667pt;}
.x5{left:308.066655pt;}
.xc{left:324.066667pt;}
.xa{left:420.226655pt;}
.x12{left:458.013321pt;}
.x1{left:728.293321pt;}
.x11{left:740.293321pt;}
}




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