
    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_6e7e7ec9879c65c358ced17c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_f1dc6a2b659dce77abf2c20c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_1acfbe6f6560121b4287578d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_c2b8c269b41231896cd07cdc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_800e457f5ceb9e627031f118.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf2273ebf21171cf6ab65389.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896973;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_8a304a03d20f15cc0a5fc8ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.867676;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_e53174ed4ce8c90534e6a29a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861328;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;}
.m2{transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250009,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243032,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243236,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243825,0.000000,0.000000,0.250000,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);}
.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);}
.v1{vertical-align:-30.960000px;}
.v4{vertical-align:-25.919771px;}
.v6{vertical-align:-23.039982px;}
.v7{vertical-align:-20.880063px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240418px;}
.v3{vertical-align:31.680041px;}
.v5{vertical-align:42.480014px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000743px;}
.ls8{letter-spacing:0.030382px;}
.ls2{letter-spacing:0.030450px;}
.ls1a{letter-spacing:0.045708px;}
.ls32{letter-spacing:0.046779px;}
.ls4{letter-spacing:0.060904px;}
.ls27{letter-spacing:0.060971px;}
.ls13{letter-spacing:0.061039px;}
.ls16{letter-spacing:0.074180px;}
.ls11{letter-spacing:0.079079px;}
.lsb{letter-spacing:0.094301px;}
.ls23{letter-spacing:0.101737px;}
.ls6{letter-spacing:0.312842px;}
.ls3{letter-spacing:0.312918px;}
.ls9{letter-spacing:0.312986px;}
.ls2e{letter-spacing:0.313121px;}
.ls1e{letter-spacing:0.332411px;}
.ls21{letter-spacing:0.332415px;}
.ls1f{letter-spacing:0.332545px;}
.ls22{letter-spacing:0.332685px;}
.ls31{letter-spacing:0.343229px;}
.ls14{letter-spacing:0.343364px;}
.ls30{letter-spacing:0.343368px;}
.ls5{letter-spacing:0.343436px;}
.ls17{letter-spacing:0.343503px;}
.ls1b{letter-spacing:0.358650px;}
.lsc{letter-spacing:0.358830px;}
.ls2a{letter-spacing:0.358835px;}
.ls29{letter-spacing:0.358898px;}
.ls28{letter-spacing:0.358902px;}
.ls2c{letter-spacing:0.358969px;}
.ls1c{letter-spacing:0.359212px;}
.ls1d{letter-spacing:0.359321px;}
.ls20{letter-spacing:0.359455px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.375699px;}
.ls19{letter-spacing:0.379197px;}
.ls2f{letter-spacing:0.498453px;}
.ls2b{letter-spacing:0.498593px;}
.ls15{letter-spacing:0.646101px;}
.ls7{letter-spacing:0.781057px;}
.ls2d{letter-spacing:1.032932px;}
.ls26{letter-spacing:1.095712px;}
.ls33{letter-spacing:2.518745px;}
.ls18{letter-spacing:4.319055px;}
.lsf{letter-spacing:4.632945px;}
.ls25{letter-spacing:5.538570px;}
.ls24{letter-spacing:6.478200px;}
.ls10{letter-spacing:10.798159px;}
.lse{letter-spacing:604.078916px;}
.lsd{letter-spacing:639.390531px;}
.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;}
}
.ws2{word-spacing:-79.204500px;}
.ws1c{word-spacing:-24.479907px;}
.ws1a{word-spacing:-23.939850px;}
.ws7{word-spacing:-23.855201px;}
.ws6{word-spacing:-23.761643px;}
.ws1{word-spacing:-23.761125px;}
.ws4{word-spacing:-23.760900px;}
.wsc{word-spacing:-19.800788px;}
.ws17{word-spacing:-17.820675px;}
.wsa{word-spacing:-15.840563px;}
.ws5{word-spacing:-13.860563px;}
.ws0{word-spacing:-13.860000px;}
.wsd{word-spacing:-11.520450px;}
.ws16{word-spacing:-9.180349px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:88.525305px;}
.ws19{word-spacing:329.112226px;}
.ws18{word-spacing:397.044639px;}
.ws15{word-spacing:414.865314px;}
.ws13{word-spacing:467.614512px;}
.ws14{word-spacing:625.898518px;}
.ws10{word-spacing:780.151027px;}
.wse{word-spacing:790.685046px;}
.ws12{word-spacing:791.793891px;}
.wsf{word-spacing:811.594678px;}
.ws11{word-spacing:837.494108px;}
.ws8{word-spacing:1059.085274px;}
.wsb{word-spacing:1220.301628px;}
.ws1b{word-spacing:1344.552081px;}
._3d{margin-left:-214.881237px;}
._3a{margin-left:-213.742504px;}
._3b{margin-left:-143.913511px;}
._36{margin-left:-135.222028px;}
._38{margin-left:-128.160813px;}
._3c{margin-left:-119.482987px;}
._39{margin-left:-107.182075px;}
._3e{margin-left:-100.023388px;}
._37{margin-left:-86.688361px;}
._3{margin-left:-12.235297px;}
._7{margin-left:-9.694919px;}
._6{margin-left:-8.015421px;}
._12{margin-left:-6.962149px;}
._4{margin-left:-5.892759px;}
._2{margin-left:-4.535272px;}
._5{margin-left:-2.918405px;}
._1{margin-left:-1.251926px;}
._0{width:1.048595px;}
._10{width:2.146143px;}
._d{width:3.407090px;}
._c{width:4.469277px;}
._1f{width:5.493594px;}
._a{width:6.559348px;}
._9{width:7.604231px;}
._e{width:8.914341px;}
._b{width:10.641025px;}
._16{width:12.449372px;}
._17{width:13.661609px;}
._11{width:15.624340px;}
._20{width:16.640652px;}
._15{width:17.787407px;}
._1b{width:19.256303px;}
._44{width:20.952471px;}
._13{width:26.200445px;}
._21{width:31.738476px;}
._22{width:32.965329px;}
._40{width:40.276978px;}
._14{width:98.824866px;}
._f{width:99.945681px;}
._19{width:147.762697px;}
._3f{width:261.122317px;}
._2f{width:325.664387px;}
._1e{width:359.410653px;}
._27{width:375.456023px;}
._29{width:381.049969px;}
._2b{width:386.044659px;}
._26{width:424.241600px;}
._28{width:429.299716px;}
._2c{width:449.793837px;}
._33{width:456.922107px;}
._2e{width:459.187552px;}
._30{width:468.327339px;}
._2d{width:492.563457px;}
._34{width:503.677271px;}
._31{width:510.384132px;}
._2a{width:534.536548px;}
._35{width:546.738309px;}
._32{width:549.893527px;}
._1d{width:554.717589px;}
._25{width:648.990968px;}
._42{width:732.518430px;}
._41{width:737.271067px;}
._43{width:743.082243px;}
._24{width:1034.543088px;}
._1c{width:1089.728622px;}
._18{width:1471.874134px;}
._23{width:1695.568988px;}
._1a{width:1697.728898px;}
._8{width:1727.248889px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:36.721395px;}
.fsc{font-size:41.041575px;}
.fsb{font-size:46.081800px;}
.fs3{font-size:55.440000px;}
.fs8{font-size:55.442250px;}
.fs6{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs5{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fsa{font-size:79.200090px;}
.fs9{font-size:79.203150px;}
.fs4{font-size:79.204500px;}
.fs7{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.fse{font-size:95.759399px;}
.fsf{font-size:97.919629px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y19{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y2a{bottom:41.040115px;}
.y42{bottom:102.060104px;}
.yb6{bottom:109.800110px;}
.y71{bottom:115.380066px;}
.ye4{bottom:118.980079px;}
.y4f{bottom:121.320099px;}
.y112{bottom:121.860077px;}
.y9d{bottom:122.040047px;}
.y41{bottom:130.500068px;}
.yb5{bottom:137.880066px;}
.y70{bottom:143.820099px;}
.ye3{bottom:147.600083px;}
.y4e{bottom:149.940033px;}
.y8e{bottom:150.300041px;}
.y9c{bottom:150.660049px;}
.y7c{bottom:153.000068px;}
.y10c{bottom:158.760064px;}
.y40{bottom:159.120072px;}
.yb4{bottom:159.300041px;}
.yff{bottom:163.440033px;}
.ye2{bottom:176.040047px;}
.y4d{bottom:178.560036px;}
.y8d{bottom:178.920043px;}
.y10b{bottom:186.840088px;}
.y3f{bottom:187.560036px;}
.yfe{bottom:191.160049px;}
.ye1{bottom:204.660049px;}
.ya7{bottom:205.560036px;}
.y5d{bottom:207.000068px;}
.y9b{bottom:207.720085px;}
.y7b{bottom:210.060036px;}
.y3e{bottom:216.180039px;}
.yfd{bottom:219.060036px;}
.yb1{bottom:226.980079px;}
.y6f{bottom:227.160049px;}
.yb3{bottom:228.780052px;}
.ya6{bottom:234.000068px;}
.y4c{bottom:235.620072px;}
.y111{bottom:235.980079px;}
.y9a{bottom:236.160049px;}
.y3d{bottom:236.700096px;}
.y10a{bottom:243.180039px;}
.y3c{bottom:244.620072px;}
.yb2{bottom:247.860077px;}
.yb0{bottom:248.400055px;}
.ye0{bottom:250.920043px;}
.y6e{bottom:254.880066px;}
.yce{bottom:257.940033px;}
.ya5{bottom:262.620072px;}
.y5c{bottom:264.060036px;}
.y110{bottom:264.420043px;}
.y99{bottom:264.780052px;}
.y7a{bottom:267.120072px;}
.yfc{bottom:270.540047px;}
.y3b{bottom:273.240074px;}
.ycd{bottom:286.560036px;}
.y4b{bottom:292.680039px;}
.y91{bottom:293.040047px;}
.y98{bottom:293.220085px;}
.yaf{bottom:294.660049px;}
.y79{bottom:295.740074px;}
.yfb{bottom:296.280052px;}
.y29{bottom:301.680039px;}
.ydf{bottom:307.980079px;}
.yae{bottom:313.740074px;}
.yad{bottom:314.100083px;}
.ya4{bottom:319.680039px;}
.y4a{bottom:321.120072px;}
.y90{bottom:321.480079px;}
.yfa{bottom:322.020058px;}
.y3a{bottom:322.380066px;}
.y78{bottom:324.180039px;}
.y109{bottom:327.420043px;}
.yde{bottom:336.600083px;}
.y6d{bottom:338.040047px;}
.ycc{bottom:343.620072px;}
.yac{bottom:347.580093px;}
.y5b{bottom:349.740074px;}
.y17{bottom:350.100000px;}
.y8f{bottom:350.100083px;}
.y97{bottom:350.280052px;}
.ya3{bottom:350.460091px;}
.y39{bottom:351.000068px;}
.y77{bottom:352.800041px;}
.y108{bottom:355.680039px;}
.y6c{bottom:365.760064px;}
.yab{bottom:368.820099px;}
.yf9{bottom:373.500068px;}
.y16{bottom:378.540000px;}
.y10f{bottom:378.540047px;}
.ya2{bottom:379.980079px;}
.y76{bottom:381.240074px;}
.ydd{bottom:382.860077px;}
.y28{bottom:387.360077px;}
.y6b{bottom:393.480079px;}
.yaa{bottom:397.080093px;}
.ycb{bottom:400.680039px;}
.y49{bottom:406.800041px;}
.y8c{bottom:407.160049px;}
.ya1{bottom:409.500068px;}
.ydc{bottom:411.480079px;}
.y107{bottom:411.840088px;}
.y27{bottom:415.800041px;}
.y6a{bottom:421.200096px;}
.ybe{bottom:424.080093px;}
.yf8{bottom:424.980079px;}
.y96{bottom:427.140060px;}
.ya9{bottom:427.500068px;}
.yca{bottom:429.120072px;}
.y5a{bottom:435.240074px;}
.y15{bottom:435.600000px;}
.ya0{bottom:439.200096px;}
.ydb{bottom:439.920043px;}
.y106{bottom:440.100083px;}
.y69{bottom:449.100083px;}
.yf7{bottom:450.720085px;}
.yc9{bottom:457.740074px;}
.y60{bottom:463.860077px;}
.y8b{bottom:464.220085px;}
.y9f{bottom:468.720085px;}
.y14{bottom:471.960000px;}
.y51{bottom:472.140060px;}
.y26{bottom:472.860077px;}
.yf6{bottom:476.460091px;}
.yc8{bottom:486.180039px;}
.y59{bottom:492.300041px;}
.y10e{bottom:492.660049px;}
.y105{bottom:496.260064px;}
.y9e{bottom:500.580093px;}
.y25{bottom:501.480079px;}
.yf5{bottom:502.200096px;}
.ybd{bottom:509.760064px;}
.yc7{bottom:514.800041px;}
.y58{bottom:520.920043px;}
.y13{bottom:521.280000px;}
.ya8{bottom:521.280052px;}
.y104{bottom:524.520058px;}
.yf4{bottom:527.940033px;}
.y38{bottom:529.920043px;}
.y68{bottom:532.260064px;}
.yd7{bottom:538.200096px;}
.ybc{bottom:538.380066px;}
.yc6{bottom:543.240074px;}
.y57{bottom:549.360077px;}
.y12{bottom:549.720000px;}
.y8a{bottom:549.720085px;}
.y95{bottom:552.420043px;}
.y103{bottom:552.600083px;}
.yda{bottom:554.040047px;}
.y67{bottom:559.980079px;}
.yd6{bottom:566.820099px;}
.yc5{bottom:571.860077px;}
.y56{bottom:577.980079px;}
.y11{bottom:578.340000px;}
.y10d{bottom:578.340088px;}
.yf3{bottom:579.600083px;}
.y37{bottom:586.980079px;}
.y66{bottom:587.700096px;}
.ybb{bottom:595.440033px;}
.yc4{bottom:600.300041px;}
.yf2{bottom:605.340088px;}
.y55{bottom:606.420043px;}
.y10{bottom:606.780000px;}
.y89{bottom:606.780052px;}
.y102{bottom:608.760064px;}
.y65{bottom:615.420043px;}
.y36{bottom:615.600083px;}
.yba{bottom:623.880066px;}
.yf1{bottom:631.080093px;}
.y54{bottom:635.040047px;}
.y88{bottom:635.400055px;}
.y101{bottom:637.020058px;}
.y94{bottom:638.100083px;}
.y24{bottom:644.040047px;}
.y50{bottom:649.073427px;}
.yd5{bottom:652.320099px;}
.yf0{bottom:656.820099px;}
.y53{bottom:663.480079px;}
.yf{bottom:663.840000px;}
.y87{bottom:663.840088px;}
.y93{bottom:666.540047px;}
.y35{bottom:672.660049px;}
.yd4{bottom:680.940033px;}
.yc3{bottom:685.980079px;}
.yd9{bottom:692.100083px;}
.y86{bottom:692.460056px;}
.y34{bottom:693.360077px;}
.ye{bottom:700.200000px;}
.yb9{bottom:700.740074px;}
.yd3{bottom:709.380066px;}
.yc2{bottom:714.420078px;}
.y113{bottom:720.540081px;}
.y85{bottom:720.900055px;}
.y100{bottom:721.440067px;}
.y92{bottom:723.600083px;}
.y64{bottom:726.480079px;}
.y33{bottom:729.720051px;}
.yef{bottom:734.040081px;}
.y52{bottom:749.160049px;}
.yd{bottom:749.520000px;}
.y23{bottom:749.520058px;}
.y32{bottom:758.160049px;}
.yee{bottom:759.780052px;}
.yd2{bottom:766.440067px;}
.yd1{bottom:766.619117px;}
.yc1{bottom:771.480079px;}
.y80{bottom:777.600083px;}
.y22{bottom:777.960056px;}
.y63{bottom:781.920078px;}
.yed{bottom:785.520058px;}
.y31{bottom:786.780052px;}
.yc0{bottom:800.100083px;}
.yb8{bottom:806.220051px;}
.y84{bottom:806.580059px;}
.y75{bottom:809.280052px;}
.y62{bottom:809.640060px;}
.yec{bottom:811.260064px;}
.yd0{bottom:823.500068px;}
.ybf{bottom:828.540081px;}
.y7f{bottom:834.660049px;}
.yc{bottom:835.020000px;}
.y83{bottom:835.020058px;}
.y30{bottom:843.840054px;}
.ycf{bottom:852.120072px;}
.yeb{bottom:862.920078px;}
.y7e{bottom:863.280052px;}
.y21{bottom:863.640060px;}
.yb{bottom:871.380000px;}
.y2f{bottom:872.280052px;}
.yea{bottom:888.660049px;}
.yb7{bottom:891.720051px;}
.yd8{bottom:891.904293px;}
.y20{bottom:892.080059px;}
.y2e{bottom:900.900055px;}
.y48{bottom:920.340054px;}
.y61{bottom:920.700061px;}
.y74{bottom:923.400055px;}
.ya{bottom:928.440000px;}
.y2d{bottom:929.340054px;}
.y47{bottom:948.780053px;}
.y82{bottom:949.140060px;}
.y9{bottom:957.060000px;}
.y2c{bottom:957.960056px;}
.ye9{bottom:965.880066px;}
.y7d{bottom:977.400072px;}
.y1f{bottom:977.760064px;}
.y8{bottom:985.500000px;}
.ye8{bottom:991.620072px;}
.y5f{bottom:1005.840070px;}
.y1e{bottom:1006.200061px;}
.y7{bottom:1014.120000px;}
.ye7{bottom:1017.360060px;}
.y46{bottom:1034.460074px;}
.y1d{bottom:1034.820065px;}
.y18{bottom:1042.740000px;}
.y45{bottom:1062.900072px;}
.y6{bottom:1063.260000px;}
.y1c{bottom:1063.260064px;}
.ye6{bottom:1068.840070px;}
.y2b{bottom:1072.080059px;}
.y44{bottom:1091.520058px;}
.y5{bottom:1091.880000px;}
.y1b{bottom:1091.880066px;}
.ye5{bottom:1094.580059px;}
.y43{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y81{bottom:1120.320065px;}
.y73{bottom:1123.020066px;}
.y5e{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y1a{bottom:1148.940067px;}
.y72{bottom:1151.640069px;}
.h5{height:48.645352px;}
.h6{height:52.435980px;}
.h8{height:55.303923px;}
.hf{height:55.596662px;}
.h3{height:55.598636px;}
.he{height:57.534328px;}
.h2{height:57.535781px;}
.h16{height:62.546393px;}
.hc{height:64.739171px;}
.hd{height:65.992187px;}
.h1a{height:66.489192px;}
.h9{height:67.837080px;}
.h1b{height:67.989118px;}
.h13{height:69.493439px;}
.h14{height:69.496123px;}
.h12{height:70.346938px;}
.hb{height:83.395190px;}
.h7{height:83.395980px;}
.h19{height:84.023262px;}
.ha{height:84.416166px;}
.h4{height:84.416966px;}
.h15{height:85.136049px;}
.h1c{height:85.918737px;}
.h17{height:105.026406px;}
.h18{height:105.746285px;}
.h10{height:114.355213px;}
.h11{height:115.075091px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.xb{left:95.220000px;}
.x5b{left:99.900003px;}
.x3{left:104.940000px;}
.x29{left:112.680005px;}
.x5{left:118.980000px;}
.x4{left:127.800000px;}
.xf{left:131.040000px;}
.x38{left:138.780001px;}
.x15{left:141.300000px;}
.x5c{left:148.139992px;}
.x44{left:150.479994px;}
.x48{left:151.740006px;}
.x54{left:154.979994px;}
.x42{left:159.120002px;}
.x23{left:160.740006px;}
.x57{left:162.539996px;}
.x34{left:165.780001px;}
.x53{left:168.300007px;}
.x36{left:169.740006px;}
.x35{left:170.819996px;}
.x1b{left:174.240006px;}
.x32{left:177.120002px;}
.xc{left:180.180000px;}
.x45{left:185.580008px;}
.x11{left:190.080000px;}
.x63{left:195.479994px;}
.x49{left:199.620002px;}
.x27{left:201.422692px;}
.x6{left:205.200000px;}
.x12{left:221.400000px;}
.x64{left:223.560001px;}
.x22{left:224.639992px;}
.x55{left:231.120002px;}
.x40{left:232.199993px;}
.x47{left:250.020006px;}
.x1f{left:252.000000px;}
.x13{left:253.080000px;}
.x17{left:257.580000px;}
.xd{left:274.500000px;}
.x3c{left:277.020006px;}
.x2a{left:279.539996px;}
.x10{left:283.140000px;}
.xe{left:286.200000px;}
.x3b{left:288.000000px;}
.x2d{left:290.519989px;}
.x16{left:293.760000px;}
.x60{left:297.539157px;}
.x5f{left:303.840062px;}
.x41{left:311.759994px;}
.x62{left:324.720017px;}
.x3d{left:326.339985px;}
.x2e{left:328.139992px;}
.x14{left:333.720000px;}
.x2b{left:335.160015px;}
.x1a{left:338.579990px;}
.x61{left:343.800007px;}
.x25{left:349.920010px;}
.x37{left:354.240006px;}
.x46{left:360.899987px;}
.x24{left:363.779983px;}
.x33{left:371.879998px;}
.x2c{left:374.759994px;}
.x3f{left:376.920010px;}
.x5a{left:392.042810px;}
.x4a{left:394.379998px;}
.x58{left:395.819996px;}
.x26{left:396.899987px;}
.x4f{left:406.980011px;}
.x59{left:409.135480px;}
.x19{left:410.939999px;}
.x50{left:417.600014px;}
.x18{left:419.579990px;}
.x6c{left:429.300007px;}
.x43{left:431.639992px;}
.x28{left:434.699993px;}
.x6a{left:437.939999px;}
.x66{left:443.160015px;}
.x21{left:449.459988px;}
.x5e{left:453.600014px;}
.x2f{left:472.139992px;}
.x69{left:484.920010px;}
.x65{left:503.639992px;}
.x3e{left:505.259994px;}
.x56{left:509.220017px;}
.x20{left:520.920010px;}
.x6d{left:522.180005px;}
.x51{left:525.240006px;}
.x4b{left:529.199993px;}
.x1{left:532.800000px;}
.x72{left:536.040012px;}
.x30{left:551.339985px;}
.x3a{left:552.420010px;}
.x6b{left:565.740006px;}
.x4c{left:568.800007px;}
.x7{left:576.180000px;}
.x1c{left:578.159981px;}
.x1e{left:589.320030px;}
.x39{left:597.419975px;}
.xa{left:621.540000px;}
.x31{left:636.659981px;}
.x52{left:670.679970px;}
.x4d{left:674.639992px;}
.x70{left:680.940033px;}
.x6e{left:685.259994px;}
.x71{left:691.740006px;}
.x73{left:707.220017px;}
.x4e{left:714.240006px;}
.x1d{left:726.659981px;}
.x6f{left:730.440033px;}
.x9{left:740.700000px;}
.x8{left:743.940000px;}
.x67{left:752.580025px;}
.x5d{left:788.580025px;}
.x68{left:803.159981px;}
@media print{
.v1{vertical-align:-27.520000pt;}
.v4{vertical-align:-23.039796pt;}
.v6{vertical-align:-20.479984pt;}
.v7{vertical-align:-18.560056pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880372pt;}
.v3{vertical-align:28.160036pt;}
.v5{vertical-align:37.760012pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000660pt;}
.ls8{letter-spacing:0.027006pt;}
.ls2{letter-spacing:0.027066pt;}
.ls1a{letter-spacing:0.040630pt;}
.ls32{letter-spacing:0.041582pt;}
.ls4{letter-spacing:0.054137pt;}
.ls27{letter-spacing:0.054197pt;}
.ls13{letter-spacing:0.054257pt;}
.ls16{letter-spacing:0.065938pt;}
.ls11{letter-spacing:0.070293pt;}
.lsb{letter-spacing:0.083823pt;}
.ls23{letter-spacing:0.090433pt;}
.ls6{letter-spacing:0.278082pt;}
.ls3{letter-spacing:0.278150pt;}
.ls9{letter-spacing:0.278210pt;}
.ls2e{letter-spacing:0.278330pt;}
.ls1e{letter-spacing:0.295476pt;}
.ls21{letter-spacing:0.295480pt;}
.ls1f{letter-spacing:0.295596pt;}
.ls22{letter-spacing:0.295720pt;}
.ls31{letter-spacing:0.305092pt;}
.ls14{letter-spacing:0.305212pt;}
.ls30{letter-spacing:0.305216pt;}
.ls5{letter-spacing:0.305276pt;}
.ls17{letter-spacing:0.305336pt;}
.ls1b{letter-spacing:0.318800pt;}
.lsc{letter-spacing:0.318960pt;}
.ls2a{letter-spacing:0.318964pt;}
.ls29{letter-spacing:0.319020pt;}
.ls28{letter-spacing:0.319024pt;}
.ls2c{letter-spacing:0.319084pt;}
.ls1c{letter-spacing:0.319300pt;}
.ls1d{letter-spacing:0.319396pt;}
.ls20{letter-spacing:0.319516pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.333954pt;}
.ls19{letter-spacing:0.337064pt;}
.ls2f{letter-spacing:0.443070pt;}
.ls2b{letter-spacing:0.443194pt;}
.ls15{letter-spacing:0.574312pt;}
.ls7{letter-spacing:0.694273pt;}
.ls2d{letter-spacing:0.918162pt;}
.ls26{letter-spacing:0.973966pt;}
.ls33{letter-spacing:2.238884pt;}
.ls18{letter-spacing:3.839160pt;}
.lsf{letter-spacing:4.118174pt;}
.ls25{letter-spacing:4.923174pt;}
.ls24{letter-spacing:5.758400pt;}
.ls10{letter-spacing:9.598364pt;}
.lse{letter-spacing:536.959036pt;}
.lsd{letter-spacing:568.347138pt;}
.ws2{word-spacing:-70.404000pt;}
.ws1c{word-spacing:-21.759918pt;}
.ws1a{word-spacing:-21.279866pt;}
.ws7{word-spacing:-21.204623pt;}
.ws6{word-spacing:-21.121460pt;}
.ws1{word-spacing:-21.121000pt;}
.ws4{word-spacing:-21.120800pt;}
.wsc{word-spacing:-17.600700pt;}
.ws17{word-spacing:-15.840600pt;}
.wsa{word-spacing:-14.080500pt;}
.ws5{word-spacing:-12.320500pt;}
.ws0{word-spacing:-12.320000pt;}
.wsd{word-spacing:-10.240400pt;}
.ws16{word-spacing:-8.160310pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:78.689160pt;}
.ws19{word-spacing:292.544201pt;}
.ws18{word-spacing:352.928568pt;}
.ws15{word-spacing:368.769168pt;}
.ws13{word-spacing:415.657344pt;}
.ws14{word-spacing:556.354238pt;}
.ws10{word-spacing:693.467580pt;}
.wse{word-spacing:702.831152pt;}
.ws12{word-spacing:703.816792pt;}
.wsf{word-spacing:721.417492pt;}
.ws11{word-spacing:744.439207pt;}
.ws8{word-spacing:941.409132pt;}
.wsb{word-spacing:1084.712558pt;}
.ws1b{word-spacing:1195.157406pt;}
._3d{margin-left:-191.005544pt;}
._3a{margin-left:-189.993337pt;}
._3b{margin-left:-127.923121pt;}
._36{margin-left:-120.197358pt;}
._38{margin-left:-113.920723pt;}
._3c{margin-left:-106.207099pt;}
._39{margin-left:-95.272956pt;}
._3e{margin-left:-88.909678pt;}
._37{margin-left:-77.056321pt;}
._3{margin-left:-10.875820pt;}
._7{margin-left:-8.617706pt;}
._6{margin-left:-7.124819pt;}
._12{margin-left:-6.188576pt;}
._4{margin-left:-5.238008pt;}
._2{margin-left:-4.031352pt;}
._5{margin-left:-2.594138pt;}
._1{margin-left:-1.112823pt;}
._0{width:0.932084pt;}
._10{width:1.907682pt;}
._d{width:3.028525pt;}
._c{width:3.972691pt;}
._1f{width:4.883195pt;}
._a{width:5.830531pt;}
._9{width:6.759316pt;}
._e{width:7.923859pt;}
._b{width:9.458689pt;}
._16{width:11.066109pt;}
._17{width:12.143652pt;}
._11{width:13.888303pt;}
._20{width:14.791691pt;}
._15{width:15.811028pt;}
._1b{width:17.116714pt;}
._44{width:18.624418pt;}
._13{width:23.289285pt;}
._21{width:28.211978pt;}
._22{width:29.302514pt;}
._40{width:35.801758pt;}
._14{width:87.844326pt;}
._f{width:88.840606pt;}
._19{width:131.344620pt;}
._3f{width:232.108726pt;}
._2f{width:289.479455pt;}
._1e{width:319.476136pt;}
._27{width:333.738687pt;}
._29{width:338.711084pt;}
._2b{width:343.150808pt;}
._26{width:377.103644pt;}
._28{width:381.599747pt;}
._2c{width:399.816744pt;}
._33{width:406.152984pt;}
._2e{width:408.166713pt;}
._30{width:416.290968pt;}
._2d{width:437.834184pt;}
._34{width:447.713130pt;}
._31{width:453.674784pt;}
._2a{width:475.143598pt;}
._35{width:485.989608pt;}
._32{width:488.794246pt;}
._1d{width:493.082301pt;}
._25{width:576.880860pt;}
._42{width:651.127493pt;}
._41{width:655.352060pt;}
._43{width:660.517550pt;}
._24{width:919.593856pt;}
._1c{width:968.647664pt;}
._18{width:1308.332564pt;}
._23{width:1507.172434pt;}
._1a{width:1509.092354pt;}
._8{width:1535.332346pt;}
.fsd{font-size:32.641240pt;}
.fsc{font-size:36.481400pt;}
.fsb{font-size:40.961600pt;}
.fs3{font-size:49.280000pt;}
.fs8{font-size:49.282000pt;}
.fs6{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs5{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fsa{font-size:70.400080pt;}
.fs9{font-size:70.402800pt;}
.fs4{font-size:70.404000pt;}
.fs7{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.fse{font-size:85.119466pt;}
.fsf{font-size:87.039670pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y19{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y2a{bottom:36.480103pt;}
.y42{bottom:90.720093pt;}
.yb6{bottom:97.600098pt;}
.y71{bottom:102.560059pt;}
.ye4{bottom:105.760071pt;}
.y4f{bottom:107.840088pt;}
.y112{bottom:108.320069pt;}
.y9d{bottom:108.480042pt;}
.y41{bottom:116.000061pt;}
.yb5{bottom:122.560059pt;}
.y70{bottom:127.840088pt;}
.ye3{bottom:131.200074pt;}
.y4e{bottom:133.280030pt;}
.y8e{bottom:133.600037pt;}
.y9c{bottom:133.920044pt;}
.y7c{bottom:136.000061pt;}
.y10c{bottom:141.120057pt;}
.y40{bottom:141.440064pt;}
.yb4{bottom:141.600037pt;}
.yff{bottom:145.280030pt;}
.ye2{bottom:156.480042pt;}
.y4d{bottom:158.720032pt;}
.y8d{bottom:159.040039pt;}
.y10b{bottom:166.080079pt;}
.y3f{bottom:166.720032pt;}
.yfe{bottom:169.920044pt;}
.ye1{bottom:181.920044pt;}
.ya7{bottom:182.720032pt;}
.y5d{bottom:184.000061pt;}
.y9b{bottom:184.640076pt;}
.y7b{bottom:186.720032pt;}
.y3e{bottom:192.160035pt;}
.yfd{bottom:194.720032pt;}
.yb1{bottom:201.760071pt;}
.y6f{bottom:201.920044pt;}
.yb3{bottom:203.360047pt;}
.ya6{bottom:208.000061pt;}
.y4c{bottom:209.440064pt;}
.y111{bottom:209.760071pt;}
.y9a{bottom:209.920044pt;}
.y3d{bottom:210.400086pt;}
.y10a{bottom:216.160035pt;}
.y3c{bottom:217.440064pt;}
.yb2{bottom:220.320069pt;}
.yb0{bottom:220.800049pt;}
.ye0{bottom:223.040039pt;}
.y6e{bottom:226.560059pt;}
.yce{bottom:229.280030pt;}
.ya5{bottom:233.440064pt;}
.y5c{bottom:234.720032pt;}
.y110{bottom:235.040039pt;}
.y99{bottom:235.360047pt;}
.y7a{bottom:237.440064pt;}
.yfc{bottom:240.480042pt;}
.y3b{bottom:242.880066pt;}
.ycd{bottom:254.720032pt;}
.y4b{bottom:260.160035pt;}
.y91{bottom:260.480042pt;}
.y98{bottom:260.640076pt;}
.yaf{bottom:261.920044pt;}
.y79{bottom:262.880066pt;}
.yfb{bottom:263.360047pt;}
.y29{bottom:268.160035pt;}
.ydf{bottom:273.760071pt;}
.yae{bottom:278.880066pt;}
.yad{bottom:279.200074pt;}
.ya4{bottom:284.160035pt;}
.y4a{bottom:285.440064pt;}
.y90{bottom:285.760071pt;}
.yfa{bottom:286.240052pt;}
.y3a{bottom:286.560059pt;}
.y78{bottom:288.160035pt;}
.y109{bottom:291.040039pt;}
.yde{bottom:299.200074pt;}
.y6d{bottom:300.480042pt;}
.ycc{bottom:305.440064pt;}
.yac{bottom:308.960083pt;}
.y5b{bottom:310.880066pt;}
.y17{bottom:311.200000pt;}
.y8f{bottom:311.200074pt;}
.y97{bottom:311.360047pt;}
.ya3{bottom:311.520081pt;}
.y39{bottom:312.000061pt;}
.y77{bottom:313.600037pt;}
.y108{bottom:316.160035pt;}
.y6c{bottom:325.120057pt;}
.yab{bottom:327.840088pt;}
.yf9{bottom:332.000061pt;}
.y16{bottom:336.480000pt;}
.y10f{bottom:336.480042pt;}
.ya2{bottom:337.760071pt;}
.y76{bottom:338.880066pt;}
.ydd{bottom:340.320069pt;}
.y28{bottom:344.320069pt;}
.y6b{bottom:349.760071pt;}
.yaa{bottom:352.960083pt;}
.ycb{bottom:356.160035pt;}
.y49{bottom:361.600037pt;}
.y8c{bottom:361.920044pt;}
.ya1{bottom:364.000061pt;}
.ydc{bottom:365.760071pt;}
.y107{bottom:366.080079pt;}
.y27{bottom:369.600037pt;}
.y6a{bottom:374.400086pt;}
.ybe{bottom:376.960083pt;}
.yf8{bottom:377.760071pt;}
.y96{bottom:379.680054pt;}
.ya9{bottom:380.000061pt;}
.yca{bottom:381.440064pt;}
.y5a{bottom:386.880066pt;}
.y15{bottom:387.200000pt;}
.ya0{bottom:390.400086pt;}
.ydb{bottom:391.040039pt;}
.y106{bottom:391.200074pt;}
.y69{bottom:399.200074pt;}
.yf7{bottom:400.640076pt;}
.yc9{bottom:406.880066pt;}
.y60{bottom:412.320069pt;}
.y8b{bottom:412.640076pt;}
.y9f{bottom:416.640076pt;}
.y14{bottom:419.520000pt;}
.y51{bottom:419.680054pt;}
.y26{bottom:420.320069pt;}
.yf6{bottom:423.520081pt;}
.yc8{bottom:432.160035pt;}
.y59{bottom:437.600037pt;}
.y10e{bottom:437.920044pt;}
.y105{bottom:441.120057pt;}
.y9e{bottom:444.960083pt;}
.y25{bottom:445.760071pt;}
.yf5{bottom:446.400086pt;}
.ybd{bottom:453.120057pt;}
.yc7{bottom:457.600037pt;}
.y58{bottom:463.040039pt;}
.y13{bottom:463.360000pt;}
.ya8{bottom:463.360047pt;}
.y104{bottom:466.240052pt;}
.yf4{bottom:469.280030pt;}
.y38{bottom:471.040039pt;}
.y68{bottom:473.120057pt;}
.yd7{bottom:478.400086pt;}
.ybc{bottom:478.560059pt;}
.yc6{bottom:482.880066pt;}
.y57{bottom:488.320069pt;}
.y12{bottom:488.640000pt;}
.y8a{bottom:488.640076pt;}
.y95{bottom:491.040039pt;}
.y103{bottom:491.200074pt;}
.yda{bottom:492.480042pt;}
.y67{bottom:497.760071pt;}
.yd6{bottom:503.840088pt;}
.yc5{bottom:508.320069pt;}
.y56{bottom:513.760071pt;}
.y11{bottom:514.080000pt;}
.y10d{bottom:514.080079pt;}
.yf3{bottom:515.200074pt;}
.y37{bottom:521.760071pt;}
.y66{bottom:522.400086pt;}
.ybb{bottom:529.280030pt;}
.yc4{bottom:533.600037pt;}
.yf2{bottom:538.080079pt;}
.y55{bottom:539.040039pt;}
.y10{bottom:539.360000pt;}
.y89{bottom:539.360047pt;}
.y102{bottom:541.120057pt;}
.y65{bottom:547.040039pt;}
.y36{bottom:547.200074pt;}
.yba{bottom:554.560059pt;}
.yf1{bottom:560.960083pt;}
.y54{bottom:564.480042pt;}
.y88{bottom:564.800049pt;}
.y101{bottom:566.240052pt;}
.y94{bottom:567.200074pt;}
.y24{bottom:572.480042pt;}
.y50{bottom:576.954158pt;}
.yd5{bottom:579.840088pt;}
.yf0{bottom:583.840088pt;}
.y53{bottom:589.760071pt;}
.yf{bottom:590.080000pt;}
.y87{bottom:590.080079pt;}
.y93{bottom:592.480042pt;}
.y35{bottom:597.920044pt;}
.yd4{bottom:605.280030pt;}
.yc3{bottom:609.760071pt;}
.yd9{bottom:615.200074pt;}
.y86{bottom:615.520050pt;}
.y34{bottom:616.320069pt;}
.ye{bottom:622.400000pt;}
.yb9{bottom:622.880066pt;}
.yd3{bottom:630.560059pt;}
.yc2{bottom:635.040070pt;}
.y113{bottom:640.480072pt;}
.y85{bottom:640.800049pt;}
.y100{bottom:641.280060pt;}
.y92{bottom:643.200074pt;}
.y64{bottom:645.760071pt;}
.y33{bottom:648.640046pt;}
.yef{bottom:652.480072pt;}
.y52{bottom:665.920044pt;}
.yd{bottom:666.240000pt;}
.y23{bottom:666.240052pt;}
.y32{bottom:673.920044pt;}
.yee{bottom:675.360047pt;}
.yd2{bottom:681.280060pt;}
.yd1{bottom:681.439216pt;}
.yc1{bottom:685.760071pt;}
.y80{bottom:691.200074pt;}
.y22{bottom:691.520050pt;}
.y63{bottom:695.040070pt;}
.yed{bottom:698.240052pt;}
.y31{bottom:699.360047pt;}
.yc0{bottom:711.200074pt;}
.yb8{bottom:716.640046pt;}
.y84{bottom:716.960053pt;}
.y75{bottom:719.360047pt;}
.y62{bottom:719.680054pt;}
.yec{bottom:721.120057pt;}
.yd0{bottom:732.000061pt;}
.ybf{bottom:736.480072pt;}
.y7f{bottom:741.920044pt;}
.yc{bottom:742.240000pt;}
.y83{bottom:742.240052pt;}
.y30{bottom:750.080048pt;}
.ycf{bottom:757.440064pt;}
.yeb{bottom:767.040070pt;}
.y7e{bottom:767.360047pt;}
.y21{bottom:767.680054pt;}
.yb{bottom:774.560000pt;}
.y2f{bottom:775.360047pt;}
.yea{bottom:789.920044pt;}
.yb7{bottom:792.640046pt;}
.yd8{bottom:792.803816pt;}
.y20{bottom:792.960053pt;}
.y2e{bottom:800.800049pt;}
.y48{bottom:818.080048pt;}
.y61{bottom:818.400055pt;}
.y74{bottom:820.800049pt;}
.ya{bottom:825.280000pt;}
.y2d{bottom:826.080048pt;}
.y47{bottom:843.360047pt;}
.y82{bottom:843.680054pt;}
.y9{bottom:850.720000pt;}
.y2c{bottom:851.520050pt;}
.ye9{bottom:858.560059pt;}
.y7d{bottom:868.800064pt;}
.y1f{bottom:869.120057pt;}
.y8{bottom:876.000000pt;}
.ye8{bottom:881.440064pt;}
.y5f{bottom:894.080063pt;}
.y1e{bottom:894.400055pt;}
.y7{bottom:901.440000pt;}
.ye7{bottom:904.320054pt;}
.y46{bottom:919.520066pt;}
.y1d{bottom:919.840058pt;}
.y18{bottom:926.880000pt;}
.y45{bottom:944.800064pt;}
.y6{bottom:945.120000pt;}
.y1c{bottom:945.120057pt;}
.ye6{bottom:950.080063pt;}
.y2b{bottom:952.960053pt;}
.y44{bottom:970.240052pt;}
.y5{bottom:970.560000pt;}
.y1b{bottom:970.560059pt;}
.ye5{bottom:972.960053pt;}
.y43{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y81{bottom:995.840058pt;}
.y73{bottom:998.240059pt;}
.y5e{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y1a{bottom:1021.280060pt;}
.y72{bottom:1023.680062pt;}
.h5{height:43.240313pt;}
.h6{height:46.609760pt;}
.h8{height:49.159043pt;}
.hf{height:49.419255pt;}
.h3{height:49.421010pt;}
.he{height:51.141625pt;}
.h2{height:51.142916pt;}
.h16{height:55.596793pt;}
.hc{height:57.545930pt;}
.hd{height:58.659722pt;}
.h1a{height:59.101504pt;}
.h9{height:60.299627pt;}
.h1b{height:60.434771pt;}
.h13{height:61.771946pt;}
.h14{height:61.774332pt;}
.h12{height:62.530612pt;}
.hb{height:74.129058pt;}
.h7{height:74.129760pt;}
.h19{height:74.687344pt;}
.ha{height:75.036592pt;}
.h4{height:75.037303pt;}
.h15{height:75.676488pt;}
.h1c{height:76.372211pt;}
.h17{height:93.356805pt;}
.h18{height:93.996697pt;}
.h10{height:101.649078pt;}
.h11{height:102.288970pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.xb{left:84.640000pt;}
.x5b{left:88.800003pt;}
.x3{left:93.280000pt;}
.x29{left:100.160004pt;}
.x5{left:105.760000pt;}
.x4{left:113.600000pt;}
.xf{left:116.480000pt;}
.x38{left:123.360001pt;}
.x15{left:125.600000pt;}
.x5c{left:131.679993pt;}
.x44{left:133.759995pt;}
.x48{left:134.880005pt;}
.x54{left:137.759995pt;}
.x42{left:141.440002pt;}
.x23{left:142.880005pt;}
.x57{left:144.479996pt;}
.x34{left:147.360001pt;}
.x53{left:149.600006pt;}
.x36{left:150.880005pt;}
.x35{left:151.839996pt;}
.x1b{left:154.880005pt;}
.x32{left:157.440002pt;}
.xc{left:160.160000pt;}
.x45{left:164.960007pt;}
.x11{left:168.960000pt;}
.x63{left:173.759995pt;}
.x49{left:177.440002pt;}
.x27{left:179.042393pt;}
.x6{left:182.400000pt;}
.x12{left:196.800000pt;}
.x64{left:198.720001pt;}
.x22{left:199.679993pt;}
.x55{left:205.440002pt;}
.x40{left:206.399994pt;}
.x47{left:222.240005pt;}
.x1f{left:224.000000pt;}
.x13{left:224.960000pt;}
.x17{left:228.960000pt;}
.xd{left:244.000000pt;}
.x3c{left:246.240005pt;}
.x2a{left:248.479996pt;}
.x10{left:251.680000pt;}
.xe{left:254.400000pt;}
.x3b{left:256.000000pt;}
.x2d{left:258.239990pt;}
.x16{left:261.120000pt;}
.x60{left:264.479250pt;}
.x5f{left:270.080055pt;}
.x41{left:277.119995pt;}
.x62{left:288.640015pt;}
.x3d{left:290.079987pt;}
.x2e{left:291.679993pt;}
.x14{left:296.640000pt;}
.x2b{left:297.920013pt;}
.x1a{left:300.959991pt;}
.x61{left:305.600006pt;}
.x25{left:311.040009pt;}
.x37{left:314.880005pt;}
.x46{left:320.799988pt;}
.x24{left:323.359985pt;}
.x33{left:330.559998pt;}
.x2c{left:333.119995pt;}
.x3f{left:335.040009pt;}
.x5a{left:348.482498pt;}
.x4a{left:350.559998pt;}
.x58{left:351.839996pt;}
.x26{left:352.799988pt;}
.x4f{left:361.760010pt;}
.x59{left:363.675982pt;}
.x19{left:365.279999pt;}
.x50{left:371.200012pt;}
.x18{left:372.959991pt;}
.x6c{left:381.600006pt;}
.x43{left:383.679993pt;}
.x28{left:386.399994pt;}
.x6a{left:389.279999pt;}
.x66{left:393.920013pt;}
.x21{left:399.519989pt;}
.x5e{left:403.200012pt;}
.x2f{left:419.679993pt;}
.x69{left:431.040009pt;}
.x65{left:447.679993pt;}
.x3e{left:449.119995pt;}
.x56{left:452.640015pt;}
.x20{left:463.040009pt;}
.x6d{left:464.160004pt;}
.x51{left:466.880005pt;}
.x4b{left:470.399994pt;}
.x1{left:473.600000pt;}
.x72{left:476.480011pt;}
.x30{left:490.079987pt;}
.x3a{left:491.040009pt;}
.x6b{left:502.880005pt;}
.x4c{left:505.600006pt;}
.x7{left:512.160000pt;}
.x1c{left:513.919983pt;}
.x1e{left:523.840027pt;}
.x39{left:531.039978pt;}
.xa{left:552.480000pt;}
.x31{left:565.919983pt;}
.x52{left:596.159973pt;}
.x4d{left:599.679993pt;}
.x70{left:605.280029pt;}
.x6e{left:609.119995pt;}
.x71{left:614.880005pt;}
.x73{left:628.640015pt;}
.x4e{left:634.880005pt;}
.x1d{left:645.919983pt;}
.x6f{left:649.280029pt;}
.x9{left:658.400000pt;}
.x8{left:661.280000pt;}
.x67{left:668.960022pt;}
.x5d{left:700.960022pt;}
.x68{left:713.919983pt;}
}




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