
    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_8b7a7c3b59b1b3faab39ff2f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_14729aba98907135482fd2b3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_d125aef01c4e59efa4c651d1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.776367;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_995fa4e751b38e5193e01fe4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_6585a21bb461280956cb5ed7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ffe02b523a00218e313e66d9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_3aa1898b050b34a67c12c488.woff')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_e420af0c290e809de75232c1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_f5ef45ec2773ceb3fc574f65.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_11785f919db142970f91066e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_7372bfce47173093091329bf.woff')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0f19edd314eb660df139f58f.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5497d072c2b1522158ccd561.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_34205885292d3609fb4dcedd.woff')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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(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);}
.v1{vertical-align:-105.840000px;}
.v4{vertical-align:-82.800000px;}
.v2{vertical-align:-75.600000px;}
.v3{vertical-align:-68.580000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.828000px;}
.ls9{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.152400px;}
.lsd{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.109200px;}
.ls13{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.189735px;}
.ls1{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.284602px;}
.ls17{letter-spacing:0.305280px;}
.lsa{letter-spacing:0.305400px;}
.ls18{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.612000px;}
.ls4{letter-spacing:6.785280px;}
.ls11{letter-spacing:50.724000px;}
.lsb{letter-spacing:59.345280px;}
.ls3{letter-spacing:89.729280px;}
.ls1a{letter-spacing:131.706720px;}
.lse{letter-spacing:197.729280px;}
.ls1b{letter-spacing:309.864000px;}
.ls2{letter-spacing:335.640000px;}
.ls16{letter-spacing:790.086720px;}
.ls19{letter-spacing:862.086720px;}
.ls10{letter-spacing:888.960000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.wsa{word-spacing:-66.240000px;}
.ws4{word-spacing:-28.080745px;}
.ws1{word-spacing:-27.985877px;}
.ws3{word-spacing:-27.796143px;}
.ws5{word-spacing:-20.232000px;}
.wsb{word-spacing:-18.720120px;}
.ws7{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.262320px;}
.ws10{word-spacing:-18.152520px;}
.ws9{word-spacing:-18.109320px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.586720px;}
.ws12{word-spacing:-17.225280px;}
.ws11{word-spacing:-16.506480px;}
.ws2{word-spacing:-14.965519px;}
.wsc{word-spacing:0.000000px;}
._12{margin-left:-11.926320px;}
._14{margin-left:-6.557040px;}
._13{margin-left:-2.099280px;}
._2{margin-left:-1.080000px;}
._3{width:1.092000px;}
._8{width:2.491200px;}
._5{width:3.703680px;}
._4{width:4.901760px;}
._c{width:6.425280px;}
._f{width:7.514400px;}
._d{width:9.737280px;}
._a{width:10.934160px;}
._b{width:12.340800px;}
._e{width:14.030400px;}
._6{width:19.673280px;}
._7{width:21.361920px;}
._15{width:23.956080px;}
._11{width:27.512880px;}
._9{width:34.559520px;}
._10{width:59.114880px;}
._0{width:414.000000px;}
._1{width:1336.620000px;}
.fc7{color:rgb(33,37,41);}
.fc6{color:transparent;}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(23,26,108);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.813160px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:94.867381px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-7.020000px;}
.yf{bottom:-2.160000px;}
.y0{bottom:0.000000px;}
.yef{bottom:3.240000px;}
.y69{bottom:3.420000px;}
.y39{bottom:3.600000px;}
.y3f{bottom:3.960000px;}
.y16{bottom:7.920000px;}
.y18{bottom:8.100000px;}
.y2a{bottom:9.000000px;}
.y42{bottom:9.180000px;}
.y7{bottom:11.160000px;}
.ya{bottom:14.400000px;}
.ye{bottom:19.260000px;}
.yee{bottom:20.520000px;}
.y68{bottom:22.320000px;}
.y38{bottom:22.500000px;}
.y3e{bottom:24.120000px;}
.ya0{bottom:24.660000px;}
.y24{bottom:26.850000px;}
.y1a{bottom:26.865000px;}
.y15{bottom:27.000000px;}
.ya3{bottom:34.920000px;}
.y6{bottom:36.000000px;}
.yed{bottom:37.800000px;}
.y9{bottom:39.240000px;}
.y98{bottom:41.400000px;}
.y37{bottom:41.580000px;}
.y67{bottom:42.474000px;}
.y3d{bottom:43.200000px;}
.yd{bottom:44.280000px;}
.yf2{bottom:45.360000px;}
.ya5{bottom:45.405000px;}
.y23{bottom:50.430000px;}
.y4{bottom:57.780000px;}
.y97{bottom:60.294000px;}
.ybf{bottom:60.474000px;}
.y3c{bottom:62.100000px;}
.y66{bottom:62.454000px;}
.yf1{bottom:65.520000px;}
.ya4{bottom:66.105000px;}
.y22{bottom:69.330000px;}
.yec{bottom:72.174000px;}
.y3{bottom:78.516000px;}
.y36{bottom:79.374000px;}
.y3b{bottom:81.000000px;}
.y65{bottom:82.614000px;}
.yeb{bottom:89.634000px;}
.y21{bottom:92.910000px;}
.y96{bottom:98.274000px;}
.y35{bottom:98.454000px;}
.yc0{bottom:99.576000px;}
.y6a{bottom:99.756000px;}
.y64{bottom:101.694000px;}
.y43{bottom:107.676000px;}
.y99{bottom:108.036000px;}
.y2b{bottom:108.396000px;}
.yea{bottom:108.714000px;}
.y20{bottom:116.310000px;}
.ybe{bottom:116.994000px;}
.y95{bottom:117.174000px;}
.y34{bottom:117.354000px;}
.ye9{bottom:127.614000px;}
.ybd{bottom:134.274000px;}
.y94{bottom:136.254000px;}
.y33{bottom:136.434000px;}
.y1f{bottom:139.710000px;}
.ye8{bottom:146.694000px;}
.y93{bottom:155.154000px;}
.y32{bottom:155.334000px;}
.y1e{bottom:163.290000px;}
.ye7{bottom:165.594000px;}
.ybc{bottom:168.834000px;}
.y92{bottom:174.234000px;}
.y31{bottom:174.414000px;}
.ye6{bottom:184.674000px;}
.ybb{bottom:186.114000px;}
.y91{bottom:193.134000px;}
.y30{bottom:193.314000px;}
.ye5{bottom:203.574000px;}
.y90{bottom:212.034000px;}
.y2f{bottom:212.259000px;}
.yba{bottom:220.539000px;}
.ye4{bottom:222.519000px;}
.y63{bottom:228.090000px;}
.y8f{bottom:231.159000px;}
.y2e{bottom:231.339000px;}
.yb9{bottom:238.179000px;}
.ye3{bottom:241.599000px;}
.y8e{bottom:250.059000px;}
.y2d{bottom:250.239000px;}
.y62{bottom:253.290000px;}
.yb8{bottom:257.079000px;}
.ye2{bottom:260.499000px;}
.y8d{bottom:269.139000px;}
.y2c{bottom:269.319000px;}
.y5d{bottom:273.999000px;}
.yb7{bottom:275.979000px;}
.y61{bottom:278.490000px;}
.ye1{bottom:279.579000px;}
.y8c{bottom:288.039000px;}
.y5c{bottom:293.079000px;}
.yb6{bottom:295.059000px;}
.ye0{bottom:298.479000px;}
.y60{bottom:303.690000px;}
.y8b{bottom:307.119000px;}
.y5b{bottom:311.979000px;}
.yb5{bottom:313.959000px;}
.ydf{bottom:317.379000px;}
.y8a{bottom:326.019000px;}
.y5f{bottom:328.935000px;}
.y5a{bottom:330.879000px;}
.yb4{bottom:333.039000px;}
.yde{bottom:336.459000px;}
.y89{bottom:344.919000px;}
.y59{bottom:351.039000px;}
.yb3{bottom:351.939000px;}
.y5e{bottom:354.135000px;}
.ydd{bottom:355.359000px;}
.y88{bottom:363.999000px;}
.yb2{bottom:370.839000px;}
.y58{bottom:371.019000px;}
.ydc{bottom:374.439000px;}
.y87{bottom:382.899000px;}
.yb1{bottom:389.919000px;}
.y57{bottom:391.179000px;}
.ydb{bottom:393.339000px;}
.y29{bottom:393.915000px;}
.y86{bottom:401.979000px;}
.yb0{bottom:408.819000px;}
.y56{bottom:411.339000px;}
.yda{bottom:412.239000px;}
.y85{bottom:420.879000px;}
.yaf{bottom:427.899000px;}
.y55{bottom:430.239000px;}
.yd9{bottom:431.319000px;}
.y84{bottom:439.779000px;}
.yae{bottom:446.799000px;}
.y28{bottom:447.015000px;}
.y54{bottom:449.139000px;}
.yd8{bottom:450.219000px;}
.y83{bottom:458.859000px;}
.y27{bottom:464.475000px;}
.yad{bottom:465.909000px;}
.y53{bottom:469.329000px;}
.y82{bottom:477.789000px;}
.yac{bottom:484.809000px;}
.yd7{bottom:488.229000px;}
.y52{bottom:489.489000px;}
.y26{bottom:493.095000px;}
.y81{bottom:496.869000px;}
.yab{bottom:503.709000px;}
.yd6{bottom:507.129000px;}
.y51{bottom:509.649000px;}
.y80{bottom:515.769000px;}
.y105{bottom:517.395000px;}
.y25{bottom:521.895000px;}
.yaa{bottom:522.789000px;}
.yd5{bottom:525.849000px;}
.y50{bottom:528.549000px;}
.y7f{bottom:534.669000px;}
.ya9{bottom:541.689000px;}
.yd4{bottom:543.129000px;}
.y4f{bottom:547.449000px;}
.y1d{bottom:550.695000px;}
.y7e{bottom:553.749000px;}
.y104{bottom:558.795000px;}
.y4e{bottom:567.609000px;}
.y7d{bottom:572.649000px;}
.yd3{bottom:577.689000px;}
.y103{bottom:579.525000px;}
.ya8{bottom:579.669000px;}
.y4d{bottom:587.589000px;}
.y7c{bottom:591.729000px;}
.yd2{bottom:595.149000px;}
.ya7{bottom:598.569000px;}
.y102{bottom:600.405000px;}
.y4c{bottom:607.749000px;}
.y7b{bottom:610.629000px;}
.yd1{bottom:614.229000px;}
.y101{bottom:621.105000px;}
.y4b{bottom:627.909000px;}
.y7a{bottom:629.529000px;}
.yd0{bottom:633.129000px;}
.y100{bottom:641.805000px;}
.y4a{bottom:646.809000px;}
.ycf{bottom:652.029000px;}
.yff{bottom:662.505000px;}
.y49{bottom:665.889000px;}
.y79{bottom:667.509000px;}
.yce{bottom:671.109000px;}
.yfe{bottom:683.205000px;}
.y48{bottom:684.789000px;}
.y78{bottom:686.589000px;}
.ycd{bottom:690.009000px;}
.y47{bottom:703.689000px;}
.yfd{bottom:703.905000px;}
.y77{bottom:705.489000px;}
.ycc{bottom:709.089000px;}
.y46{bottom:722.814000px;}
.y76{bottom:724.434000px;}
.yfc{bottom:724.605000px;}
.ya6{bottom:726.945000px;}
.ycb{bottom:728.034000px;}
.y1c{bottom:734.685000px;}
.y45{bottom:741.714000px;}
.y75{bottom:743.514000px;}
.yfb{bottom:745.305000px;}
.yca{bottom:746.934000px;}
.y44{bottom:760.794000px;}
.y74{bottom:762.414000px;}
.yfa{bottom:762.765000px;}
.yc9{bottom:766.014000px;}
.ya2{bottom:774.465000px;}
.y73{bottom:781.494000px;}
.y1b{bottom:782.385000px;}
.yf9{bottom:782.565000px;}
.yc8{bottom:784.914000px;}
.y72{bottom:800.394000px;}
.yf8{bottom:802.185000px;}
.yc7{bottom:803.994000px;}
.y19{bottom:811.185000px;}
.y71{bottom:819.474000px;}
.yf7{bottom:822.030000px;}
.yc6{bottom:822.894000px;}
.y70{bottom:838.374000px;}
.yf6{bottom:841.650000px;}
.yc5{bottom:841.794000px;}
.y9e{bottom:852.414000px;}
.y6f{bottom:857.274000px;}
.y17{bottom:858.750000px;}
.yc4{bottom:860.874000px;}
.yf5{bottom:861.450000px;}
.ya1{bottom:863.250000px;}
.y9d{bottom:871.314000px;}
.y6e{bottom:877.434000px;}
.yc3{bottom:879.774000px;}
.y41{bottom:884.670000px;}
.y14{bottom:887.550000px;}
.y9c{bottom:890.394000px;}
.y6d{bottom:897.414000px;}
.yc2{bottom:898.854000px;}
.yf4{bottom:900.150000px;}
.y9b{bottom:909.294000px;}
.y9f{bottom:910.590000px;}
.y6c{bottom:917.574000px;}
.y9a{bottom:928.194000px;}
.y6b{bottom:936.474000px;}
.yc1{bottom:936.654000px;}
.y40{bottom:937.770000px;}
.y13{bottom:939.210000px;}
.yf3{bottom:953.250000px;}
.y3a{bottom:955.230000px;}
.y12{bottom:960.990000px;}
.yf0{bottom:970.710000px;}
.y11{bottom:1015.170000px;}
.y10{bottom:1035.690000px;}
.y2{bottom:1056.570000px;}
.y1{bottom:1073.340000px;}
.yc{bottom:1088.100000px;}
.y8{bottom:1089.900000px;}
.y5{bottom:1093.140000px;}
.h26{height:18.900000px;}
.h25{height:19.080000px;}
.h27{height:19.116000px;}
.h17{height:20.700000px;}
.h19{height:20.736000px;}
.hd{height:27.900000px;}
.hb{height:28.080000px;}
.h3{height:36.326795px;}
.h23{height:37.980000px;}
.h1c{height:41.400000px;}
.hc{height:46.836000px;}
.h9{height:46.980000px;}
.h2{height:47.160000px;}
.hf{height:48.240000px;}
.h24{height:48.418594px;}
.h15{height:48.420000px;}
.h12{height:50.062500px;}
.h5{height:50.400000px;}
.h6{height:55.440000px;}
.h20{height:58.621992px;}
.h1e{height:60.226875px;}
.h1f{height:62.327813px;}
.ha{height:69.086250px;}
.h1{height:70.628906px;}
.h18{height:70.664062px;}
.h4{height:72.076975px;}
.h14{height:72.562500px;}
.h7{height:75.093750px;}
.h22{height:81.000000px;}
.h1d{height:82.836000px;}
.h10{height:93.867188px;}
.h13{height:96.480000px;}
.h8{height:99.874688px;}
.he{height:183.270000px;}
.h11{height:284.790000px;}
.h16{height:776.265000px;}
.h1b{height:943.665000px;}
.h1a{height:951.945000px;}
.h21{height:952.125000px;}
.h0{height:1188.000000px;}
.w4{width:70.236000px;}
.wf{width:96.120000px;}
.wd{width:98.496000px;}
.wc{width:111.456000px;}
.w11{width:114.660000px;}
.w3{width:130.140000px;}
.w2{width:130.500000px;}
.w9{width:137.736000px;}
.wa{width:163.650000px;}
.wb{width:191.910000px;}
.w5{width:273.135000px;}
.we{width:432.255000px;}
.w6{width:489.495000px;}
.w10{width:655.890000px;}
.w7{width:763.710000px;}
.w8{width:771.990000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:1.080000px;}
.x2d{left:6.300000px;}
.x11{left:7.560000px;}
.x2a{left:9.000000px;}
.xb{left:10.800000px;}
.xa{left:13.860000px;}
.x6{left:15.120000px;}
.xe{left:17.280000px;}
.x23{left:21.060000px;}
.xd{left:23.400000px;}
.x1a{left:25.560000px;}
.x29{left:26.640000px;}
.x27{left:30.060000px;}
.x2b{left:31.320000px;}
.x33{left:32.436000px;}
.x14{left:34.596000px;}
.x5{left:39.600000px;}
.x9{left:40.860000px;}
.x15{left:45.000000px;}
.x28{left:49.176000px;}
.x1d{left:52.380000px;}
.x20{left:55.980000px;}
.x1b{left:57.420000px;}
.x1f{left:59.985000px;}
.x13{left:61.596000px;}
.x1c{left:71.460000px;}
.x1e{left:74.520000px;}
.x10{left:77.400000px;}
.x3{left:84.959986px;}
.x16{left:87.300000px;}
.x21{left:88.380000px;}
.x31{left:92.190000px;}
.x7{left:115.380000px;}
.x34{left:122.430000px;}
.x2e{left:133.920000px;}
.x25{left:151.740000px;}
.x36{left:167.429986px;}
.x2c{left:186.690000px;}
.x22{left:203.430000px;}
.x2f{left:206.490000px;}
.x18{left:227.370000px;}
.x30{left:247.575000px;}
.x32{left:265.935000px;}
.x24{left:305.715000px;}
.x1{left:315.434986px;}
.x12{left:351.255000px;}
.x19{left:393.375000px;}
.x2{left:458.894986px;}
.x4{left:495.105000px;}
.xf{left:576.644986px;}
.xc{left:636.405000px;}
.x8{left:724.650000px;}
.x35{left:734.190000px;}
.x26{left:741.750000px;}
@media print{
.v1{vertical-align:-94.080000pt;}
.v4{vertical-align:-73.600000pt;}
.v2{vertical-align:-67.200000pt;}
.v3{vertical-align:-60.960000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.736000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.135467pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.168653pt;}
.ls1{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.252980pt;}
.ls17{letter-spacing:0.271360pt;}
.lsa{letter-spacing:0.271467pt;}
.ls18{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.544000pt;}
.ls4{letter-spacing:6.031360pt;}
.ls11{letter-spacing:45.088000pt;}
.lsb{letter-spacing:52.751360pt;}
.ls3{letter-spacing:79.759360pt;}
.ls1a{letter-spacing:117.072640pt;}
.lse{letter-spacing:175.759360pt;}
.ls1b{letter-spacing:275.434667pt;}
.ls2{letter-spacing:298.346667pt;}
.ls16{letter-spacing:702.299307pt;}
.ls19{letter-spacing:766.299307pt;}
.ls10{letter-spacing:790.186667pt;}
.wse{word-spacing:-64.000000pt;}
.wsa{word-spacing:-58.880000pt;}
.ws4{word-spacing:-24.960662pt;}
.ws1{word-spacing:-24.876336pt;}
.ws3{word-spacing:-24.707682pt;}
.ws5{word-spacing:-17.984000pt;}
.wsb{word-spacing:-16.640107pt;}
.ws7{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.233173pt;}
.ws10{word-spacing:-16.135573pt;}
.ws9{word-spacing:-16.097173pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.632640pt;}
.ws12{word-spacing:-15.311360pt;}
.ws11{word-spacing:-14.672427pt;}
.ws2{word-spacing:-13.302684pt;}
.wsc{word-spacing:0.000000pt;}
._12{margin-left:-10.601173pt;}
._14{margin-left:-5.828480pt;}
._13{margin-left:-1.866027pt;}
._2{margin-left:-0.960000pt;}
._3{width:0.970667pt;}
._8{width:2.214400pt;}
._5{width:3.292160pt;}
._4{width:4.357120pt;}
._c{width:5.711360pt;}
._f{width:6.679467pt;}
._d{width:8.655360pt;}
._a{width:9.719253pt;}
._b{width:10.969600pt;}
._e{width:12.471467pt;}
._6{width:17.487360pt;}
._7{width:18.988373pt;}
._15{width:21.294293pt;}
._11{width:24.455893pt;}
._9{width:30.719573pt;}
._10{width:52.546560pt;}
._0{width:368.000000pt;}
._1{width:1188.106667pt;}
.fs1{font-size:42.500587pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:84.326561pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-6.240000pt;}
.yf{bottom:-1.920000pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:2.880000pt;}
.y69{bottom:3.040000pt;}
.y39{bottom:3.200000pt;}
.y3f{bottom:3.520000pt;}
.y16{bottom:7.040000pt;}
.y18{bottom:7.200000pt;}
.y2a{bottom:8.000000pt;}
.y42{bottom:8.160000pt;}
.y7{bottom:9.920000pt;}
.ya{bottom:12.800000pt;}
.ye{bottom:17.120000pt;}
.yee{bottom:18.240000pt;}
.y68{bottom:19.840000pt;}
.y38{bottom:20.000000pt;}
.y3e{bottom:21.440000pt;}
.ya0{bottom:21.920000pt;}
.y24{bottom:23.866667pt;}
.y1a{bottom:23.880000pt;}
.y15{bottom:24.000000pt;}
.ya3{bottom:31.040000pt;}
.y6{bottom:32.000000pt;}
.yed{bottom:33.600000pt;}
.y9{bottom:34.880000pt;}
.y98{bottom:36.800000pt;}
.y37{bottom:36.960000pt;}
.y67{bottom:37.754667pt;}
.y3d{bottom:38.400000pt;}
.yd{bottom:39.360000pt;}
.yf2{bottom:40.320000pt;}
.ya5{bottom:40.360000pt;}
.y23{bottom:44.826667pt;}
.y4{bottom:51.360000pt;}
.y97{bottom:53.594667pt;}
.ybf{bottom:53.754667pt;}
.y3c{bottom:55.200000pt;}
.y66{bottom:55.514667pt;}
.yf1{bottom:58.240000pt;}
.ya4{bottom:58.760000pt;}
.y22{bottom:61.626667pt;}
.yec{bottom:64.154667pt;}
.y3{bottom:69.792000pt;}
.y36{bottom:70.554667pt;}
.y3b{bottom:72.000000pt;}
.y65{bottom:73.434667pt;}
.yeb{bottom:79.674667pt;}
.y21{bottom:82.586667pt;}
.y96{bottom:87.354667pt;}
.y35{bottom:87.514667pt;}
.yc0{bottom:88.512000pt;}
.y6a{bottom:88.672000pt;}
.y64{bottom:90.394667pt;}
.y43{bottom:95.712000pt;}
.y99{bottom:96.032000pt;}
.y2b{bottom:96.352000pt;}
.yea{bottom:96.634667pt;}
.y20{bottom:103.386667pt;}
.ybe{bottom:103.994667pt;}
.y95{bottom:104.154667pt;}
.y34{bottom:104.314667pt;}
.ye9{bottom:113.434667pt;}
.ybd{bottom:119.354667pt;}
.y94{bottom:121.114667pt;}
.y33{bottom:121.274667pt;}
.y1f{bottom:124.186667pt;}
.ye8{bottom:130.394667pt;}
.y93{bottom:137.914667pt;}
.y32{bottom:138.074667pt;}
.y1e{bottom:145.146667pt;}
.ye7{bottom:147.194667pt;}
.ybc{bottom:150.074667pt;}
.y92{bottom:154.874667pt;}
.y31{bottom:155.034667pt;}
.ye6{bottom:164.154667pt;}
.ybb{bottom:165.434667pt;}
.y91{bottom:171.674667pt;}
.y30{bottom:171.834667pt;}
.ye5{bottom:180.954667pt;}
.y90{bottom:188.474667pt;}
.y2f{bottom:188.674667pt;}
.yba{bottom:196.034667pt;}
.ye4{bottom:197.794667pt;}
.y63{bottom:202.746667pt;}
.y8f{bottom:205.474667pt;}
.y2e{bottom:205.634667pt;}
.yb9{bottom:211.714667pt;}
.ye3{bottom:214.754667pt;}
.y8e{bottom:222.274667pt;}
.y2d{bottom:222.434667pt;}
.y62{bottom:225.146667pt;}
.yb8{bottom:228.514667pt;}
.ye2{bottom:231.554667pt;}
.y8d{bottom:239.234667pt;}
.y2c{bottom:239.394667pt;}
.y5d{bottom:243.554667pt;}
.yb7{bottom:245.314667pt;}
.y61{bottom:247.546667pt;}
.ye1{bottom:248.514667pt;}
.y8c{bottom:256.034667pt;}
.y5c{bottom:260.514667pt;}
.yb6{bottom:262.274667pt;}
.ye0{bottom:265.314667pt;}
.y60{bottom:269.946667pt;}
.y8b{bottom:272.994667pt;}
.y5b{bottom:277.314667pt;}
.yb5{bottom:279.074667pt;}
.ydf{bottom:282.114667pt;}
.y8a{bottom:289.794667pt;}
.y5f{bottom:292.386667pt;}
.y5a{bottom:294.114667pt;}
.yb4{bottom:296.034667pt;}
.yde{bottom:299.074667pt;}
.y89{bottom:306.594667pt;}
.y59{bottom:312.034667pt;}
.yb3{bottom:312.834667pt;}
.y5e{bottom:314.786667pt;}
.ydd{bottom:315.874667pt;}
.y88{bottom:323.554667pt;}
.yb2{bottom:329.634667pt;}
.y58{bottom:329.794667pt;}
.ydc{bottom:332.834667pt;}
.y87{bottom:340.354667pt;}
.yb1{bottom:346.594667pt;}
.y57{bottom:347.714667pt;}
.ydb{bottom:349.634667pt;}
.y29{bottom:350.146667pt;}
.y86{bottom:357.314667pt;}
.yb0{bottom:363.394667pt;}
.y56{bottom:365.634667pt;}
.yda{bottom:366.434667pt;}
.y85{bottom:374.114667pt;}
.yaf{bottom:380.354667pt;}
.y55{bottom:382.434667pt;}
.yd9{bottom:383.394667pt;}
.y84{bottom:390.914667pt;}
.yae{bottom:397.154667pt;}
.y28{bottom:397.346667pt;}
.y54{bottom:399.234667pt;}
.yd8{bottom:400.194667pt;}
.y83{bottom:407.874667pt;}
.y27{bottom:412.866667pt;}
.yad{bottom:414.141333pt;}
.y53{bottom:417.181333pt;}
.y82{bottom:424.701333pt;}
.yac{bottom:430.941333pt;}
.yd7{bottom:433.981333pt;}
.y52{bottom:435.101333pt;}
.y26{bottom:438.306667pt;}
.y81{bottom:441.661333pt;}
.yab{bottom:447.741333pt;}
.yd6{bottom:450.781333pt;}
.y51{bottom:453.021333pt;}
.y80{bottom:458.461333pt;}
.y105{bottom:459.906667pt;}
.y25{bottom:463.906667pt;}
.yaa{bottom:464.701333pt;}
.yd5{bottom:467.421333pt;}
.y50{bottom:469.821333pt;}
.y7f{bottom:475.261333pt;}
.ya9{bottom:481.501333pt;}
.yd4{bottom:482.781333pt;}
.y4f{bottom:486.621333pt;}
.y1d{bottom:489.506667pt;}
.y7e{bottom:492.221333pt;}
.y104{bottom:496.706667pt;}
.y4e{bottom:504.541333pt;}
.y7d{bottom:509.021333pt;}
.yd3{bottom:513.501333pt;}
.y103{bottom:515.133333pt;}
.ya8{bottom:515.261333pt;}
.y4d{bottom:522.301333pt;}
.y7c{bottom:525.981333pt;}
.yd2{bottom:529.021333pt;}
.ya7{bottom:532.061333pt;}
.y102{bottom:533.693333pt;}
.y4c{bottom:540.221333pt;}
.y7b{bottom:542.781333pt;}
.yd1{bottom:545.981333pt;}
.y101{bottom:552.093333pt;}
.y4b{bottom:558.141333pt;}
.y7a{bottom:559.581333pt;}
.yd0{bottom:562.781333pt;}
.y100{bottom:570.493333pt;}
.y4a{bottom:574.941333pt;}
.ycf{bottom:579.581333pt;}
.yff{bottom:588.893333pt;}
.y49{bottom:591.901333pt;}
.y79{bottom:593.341333pt;}
.yce{bottom:596.541333pt;}
.yfe{bottom:607.293333pt;}
.y48{bottom:608.701333pt;}
.y78{bottom:610.301333pt;}
.ycd{bottom:613.341333pt;}
.y47{bottom:625.501333pt;}
.yfd{bottom:625.693333pt;}
.y77{bottom:627.101333pt;}
.ycc{bottom:630.301333pt;}
.y46{bottom:642.501333pt;}
.y76{bottom:643.941333pt;}
.yfc{bottom:644.093333pt;}
.ya6{bottom:646.173333pt;}
.ycb{bottom:647.141333pt;}
.y1c{bottom:653.053333pt;}
.y45{bottom:659.301333pt;}
.y75{bottom:660.901333pt;}
.yfb{bottom:662.493333pt;}
.yca{bottom:663.941333pt;}
.y44{bottom:676.261333pt;}
.y74{bottom:677.701333pt;}
.yfa{bottom:678.013333pt;}
.yc9{bottom:680.901333pt;}
.ya2{bottom:688.413333pt;}
.y73{bottom:694.661333pt;}
.y1b{bottom:695.453333pt;}
.yf9{bottom:695.613333pt;}
.yc8{bottom:697.701333pt;}
.y72{bottom:711.461333pt;}
.yf8{bottom:713.053333pt;}
.yc7{bottom:714.661333pt;}
.y19{bottom:721.053333pt;}
.y71{bottom:728.421333pt;}
.yf7{bottom:730.693333pt;}
.yc6{bottom:731.461333pt;}
.y70{bottom:745.221333pt;}
.yf6{bottom:748.133333pt;}
.yc5{bottom:748.261333pt;}
.y9e{bottom:757.701333pt;}
.y6f{bottom:762.021333pt;}
.y17{bottom:763.333333pt;}
.yc4{bottom:765.221333pt;}
.yf5{bottom:765.733333pt;}
.ya1{bottom:767.333333pt;}
.y9d{bottom:774.501333pt;}
.y6e{bottom:779.941333pt;}
.yc3{bottom:782.021333pt;}
.y41{bottom:786.373333pt;}
.y14{bottom:788.933333pt;}
.y9c{bottom:791.461333pt;}
.y6d{bottom:797.701333pt;}
.yc2{bottom:798.981333pt;}
.yf4{bottom:800.133333pt;}
.y9b{bottom:808.261333pt;}
.y9f{bottom:809.413333pt;}
.y6c{bottom:815.621333pt;}
.y9a{bottom:825.061333pt;}
.y6b{bottom:832.421333pt;}
.yc1{bottom:832.581333pt;}
.y40{bottom:833.573333pt;}
.y13{bottom:834.853333pt;}
.yf3{bottom:847.333333pt;}
.y3a{bottom:849.093333pt;}
.y12{bottom:854.213333pt;}
.yf0{bottom:862.853333pt;}
.y11{bottom:902.373333pt;}
.y10{bottom:920.613333pt;}
.y2{bottom:939.173333pt;}
.y1{bottom:954.080000pt;}
.yc{bottom:967.200000pt;}
.y8{bottom:968.800000pt;}
.y5{bottom:971.680000pt;}
.h26{height:16.800000pt;}
.h25{height:16.960000pt;}
.h27{height:16.992000pt;}
.h17{height:18.400000pt;}
.h19{height:18.432000pt;}
.hd{height:24.800000pt;}
.hb{height:24.960000pt;}
.h3{height:32.290485pt;}
.h23{height:33.760000pt;}
.h1c{height:36.800000pt;}
.hc{height:41.632000pt;}
.h9{height:41.760000pt;}
.h2{height:41.920000pt;}
.hf{height:42.880000pt;}
.h24{height:43.038750pt;}
.h15{height:43.040000pt;}
.h12{height:44.500000pt;}
.h5{height:44.800000pt;}
.h6{height:49.280000pt;}
.h20{height:52.108438pt;}
.h1e{height:53.535000pt;}
.h1f{height:55.402500pt;}
.ha{height:61.410000pt;}
.h1{height:62.781250pt;}
.h18{height:62.812500pt;}
.h4{height:64.068422pt;}
.h14{height:64.500000pt;}
.h7{height:66.750000pt;}
.h22{height:72.000000pt;}
.h1d{height:73.632000pt;}
.h10{height:83.437500pt;}
.h13{height:85.760000pt;}
.h8{height:88.777500pt;}
.he{height:162.906667pt;}
.h11{height:253.146667pt;}
.h16{height:690.013333pt;}
.h1b{height:838.813333pt;}
.h1a{height:846.173333pt;}
.h21{height:846.333333pt;}
.h0{height:1056.000000pt;}
.w4{width:62.432000pt;}
.wf{width:85.440000pt;}
.wd{width:87.552000pt;}
.wc{width:99.072000pt;}
.w11{width:101.920000pt;}
.w3{width:115.680000pt;}
.w2{width:116.000000pt;}
.w9{width:122.432000pt;}
.wa{width:145.466667pt;}
.wb{width:170.586667pt;}
.w5{width:242.786667pt;}
.we{width:384.226667pt;}
.w6{width:435.106667pt;}
.w10{width:583.013333pt;}
.w7{width:678.853333pt;}
.w8{width:686.213333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:0.960000pt;}
.x2d{left:5.600000pt;}
.x11{left:6.720000pt;}
.x2a{left:8.000000pt;}
.xb{left:9.600000pt;}
.xa{left:12.320000pt;}
.x6{left:13.440000pt;}
.xe{left:15.360000pt;}
.x23{left:18.720000pt;}
.xd{left:20.800000pt;}
.x1a{left:22.720000pt;}
.x29{left:23.680000pt;}
.x27{left:26.720000pt;}
.x2b{left:27.840000pt;}
.x33{left:28.832000pt;}
.x14{left:30.752000pt;}
.x5{left:35.200000pt;}
.x9{left:36.320000pt;}
.x15{left:40.000000pt;}
.x28{left:43.712000pt;}
.x1d{left:46.560000pt;}
.x20{left:49.760000pt;}
.x1b{left:51.040000pt;}
.x1f{left:53.320000pt;}
.x13{left:54.752000pt;}
.x1c{left:63.520000pt;}
.x1e{left:66.240000pt;}
.x10{left:68.800000pt;}
.x3{left:75.519988pt;}
.x16{left:77.600000pt;}
.x21{left:78.560000pt;}
.x31{left:81.946667pt;}
.x7{left:102.560000pt;}
.x34{left:108.826667pt;}
.x2e{left:119.040000pt;}
.x25{left:134.880000pt;}
.x36{left:148.826655pt;}
.x2c{left:165.946667pt;}
.x22{left:180.826667pt;}
.x2f{left:183.546667pt;}
.x18{left:202.106667pt;}
.x30{left:220.066667pt;}
.x32{left:236.386667pt;}
.x24{left:271.746667pt;}
.x1{left:280.386655pt;}
.x12{left:312.226667pt;}
.x19{left:349.666667pt;}
.x2{left:407.906655pt;}
.x4{left:440.093333pt;}
.xf{left:512.573321pt;}
.xc{left:565.693333pt;}
.x8{left:644.133333pt;}
.x35{left:652.613333pt;}
.x26{left:659.333333pt;}
}




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