
    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_207a7c0d015a5765cfdec458.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989258;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_cad0142f5eabc29c79d861e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959961;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_478d56ee80db7b93d0731a15.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175000;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_6e785838f2c2644190553200.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_b43fcadaf5103daf2bb3501d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.221000;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_674dc103c851fb5dd153d2b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.192000;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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_87c1070a441f774956691d7a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_4feb70fc6a759177265b0051.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979980;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_628ef907a755958e370f756a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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:ffe;src:url('chunks/assets/font_18bdee763212d2c762fd55b2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.936035;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:fff;src:url('chunks/assets/font_3ec9f5bf27503338ba2d6289.woff2')format("woff");}.fff{font-family:fff;line-height:0.970215;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:ff10;src:url('chunks/assets/font_21ea8bf102970708f3d359f7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.989258;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.200000px;}
.ls3{letter-spacing:-0.900000px;}
.ls4{letter-spacing:-0.486000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.129600px;}
.ls6{letter-spacing:0.150000px;}
.ls12{letter-spacing:0.156000px;}
.ls9{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259200px;}
.ls16{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.619200px;}
.lsc{letter-spacing:1.231200px;}
.ls14{letter-spacing:1.554000px;}
.ls15{letter-spacing:1.698000px;}
.ls0{letter-spacing:1.800000px;}
.ls13{letter-spacing:1.864800px;}
.lsa{letter-spacing:1.920000px;}
.ls11{letter-spacing:2.044800px;}
.lsd{letter-spacing:3.316800px;}
.ls7{letter-spacing:3.780000px;}
.ls1{letter-spacing:5.400000px;}
.ls8{letter-spacing:850.255200px;}
.lsf{letter-spacing:853.855200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-64.800000px;}
.ws4{word-spacing:-36.000000px;}
.ws8{word-spacing:-23.220000px;}
.ws6{word-spacing:-22.140000px;}
.ws10{word-spacing:-17.833200px;}
.ws9{word-spacing:-17.755200px;}
.wsf{word-spacing:-17.689200px;}
.wsc{word-spacing:-17.380800px;}
.wsa{word-spacing:-17.158800px;}
.ws0{word-spacing:-17.100000px;}
.wsb{word-spacing:-16.768800px;}
.ws2{word-spacing:-16.524000px;}
.ws11{word-spacing:-16.423200px;}
.wsd{word-spacing:-16.264800px;}
.wse{word-spacing:-16.135200px;}
.ws3{word-spacing:-16.038000px;}
.ws1{word-spacing:-14.342400px;}
.ws7{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-6.626400px;}
._9{margin-left:-5.617200px;}
._b{margin-left:-4.506000px;}
._7{margin-left:-3.482400px;}
._2{margin-left:-2.386800px;}
._0{margin-left:-1.162800px;}
._1{width:1.591200px;}
._3{width:2.815200px;}
._4{width:4.090800px;}
._5{width:5.788800px;}
._e{width:6.901200px;}
._8{width:7.926000px;}
._25{width:8.949600px;}
._d{width:10.424400px;}
._f{width:11.664000px;}
._11{width:13.411200px;}
._10{width:15.045600px;}
._6{width:16.990800px;}
._15{width:18.964800px;}
._2d{width:20.062800px;}
._14{width:21.146400px;}
._12{width:22.525200px;}
._24{width:24.048000px;}
._13{width:25.304400px;}
._18{width:26.691600px;}
._1c{width:27.994800px;}
._19{width:29.258400px;}
._23{width:30.546000px;}
._1a{width:32.425200px;}
._1b{width:33.459600px;}
._1f{width:35.445600px;}
._1d{width:36.830400px;}
._2f{width:38.744400px;}
._1e{width:40.058400px;}
._2e{width:41.224800px;}
._2b{width:59.642400px;}
._2a{width:62.398800px;}
._29{width:63.651600px;}
._2c{width:65.788800px;}
._22{width:67.640400px;}
._21{width:71.434800px;}
._20{width:74.692800px;}
._30{width:88.160400px;}
._31{width:91.792800px;}
._33{width:95.450400px;}
._32{width:96.454800px;}
._27{width:103.220400px;}
._26{width:106.430400px;}
._28{width:110.346000px;}
._16{width:172.800000px;}
._c{width:198.684000px;}
._17{width:201.540000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(112,48,160);}
.fc6{color:rgb(36,36,36);}
.fc5{color:rgb(33,33,33);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:32.400000px;}
.fsa{font-size:36.000000px;}
.fsb{font-size:39.600000px;}
.fs8{font-size:46.800000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:57.600000px;}
.fs0{font-size:61.200000px;}
.fs4{font-size:64.800000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:90.000000px;}
.fs5{font-size:97.200000px;}
.fs3{font-size:108.150000px;}
.fs6{font-size:118.950000px;}
.y0{bottom:0.000000px;}
.y7{bottom:89.175000px;}
.y53{bottom:90.075000px;}
.y31{bottom:108.075000px;}
.y6{bottom:108.975000px;}
.y52{bottom:109.875000px;}
.y2e{bottom:127.875000px;}
.y158{bottom:128.775000px;}
.yc3{bottom:129.675000px;}
.yb8{bottom:131.475000px;}
.yf3{bottom:142.312500px;}
.y148{bottom:143.212500px;}
.y2d{bottom:144.112500px;}
.yc7{bottom:152.220000px;}
.y10a{bottom:155.805000px;}
.y111{bottom:158.505000px;}
.y120{bottom:159.420000px;}
.y9a{bottom:163.005000px;}
.y118{bottom:163.905000px;}
.y2c{bottom:164.805000px;}
.y70{bottom:169.305000px;}
.yb7{bottom:171.120000px;}
.yda{bottom:172.005000px;}
.y147{bottom:172.920000px;}
.y8c{bottom:173.805000px;}
.y2b{bottom:177.405000px;}
.y9f{bottom:182.805000px;}
.y117{bottom:183.705000px;}
.y11a{bottom:186.420000px;}
.y110{bottom:192.750000px;}
.y2a{bottom:193.650000px;}
.ybf{bottom:194.550000px;}
.y109{bottom:196.350000px;}
.y11f{bottom:197.250000px;}
.y6f{bottom:199.050000px;}
.yd9{bottom:200.850000px;}
.yf5{bottom:201.750000px;}
.y116{bottom:203.550000px;}
.y99{bottom:204.450000px;}
.y4d{bottom:206.250000px;}
.y157{bottom:208.950000px;}
.y29{bottom:209.850000px;}
.y9e{bottom:212.550000px;}
.yf2{bottom:215.250000px;}
.y10f{bottom:219.750000px;}
.yee{bottom:220.650000px;}
.y8b{bottom:221.550000px;}
.y115{bottom:222.450000px;}
.y146{bottom:223.350000px;}
.ybe{bottom:224.250000px;}
.y119{bottom:225.150000px;}
.y6e{bottom:228.750000px;}
.y28{bottom:230.550000px;}
.yf1{bottom:235.950000px;}
.y108{bottom:237.750000px;}
.y156{bottom:238.650000px;}
.y114{bottom:242.250000px;}
.y27{bottom:244.095000px;}
.yf4{bottom:244.995000px;}
.y98{bottom:245.880000px;}
.y4c{bottom:248.580000px;}
.y10e{bottom:252.195000px;}
.y145{bottom:253.080000px;}
.y9d{bottom:253.995000px;}
.yb6{bottom:254.880000px;}
.y6d{bottom:258.495000px;}
.yd8{bottom:260.280000px;}
.yed{bottom:261.195000px;}
.y11e{bottom:262.980000px;}
.y8a{bottom:263.880000px;}
.y10d{bottom:272.880000px;}
.yf0{bottom:278.295000px;}
.ybd{bottom:283.680000px;}
.yb5{bottom:284.595000px;}
.y6c{bottom:288.195000px;}
.y155{bottom:289.080000px;}
.y4b{bottom:289.980000px;}
.yec{bottom:290.880000px;}
.y9c{bottom:292.695000px;}
.y89{bottom:293.580000px;}
.y113{bottom:298.125000px;}
.yc2{bottom:299.925000px;}
.y144{bottom:303.525000px;}
.ybc{bottom:313.425000px;}
.yb4{bottom:314.325000px;}
.y6b{bottom:317.925000px;}
.yd7{bottom:318.825000px;}
.y107{bottom:319.725000px;}
.y88{bottom:323.325000px;}
.y10c{bottom:326.025000px;}
.y4a{bottom:327.825000px;}
.y97{bottom:329.625000px;}
.yeb{bottom:332.325000px;}
.y154{bottom:340.425000px;}
.y26{bottom:342.225000px;}
.yb3{bottom:343.125000px;}
.ybb{bottom:346.725000px;}
.y87{bottom:353.070000px;}
.y143{bottom:354.870000px;}
.yd6{bottom:357.555000px;}
.y6a{bottom:359.370000px;}
.y106{bottom:360.255000px;}
.y10b{bottom:361.155000px;}
.yea{bottom:362.070000px;}
.y153{bottom:370.155000px;}
.y49{bottom:374.655000px;}
.yba{bottom:378.255000px;}
.y86{bottom:381.870000px;}
.y142{bottom:383.655000px;}
.yb2{bottom:385.470000px;}
.y25{bottom:386.370000px;}
.y69{bottom:389.070000px;}
.y105{bottom:389.955000px;}
.ye9{bottom:391.755000px;}
.yd5{bottom:395.370000px;}
.y48{bottom:398.055000px;}
.y24{bottom:398.955000px;}
.y152{bottom:399.900000px;}
.yb9{bottom:405.300000px;}
.y85{bottom:411.600000px;}
.y167{bottom:412.500000px;}
.y141{bottom:413.400000px;}
.yb1{bottom:415.200000px;}
.y68{bottom:418.800000px;}
.y132{bottom:419.700000px;}
.ye8{bottom:421.500000px;}
.y23{bottom:422.400000px;}
.y166{bottom:428.700000px;}
.y104{bottom:431.400000px;}
.y165{bottom:433.200000px;}
.yd4{bottom:435.000000px;}
.y22{bottom:437.700000px;}
.y47{bottom:439.500000px;}
.y84{bottom:441.300000px;}
.yb0{bottom:444.900000px;}
.y164{bottom:445.800000px;}
.y67{bottom:448.500000px;}
.y131{bottom:449.400000px;}
.y151{bottom:450.300000px;}
.ye7{bottom:451.200000px;}
.y21{bottom:456.630000px;}
.y103{bottom:461.130000px;}
.y46{bottom:462.945000px;}
.y140{bottom:464.745000px;}
.y83{bottom:471.030000px;}
.yaf{bottom:474.630000px;}
.yd3{bottom:475.530000px;}
.y20{bottom:478.245000px;}
.y130{bottom:479.130000px;}
.ye6{bottom:480.045000px;}
.y45{bottom:486.330000px;}
.y96{bottom:489.945000px;}
.y102{bottom:490.830000px;}
.y13f{bottom:494.445000px;}
.y1f{bottom:500.745000px;}
.yae{bottom:504.345000px;}
.y66{bottom:507.975000px;}
.y12f{bottom:508.875000px;}
.y44{bottom:509.775000px;}
.yd2{bottom:516.975000px;}
.y95{bottom:519.675000px;}
.y101{bottom:520.575000px;}
.y1e{bottom:522.375000px;}
.ye5{bottom:528.675000px;}
.y150{bottom:530.475000px;}
.y43{bottom:532.275000px;}
.y65{bottom:537.675000px;}
.y82{bottom:543.075000px;}
.y1d{bottom:543.975000px;}
.y13e{bottom:544.875000px;}
.yad{bottom:545.775000px;}
.yc1{bottom:548.475000px;}
.y94{bottom:549.375000px;}
.y163{bottom:554.775000px;}
.y42{bottom:555.675000px;}
.yd1{bottom:557.505000px;}
.ye4{bottom:558.405000px;}
.y14f{bottom:560.220000px;}
.y100{bottom:561.105000px;}
.yc6{bottom:562.005000px;}
.y1c{bottom:564.705000px;}
.y12e{bottom:567.405000px;}
.y81{bottom:572.805000px;}
.y13d{bottom:574.605000px;}
.yac{bottom:575.505000px;}
.y64{bottom:579.105000px;}
.y1b{bottom:582.705000px;}
.yc0{bottom:584.505000px;}
.ye3{bottom:588.105000px;}
.yff{bottom:590.820000px;}
.yc5{bottom:591.705000px;}
.y41{bottom:597.120000px;}
.yd0{bottom:598.905000px;}
.y1a{bottom:600.720000px;}
.y80{bottom:602.505000px;}
.y13c{bottom:604.320000px;}
.yab{bottom:605.205000px;}
.y162{bottom:606.105000px;}
.y63{bottom:608.820000px;}
.y14e{bottom:610.650000px;}
.yc4{bottom:617.850000px;}
.y19{bottom:620.550000px;}
.y7f{bottom:632.250000px;}
.y161{bottom:635.850000px;}
.y62{bottom:638.550000px;}
.ycf{bottom:639.450000px;}
.y18{bottom:643.050000px;}
.y40{bottom:643.950000px;}
.yaa{bottom:646.650000px;}
.y93{bottom:650.250000px;}
.y13b{bottom:654.750000px;}
.y7e{bottom:661.050000px;}
.y14d{bottom:661.980000px;}
.y17{bottom:662.880000px;}
.y160{bottom:665.580000px;}
.y61{bottom:668.280000px;}
.y12d{bottom:669.180000px;}
.y3f{bottom:670.095000px;}
.ya9{bottom:676.380000px;}
.y92{bottom:679.995000px;}
.yce{bottom:680.880000px;}
.y16{bottom:682.680000px;}
.y13a{bottom:684.480000px;}
.y14c{bottom:691.695000px;}
.y15f{bottom:695.280000px;}
.y60{bottom:697.980000px;}
.y12c{bottom:698.880000px;}
.y15{bottom:702.480000px;}
.y7d{bottom:703.380000px;}
.ya8{bottom:706.080000px;}
.y91{bottom:709.680000px;}
.y3e{bottom:717.825000px;}
.ycd{bottom:720.525000px;}
.y14{bottom:724.125000px;}
.y15e{bottom:725.025000px;}
.y5f{bottom:727.725000px;}
.y12b{bottom:728.625000px;}
.y7c{bottom:733.125000px;}
.y139{bottom:734.925000px;}
.ya7{bottom:735.825000px;}
.y90{bottom:739.425000px;}
.y14b{bottom:742.125000px;}
.y3d{bottom:743.925000px;}
.ye2{bottom:747.525000px;}
.y13{bottom:748.425000px;}
.y15d{bottom:754.725000px;}
.y5e{bottom:757.425000px;}
.y12a{bottom:758.325000px;}
.y7b{bottom:762.825000px;}
.y138{bottom:764.625000px;}
.ya6{bottom:765.525000px;}
.ycc{bottom:766.425000px;}
.y8f{bottom:769.155000px;}
.y12{bottom:770.955000px;}
.ye1{bottom:777.255000px;}
.yfe{bottom:779.955000px;}
.y15c{bottom:784.455000px;}
.y129{bottom:788.070000px;}
.y11{bottom:790.755000px;}
.y7a{bottom:792.570000px;}
.ycb{bottom:796.155000px;}
.y5d{bottom:798.855000px;}
.ye0{bottom:806.955000px;}
.yfd{bottom:809.655000px;}
.y10{bottom:810.570000px;}
.y3c{bottom:814.170000px;}
.ya5{bottom:815.955000px;}
.y128{bottom:816.855000px;}
.y79{bottom:822.300000px;}
.yca{bottom:825.900000px;}
.y5c{bottom:828.600000px;}
.yf{bottom:832.200000px;}
.yfc{bottom:839.400000px;}
.y15b{bottom:843.000000px;}
.y137{bottom:845.700000px;}
.y127{bottom:846.600000px;}
.ydf{bottom:847.500000px;}
.y78{bottom:852.000000px;}
.y3b{bottom:855.600000px;}
.ye{bottom:857.400000px;}
.y5b{bottom:858.300000px;}
.ya4{bottom:862.800000px;}
.yfb{bottom:869.100000px;}
.y14a{bottom:872.730000px;}
.y126{bottom:876.330000px;}
.yde{bottom:877.230000px;}
.y3a{bottom:879.030000px;}
.y77{bottom:881.730000px;}
.yc9{bottom:884.445000px;}
.y5a{bottom:888.045000px;}
.yd{bottom:888.945000px;}
.y15a{bottom:894.330000px;}
.y136{bottom:896.130000px;}
.yfa{bottom:898.830000px;}
.y39{bottom:902.445000px;}
.ya3{bottom:903.330000px;}
.ydd{bottom:906.945000px;}
.y76{bottom:911.445000px;}
.y59{bottom:917.730000px;}
.y125{bottom:918.630000px;}
.yc{bottom:921.330000px;}
.y159{bottom:924.075000px;}
.y38{bottom:925.875000px;}
.yf9{bottom:928.575000px;}
.ya2{bottom:933.075000px;}
.y11d{bottom:935.775000px;}
.ydc{bottom:936.675000px;}
.y58{bottom:947.475000px;}
.y124{bottom:948.375000px;}
.y37{bottom:949.275000px;}
.y75{bottom:950.175000px;}
.yb{bottom:952.875000px;}
.y149{bottom:953.775000px;}
.yf8{bottom:958.275000px;}
.ya1{bottom:962.775000px;}
.y36{bottom:971.775000px;}
.y11c{bottom:974.475000px;}
.y135{bottom:976.320000px;}
.y8e{bottom:977.205000px;}
.y123{bottom:978.120000px;}
.y112{bottom:983.505000px;}
.ydb{bottom:986.205000px;}
.ya{bottom:988.005000px;}
.y56{bottom:988.920000px;}
.y74{bottom:992.505000px;}
.y57{bottom:994.320000px;}
.y11b{bottom:1004.205000px;}
.y134{bottom:1006.005000px;}
.y8d{bottom:1006.920000px;}
.y122{bottom:1007.820000px;}
.y35{bottom:1013.205000px;}
.yf7{bottom:1017.705000px;}
.y55{bottom:1018.620000px;}
.ya0{bottom:1022.205000px;}
.y9{bottom:1024.905000px;}
.y73{bottom:1033.950000px;}
.y34{bottom:1036.650000px;}
.y121{bottom:1037.550000px;}
.yc8{bottom:1042.050000px;}
.y54{bottom:1048.350000px;}
.y133{bottom:1052.850000px;}
.y8{bottom:1057.350000px;}
.y33{bottom:1060.050000px;}
.y72{bottom:1063.650000px;}
.yf6{bottom:1067.250000px;}
.y32{bottom:1087.080000px;}
.y71{bottom:1093.380000px;}
.yef{bottom:1094.280000px;}
.y9b{bottom:1095.195000px;}
.y5{bottom:1107.780000px;}
.y51{bottom:1140.225000px;}
.y4{bottom:1150.125000px;}
.y30{bottom:1162.725000px;}
.y3{bottom:1167.225000px;}
.y50{bottom:1170.825000px;}
.y2{bottom:1184.325000px;}
.y4f{bottom:1187.070000px;}
.y2f{bottom:1199.655000px;}
.y1{bottom:1201.455000px;}
.y4e{bottom:1203.255000px;}
.h1f{height:24.948633px;}
.h12{height:24.996094px;}
.h1a{height:30.222070px;}
.hf{height:39.313477px;}
.h13{height:41.581055px;}
.h1d{height:44.017383px;}
.h3{height:44.353125px;}
.h1c{height:46.766602px;}
.h2{height:47.125195px;}
.h19{height:49.454297px;}
.h10{height:49.517578px;}
.h16{height:49.897266px;}
.h1e{height:49.960547px;}
.hd{height:50.220000px;}
.h17{height:55.441406px;}
.hb{height:56.916000px;}
.h18{height:57.772800px;}
.h15{height:60.264000px;}
.h14{height:60.871289px;}
.he{height:63.763200px;}
.h5{height:64.451953px;}
.hc{height:66.960000px;}
.ha{height:67.968000px;}
.h1b{height:84.960000px;}
.h11{height:88.560000px;}
.h9{height:91.756800px;}
.h6{height:92.631600px;}
.h7{height:95.644800px;}
.h4{height:100.579500px;}
.h8{height:113.359350px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w3{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:76.574987px;}
.x1f{left:79.274987px;}
.x2e{left:81.074987px;}
.x2b{left:117.112487px;}
.x15{left:122.512487px;}
.x2d{left:130.649987px;}
.x8{left:135.149987px;}
.x1d{left:167.579987px;}
.x2a{left:171.179987px;}
.x21{left:173.879987px;}
.x18{left:178.394987px;}
.x26{left:197.279987px;}
.x1b{left:211.724987px;}
.x27{left:218.024987px;}
.x16{left:227.024987px;}
.x24{left:236.969987px;}
.x20{left:273.899987px;}
.x9{left:292.799987px;}
.x23{left:300.899987px;}
.x29{left:327.044987px;}
.xe{left:338.744987px;}
.x13{left:350.474987px;}
.x2c{left:382.019987px;}
.x1{left:439.649987px;}
.x2{left:444.149987px;}
.x14{left:446.849987px;}
.xd{left:461.279987px;}
.xb{left:545.954987px;}
.x4{left:576.599987px;}
.x3{left:609.029987px;}
.x10{left:636.074973px;}
.x11{left:641.474987px;}
.xa{left:709.049987px;}
.x5{left:718.949987px;}
.x19{left:726.149987px;}
.xf{left:745.994987px;}
.x22{left:763.094987px;}
.x12{left:766.694987px;}
.x17{left:772.079987px;}
.x1e{left:775.694987px;}
.xc{left:780.194987px;}
.x1a{left:784.724987px;}
.x28{left:786.524987px;}
.x1c{left:802.724987px;}
.x25{left:808.124987px;}
.x6{left:817.169987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.400000pt;}
.ls3{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:-0.432000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.115200pt;}
.ls6{letter-spacing:0.133333pt;}
.ls12{letter-spacing:0.138667pt;}
.ls9{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230400pt;}
.ls16{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.550400pt;}
.lsc{letter-spacing:1.094400pt;}
.ls14{letter-spacing:1.381333pt;}
.ls15{letter-spacing:1.509333pt;}
.ls0{letter-spacing:1.600000pt;}
.ls13{letter-spacing:1.657600pt;}
.lsa{letter-spacing:1.706667pt;}
.ls11{letter-spacing:1.817600pt;}
.lsd{letter-spacing:2.948267pt;}
.ls7{letter-spacing:3.360000pt;}
.ls1{letter-spacing:4.800000pt;}
.ls8{letter-spacing:755.782400pt;}
.lsf{letter-spacing:758.982400pt;}
.ws12{word-spacing:-57.600000pt;}
.ws4{word-spacing:-32.000000pt;}
.ws8{word-spacing:-20.640000pt;}
.ws6{word-spacing:-19.680000pt;}
.ws10{word-spacing:-15.851733pt;}
.ws9{word-spacing:-15.782400pt;}
.wsf{word-spacing:-15.723733pt;}
.wsc{word-spacing:-15.449600pt;}
.wsa{word-spacing:-15.252267pt;}
.ws0{word-spacing:-15.200000pt;}
.wsb{word-spacing:-14.905600pt;}
.ws2{word-spacing:-14.688000pt;}
.ws11{word-spacing:-14.598400pt;}
.wsd{word-spacing:-14.457600pt;}
.wse{word-spacing:-14.342400pt;}
.ws3{word-spacing:-14.256000pt;}
.ws1{word-spacing:-12.748800pt;}
.ws7{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-5.890133pt;}
._9{margin-left:-4.993067pt;}
._b{margin-left:-4.005333pt;}
._7{margin-left:-3.095467pt;}
._2{margin-left:-2.121600pt;}
._0{margin-left:-1.033600pt;}
._1{width:1.414400pt;}
._3{width:2.502400pt;}
._4{width:3.636267pt;}
._5{width:5.145600pt;}
._e{width:6.134400pt;}
._8{width:7.045333pt;}
._25{width:7.955200pt;}
._d{width:9.266133pt;}
._f{width:10.368000pt;}
._11{width:11.921067pt;}
._10{width:13.373867pt;}
._6{width:15.102933pt;}
._15{width:16.857600pt;}
._2d{width:17.833600pt;}
._14{width:18.796800pt;}
._12{width:20.022400pt;}
._24{width:21.376000pt;}
._13{width:22.492800pt;}
._18{width:23.725867pt;}
._1c{width:24.884267pt;}
._19{width:26.007467pt;}
._23{width:27.152000pt;}
._1a{width:28.822400pt;}
._1b{width:29.741867pt;}
._1f{width:31.507200pt;}
._1d{width:32.738133pt;}
._2f{width:34.439467pt;}
._1e{width:35.607467pt;}
._2e{width:36.644267pt;}
._2b{width:53.015467pt;}
._2a{width:55.465600pt;}
._29{width:56.579200pt;}
._2c{width:58.478933pt;}
._22{width:60.124800pt;}
._21{width:63.497600pt;}
._20{width:66.393600pt;}
._30{width:78.364800pt;}
._31{width:81.593600pt;}
._33{width:84.844800pt;}
._32{width:85.737600pt;}
._27{width:91.751467pt;}
._26{width:94.604800pt;}
._28{width:98.085333pt;}
._16{width:153.600000pt;}
._c{width:176.608000pt;}
._17{width:179.146667pt;}
.fsc{font-size:28.800000pt;}
.fsa{font-size:32.000000pt;}
.fsb{font-size:35.200000pt;}
.fs8{font-size:41.600000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:51.200000pt;}
.fs0{font-size:54.400000pt;}
.fs4{font-size:57.600000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:80.000000pt;}
.fs5{font-size:86.400000pt;}
.fs3{font-size:96.133333pt;}
.fs6{font-size:105.733333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:79.266667pt;}
.y53{bottom:80.066667pt;}
.y31{bottom:96.066667pt;}
.y6{bottom:96.866667pt;}
.y52{bottom:97.666667pt;}
.y2e{bottom:113.666667pt;}
.y158{bottom:114.466667pt;}
.yc3{bottom:115.266667pt;}
.yb8{bottom:116.866667pt;}
.yf3{bottom:126.500000pt;}
.y148{bottom:127.300000pt;}
.y2d{bottom:128.100000pt;}
.yc7{bottom:135.306667pt;}
.y10a{bottom:138.493333pt;}
.y111{bottom:140.893333pt;}
.y120{bottom:141.706667pt;}
.y9a{bottom:144.893333pt;}
.y118{bottom:145.693333pt;}
.y2c{bottom:146.493333pt;}
.y70{bottom:150.493333pt;}
.yb7{bottom:152.106667pt;}
.yda{bottom:152.893333pt;}
.y147{bottom:153.706667pt;}
.y8c{bottom:154.493333pt;}
.y2b{bottom:157.693333pt;}
.y9f{bottom:162.493333pt;}
.y117{bottom:163.293333pt;}
.y11a{bottom:165.706667pt;}
.y110{bottom:171.333333pt;}
.y2a{bottom:172.133333pt;}
.ybf{bottom:172.933333pt;}
.y109{bottom:174.533333pt;}
.y11f{bottom:175.333333pt;}
.y6f{bottom:176.933333pt;}
.yd9{bottom:178.533333pt;}
.yf5{bottom:179.333333pt;}
.y116{bottom:180.933333pt;}
.y99{bottom:181.733333pt;}
.y4d{bottom:183.333333pt;}
.y157{bottom:185.733333pt;}
.y29{bottom:186.533333pt;}
.y9e{bottom:188.933333pt;}
.yf2{bottom:191.333333pt;}
.y10f{bottom:195.333333pt;}
.yee{bottom:196.133333pt;}
.y8b{bottom:196.933333pt;}
.y115{bottom:197.733333pt;}
.y146{bottom:198.533333pt;}
.ybe{bottom:199.333333pt;}
.y119{bottom:200.133333pt;}
.y6e{bottom:203.333333pt;}
.y28{bottom:204.933333pt;}
.yf1{bottom:209.733333pt;}
.y108{bottom:211.333333pt;}
.y156{bottom:212.133333pt;}
.y114{bottom:215.333333pt;}
.y27{bottom:216.973333pt;}
.yf4{bottom:217.773333pt;}
.y98{bottom:218.560000pt;}
.y4c{bottom:220.960000pt;}
.y10e{bottom:224.173333pt;}
.y145{bottom:224.960000pt;}
.y9d{bottom:225.773333pt;}
.yb6{bottom:226.560000pt;}
.y6d{bottom:229.773333pt;}
.yd8{bottom:231.360000pt;}
.yed{bottom:232.173333pt;}
.y11e{bottom:233.760000pt;}
.y8a{bottom:234.560000pt;}
.y10d{bottom:242.560000pt;}
.yf0{bottom:247.373333pt;}
.ybd{bottom:252.160000pt;}
.yb5{bottom:252.973333pt;}
.y6c{bottom:256.173333pt;}
.y155{bottom:256.960000pt;}
.y4b{bottom:257.760000pt;}
.yec{bottom:258.560000pt;}
.y9c{bottom:260.173333pt;}
.y89{bottom:260.960000pt;}
.y113{bottom:265.000000pt;}
.yc2{bottom:266.600000pt;}
.y144{bottom:269.800000pt;}
.ybc{bottom:278.600000pt;}
.yb4{bottom:279.400000pt;}
.y6b{bottom:282.600000pt;}
.yd7{bottom:283.400000pt;}
.y107{bottom:284.200000pt;}
.y88{bottom:287.400000pt;}
.y10c{bottom:289.800000pt;}
.y4a{bottom:291.400000pt;}
.y97{bottom:293.000000pt;}
.yeb{bottom:295.400000pt;}
.y154{bottom:302.600000pt;}
.y26{bottom:304.200000pt;}
.yb3{bottom:305.000000pt;}
.ybb{bottom:308.200000pt;}
.y87{bottom:313.840000pt;}
.y143{bottom:315.440000pt;}
.yd6{bottom:317.826667pt;}
.y6a{bottom:319.440000pt;}
.y106{bottom:320.226667pt;}
.y10b{bottom:321.026667pt;}
.yea{bottom:321.840000pt;}
.y153{bottom:329.026667pt;}
.y49{bottom:333.026667pt;}
.yba{bottom:336.226667pt;}
.y86{bottom:339.440000pt;}
.y142{bottom:341.026667pt;}
.yb2{bottom:342.640000pt;}
.y25{bottom:343.440000pt;}
.y69{bottom:345.840000pt;}
.y105{bottom:346.626667pt;}
.ye9{bottom:348.226667pt;}
.yd5{bottom:351.440000pt;}
.y48{bottom:353.826667pt;}
.y24{bottom:354.626667pt;}
.y152{bottom:355.466667pt;}
.yb9{bottom:360.266667pt;}
.y85{bottom:365.866667pt;}
.y167{bottom:366.666667pt;}
.y141{bottom:367.466667pt;}
.yb1{bottom:369.066667pt;}
.y68{bottom:372.266667pt;}
.y132{bottom:373.066667pt;}
.ye8{bottom:374.666667pt;}
.y23{bottom:375.466667pt;}
.y166{bottom:381.066667pt;}
.y104{bottom:383.466667pt;}
.y165{bottom:385.066667pt;}
.yd4{bottom:386.666667pt;}
.y22{bottom:389.066667pt;}
.y47{bottom:390.666667pt;}
.y84{bottom:392.266667pt;}
.yb0{bottom:395.466667pt;}
.y164{bottom:396.266667pt;}
.y67{bottom:398.666667pt;}
.y131{bottom:399.466667pt;}
.y151{bottom:400.266667pt;}
.ye7{bottom:401.066667pt;}
.y21{bottom:405.893333pt;}
.y103{bottom:409.893333pt;}
.y46{bottom:411.506667pt;}
.y140{bottom:413.106667pt;}
.y83{bottom:418.693333pt;}
.yaf{bottom:421.893333pt;}
.yd3{bottom:422.693333pt;}
.y20{bottom:425.106667pt;}
.y130{bottom:425.893333pt;}
.ye6{bottom:426.706667pt;}
.y45{bottom:432.293333pt;}
.y96{bottom:435.506667pt;}
.y102{bottom:436.293333pt;}
.y13f{bottom:439.506667pt;}
.y1f{bottom:445.106667pt;}
.yae{bottom:448.306667pt;}
.y66{bottom:451.533333pt;}
.y12f{bottom:452.333333pt;}
.y44{bottom:453.133333pt;}
.yd2{bottom:459.533333pt;}
.y95{bottom:461.933333pt;}
.y101{bottom:462.733333pt;}
.y1e{bottom:464.333333pt;}
.ye5{bottom:469.933333pt;}
.y150{bottom:471.533333pt;}
.y43{bottom:473.133333pt;}
.y65{bottom:477.933333pt;}
.y82{bottom:482.733333pt;}
.y1d{bottom:483.533333pt;}
.y13e{bottom:484.333333pt;}
.yad{bottom:485.133333pt;}
.yc1{bottom:487.533333pt;}
.y94{bottom:488.333333pt;}
.y163{bottom:493.133333pt;}
.y42{bottom:493.933333pt;}
.yd1{bottom:495.560000pt;}
.ye4{bottom:496.360000pt;}
.y14f{bottom:497.973333pt;}
.y100{bottom:498.760000pt;}
.yc6{bottom:499.560000pt;}
.y1c{bottom:501.960000pt;}
.y12e{bottom:504.360000pt;}
.y81{bottom:509.160000pt;}
.y13d{bottom:510.760000pt;}
.yac{bottom:511.560000pt;}
.y64{bottom:514.760000pt;}
.y1b{bottom:517.960000pt;}
.yc0{bottom:519.560000pt;}
.ye3{bottom:522.760000pt;}
.yff{bottom:525.173333pt;}
.yc5{bottom:525.960000pt;}
.y41{bottom:530.773333pt;}
.yd0{bottom:532.360000pt;}
.y1a{bottom:533.973333pt;}
.y80{bottom:535.560000pt;}
.y13c{bottom:537.173333pt;}
.yab{bottom:537.960000pt;}
.y162{bottom:538.760000pt;}
.y63{bottom:541.173333pt;}
.y14e{bottom:542.800000pt;}
.yc4{bottom:549.200000pt;}
.y19{bottom:551.600000pt;}
.y7f{bottom:562.000000pt;}
.y161{bottom:565.200000pt;}
.y62{bottom:567.600000pt;}
.ycf{bottom:568.400000pt;}
.y18{bottom:571.600000pt;}
.y40{bottom:572.400000pt;}
.yaa{bottom:574.800000pt;}
.y93{bottom:578.000000pt;}
.y13b{bottom:582.000000pt;}
.y7e{bottom:587.600000pt;}
.y14d{bottom:588.426667pt;}
.y17{bottom:589.226667pt;}
.y160{bottom:591.626667pt;}
.y61{bottom:594.026667pt;}
.y12d{bottom:594.826667pt;}
.y3f{bottom:595.640000pt;}
.ya9{bottom:601.226667pt;}
.y92{bottom:604.440000pt;}
.yce{bottom:605.226667pt;}
.y16{bottom:606.826667pt;}
.y13a{bottom:608.426667pt;}
.y14c{bottom:614.840000pt;}
.y15f{bottom:618.026667pt;}
.y60{bottom:620.426667pt;}
.y12c{bottom:621.226667pt;}
.y15{bottom:624.426667pt;}
.y7d{bottom:625.226667pt;}
.ya8{bottom:627.626667pt;}
.y91{bottom:630.826667pt;}
.y3e{bottom:638.066667pt;}
.ycd{bottom:640.466667pt;}
.y14{bottom:643.666667pt;}
.y15e{bottom:644.466667pt;}
.y5f{bottom:646.866667pt;}
.y12b{bottom:647.666667pt;}
.y7c{bottom:651.666667pt;}
.y139{bottom:653.266667pt;}
.ya7{bottom:654.066667pt;}
.y90{bottom:657.266667pt;}
.y14b{bottom:659.666667pt;}
.y3d{bottom:661.266667pt;}
.ye2{bottom:664.466667pt;}
.y13{bottom:665.266667pt;}
.y15d{bottom:670.866667pt;}
.y5e{bottom:673.266667pt;}
.y12a{bottom:674.066667pt;}
.y7b{bottom:678.066667pt;}
.y138{bottom:679.666667pt;}
.ya6{bottom:680.466667pt;}
.ycc{bottom:681.266667pt;}
.y8f{bottom:683.693333pt;}
.y12{bottom:685.293333pt;}
.ye1{bottom:690.893333pt;}
.yfe{bottom:693.293333pt;}
.y15c{bottom:697.293333pt;}
.y129{bottom:700.506667pt;}
.y11{bottom:702.893333pt;}
.y7a{bottom:704.506667pt;}
.ycb{bottom:707.693333pt;}
.y5d{bottom:710.093333pt;}
.ye0{bottom:717.293333pt;}
.yfd{bottom:719.693333pt;}
.y10{bottom:720.506667pt;}
.y3c{bottom:723.706667pt;}
.ya5{bottom:725.293333pt;}
.y128{bottom:726.093333pt;}
.y79{bottom:730.933333pt;}
.yca{bottom:734.133333pt;}
.y5c{bottom:736.533333pt;}
.yf{bottom:739.733333pt;}
.yfc{bottom:746.133333pt;}
.y15b{bottom:749.333333pt;}
.y137{bottom:751.733333pt;}
.y127{bottom:752.533333pt;}
.ydf{bottom:753.333333pt;}
.y78{bottom:757.333333pt;}
.y3b{bottom:760.533333pt;}
.ye{bottom:762.133333pt;}
.y5b{bottom:762.933333pt;}
.ya4{bottom:766.933333pt;}
.yfb{bottom:772.533333pt;}
.y14a{bottom:775.760000pt;}
.y126{bottom:778.960000pt;}
.yde{bottom:779.760000pt;}
.y3a{bottom:781.360000pt;}
.y77{bottom:783.760000pt;}
.yc9{bottom:786.173333pt;}
.y5a{bottom:789.373333pt;}
.yd{bottom:790.173333pt;}
.y15a{bottom:794.960000pt;}
.y136{bottom:796.560000pt;}
.yfa{bottom:798.960000pt;}
.y39{bottom:802.173333pt;}
.ya3{bottom:802.960000pt;}
.ydd{bottom:806.173333pt;}
.y76{bottom:810.173333pt;}
.y59{bottom:815.760000pt;}
.y125{bottom:816.560000pt;}
.yc{bottom:818.960000pt;}
.y159{bottom:821.400000pt;}
.y38{bottom:823.000000pt;}
.yf9{bottom:825.400000pt;}
.ya2{bottom:829.400000pt;}
.y11d{bottom:831.800000pt;}
.ydc{bottom:832.600000pt;}
.y58{bottom:842.200000pt;}
.y124{bottom:843.000000pt;}
.y37{bottom:843.800000pt;}
.y75{bottom:844.600000pt;}
.yb{bottom:847.000000pt;}
.y149{bottom:847.800000pt;}
.yf8{bottom:851.800000pt;}
.ya1{bottom:855.800000pt;}
.y36{bottom:863.800000pt;}
.y11c{bottom:866.200000pt;}
.y135{bottom:867.840000pt;}
.y8e{bottom:868.626667pt;}
.y123{bottom:869.440000pt;}
.y112{bottom:874.226667pt;}
.ydb{bottom:876.626667pt;}
.ya{bottom:878.226667pt;}
.y56{bottom:879.040000pt;}
.y74{bottom:882.226667pt;}
.y57{bottom:883.840000pt;}
.y11b{bottom:892.626667pt;}
.y134{bottom:894.226667pt;}
.y8d{bottom:895.040000pt;}
.y122{bottom:895.840000pt;}
.y35{bottom:900.626667pt;}
.yf7{bottom:904.626667pt;}
.y55{bottom:905.440000pt;}
.ya0{bottom:908.626667pt;}
.y9{bottom:911.026667pt;}
.y73{bottom:919.066667pt;}
.y34{bottom:921.466667pt;}
.y121{bottom:922.266667pt;}
.yc8{bottom:926.266667pt;}
.y54{bottom:931.866667pt;}
.y133{bottom:935.866667pt;}
.y8{bottom:939.866667pt;}
.y33{bottom:942.266667pt;}
.y72{bottom:945.466667pt;}
.yf6{bottom:948.666667pt;}
.y32{bottom:966.293333pt;}
.y71{bottom:971.893333pt;}
.yef{bottom:972.693333pt;}
.y9b{bottom:973.506667pt;}
.y5{bottom:984.693333pt;}
.y51{bottom:1013.533333pt;}
.y4{bottom:1022.333333pt;}
.y30{bottom:1033.533333pt;}
.y3{bottom:1037.533333pt;}
.y50{bottom:1040.733333pt;}
.y2{bottom:1052.733333pt;}
.y4f{bottom:1055.173333pt;}
.y2f{bottom:1066.360000pt;}
.y1{bottom:1067.960000pt;}
.y4e{bottom:1069.560000pt;}
.h1f{height:22.176563pt;}
.h12{height:22.218750pt;}
.h1a{height:26.864062pt;}
.hf{height:34.945312pt;}
.h13{height:36.960938pt;}
.h1d{height:39.126562pt;}
.h3{height:39.425000pt;}
.h1c{height:41.570312pt;}
.h2{height:41.889062pt;}
.h19{height:43.959375pt;}
.h10{height:44.015625pt;}
.h16{height:44.353125pt;}
.h1e{height:44.409375pt;}
.hd{height:44.640000pt;}
.h17{height:49.281250pt;}
.hb{height:50.592000pt;}
.h18{height:51.353600pt;}
.h15{height:53.568000pt;}
.h14{height:54.107812pt;}
.he{height:56.678400pt;}
.h5{height:57.290625pt;}
.hc{height:59.520000pt;}
.ha{height:60.416000pt;}
.h1b{height:75.520000pt;}
.h11{height:78.720000pt;}
.h9{height:81.561600pt;}
.h6{height:82.339200pt;}
.h7{height:85.017600pt;}
.h4{height:89.404000pt;}
.h8{height:100.763867pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w3{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:68.066655pt;}
.x1f{left:70.466655pt;}
.x2e{left:72.066655pt;}
.x2b{left:104.099988pt;}
.x15{left:108.899988pt;}
.x2d{left:116.133322pt;}
.x8{left:120.133322pt;}
.x1d{left:148.959988pt;}
.x2a{left:152.159988pt;}
.x21{left:154.559988pt;}
.x18{left:158.573322pt;}
.x26{left:175.359988pt;}
.x1b{left:188.199988pt;}
.x27{left:193.799988pt;}
.x16{left:201.799988pt;}
.x24{left:210.639988pt;}
.x20{left:243.466655pt;}
.x9{left:260.266655pt;}
.x23{left:267.466655pt;}
.x29{left:290.706655pt;}
.xe{left:301.106655pt;}
.x13{left:311.533322pt;}
.x2c{left:339.573322pt;}
.x1{left:390.799988pt;}
.x2{left:394.799988pt;}
.x14{left:397.199988pt;}
.xd{left:410.026655pt;}
.xb{left:485.293322pt;}
.x4{left:512.533322pt;}
.x3{left:541.359988pt;}
.x10{left:565.399976pt;}
.x11{left:570.199988pt;}
.xa{left:630.266655pt;}
.x5{left:639.066655pt;}
.x19{left:645.466655pt;}
.xf{left:663.106655pt;}
.x22{left:678.306655pt;}
.x12{left:681.506655pt;}
.x17{left:686.293322pt;}
.x1e{left:689.506655pt;}
.xc{left:693.506655pt;}
.x1a{left:697.533322pt;}
.x28{left:699.133322pt;}
.x1c{left:713.533322pt;}
.x25{left:718.333322pt;}
.x6{left:726.373322pt;}
}




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