
    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_2791bc2268624629b82de39d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_b505a84b1a403407adc2f16a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_14aecb56d2c605ef2722815e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_527657ff3a8fb086ef4c01dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125000;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_a950d78938d5a1e31801073a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.156738;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_24884d2640d055da1c5adf1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972656;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_6b19af8d572ea3023eadb755.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_665339cf1ac815c0522c8d13.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_131070eba90544ad1d4f9afd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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);}
.v4{vertical-align:-6.480000px;}
.v1{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160000px;}
.v2{vertical-align:4.320000px;}
.ls10{letter-spacing:-2.988000px;}
.ls34{letter-spacing:-1.548000px;}
.ls26{letter-spacing:-1.344000px;}
.ls3a{letter-spacing:-0.828000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.564600px;}
.ls24{letter-spacing:-0.414600px;}
.ls29{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.308400px;}
.ls39{letter-spacing:-0.306600px;}
.lsd{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.106800px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.027360px;}
.lse{letter-spacing:0.054720px;}
.ls0{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.097800px;}
.ls2a{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.126600px;}
.ls2{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.147360px;}
.ls20{letter-spacing:0.155400px;}
.ls7{letter-spacing:0.170640px;}
.ls2d{letter-spacing:0.204600px;}
.ls4{letter-spacing:0.216000px;}
.ls38{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.262080px;}
.ls3{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.305280px;}
.ls3b{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.666720px;}
.ls25{letter-spacing:1.025280px;}
.ls2f{letter-spacing:1.745280px;}
.ls27{letter-spacing:3.185280px;}
.ls1c{letter-spacing:3.905280px;}
.ls1a{letter-spacing:4.625280px;}
.ls35{letter-spacing:4.986720px;}
.ls23{letter-spacing:5.345280px;}
.ls1e{letter-spacing:6.785280px;}
.ls36{letter-spacing:7.146720px;}
.ls1f{letter-spacing:7.505280px;}
.ls9{letter-spacing:7.866720px;}
.ls14{letter-spacing:10.385280px;}
.ls22{letter-spacing:11.825280px;}
.ls21{letter-spacing:16.145280px;}
.ls16{letter-spacing:16.865280px;}
.ls2b{letter-spacing:19.025280px;}
.ls31{letter-spacing:19.745280px;}
.ls28{letter-spacing:21.185280px;}
.ls8{letter-spacing:34.121280px;}
.ls17{letter-spacing:34.841280px;}
.ls32{letter-spacing:40.986720px;}
.ls33{letter-spacing:43.146720px;}
.ls1d{letter-spacing:48.545280px;}
.ls12{letter-spacing:56.465280px;}
.ls19{letter-spacing:56.645280px;}
.ls2c{letter-spacing:57.185280px;}
.ls18{letter-spacing:62.945280px;}
.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;}
}
.ws4{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.872000px;}
.ws2{word-spacing:-19.800000px;}
.ws12{word-spacing:-18.619320px;}
.wse{word-spacing:-18.570120px;}
.ws13{word-spacing:-18.512520px;}
.wsa{word-spacing:-18.414720px;}
.ws9{word-spacing:-18.305520px;}
.wsd{word-spacing:-18.106320px;}
.wsf{word-spacing:-17.070720px;}
.ws19{word-spacing:-16.973280px;}
.ws16{word-spacing:-16.873080px;}
.ws8{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws17{word-spacing:-16.306680px;}
.ws7{word-spacing:-15.867360px;}
.ws3{word-spacing:-15.812640px;}
.ws18{word-spacing:-15.785280px;}
.ws15{word-spacing:-15.065280px;}
.ws10{word-spacing:-15.012000px;}
.ws11{word-spacing:-14.652000px;}
.wsb{word-spacing:-13.625280px;}
.ws14{word-spacing:-13.410720px;}
.wsc{word-spacing:0.000000px;}
._34{margin-left:-5.041200px;}
._b{margin-left:-3.585600px;}
._10{margin-left:-2.302800px;}
._1{margin-left:-1.277760px;}
._0{width:1.188000px;}
._6{width:2.627280px;}
._a{width:3.884400px;}
._4{width:5.736960px;}
._5{width:6.819840px;}
._2{width:8.715360px;}
._3{width:9.920160px;}
._8{width:11.309040px;}
._7{width:12.609360px;}
._14{width:14.506560px;}
._20{width:16.096320px;}
._21{width:17.407680px;}
._9{width:20.079360px;}
._22{width:21.188160px;}
._1e{width:23.203200px;}
._1d{width:24.641280px;}
._d{width:26.117760px;}
._c{width:27.354000px;}
._1c{width:29.130000px;}
._23{width:30.575040px;}
._12{width:31.927680px;}
._13{width:33.120000px;}
._16{width:34.158240px;}
._30{width:35.523840px;}
._2f{width:36.851040px;}
._2d{width:37.913760px;}
._2c{width:39.233280px;}
._17{width:40.273920px;}
._18{width:41.352960px;}
._26{width:42.791040px;}
._f{width:44.447040px;}
._e{width:46.320960px;}
._1a{width:47.342400px;}
._1b{width:48.562560px;}
._37{width:49.715280px;}
._36{width:50.875920px;}
._29{width:51.998400px;}
._31{width:53.222160px;}
._25{width:54.269760px;}
._19{width:55.972800px;}
._24{width:57.282000px;}
._2e{width:58.373040px;}
._38{width:59.748480px;}
._11{width:61.489920px;}
._1f{width:62.959440px;}
._2b{width:67.299840px;}
._2a{width:68.609040px;}
._15{width:70.611840px;}
._35{width:72.864000px;}
._27{width:78.147600px;}
._28{width:84.720960px;}
._3c{width:92.961840px;}
._3d{width:94.146720px;}
._32{width:130.360320px;}
._33{width:131.802000px;}
._39{width:144.499680px;}
._3e{width:197.292720px;}
._3a{width:205.810080px;}
._3b{width:660.527280px;}
._3f{width:846.483120px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.420000px;}
.y2{bottom:22.500000px;}
.y1{bottom:41.040000px;}
.y29{bottom:109.476000px;}
.yb4{bottom:110.196000px;}
.ycc{bottom:111.456000px;}
.y61{bottom:113.436000px;}
.y9e{bottom:115.416000px;}
.yfc{bottom:116.856000px;}
.ycf{bottom:117.756000px;}
.y85{bottom:120.276000px;}
.y4e{bottom:122.076000px;}
.yb3{bottom:125.676000px;}
.y28{bottom:126.576000px;}
.y9b{bottom:127.116000px;}
.y9d{bottom:128.016000px;}
.ycb{bottom:128.736000px;}
.y60{bottom:132.336000px;}
.yfb{bottom:132.516000px;}
.yce{bottom:136.836000px;}
.y84{bottom:139.176000px;}
.y4d{bottom:140.976000px;}
.y27{bottom:143.856000px;}
.yca{bottom:145.836000px;}
.ye4{bottom:146.016000px;}
.y9a{bottom:146.196000px;}
.y26{bottom:148.356000px;}
.y5f{bottom:151.410000px;}
.y83{bottom:158.250000px;}
.y4c{bottom:159.870000px;}
.y25{bottom:161.850000px;}
.ye3{bottom:163.290000px;}
.yc9{bottom:163.470000px;}
.y99{bottom:165.090000px;}
.ycd{bottom:165.810000px;}
.yfa{bottom:168.690000px;}
.y5e{bottom:170.310000px;}
.y82{bottom:177.150000px;}
.y4b{bottom:178.950000px;}
.ye2{bottom:180.390000px;}
.yc8{bottom:182.370000px;}
.y98{bottom:184.170000px;}
.yf9{bottom:185.970000px;}
.y5d{bottom:188.670000px;}
.y81{bottom:196.230000px;}
.y24{bottom:196.410000px;}
.ye1{bottom:197.670000px;}
.y4a{bottom:197.850000px;}
.yc7{bottom:201.270000px;}
.y97{bottom:203.070000px;}
.yf8{bottom:203.250000px;}
.y5c{bottom:204.870000px;}
.ye0{bottom:214.950000px;}
.y80{bottom:215.130000px;}
.y23{bottom:215.310000px;}
.y49{bottom:216.930000px;}
.yc6{bottom:220.350000px;}
.y96{bottom:221.970000px;}
.y5b{bottom:223.770000px;}
.ydf{bottom:232.275000px;}
.y7f{bottom:234.255000px;}
.y22{bottom:234.435000px;}
.y48{bottom:235.875000px;}
.yf7{bottom:237.675000px;}
.yc5{bottom:239.295000px;}
.y95{bottom:241.095000px;}
.y5a{bottom:242.715000px;}
.yde{bottom:249.555000px;}
.y7e{bottom:253.155000px;}
.y47{bottom:254.955000px;}
.yc4{bottom:258.375000px;}
.y94{bottom:259.995000px;}
.y59{bottom:261.795000px;}
.ydd{bottom:266.835000px;}
.y7d{bottom:272.055000px;}
.yf6{bottom:272.235000px;}
.y46{bottom:273.855000px;}
.yc3{bottom:277.275000px;}
.y93{bottom:279.075000px;}
.y21{bottom:280.155000px;}
.y58{bottom:280.695000px;}
.ydc{bottom:283.935000px;}
.yb2{bottom:287.355000px;}
.yf5{bottom:289.515000px;}
.y7c{bottom:291.135000px;}
.y45{bottom:292.755000px;}
.yc2{bottom:296.175000px;}
.y20{bottom:297.435000px;}
.y92{bottom:297.975000px;}
.y57{bottom:299.775000px;}
.ydb{bottom:301.215000px;}
.yb1{bottom:302.475000px;}
.yf4{bottom:306.795000px;}
.y7b{bottom:310.035000px;}
.y44{bottom:311.835000px;}
.y9c{bottom:313.275000px;}
.yc1{bottom:315.255000px;}
.y91{bottom:316.875000px;}
.yb0{bottom:317.235000px;}
.y56{bottom:318.135000px;}
.yda{bottom:318.495000px;}
.y1f{bottom:323.535000px;}
.yf3{bottom:323.895000px;}
.y7a{bottom:329.115000px;}
.y43{bottom:330.735000px;}
.y55{bottom:334.155000px;}
.yd9{bottom:335.775000px;}
.y90{bottom:335.955000px;}
.yaf{bottom:336.135000px;}
.y1e{bottom:340.815000px;}
.y79{bottom:348.015000px;}
.y42{bottom:349.815000px;}
.yd8{bottom:353.055000px;}
.y54{bottom:353.235000px;}
.y8f{bottom:354.855000px;}
.yae{bottom:355.035000px;}
.y1d{bottom:358.095000px;}
.y78{bottom:366.915000px;}
.y41{bottom:368.715000px;}
.yd7{bottom:370.335000px;}
.y53{bottom:372.135000px;}
.y8e{bottom:373.935000px;}
.yad{bottom:374.115000px;}
.y1c{bottom:375.375000px;}
.y77{bottom:385.995000px;}
.yd6{bottom:387.435000px;}
.y40{bottom:387.615000px;}
.y52{bottom:391.215000px;}
.y1b{bottom:392.655000px;}
.y8d{bottom:392.835000px;}
.yac{bottom:393.015000px;}
.yd5{bottom:404.715000px;}
.y76{bottom:404.895000px;}
.y3f{bottom:406.695000px;}
.y1a{bottom:409.935000px;}
.y51{bottom:410.115000px;}
.y8c{bottom:411.915000px;}
.yab{bottom:412.095000px;}
.yd4{bottom:422.025000px;}
.y75{bottom:424.005000px;}
.y3e{bottom:425.625000px;}
.y19{bottom:427.065000px;}
.y50{bottom:429.045000px;}
.y8b{bottom:430.845000px;}
.yaa{bottom:431.025000px;}
.yd3{bottom:439.305000px;}
.y74{bottom:442.905000px;}
.y18{bottom:444.345000px;}
.y3d{bottom:444.705000px;}
.y4f{bottom:447.585000px;}
.yc0{bottom:448.125000px;}
.y8a{bottom:449.745000px;}
.ya9{bottom:449.925000px;}
.yd2{bottom:456.585000px;}
.y17{bottom:461.625000px;}
.y73{bottom:461.805000px;}
.y3c{bottom:463.605000px;}
.ybf{bottom:467.025000px;}
.y89{bottom:468.825000px;}
.ya8{bottom:469.005000px;}
.yd1{bottom:473.685000px;}
.y16{bottom:478.905000px;}
.y72{bottom:480.885000px;}
.y3b{bottom:482.505000px;}
.ybe{bottom:486.105000px;}
.y88{bottom:487.725000px;}
.ya7{bottom:487.905000px;}
.yd0{bottom:490.965000px;}
.y15{bottom:496.185000px;}
.y71{bottom:499.785000px;}
.y3a{bottom:501.585000px;}
.ybd{bottom:505.005000px;}
.y87{bottom:506.805000px;}
.ya6{bottom:506.985000px;}
.y14{bottom:513.285000px;}
.y70{bottom:518.145000px;}
.y39{bottom:520.485000px;}
.ybc{bottom:523.905000px;}
.y86{bottom:524.805000px;}
.ya5{bottom:525.345000px;}
.y13{bottom:530.565000px;}
.y6f{bottom:534.345000px;}
.y38{bottom:539.565000px;}
.ya4{bottom:541.365000px;}
.ybb{bottom:542.985000px;}
.y12{bottom:547.845000px;}
.y6e{bottom:553.245000px;}
.y37{bottom:558.465000px;}
.yba{bottom:561.885000px;}
.yf2{bottom:565.125000px;}
.y11{bottom:565.665000px;}
.y6d{bottom:572.325000px;}
.y36{bottom:577.365000px;}
.ya3{bottom:577.905000px;}
.yb9{bottom:580.965000px;}
.yf1{bottom:582.405000px;}
.y10{bottom:585.825000px;}
.y6c{bottom:591.225000px;}
.y35{bottom:596.445000px;}
.yf0{bottom:599.685000px;}
.yb8{bottom:599.865000px;}
.yf{bottom:603.645000px;}
.ya2{bottom:608.505000px;}
.y6b{bottom:610.350000px;}
.y34{bottom:615.390000px;}
.yef{bottom:616.830000px;}
.yb7{bottom:618.810000px;}
.ye{bottom:624.390000px;}
.y6a{bottom:629.250000px;}
.yee{bottom:634.110000px;}
.y33{bottom:634.470000px;}
.yb6{bottom:637.890000px;}
.yd{bottom:645.090000px;}
.y69{bottom:646.890000px;}
.yed{bottom:651.390000px;}
.y32{bottom:653.370000px;}
.yb5{bottom:656.250000px;}
.y68{bottom:660.210000px;}
.yc{bottom:665.790000px;}
.yec{bottom:668.670000px;}
.y31{bottom:672.270000px;}
.y67{bottom:679.290000px;}
.yb{bottom:685.950000px;}
.y30{bottom:691.350000px;}
.y66{bottom:698.190000px;}
.yeb{bottom:703.230000px;}
.ya{bottom:703.770000px;}
.y2f{bottom:710.250000px;}
.y65{bottom:717.270000px;}
.yea{bottom:720.330000px;}
.y9{bottom:723.930000px;}
.y2e{bottom:729.330000px;}
.y64{bottom:736.170000px;}
.ye9{bottom:737.610000px;}
.y7{bottom:741.570000px;}
.y8{bottom:747.510000px;}
.y2d{bottom:748.230000px;}
.ye8{bottom:754.890000px;}
.y63{bottom:755.070000px;}
.y6{bottom:762.270000px;}
.y2c{bottom:767.310000px;}
.ya1{bottom:770.370000px;}
.ye7{bottom:772.170000px;}
.y62{bottom:772.890000px;}
.y5{bottom:782.970000px;}
.y2b{bottom:786.210000px;}
.ya0{bottom:788.370000px;}
.ye6{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.y2a{bottom:805.140000px;}
.ye5{bottom:806.760000px;}
.y9f{bottom:808.020000px;}
.h15{height:33.683203px;}
.he{height:34.874297px;}
.h11{height:37.457578px;}
.h13{height:39.840820px;}
.h12{height:43.269961px;}
.h6{height:43.905937px;}
.ha{height:44.090508px;}
.h9{height:45.549492px;}
.h3{height:46.251562px;}
.h10{height:48.436523px;}
.h14{height:48.871406px;}
.h16{height:49.148438px;}
.hd{height:50.273438px;}
.h2{height:53.603086px;}
.h7{height:54.390938px;}
.hc{height:59.415469px;}
.h18{height:60.083086px;}
.hb{height:60.288750px;}
.h8{height:64.582031px;}
.h4{height:65.531250px;}
.hf{height:75.560977px;}
.h17{height:76.671562px;}
.h5{height:80.703984px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x2{left:80.855991px;}
.xa{left:83.195991px;}
.x10{left:86.255991px;}
.x4{left:93.635991px;}
.xb{left:96.335991px;}
.x9{left:103.535991px;}
.x3{left:107.135991px;}
.x1b{left:108.935991px;}
.xd{left:123.335991px;}
.x16{left:128.735991px;}
.x18{left:133.415991px;}
.xe{left:134.855991px;}
.x12{left:161.849991px;}
.x5{left:169.229991px;}
.x15{left:177.149991px;}
.x13{left:188.489991px;}
.x19{left:215.894991px;}
.xc{left:295.274991px;}
.xf{left:296.894991px;}
.x11{left:302.294991px;}
.x1{left:306.434991px;}
.x8{left:314.714991px;}
.x1a{left:393.584991px;}
.x14{left:437.684991px;}
.x6{left:453.704981px;}
.x17{left:456.044991px;}
.x7{left:460.364991px;}
@media print{
.v4{vertical-align:-5.760000pt;}
.v1{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920000pt;}
.v2{vertical-align:3.840000pt;}
.ls10{letter-spacing:-2.656000pt;}
.ls34{letter-spacing:-1.376000pt;}
.ls26{letter-spacing:-1.194667pt;}
.ls3a{letter-spacing:-0.736000pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.501867pt;}
.ls24{letter-spacing:-0.368533pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.274133pt;}
.ls39{letter-spacing:-0.272533pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024320pt;}
.lse{letter-spacing:0.048640pt;}
.ls0{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.086933pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.112533pt;}
.ls2{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.130987pt;}
.ls20{letter-spacing:0.138133pt;}
.ls7{letter-spacing:0.151680pt;}
.ls2d{letter-spacing:0.181867pt;}
.ls4{letter-spacing:0.192000pt;}
.ls38{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.232960pt;}
.ls3{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.271360pt;}
.ls3b{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.592640pt;}
.ls25{letter-spacing:0.911360pt;}
.ls2f{letter-spacing:1.551360pt;}
.ls27{letter-spacing:2.831360pt;}
.ls1c{letter-spacing:3.471360pt;}
.ls1a{letter-spacing:4.111360pt;}
.ls35{letter-spacing:4.432640pt;}
.ls23{letter-spacing:4.751360pt;}
.ls1e{letter-spacing:6.031360pt;}
.ls36{letter-spacing:6.352640pt;}
.ls1f{letter-spacing:6.671360pt;}
.ls9{letter-spacing:6.992640pt;}
.ls14{letter-spacing:9.231360pt;}
.ls22{letter-spacing:10.511360pt;}
.ls21{letter-spacing:14.351360pt;}
.ls16{letter-spacing:14.991360pt;}
.ls2b{letter-spacing:16.911360pt;}
.ls31{letter-spacing:17.551360pt;}
.ls28{letter-spacing:18.831360pt;}
.ls8{letter-spacing:30.330027pt;}
.ls17{letter-spacing:30.970027pt;}
.ls32{letter-spacing:36.432640pt;}
.ls33{letter-spacing:38.352640pt;}
.ls1d{letter-spacing:43.151360pt;}
.ls12{letter-spacing:50.191360pt;}
.ls19{letter-spacing:50.351360pt;}
.ls2c{letter-spacing:50.831360pt;}
.ls18{letter-spacing:55.951360pt;}
.ws4{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws12{word-spacing:-16.550507pt;}
.wse{word-spacing:-16.506773pt;}
.ws13{word-spacing:-16.455573pt;}
.wsa{word-spacing:-16.368640pt;}
.ws9{word-spacing:-16.271573pt;}
.wsd{word-spacing:-16.094507pt;}
.wsf{word-spacing:-15.173973pt;}
.ws19{word-spacing:-15.087360pt;}
.ws16{word-spacing:-14.998293pt;}
.ws8{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws17{word-spacing:-14.494827pt;}
.ws7{word-spacing:-14.104320pt;}
.ws3{word-spacing:-14.055680pt;}
.ws18{word-spacing:-14.031360pt;}
.ws15{word-spacing:-13.391360pt;}
.ws10{word-spacing:-13.344000pt;}
.ws11{word-spacing:-13.024000pt;}
.wsb{word-spacing:-12.111360pt;}
.ws14{word-spacing:-11.920640pt;}
.wsc{word-spacing:0.000000pt;}
._34{margin-left:-4.481067pt;}
._b{margin-left:-3.187200pt;}
._10{margin-left:-2.046933pt;}
._1{margin-left:-1.135787pt;}
._0{width:1.056000pt;}
._6{width:2.335360pt;}
._a{width:3.452800pt;}
._4{width:5.099520pt;}
._5{width:6.062080pt;}
._2{width:7.746987pt;}
._3{width:8.817920pt;}
._8{width:10.052480pt;}
._7{width:11.208320pt;}
._14{width:12.894720pt;}
._20{width:14.307840pt;}
._21{width:15.473493pt;}
._9{width:17.848320pt;}
._22{width:18.833920pt;}
._1e{width:20.625067pt;}
._1d{width:21.903360pt;}
._d{width:23.215787pt;}
._c{width:24.314667pt;}
._1c{width:25.893333pt;}
._23{width:27.177813pt;}
._12{width:28.380160pt;}
._13{width:29.440000pt;}
._16{width:30.362880pt;}
._30{width:31.576747pt;}
._2f{width:32.756480pt;}
._2d{width:33.701120pt;}
._2c{width:34.874027pt;}
._17{width:35.799040pt;}
._18{width:36.758187pt;}
._26{width:38.036480pt;}
._f{width:39.508480pt;}
._e{width:41.174187pt;}
._1a{width:42.082133pt;}
._1b{width:43.166720pt;}
._37{width:44.191360pt;}
._36{width:45.223040pt;}
._29{width:46.220800pt;}
._31{width:47.308587pt;}
._25{width:48.239787pt;}
._19{width:49.753600pt;}
._24{width:50.917333pt;}
._2e{width:51.887147pt;}
._38{width:53.109760pt;}
._11{width:54.657707pt;}
._1f{width:55.963947pt;}
._2b{width:59.822080pt;}
._2a{width:60.985813pt;}
._15{width:62.766080pt;}
._35{width:64.768000pt;}
._27{width:69.464533pt;}
._28{width:75.307520pt;}
._3c{width:82.632747pt;}
._3d{width:83.685973pt;}
._32{width:115.875840pt;}
._33{width:117.157333pt;}
._39{width:128.444160pt;}
._3e{width:175.371307pt;}
._3a{width:182.942293pt;}
._3b{width:587.135360pt;}
._3f{width:752.429440pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.040000pt;}
.y2{bottom:20.000000pt;}
.y1{bottom:36.480000pt;}
.y29{bottom:97.312000pt;}
.yb4{bottom:97.952000pt;}
.ycc{bottom:99.072000pt;}
.y61{bottom:100.832000pt;}
.y9e{bottom:102.592000pt;}
.yfc{bottom:103.872000pt;}
.ycf{bottom:104.672000pt;}
.y85{bottom:106.912000pt;}
.y4e{bottom:108.512000pt;}
.yb3{bottom:111.712000pt;}
.y28{bottom:112.512000pt;}
.y9b{bottom:112.992000pt;}
.y9d{bottom:113.792000pt;}
.ycb{bottom:114.432000pt;}
.y60{bottom:117.632000pt;}
.yfb{bottom:117.792000pt;}
.yce{bottom:121.632000pt;}
.y84{bottom:123.712000pt;}
.y4d{bottom:125.312000pt;}
.y27{bottom:127.872000pt;}
.yca{bottom:129.632000pt;}
.ye4{bottom:129.792000pt;}
.y9a{bottom:129.952000pt;}
.y26{bottom:131.872000pt;}
.y5f{bottom:134.586667pt;}
.y83{bottom:140.666667pt;}
.y4c{bottom:142.106667pt;}
.y25{bottom:143.866667pt;}
.ye3{bottom:145.146667pt;}
.yc9{bottom:145.306667pt;}
.y99{bottom:146.746667pt;}
.ycd{bottom:147.386667pt;}
.yfa{bottom:149.946667pt;}
.y5e{bottom:151.386667pt;}
.y82{bottom:157.466667pt;}
.y4b{bottom:159.066667pt;}
.ye2{bottom:160.346667pt;}
.yc8{bottom:162.106667pt;}
.y98{bottom:163.706667pt;}
.yf9{bottom:165.306667pt;}
.y5d{bottom:167.706667pt;}
.y81{bottom:174.426667pt;}
.y24{bottom:174.586667pt;}
.ye1{bottom:175.706667pt;}
.y4a{bottom:175.866667pt;}
.yc7{bottom:178.906667pt;}
.y97{bottom:180.506667pt;}
.yf8{bottom:180.666667pt;}
.y5c{bottom:182.106667pt;}
.ye0{bottom:191.066667pt;}
.y80{bottom:191.226667pt;}
.y23{bottom:191.386667pt;}
.y49{bottom:192.826667pt;}
.yc6{bottom:195.866667pt;}
.y96{bottom:197.306667pt;}
.y5b{bottom:198.906667pt;}
.ydf{bottom:206.466667pt;}
.y7f{bottom:208.226667pt;}
.y22{bottom:208.386667pt;}
.y48{bottom:209.666667pt;}
.yf7{bottom:211.266667pt;}
.yc5{bottom:212.706667pt;}
.y95{bottom:214.306667pt;}
.y5a{bottom:215.746667pt;}
.yde{bottom:221.826667pt;}
.y7e{bottom:225.026667pt;}
.y47{bottom:226.626667pt;}
.yc4{bottom:229.666667pt;}
.y94{bottom:231.106667pt;}
.y59{bottom:232.706667pt;}
.ydd{bottom:237.186667pt;}
.y7d{bottom:241.826667pt;}
.yf6{bottom:241.986667pt;}
.y46{bottom:243.426667pt;}
.yc3{bottom:246.466667pt;}
.y93{bottom:248.066667pt;}
.y21{bottom:249.026667pt;}
.y58{bottom:249.506667pt;}
.ydc{bottom:252.386667pt;}
.yb2{bottom:255.426667pt;}
.yf5{bottom:257.346667pt;}
.y7c{bottom:258.786667pt;}
.y45{bottom:260.226667pt;}
.yc2{bottom:263.266667pt;}
.y20{bottom:264.386667pt;}
.y92{bottom:264.866667pt;}
.y57{bottom:266.466667pt;}
.ydb{bottom:267.746667pt;}
.yb1{bottom:268.866667pt;}
.yf4{bottom:272.706667pt;}
.y7b{bottom:275.586667pt;}
.y44{bottom:277.186667pt;}
.y9c{bottom:278.466667pt;}
.yc1{bottom:280.226667pt;}
.y91{bottom:281.666667pt;}
.yb0{bottom:281.986667pt;}
.y56{bottom:282.786667pt;}
.yda{bottom:283.106667pt;}
.y1f{bottom:287.586667pt;}
.yf3{bottom:287.906667pt;}
.y7a{bottom:292.546667pt;}
.y43{bottom:293.986667pt;}
.y55{bottom:297.026667pt;}
.yd9{bottom:298.466667pt;}
.y90{bottom:298.626667pt;}
.yaf{bottom:298.786667pt;}
.y1e{bottom:302.946667pt;}
.y79{bottom:309.346667pt;}
.y42{bottom:310.946667pt;}
.yd8{bottom:313.826667pt;}
.y54{bottom:313.986667pt;}
.y8f{bottom:315.426667pt;}
.yae{bottom:315.586667pt;}
.y1d{bottom:318.306667pt;}
.y78{bottom:326.146667pt;}
.y41{bottom:327.746667pt;}
.yd7{bottom:329.186667pt;}
.y53{bottom:330.786667pt;}
.y8e{bottom:332.386667pt;}
.yad{bottom:332.546667pt;}
.y1c{bottom:333.666667pt;}
.y77{bottom:343.106667pt;}
.yd6{bottom:344.386667pt;}
.y40{bottom:344.546667pt;}
.y52{bottom:347.746667pt;}
.y1b{bottom:349.026667pt;}
.y8d{bottom:349.186667pt;}
.yac{bottom:349.346667pt;}
.yd5{bottom:359.746667pt;}
.y76{bottom:359.906667pt;}
.y3f{bottom:361.506667pt;}
.y1a{bottom:364.386667pt;}
.y51{bottom:364.546667pt;}
.y8c{bottom:366.146667pt;}
.yab{bottom:366.306667pt;}
.yd4{bottom:375.133333pt;}
.y75{bottom:376.893333pt;}
.y3e{bottom:378.333333pt;}
.y19{bottom:379.613333pt;}
.y50{bottom:381.373333pt;}
.y8b{bottom:382.973333pt;}
.yaa{bottom:383.133333pt;}
.yd3{bottom:390.493333pt;}
.y74{bottom:393.693333pt;}
.y18{bottom:394.973333pt;}
.y3d{bottom:395.293333pt;}
.y4f{bottom:397.853333pt;}
.yc0{bottom:398.333333pt;}
.y8a{bottom:399.773333pt;}
.ya9{bottom:399.933333pt;}
.yd2{bottom:405.853333pt;}
.y17{bottom:410.333333pt;}
.y73{bottom:410.493333pt;}
.y3c{bottom:412.093333pt;}
.ybf{bottom:415.133333pt;}
.y89{bottom:416.733333pt;}
.ya8{bottom:416.893333pt;}
.yd1{bottom:421.053333pt;}
.y16{bottom:425.693333pt;}
.y72{bottom:427.453333pt;}
.y3b{bottom:428.893333pt;}
.ybe{bottom:432.093333pt;}
.y88{bottom:433.533333pt;}
.ya7{bottom:433.693333pt;}
.yd0{bottom:436.413333pt;}
.y15{bottom:441.053333pt;}
.y71{bottom:444.253333pt;}
.y3a{bottom:445.853333pt;}
.ybd{bottom:448.893333pt;}
.y87{bottom:450.493333pt;}
.ya6{bottom:450.653333pt;}
.y14{bottom:456.253333pt;}
.y70{bottom:460.573333pt;}
.y39{bottom:462.653333pt;}
.ybc{bottom:465.693333pt;}
.y86{bottom:466.493333pt;}
.ya5{bottom:466.973333pt;}
.y13{bottom:471.613333pt;}
.y6f{bottom:474.973333pt;}
.y38{bottom:479.613333pt;}
.ya4{bottom:481.213333pt;}
.ybb{bottom:482.653333pt;}
.y12{bottom:486.973333pt;}
.y6e{bottom:491.773333pt;}
.y37{bottom:496.413333pt;}
.yba{bottom:499.453333pt;}
.yf2{bottom:502.333333pt;}
.y11{bottom:502.813333pt;}
.y6d{bottom:508.733333pt;}
.y36{bottom:513.213333pt;}
.ya3{bottom:513.693333pt;}
.yb9{bottom:516.413333pt;}
.yf1{bottom:517.693333pt;}
.y10{bottom:520.733333pt;}
.y6c{bottom:525.533333pt;}
.y35{bottom:530.173333pt;}
.yf0{bottom:533.053333pt;}
.yb8{bottom:533.213333pt;}
.yf{bottom:536.573333pt;}
.ya2{bottom:540.893333pt;}
.y6b{bottom:542.533333pt;}
.y34{bottom:547.013333pt;}
.yef{bottom:548.293333pt;}
.yb7{bottom:550.053333pt;}
.ye{bottom:555.013333pt;}
.y6a{bottom:559.333333pt;}
.yee{bottom:563.653333pt;}
.y33{bottom:563.973333pt;}
.yb6{bottom:567.013333pt;}
.yd{bottom:573.413333pt;}
.y69{bottom:575.013333pt;}
.yed{bottom:579.013333pt;}
.y32{bottom:580.773333pt;}
.yb5{bottom:583.333333pt;}
.y68{bottom:586.853333pt;}
.yc{bottom:591.813333pt;}
.yec{bottom:594.373333pt;}
.y31{bottom:597.573333pt;}
.y67{bottom:603.813333pt;}
.yb{bottom:609.733333pt;}
.y30{bottom:614.533333pt;}
.y66{bottom:620.613333pt;}
.yeb{bottom:625.093333pt;}
.ya{bottom:625.573333pt;}
.y2f{bottom:631.333333pt;}
.y65{bottom:637.573333pt;}
.yea{bottom:640.293333pt;}
.y9{bottom:643.493333pt;}
.y2e{bottom:648.293333pt;}
.y64{bottom:654.373333pt;}
.ye9{bottom:655.653333pt;}
.y7{bottom:659.173333pt;}
.y8{bottom:664.453333pt;}
.y2d{bottom:665.093333pt;}
.ye8{bottom:671.013333pt;}
.y63{bottom:671.173333pt;}
.y6{bottom:677.573333pt;}
.y2c{bottom:682.053333pt;}
.ya1{bottom:684.773333pt;}
.ye7{bottom:686.373333pt;}
.y62{bottom:687.013333pt;}
.y5{bottom:695.973333pt;}
.y2b{bottom:698.853333pt;}
.ya0{bottom:700.773333pt;}
.ye6{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.y2a{bottom:715.680000pt;}
.ye5{bottom:717.120000pt;}
.y9f{bottom:718.240000pt;}
.h15{height:29.940625pt;}
.he{height:30.999375pt;}
.h11{height:33.295625pt;}
.h13{height:35.414062pt;}
.h12{height:38.462187pt;}
.h6{height:39.027500pt;}
.ha{height:39.191562pt;}
.h9{height:40.488438pt;}
.h3{height:41.112500pt;}
.h10{height:43.054688pt;}
.h14{height:43.441250pt;}
.h16{height:43.687500pt;}
.hd{height:44.687500pt;}
.h2{height:47.647188pt;}
.h7{height:48.347500pt;}
.hc{height:52.813750pt;}
.h18{height:53.407188pt;}
.hb{height:53.590000pt;}
.h8{height:57.406250pt;}
.h4{height:58.250000pt;}
.hf{height:67.165312pt;}
.h17{height:68.152500pt;}
.h5{height:71.736875pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x2{left:71.871992pt;}
.xa{left:73.951992pt;}
.x10{left:76.671992pt;}
.x4{left:83.231992pt;}
.xb{left:85.631992pt;}
.x9{left:92.031992pt;}
.x3{left:95.231992pt;}
.x1b{left:96.831992pt;}
.xd{left:109.631992pt;}
.x16{left:114.431992pt;}
.x18{left:118.591992pt;}
.xe{left:119.871992pt;}
.x12{left:143.866658pt;}
.x5{left:150.426658pt;}
.x15{left:157.466658pt;}
.x13{left:167.546658pt;}
.x19{left:191.906658pt;}
.xc{left:262.466658pt;}
.xf{left:263.906658pt;}
.x11{left:268.706658pt;}
.x1{left:272.386658pt;}
.x8{left:279.746658pt;}
.x1a{left:349.853325pt;}
.x14{left:389.053325pt;}
.x6{left:403.293317pt;}
.x17{left:405.373325pt;}
.x7{left:409.213325pt;}
}




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