
    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_c544568c2aac03d08ee40b1a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.024000;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_a93e9244decdca0fb6f1fa24.woff')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_033970dccd50d519c18f73d3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.730957;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_5f9f44a9d7b0b5a982ab0691.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024000;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_04b5a6fe97f21b14ac4c1854.woff')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_546909654fc90c281ac572b1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9cdbd993680c5446a3642327.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_59c517336c79b347652981a6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_8f5422b16eb5149d26ea51b5.woff')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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:-3.024000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:82.080000px;}
.ls23{letter-spacing:-0.519600px;}
.ls1a{letter-spacing:-0.469200px;}
.ls21{letter-spacing:-0.252000px;}
.ls4{letter-spacing:-0.224519px;}
.ls1f{letter-spacing:-0.219000px;}
.ls19{letter-spacing:-0.213000px;}
.ls9{letter-spacing:-0.184200px;}
.lsc{letter-spacing:-0.146400px;}
.lsf{letter-spacing:-0.106800px;}
.ls1e{letter-spacing:-0.069000px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.102600px;}
.ls24{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.175800px;}
.ls28{letter-spacing:0.211800px;}
.ls15{letter-spacing:0.252000px;}
.ls27{letter-spacing:0.289872px;}
.ls1d{letter-spacing:0.306000px;}
.ls20{letter-spacing:0.325200px;}
.ls1c{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.396000px;}
.ls22{letter-spacing:0.413400px;}
.ls16{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.496200px;}
.ls25{letter-spacing:0.570600px;}
.ls2{letter-spacing:0.714000px;}
.ls1b{letter-spacing:1.146000px;}
.ls8{letter-spacing:22.968000px;}
.ls7{letter-spacing:33.768000px;}
.lse{letter-spacing:33.864000px;}
.ls13{letter-spacing:36.264960px;}
.ls3{letter-spacing:52.532640px;}
.ls1{letter-spacing:52.675200px;}
.ls10{letter-spacing:59.803200px;}
.ls18{letter-spacing:61.350048px;}
.lsd{letter-spacing:61.416000px;}
.ls11{letter-spacing:66.626208px;}
.ls12{letter-spacing:66.692160px;}
.lsa{letter-spacing:106.128000px;}
.lsb{letter-spacing:106.257600px;}
.ls6{letter-spacing:120.837600px;}
.ls5{letter-spacing:120.888000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(248,246,245),0 0.015em rgb(248,246,245),0.015em 0 rgb(248,246,245),0 -0.015em  rgb(248,246,245);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(248,246,245);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-52.090704px;}
.wsb{word-spacing:-40.032000px;}
.ws48{word-spacing:-36.869472px;}
.ws1{word-spacing:-36.829440px;}
.ws2b{word-spacing:-35.065716px;}
.ws6{word-spacing:-35.023519px;}
.ws4{word-spacing:-33.266592px;}
.ws7{word-spacing:-33.226560px;}
.ws3d{word-spacing:-30.132000px;}
.ws29{word-spacing:-30.064032px;}
.ws1c{word-spacing:-30.024000px;}
.ws47{word-spacing:-27.033240px;}
.ws12{word-spacing:-26.861472px;}
.ws18{word-spacing:-26.821440px;}
.wsd{word-spacing:-23.258592px;}
.wsc{word-spacing:-23.218560px;}
.ws49{word-spacing:-16.813440px;}
.ws2a{word-spacing:-15.027960px;}
.ws2e{word-spacing:-14.610384px;}
.ws32{word-spacing:-14.575680px;}
.ws11{word-spacing:-4.298928px;}
.ws28{word-spacing:-3.949488px;}
.wsa{word-spacing:-3.850080px;}
.wse{word-spacing:-3.084480px;}
.ws1f{word-spacing:-3.046464px;}
.ws24{word-spacing:-2.882400px;}
.ws2d{word-spacing:-2.691936px;}
.ws17{word-spacing:-2.556000px;}
.ws23{word-spacing:-2.283360px;}
.ws2{word-spacing:-2.193408px;}
.ws31{word-spacing:-1.997280px;}
.ws3f{word-spacing:-1.943208px;}
.ws14{word-spacing:-1.928760px;}
.ws16{word-spacing:-1.848480px;}
.ws45{word-spacing:-1.752000px;}
.ws10{word-spacing:-1.638096px;}
.ws26{word-spacing:-1.548000px;}
.ws40{word-spacing:-1.346760px;}
.ws42{word-spacing:-1.296000px;}
.wsf{word-spacing:-1.176000px;}
.ws43{word-spacing:-1.116000px;}
.ws34{word-spacing:-1.089984px;}
.ws39{word-spacing:-1.040040px;}
.ws13{word-spacing:-1.005120px;}
.ws35{word-spacing:-0.930672px;}
.ws25{word-spacing:-0.876000px;}
.ws1e{word-spacing:-0.721008px;}
.ws3c{word-spacing:-0.612000px;}
.ws38{word-spacing:-0.216000px;}
.ws3a{word-spacing:-0.054720px;}
.ws41{word-spacing:-0.031392px;}
.ws0{word-spacing:0.000000px;}
.ws27{word-spacing:0.108000px;}
.ws5{word-spacing:0.116497px;}
.ws15{word-spacing:0.211968px;}
.ws3e{word-spacing:0.233280px;}
.ws1d{word-spacing:0.432000px;}
.ws36{word-spacing:0.479520px;}
.ws44{word-spacing:0.732000px;}
.ws33{word-spacing:0.755616px;}
.ws3b{word-spacing:0.825840px;}
.ws9{word-spacing:0.984816px;}
.ws30{word-spacing:1.077480px;}
.ws37{word-spacing:1.123200px;}
.ws2f{word-spacing:1.238520px;}
.ws46{word-spacing:1.560000px;}
.ws8{word-spacing:2.056800px;}
.ws2c{word-spacing:5.175360px;}
.ws21{word-spacing:15.948552px;}
.ws20{word-spacing:16.975584px;}
.ws22{word-spacing:17.957808px;}
.ws19{word-spacing:18.180000px;}
.ws1a{word-spacing:18.408000px;}
.ws1b{word-spacing:18.612000px;}
._a{margin-left:-5037.172320px;}
._3{margin-left:-17.204832px;}
._f{margin-left:-9.700759px;}
._7{margin-left:-8.605440px;}
._5{margin-left:-7.171200px;}
._4{margin-left:-5.057280px;}
._2{margin-left:-3.489120px;}
._0{margin-left:-1.805760px;}
._1{width:1.324800px;}
._12{width:2.340000px;}
._6{width:3.359520px;}
._b{width:4.464144px;}
._13{width:5.474880px;}
._8{width:6.480000px;}
._c{width:7.555680px;}
._1d{width:10.894560px;}
._1c{width:12.745920px;}
._16{width:24.866640px;}
._17{width:26.511840px;}
._18{width:27.569280px;}
._10{width:29.015040px;}
._14{width:30.792960px;}
._15{width:32.427840px;}
._1f{width:34.347504px;}
._e{width:35.492640px;}
._20{width:36.699360px;}
._1a{width:37.825879px;}
._d{width:39.572160px;}
._1e{width:40.578240px;}
._19{width:50.400000px;}
._11{width:221.045760px;}
._21{width:2045.842560px;}
._1b{width:5197.553760px;}
._9{width:5227.793760px;}
.fc4{color:rgb(248,246,245);}
.fc3{color:rgb(72,169,218);}
.fc2{color:rgb(217,217,217);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,79,143);}
.fs0{font-size:54.720000px;}
.fs15{font-size:60.480000px;}
.fs16{font-size:60.624000px;}
.fs10{font-size:76.320000px;}
.fs5{font-size:83.520000px;}
.fs9{font-size:83.664000px;}
.fs13{font-size:96.480000px;}
.fs11{font-size:96.624000px;}
.fs3{font-size:108.000000px;}
.fs12{font-size:108.144000px;}
.fs6{font-size:119.520000px;}
.fs8{font-size:119.664000px;}
.fsa{font-size:125.983882px;}
.fsf{font-size:126.135670px;}
.fs4{font-size:132.480000px;}
.fsc{font-size:132.624000px;}
.fsb{font-size:144.000000px;}
.fsd{font-size:151.787810px;}
.fse{font-size:151.939598px;}
.fs14{font-size:216.000000px;}
.fs7{font-size:216.144000px;}
.fs1{font-size:240.480000px;}
.fs2{font-size:240.624000px;}
.y0{bottom:0.000000px;}
.y7{bottom:7.812000px;}
.y8{bottom:8.172000px;}
.y1{bottom:8.568000px;}
.y45{bottom:38.160000px;}
.yf6{bottom:63.000000px;}
.y104{bottom:68.364000px;}
.yca{bottom:69.444000px;}
.y68{bottom:75.204000px;}
.y2b{bottom:78.084000px;}
.yc1{bottom:80.316000px;}
.y44{bottom:80.430000px;}
.y3b{bottom:80.460000px;}
.y35{bottom:80.490000px;}
.y33{bottom:80.670000px;}
.y97{bottom:82.044000px;}
.y84{bottom:84.564000px;}
.y103{bottom:86.364000px;}
.y8d{bottom:87.084000px;}
.y4e{bottom:87.804000px;}
.yb8{bottom:88.164000px;}
.yfa{bottom:92.190000px;}
.ydf{bottom:92.235000px;}
.yef{bottom:92.265000px;}
.ye9{bottom:92.310000px;}
.ye2{bottom:92.340000px;}
.y4{bottom:97.632000px;}
.yc0{bottom:98.316000px;}
.y40{bottom:99.360000px;}
.yc9{bottom:101.844000px;}
.y101{bottom:105.084000px;}
.y102{bottom:107.604000px;}
.y23{bottom:107.964000px;}
.yf9{bottom:109.800000px;}
.ya6{bottom:110.016000px;}
.y58{bottom:112.428000px;}
.y2a{bottom:114.084000px;}
.ybf{bottom:116.316000px;}
.yc2{bottom:116.640000px;}
.y83{bottom:116.964000px;}
.y8c{bottom:119.484000px;}
.yaa{bottom:120.564000px;}
.yb7{bottom:124.164000px;}
.y43{bottom:126.360000px;}
.ya5{bottom:128.016000px;}
.y18{bottom:132.084000px;}
.y48{bottom:132.948000px;}
.y14{bottom:134.964000px;}
.y63{bottom:136.872000px;}
.y57{bottom:137.628000px;}
.yc8{bottom:138.204000px;}
.yaf{bottom:138.564000px;}
.y100{bottom:143.964000px;}
.yd9{bottom:145.440000px;}
.ya4{bottom:146.016000px;}
.y36{bottom:146.160000px;}
.y22{bottom:147.240000px;}
.y29{bottom:150.120000px;}
.y96{bottom:151.920000px;}
.ya1{bottom:152.640000px;}
.ya9{bottom:153.000000px;}
.y8b{bottom:154.800000px;}
.y42{bottom:156.030000px;}
.y3f{bottom:156.060000px;}
.y47{bottom:158.145000px;}
.y3c{bottom:160.560000px;}
.y56{bottom:162.825000px;}
.ya3{bottom:164.010000px;}
.y4d{bottom:165.600000px;}
.y13{bottom:171.000000px;}
.yfc{bottom:173.190000px;}
.yd2{bottom:173.880000px;}
.yae{bottom:174.600000px;}
.yc7{bottom:177.120000px;}
.yf4{bottom:178.200000px;}
.yf8{bottom:178.590000px;}
.yed{bottom:178.710000px;}
.yff{bottom:180.000000px;}
.y46{bottom:181.230000px;}
.y41{bottom:181.260000px;}
.y3d{bottom:181.290000px;}
.ya2{bottom:182.010000px;}
.y21{bottom:183.240000px;}
.y95{bottom:185.040000px;}
.y28{bottom:186.120000px;}
.y82{bottom:187.200000px;}
.ya8{bottom:189.000000px;}
.y6e{bottom:189.720000px;}
.y8a{bottom:190.080000px;}
.ydd{bottom:198.000000px;}
.yb6{bottom:201.600000px;}
.yfb{bottom:201.990000px;}
.yf7{bottom:207.435000px;}
.yeb{bottom:207.510000px;}
.y17{bottom:210.240000px;}
.yc6{bottom:216.000000px;}
.yfe{bottom:219.240000px;}
.y81{bottom:219.600000px;}
.y55{bottom:221.970000px;}
.y20{bottom:222.120000px;}
.ya0{bottom:223.200000px;}
.y67{bottom:225.000000px;}
.y89{bottom:226.440000px;}
.y39{bottom:231.690000px;}
.ydc{bottom:233.310000px;}
.yb5{bottom:234.030000px;}
.ye3{bottom:239.400000px;}
.y4c{bottom:245.190000px;}
.y62{bottom:246.885000px;}
.y54{bottom:247.170000px;}
.y78{bottom:248.655000px;}
.y3a{bottom:248.760000px;}
.y12{bottom:249.150000px;}
.y80{bottom:252.030000px;}
.yad{bottom:252.750000px;}
.y94{bottom:255.630000px;}
.y38{bottom:256.890000px;}
.yea{bottom:257.400000px;}
.y1f{bottom:258.150000px;}
.yd8{bottom:259.230000px;}
.ye7{bottom:265.140000px;}
.ydb{bottom:265.710000px;}
.y6d{bottom:267.150000px;}
.yb4{bottom:269.310000px;}
.yf5{bottom:270.435000px;}
.y53{bottom:272.370000px;}
.y37{bottom:282.135000px;}
.y77{bottom:284.685000px;}
.yd{bottom:288.030000px;}
.y4b{bottom:288.390000px;}
.y9f{bottom:291.270000px;}
.ye6{bottom:293.940000px;}
.yc5{bottom:294.150000px;}
.yd0{bottom:294.195000px;}
.yfd{bottom:297.030000px;}
.ybc{bottom:298.110000px;}
.y27{bottom:300.270000px;}
.yb3{bottom:301.710000px;}
.yda{bottom:302.070000px;}
.y66{bottom:303.150000px;}
.y88{bottom:303.510000px;}
.yee{bottom:304.200000px;}
.yf3{bottom:310.035000px;}
.y76{bottom:320.685000px;}
.y34{bottom:322.560000px;}
.ye4{bottom:322.740000px;}
.y7f{bottom:325.875000px;}
.y93{bottom:326.595000px;}
.y11{bottom:327.315000px;}
.y99{bottom:328.425000px;}
.ycf{bottom:330.225000px;}
.y10{bottom:330.510000px;}
.yac{bottom:330.915000px;}
.yc4{bottom:333.075000px;}
.y87{bottom:335.955000px;}
.y1e{bottom:336.315000px;}
.yd7{bottom:337.395000px;}
.yb2{bottom:338.115000px;}
.yf2{bottom:338.865000px;}
.y65{bottom:339.195000px;}
.y3e{bottom:341.850000px;}
.y5d{bottom:346.320000px;}
.y75{bottom:356.685000px;}
.y7e{bottom:358.275000px;}
.y61{bottom:358.635000px;}
.y9e{bottom:361.875000px;}
.ybb{bottom:362.910000px;}
.yc{bottom:366.195000px;}
.yf1{bottom:367.665000px;}
.yc3{bottom:369.075000px;}
.y5c{bottom:371.550000px;}
.y26{bottom:372.315000px;}
.ye8{bottom:372.600000px;}
.yd6{bottom:373.395000px;}
.y1d{bottom:375.195000px;}
.y6c{bottom:381.315000px;}
.y32{bottom:384.480000px;}
.y7d{bottom:390.675000px;}
.y74{bottom:392.730000px;}
.yf{bottom:395.355000px;}
.yf0{bottom:396.465000px;}
.y92{bottom:397.545000px;}
.y16{bottom:405.105000px;}
.yab{bottom:407.985000px;}
.y86{bottom:408.345000px;}
.yce{bottom:408.390000px;}
.ybe{bottom:408.705000px;}
.y5b{bottom:410.145000px;}
.y1c{bottom:411.225000px;}
.ya7{bottom:414.105000px;}
.yb1{bottom:415.185000px;}
.y6b{bottom:417.345000px;}
.yba{bottom:427.755000px;}
.y73{bottom:428.730000px;}
.y91{bottom:429.945000px;}
.y9d{bottom:432.825000px;}
.y60{bottom:434.955000px;}
.y5a{bottom:435.345000px;}
.yd1{bottom:442.695000px;}
.y3{bottom:444.210000px;}
.yb{bottom:444.345000px;}
.y64{bottom:447.225000px;}
.y1b{bottom:450.105000px;}
.yb0{bottom:450.825000px;}
.yd5{bottom:451.545000px;}
.y6a{bottom:453.345000px;}
.y59{bottom:460.590000px;}
.y7c{bottom:464.505000px;}
.y72{bottom:464.760000px;}
.ye{bottom:464.865000px;}
.yec{bottom:464.910000px;}
.y9c{bottom:465.225000px;}
.y98{bottom:467.100000px;}
.ye1{bottom:469.800000px;}
.y15{bottom:483.270000px;}
.y25{bottom:486.150000px;}
.ycd{bottom:486.180000px;}
.ybd{bottom:486.870000px;}
.y69{bottom:489.390000px;}
.y7b{bottom:496.950000px;}
.yb9{bottom:497.265000px;}
.y90{bottom:500.550000px;}
.y71{bottom:500.760000px;}
.yde{bottom:513.720000px;}
.y31{bottom:515.775000px;}
.y2{bottom:516.210000px;}
.ya{bottom:522.150000px;}
.ycc{bottom:522.180000px;}
.y4a{bottom:525.390000px;}
.y1a{bottom:528.270000px;}
.yd4{bottom:529.350000px;}
.y52{bottom:531.180000px;}
.y9b{bottom:532.950000px;}
.y5f{bottom:539.745000px;}
.y30{bottom:551.775000px;}
.y51{bottom:556.380000px;}
.y49{bottom:561.420000px;}
.ye5{bottom:562.140000px;}
.y19{bottom:564.300000px;}
.y9a{bottom:568.620000px;}
.y7a{bottom:570.780000px;}
.y8f{bottom:571.500000px;}
.y70{bottom:572.790000px;}
.y2f{bottom:587.805000px;}
.y5{bottom:592.560000px;}
.y9{bottom:600.300000px;}
.ycb{bottom:600.330000px;}
.y79{bottom:603.180000px;}
.y8e{bottom:603.900000px;}
.ye0{bottom:605.955000px;}
.yd3{bottom:606.060000px;}
.y6f{bottom:608.790000px;}
.y50{bottom:618.630000px;}
.y2e{bottom:623.805000px;}
.y5e{bottom:630.900000px;}
.y4f{bottom:643.830000px;}
.y2c{bottom:698.220000px;}
.y24{bottom:734.940000px;}
.y2d{bottom:735.660000px;}
.y6{bottom:737.820000px;}
.y85{bottom:738.540000px;}
.h1{height:44.104320px;}
.h1d{height:45.773438px;}
.h1e{height:45.882422px;}
.h25{height:48.746880px;}
.h26{height:48.862944px;}
.h6{height:52.101562px;}
.h1c{height:59.785312px;}
.h16{height:59.888391px;}
.he{height:67.317120px;}
.h10{height:67.433184px;}
.h19{height:77.762880px;}
.h17{height:77.878944px;}
.h4{height:87.048000px;}
.h18{height:87.164064px;}
.h7{height:96.333120px;}
.h9{height:96.449184px;}
.ha{height:101.543009px;}
.h15{height:101.665350px;}
.h5{height:106.778880px;}
.hc{height:106.894944px;}
.hb{height:116.064000px;}
.h13{height:122.340975px;}
.h14{height:122.463316px;}
.h1a{height:126.140625px;}
.h24{height:130.826880px;}
.h1b{height:163.371094px;}
.h8{height:163.480008px;}
.hd{height:176.760000px;}
.h2{height:193.826880px;}
.h3{height:193.942944px;}
.h1f{height:201.960000px;}
.h12{height:330.120000px;}
.h11{height:353.160000px;}
.h23{height:398.160000px;}
.h21{height:403.560000px;}
.hf{height:529.560000px;}
.h20{height:570.600000px;}
.h22{height:765.360000px;}
.h0{height:810.000000px;}
.w4{width:230.400000px;}
.w5{width:315.360000px;}
.w2{width:459.360000px;}
.w3{width:553.680000px;}
.w6{width:859.320000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x14{left:10.980000px;}
.x1{left:21.959979px;}
.x16{left:98.640000px;}
.x36{left:101.447979px;}
.x3c{left:132.840000px;}
.x28{left:135.503979px;}
.x6{left:143.999979px;}
.x5{left:148.247979px;}
.x2{left:152.489979px;}
.x27{left:154.799979px;}
.x1c{left:170.894979px;}
.x3{left:173.774979px;}
.x11{left:176.549979px;}
.xa{left:177.839979px;}
.x29{left:182.519979px;}
.x19{left:196.199979px;}
.x1d{left:204.734979px;}
.x1e{left:210.854979px;}
.x12{left:217.229979px;}
.x8{left:218.804979px;}
.xe{left:220.604979px;}
.x34{left:248.729979px;}
.x43{left:255.239979px;}
.xf{left:268.169979px;}
.x30{left:314.309979px;}
.x13{left:328.680000px;}
.x1a{left:359.309979px;}
.x3a{left:362.489979px;}
.x2e{left:438.554979px;}
.x3d{left:447.840000px;}
.x2b{left:452.519979px;}
.x24{left:472.394979px;}
.x17{left:479.009979px;}
.x2a{left:481.679979px;}
.xd{left:491.039979px;}
.x3f{left:494.384979px;}
.x3b{left:497.519979px;}
.x25{left:506.234979px;}
.x2f{left:511.994979px;}
.x3e{left:517.829979px;}
.x1b{left:522.434979px;}
.x45{left:528.269979px;}
.x7{left:548.669979px;}
.x38{left:552.419979px;}
.x9{left:567.389979px;}
.x37{left:592.049979px;}
.x39{left:593.099979px;}
.x26{left:614.264979px;}
.x35{left:621.749979px;}
.x40{left:640.229979px;}
.x41{left:774.899979px;}
.x15{left:787.680000px;}
.x31{left:803.489979px;}
.x44{left:805.605000px;}
.xb{left:810.869979px;}
.x42{left:820.649979px;}
.x2c{left:824.549979px;}
.x2d{left:877.499979px;}
.x32{left:880.379979px;}
.x18{left:884.729979px;}
.x46{left:917.099979px;}
.x33{left:976.499979px;}
.x22{left:982.049979px;}
.x21{left:993.344979px;}
.x23{left:1002.209979px;}
.x1f{left:1006.169979px;}
.x20{left:1051.199979px;}
.xc{left:1054.289979px;}
.x10{left:1392.374979px;}
.x4{left:1399.934979px;}
@media print{
.v1{vertical-align:-2.688000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:72.960000pt;}
.ls23{letter-spacing:-0.461867pt;}
.ls1a{letter-spacing:-0.417067pt;}
.ls21{letter-spacing:-0.224000pt;}
.ls4{letter-spacing:-0.199573pt;}
.ls1f{letter-spacing:-0.194667pt;}
.ls19{letter-spacing:-0.189333pt;}
.ls9{letter-spacing:-0.163733pt;}
.lsc{letter-spacing:-0.130133pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls1e{letter-spacing:-0.061333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.091200pt;}
.ls24{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.156267pt;}
.ls28{letter-spacing:0.188267pt;}
.ls15{letter-spacing:0.224000pt;}
.ls27{letter-spacing:0.257664pt;}
.ls1d{letter-spacing:0.272000pt;}
.ls20{letter-spacing:0.289067pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.352000pt;}
.ls22{letter-spacing:0.367467pt;}
.ls16{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.441067pt;}
.ls25{letter-spacing:0.507200pt;}
.ls2{letter-spacing:0.634667pt;}
.ls1b{letter-spacing:1.018667pt;}
.ls8{letter-spacing:20.416000pt;}
.ls7{letter-spacing:30.016000pt;}
.lse{letter-spacing:30.101333pt;}
.ls13{letter-spacing:32.235520pt;}
.ls3{letter-spacing:46.695680pt;}
.ls1{letter-spacing:46.822400pt;}
.ls10{letter-spacing:53.158400pt;}
.ls18{letter-spacing:54.533376pt;}
.lsd{letter-spacing:54.592000pt;}
.ls11{letter-spacing:59.223296pt;}
.ls12{letter-spacing:59.281920pt;}
.lsa{letter-spacing:94.336000pt;}
.lsb{letter-spacing:94.451200pt;}
.ls6{letter-spacing:107.411200pt;}
.ls5{letter-spacing:107.456000pt;}
.ws3{word-spacing:-46.302848pt;}
.wsb{word-spacing:-35.584000pt;}
.ws48{word-spacing:-32.772864pt;}
.ws1{word-spacing:-32.737280pt;}
.ws2b{word-spacing:-31.169526pt;}
.ws6{word-spacing:-31.132017pt;}
.ws4{word-spacing:-29.570304pt;}
.ws7{word-spacing:-29.534720pt;}
.ws3d{word-spacing:-26.784000pt;}
.ws29{word-spacing:-26.723584pt;}
.ws1c{word-spacing:-26.688000pt;}
.ws47{word-spacing:-24.029547pt;}
.ws12{word-spacing:-23.876864pt;}
.ws18{word-spacing:-23.841280pt;}
.wsd{word-spacing:-20.674304pt;}
.wsc{word-spacing:-20.638720pt;}
.ws49{word-spacing:-14.945280pt;}
.ws2a{word-spacing:-13.358187pt;}
.ws2e{word-spacing:-12.987008pt;}
.ws32{word-spacing:-12.956160pt;}
.ws11{word-spacing:-3.821269pt;}
.ws28{word-spacing:-3.510656pt;}
.wsa{word-spacing:-3.422293pt;}
.wse{word-spacing:-2.741760pt;}
.ws1f{word-spacing:-2.707968pt;}
.ws24{word-spacing:-2.562133pt;}
.ws2d{word-spacing:-2.392832pt;}
.ws17{word-spacing:-2.272000pt;}
.ws23{word-spacing:-2.029653pt;}
.ws2{word-spacing:-1.949696pt;}
.ws31{word-spacing:-1.775360pt;}
.ws3f{word-spacing:-1.727296pt;}
.ws14{word-spacing:-1.714453pt;}
.ws16{word-spacing:-1.643093pt;}
.ws45{word-spacing:-1.557333pt;}
.ws10{word-spacing:-1.456085pt;}
.ws26{word-spacing:-1.376000pt;}
.ws40{word-spacing:-1.197120pt;}
.ws42{word-spacing:-1.152000pt;}
.wsf{word-spacing:-1.045333pt;}
.ws43{word-spacing:-0.992000pt;}
.ws34{word-spacing:-0.968875pt;}
.ws39{word-spacing:-0.924480pt;}
.ws13{word-spacing:-0.893440pt;}
.ws35{word-spacing:-0.827264pt;}
.ws25{word-spacing:-0.778667pt;}
.ws1e{word-spacing:-0.640896pt;}
.ws3c{word-spacing:-0.544000pt;}
.ws38{word-spacing:-0.192000pt;}
.ws3a{word-spacing:-0.048640pt;}
.ws41{word-spacing:-0.027904pt;}
.ws0{word-spacing:0.000000pt;}
.ws27{word-spacing:0.096000pt;}
.ws5{word-spacing:0.103553pt;}
.ws15{word-spacing:0.188416pt;}
.ws3e{word-spacing:0.207360pt;}
.ws1d{word-spacing:0.384000pt;}
.ws36{word-spacing:0.426240pt;}
.ws44{word-spacing:0.650667pt;}
.ws33{word-spacing:0.671659pt;}
.ws3b{word-spacing:0.734080pt;}
.ws9{word-spacing:0.875392pt;}
.ws30{word-spacing:0.957760pt;}
.ws37{word-spacing:0.998400pt;}
.ws2f{word-spacing:1.100907pt;}
.ws46{word-spacing:1.386667pt;}
.ws8{word-spacing:1.828267pt;}
.ws2c{word-spacing:4.600320pt;}
.ws21{word-spacing:14.176491pt;}
.ws20{word-spacing:15.089408pt;}
.ws22{word-spacing:15.962496pt;}
.ws19{word-spacing:16.160000pt;}
.ws1a{word-spacing:16.362667pt;}
.ws1b{word-spacing:16.544000pt;}
._a{margin-left:-4477.486507pt;}
._3{margin-left:-15.293184pt;}
._f{margin-left:-8.622897pt;}
._7{margin-left:-7.649280pt;}
._5{margin-left:-6.374400pt;}
._4{margin-left:-4.495360pt;}
._2{margin-left:-3.101440pt;}
._0{margin-left:-1.605120pt;}
._1{width:1.177600pt;}
._12{width:2.080000pt;}
._6{width:2.986240pt;}
._b{width:3.968128pt;}
._13{width:4.866560pt;}
._8{width:5.760000pt;}
._c{width:6.716160pt;}
._1d{width:9.684053pt;}
._1c{width:11.329707pt;}
._16{width:22.103680pt;}
._17{width:23.566080pt;}
._18{width:24.506027pt;}
._10{width:25.791147pt;}
._14{width:27.371520pt;}
._15{width:28.824747pt;}
._1f{width:30.531115pt;}
._e{width:31.549013pt;}
._20{width:32.621653pt;}
._1a{width:33.623003pt;}
._d{width:35.175253pt;}
._1e{width:36.069547pt;}
._19{width:44.800000pt;}
._11{width:196.485120pt;}
._21{width:1818.526720pt;}
._1b{width:4620.047787pt;}
._9{width:4646.927787pt;}
.fs0{font-size:48.640000pt;}
.fs15{font-size:53.760000pt;}
.fs16{font-size:53.888000pt;}
.fs10{font-size:67.840000pt;}
.fs5{font-size:74.240000pt;}
.fs9{font-size:74.368000pt;}
.fs13{font-size:85.760000pt;}
.fs11{font-size:85.888000pt;}
.fs3{font-size:96.000000pt;}
.fs12{font-size:96.128000pt;}
.fs6{font-size:106.240000pt;}
.fs8{font-size:106.368000pt;}
.fsa{font-size:111.985673pt;}
.fsf{font-size:112.120596pt;}
.fs4{font-size:117.760000pt;}
.fsc{font-size:117.888000pt;}
.fsb{font-size:128.000000pt;}
.fsd{font-size:134.922498pt;}
.fse{font-size:135.057420pt;}
.fs14{font-size:192.000000pt;}
.fs7{font-size:192.128000pt;}
.fs1{font-size:213.760000pt;}
.fs2{font-size:213.888000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:6.944000pt;}
.y8{bottom:7.264000pt;}
.y1{bottom:7.616000pt;}
.y45{bottom:33.920000pt;}
.yf6{bottom:56.000000pt;}
.y104{bottom:60.768000pt;}
.yca{bottom:61.728000pt;}
.y68{bottom:66.848000pt;}
.y2b{bottom:69.408000pt;}
.yc1{bottom:71.392000pt;}
.y44{bottom:71.493333pt;}
.y3b{bottom:71.520000pt;}
.y35{bottom:71.546667pt;}
.y33{bottom:71.706667pt;}
.y97{bottom:72.928000pt;}
.y84{bottom:75.168000pt;}
.y103{bottom:76.768000pt;}
.y8d{bottom:77.408000pt;}
.y4e{bottom:78.048000pt;}
.yb8{bottom:78.368000pt;}
.yfa{bottom:81.946667pt;}
.ydf{bottom:81.986667pt;}
.yef{bottom:82.013333pt;}
.ye9{bottom:82.053333pt;}
.ye2{bottom:82.080000pt;}
.y4{bottom:86.784000pt;}
.yc0{bottom:87.392000pt;}
.y40{bottom:88.320000pt;}
.yc9{bottom:90.528000pt;}
.y101{bottom:93.408000pt;}
.y102{bottom:95.648000pt;}
.y23{bottom:95.968000pt;}
.yf9{bottom:97.600000pt;}
.ya6{bottom:97.792000pt;}
.y58{bottom:99.936000pt;}
.y2a{bottom:101.408000pt;}
.ybf{bottom:103.392000pt;}
.yc2{bottom:103.680000pt;}
.y83{bottom:103.968000pt;}
.y8c{bottom:106.208000pt;}
.yaa{bottom:107.168000pt;}
.yb7{bottom:110.368000pt;}
.y43{bottom:112.320000pt;}
.ya5{bottom:113.792000pt;}
.y18{bottom:117.408000pt;}
.y48{bottom:118.176000pt;}
.y14{bottom:119.968000pt;}
.y63{bottom:121.664000pt;}
.y57{bottom:122.336000pt;}
.yc8{bottom:122.848000pt;}
.yaf{bottom:123.168000pt;}
.y100{bottom:127.968000pt;}
.yd9{bottom:129.280000pt;}
.ya4{bottom:129.792000pt;}
.y36{bottom:129.920000pt;}
.y22{bottom:130.880000pt;}
.y29{bottom:133.440000pt;}
.y96{bottom:135.040000pt;}
.ya1{bottom:135.680000pt;}
.ya9{bottom:136.000000pt;}
.y8b{bottom:137.600000pt;}
.y42{bottom:138.693333pt;}
.y3f{bottom:138.720000pt;}
.y47{bottom:140.573333pt;}
.y3c{bottom:142.720000pt;}
.y56{bottom:144.733333pt;}
.ya3{bottom:145.786667pt;}
.y4d{bottom:147.200000pt;}
.y13{bottom:152.000000pt;}
.yfc{bottom:153.946667pt;}
.yd2{bottom:154.560000pt;}
.yae{bottom:155.200000pt;}
.yc7{bottom:157.440000pt;}
.yf4{bottom:158.400000pt;}
.yf8{bottom:158.746667pt;}
.yed{bottom:158.853333pt;}
.yff{bottom:160.000000pt;}
.y46{bottom:161.093333pt;}
.y41{bottom:161.120000pt;}
.y3d{bottom:161.146667pt;}
.ya2{bottom:161.786667pt;}
.y21{bottom:162.880000pt;}
.y95{bottom:164.480000pt;}
.y28{bottom:165.440000pt;}
.y82{bottom:166.400000pt;}
.ya8{bottom:168.000000pt;}
.y6e{bottom:168.640000pt;}
.y8a{bottom:168.960000pt;}
.ydd{bottom:176.000000pt;}
.yb6{bottom:179.200000pt;}
.yfb{bottom:179.546667pt;}
.yf7{bottom:184.386667pt;}
.yeb{bottom:184.453333pt;}
.y17{bottom:186.880000pt;}
.yc6{bottom:192.000000pt;}
.yfe{bottom:194.880000pt;}
.y81{bottom:195.200000pt;}
.y55{bottom:197.306667pt;}
.y20{bottom:197.440000pt;}
.ya0{bottom:198.400000pt;}
.y67{bottom:200.000000pt;}
.y89{bottom:201.280000pt;}
.y39{bottom:205.946667pt;}
.ydc{bottom:207.386667pt;}
.yb5{bottom:208.026667pt;}
.ye3{bottom:212.800000pt;}
.y4c{bottom:217.946667pt;}
.y62{bottom:219.453333pt;}
.y54{bottom:219.706667pt;}
.y78{bottom:221.026667pt;}
.y3a{bottom:221.120000pt;}
.y12{bottom:221.466667pt;}
.y80{bottom:224.026667pt;}
.yad{bottom:224.666667pt;}
.y94{bottom:227.226667pt;}
.y38{bottom:228.346667pt;}
.yea{bottom:228.800000pt;}
.y1f{bottom:229.466667pt;}
.yd8{bottom:230.426667pt;}
.ye7{bottom:235.680000pt;}
.ydb{bottom:236.186667pt;}
.y6d{bottom:237.466667pt;}
.yb4{bottom:239.386667pt;}
.yf5{bottom:240.386667pt;}
.y53{bottom:242.106667pt;}
.y37{bottom:250.786667pt;}
.y77{bottom:253.053333pt;}
.yd{bottom:256.026667pt;}
.y4b{bottom:256.346667pt;}
.y9f{bottom:258.906667pt;}
.ye6{bottom:261.280000pt;}
.yc5{bottom:261.466667pt;}
.yd0{bottom:261.506667pt;}
.yfd{bottom:264.026667pt;}
.ybc{bottom:264.986667pt;}
.y27{bottom:266.906667pt;}
.yb3{bottom:268.186667pt;}
.yda{bottom:268.506667pt;}
.y66{bottom:269.466667pt;}
.y88{bottom:269.786667pt;}
.yee{bottom:270.400000pt;}
.yf3{bottom:275.586667pt;}
.y76{bottom:285.053333pt;}
.y34{bottom:286.720000pt;}
.ye4{bottom:286.880000pt;}
.y7f{bottom:289.666667pt;}
.y93{bottom:290.306667pt;}
.y11{bottom:290.946667pt;}
.y99{bottom:291.933333pt;}
.ycf{bottom:293.533333pt;}
.y10{bottom:293.786667pt;}
.yac{bottom:294.146667pt;}
.yc4{bottom:296.066667pt;}
.y87{bottom:298.626667pt;}
.y1e{bottom:298.946667pt;}
.yd7{bottom:299.906667pt;}
.yb2{bottom:300.546667pt;}
.yf2{bottom:301.213333pt;}
.y65{bottom:301.506667pt;}
.y3e{bottom:303.866667pt;}
.y5d{bottom:307.840000pt;}
.y75{bottom:317.053333pt;}
.y7e{bottom:318.466667pt;}
.y61{bottom:318.786667pt;}
.y9e{bottom:321.666667pt;}
.ybb{bottom:322.586667pt;}
.yc{bottom:325.506667pt;}
.yf1{bottom:326.813333pt;}
.yc3{bottom:328.066667pt;}
.y5c{bottom:330.266667pt;}
.y26{bottom:330.946667pt;}
.ye8{bottom:331.200000pt;}
.yd6{bottom:331.906667pt;}
.y1d{bottom:333.506667pt;}
.y6c{bottom:338.946667pt;}
.y32{bottom:341.760000pt;}
.y7d{bottom:347.266667pt;}
.y74{bottom:349.093333pt;}
.yf{bottom:351.426667pt;}
.yf0{bottom:352.413333pt;}
.y92{bottom:353.373333pt;}
.y16{bottom:360.093333pt;}
.yab{bottom:362.653333pt;}
.y86{bottom:362.973333pt;}
.yce{bottom:363.013333pt;}
.ybe{bottom:363.293333pt;}
.y5b{bottom:364.573333pt;}
.y1c{bottom:365.533333pt;}
.ya7{bottom:368.093333pt;}
.yb1{bottom:369.053333pt;}
.y6b{bottom:370.973333pt;}
.yba{bottom:380.226667pt;}
.y73{bottom:381.093333pt;}
.y91{bottom:382.173333pt;}
.y9d{bottom:384.733333pt;}
.y60{bottom:386.626667pt;}
.y5a{bottom:386.973333pt;}
.yd1{bottom:393.506667pt;}
.y3{bottom:394.853333pt;}
.yb{bottom:394.973333pt;}
.y64{bottom:397.533333pt;}
.y1b{bottom:400.093333pt;}
.yb0{bottom:400.733333pt;}
.yd5{bottom:401.373333pt;}
.y6a{bottom:402.973333pt;}
.y59{bottom:409.413333pt;}
.y7c{bottom:412.893333pt;}
.y72{bottom:413.120000pt;}
.ye{bottom:413.213333pt;}
.yec{bottom:413.253333pt;}
.y9c{bottom:413.533333pt;}
.y98{bottom:415.200000pt;}
.ye1{bottom:417.600000pt;}
.y15{bottom:429.573333pt;}
.y25{bottom:432.133333pt;}
.ycd{bottom:432.160000pt;}
.ybd{bottom:432.773333pt;}
.y69{bottom:435.013333pt;}
.y7b{bottom:441.733333pt;}
.yb9{bottom:442.013333pt;}
.y90{bottom:444.933333pt;}
.y71{bottom:445.120000pt;}
.yde{bottom:456.640000pt;}
.y31{bottom:458.466667pt;}
.y2{bottom:458.853333pt;}
.ya{bottom:464.133333pt;}
.ycc{bottom:464.160000pt;}
.y4a{bottom:467.013333pt;}
.y1a{bottom:469.573333pt;}
.yd4{bottom:470.533333pt;}
.y52{bottom:472.160000pt;}
.y9b{bottom:473.733333pt;}
.y5f{bottom:479.773333pt;}
.y30{bottom:490.466667pt;}
.y51{bottom:494.560000pt;}
.y49{bottom:499.040000pt;}
.ye5{bottom:499.680000pt;}
.y19{bottom:501.600000pt;}
.y9a{bottom:505.440000pt;}
.y7a{bottom:507.360000pt;}
.y8f{bottom:508.000000pt;}
.y70{bottom:509.146667pt;}
.y2f{bottom:522.493333pt;}
.y5{bottom:526.720000pt;}
.y9{bottom:533.600000pt;}
.ycb{bottom:533.626667pt;}
.y79{bottom:536.160000pt;}
.y8e{bottom:536.800000pt;}
.ye0{bottom:538.626667pt;}
.yd3{bottom:538.720000pt;}
.y6f{bottom:541.146667pt;}
.y50{bottom:549.893333pt;}
.y2e{bottom:554.493333pt;}
.y5e{bottom:560.800000pt;}
.y4f{bottom:572.293333pt;}
.y2c{bottom:620.640000pt;}
.y24{bottom:653.280000pt;}
.y2d{bottom:653.920000pt;}
.y6{bottom:655.840000pt;}
.y85{bottom:656.480000pt;}
.h1{height:39.203840pt;}
.h1d{height:40.687500pt;}
.h1e{height:40.784375pt;}
.h25{height:43.330560pt;}
.h26{height:43.433728pt;}
.h6{height:46.312500pt;}
.h1c{height:53.142500pt;}
.h16{height:53.234125pt;}
.he{height:59.837440pt;}
.h10{height:59.940608pt;}
.h19{height:69.122560pt;}
.h17{height:69.225728pt;}
.h4{height:77.376000pt;}
.h18{height:77.479168pt;}
.h7{height:85.629440pt;}
.h9{height:85.732608pt;}
.ha{height:90.260452pt;}
.h15{height:90.369200pt;}
.h5{height:94.914560pt;}
.hc{height:95.017728pt;}
.hb{height:103.168000pt;}
.h13{height:108.747533pt;}
.h14{height:108.856281pt;}
.h1a{height:112.125000pt;}
.h24{height:116.290560pt;}
.h1b{height:145.218750pt;}
.h8{height:145.315562pt;}
.hd{height:157.120000pt;}
.h2{height:172.290560pt;}
.h3{height:172.393728pt;}
.h1f{height:179.520000pt;}
.h12{height:293.440000pt;}
.h11{height:313.920000pt;}
.h23{height:353.920000pt;}
.h21{height:358.720000pt;}
.hf{height:470.720000pt;}
.h20{height:507.200000pt;}
.h22{height:680.320000pt;}
.h0{height:720.000000pt;}
.w4{width:204.800000pt;}
.w5{width:280.320000pt;}
.w2{width:408.320000pt;}
.w3{width:492.160000pt;}
.w6{width:763.840000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x14{left:9.760000pt;}
.x1{left:19.519981pt;}
.x16{left:87.680000pt;}
.x36{left:90.175981pt;}
.x3c{left:118.080000pt;}
.x28{left:120.447981pt;}
.x6{left:127.999981pt;}
.x5{left:131.775981pt;}
.x2{left:135.546648pt;}
.x27{left:137.599981pt;}
.x1c{left:151.906648pt;}
.x3{left:154.466648pt;}
.x11{left:156.933314pt;}
.xa{left:158.079981pt;}
.x29{left:162.239981pt;}
.x19{left:174.399981pt;}
.x1d{left:181.986648pt;}
.x1e{left:187.426648pt;}
.x12{left:193.093314pt;}
.x8{left:194.493314pt;}
.xe{left:196.093314pt;}
.x34{left:221.093314pt;}
.x43{left:226.879981pt;}
.xf{left:238.373314pt;}
.x30{left:279.386648pt;}
.x13{left:292.160000pt;}
.x1a{left:319.386648pt;}
.x3a{left:322.213314pt;}
.x2e{left:389.826648pt;}
.x3d{left:398.080000pt;}
.x2b{left:402.239981pt;}
.x24{left:419.906648pt;}
.x17{left:425.786648pt;}
.x2a{left:428.159981pt;}
.xd{left:436.479981pt;}
.x3f{left:439.453314pt;}
.x3b{left:442.239981pt;}
.x25{left:449.986648pt;}
.x2f{left:455.106648pt;}
.x3e{left:460.293314pt;}
.x1b{left:464.386648pt;}
.x45{left:469.573314pt;}
.x7{left:487.706648pt;}
.x38{left:491.039981pt;}
.x9{left:504.346648pt;}
.x37{left:526.266648pt;}
.x39{left:527.199981pt;}
.x26{left:546.013314pt;}
.x35{left:552.666648pt;}
.x40{left:569.093314pt;}
.x41{left:688.799981pt;}
.x15{left:700.160000pt;}
.x31{left:714.213314pt;}
.x44{left:716.093333pt;}
.xb{left:720.773314pt;}
.x42{left:729.466648pt;}
.x2c{left:732.933314pt;}
.x2d{left:779.999981pt;}
.x32{left:782.559981pt;}
.x18{left:786.426648pt;}
.x46{left:815.199981pt;}
.x33{left:867.999981pt;}
.x22{left:872.933314pt;}
.x21{left:882.973314pt;}
.x23{left:890.853314pt;}
.x1f{left:894.373314pt;}
.x20{left:934.399981pt;}
.xc{left:937.146648pt;}
.x10{left:1237.666648pt;}
.x4{left:1244.386648pt;}
}




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