
    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_bae49253b764dd937c29c8c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_df8dc2d45f51a644a3016294.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_cbefb9ff805edff47f1d2f74.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4580dd788662a7f1c1e49134.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_cda39cad93072cc90b50ee1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_16ef5f6ba851cce8336b395d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_ef3136e2cd34e962b130f83a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_1fac75d94f3ddfc208c80232.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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);}
.v1{vertical-align:-78.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:50.400000px;}
.ls2c{letter-spacing:-0.357600px;}
.ls23{letter-spacing:-0.169200px;}
.lsb{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.129000px;}
.ls2e{letter-spacing:-0.121800px;}
.ls2a{letter-spacing:-0.108000px;}
.ls25{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.084600px;}
.ls29{letter-spacing:-0.083400px;}
.ls34{letter-spacing:-0.066000px;}
.ls13{letter-spacing:-0.064200px;}
.lsd{letter-spacing:-0.060600px;}
.ls14{letter-spacing:-0.059040px;}
.ls26{letter-spacing:-0.055080px;}
.ls1e{letter-spacing:-0.037440px;}
.ls1{letter-spacing:-0.036000px;}
.ls32{letter-spacing:-0.033120px;}
.ls17{letter-spacing:-0.032040px;}
.lse{letter-spacing:-0.030960px;}
.ls12{letter-spacing:-0.029520px;}
.ls10{letter-spacing:-0.016920px;}
.ls19{letter-spacing:-0.002520px;}
.ls11{letter-spacing:-0.000023px;}
.ls31{letter-spacing:-0.000011px;}
.ls2b{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000011px;}
.lsf{letter-spacing:0.000023px;}
.ls2d{letter-spacing:0.002520px;}
.ls15{letter-spacing:0.024720px;}
.ls1a{letter-spacing:0.029880px;}
.ls38{letter-spacing:0.030240px;}
.ls7{letter-spacing:0.035280px;}
.ls37{letter-spacing:0.036720px;}
.ls2f{letter-spacing:0.054360px;}
.ls1c{letter-spacing:0.055560px;}
.ls3b{letter-spacing:0.059760px;}
.ls36{letter-spacing:0.060600px;}
.ls39{letter-spacing:0.060840px;}
.ls3d{letter-spacing:0.063000px;}
.ls5{letter-spacing:0.064200px;}
.ls3c{letter-spacing:0.069600px;}
.ls4{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.073800px;}
.ls8{letter-spacing:0.077400px;}
.ls6{letter-spacing:0.079800px;}
.ls9{letter-spacing:0.083400px;}
.ls33{letter-spacing:0.087000px;}
.lsc{letter-spacing:0.119400px;}
.lsa{letter-spacing:0.120000px;}
.ls35{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.274800px;}
.ls27{letter-spacing:0.276600px;}
.ls16{letter-spacing:0.312600px;}
.ls28{letter-spacing:30.780000px;}
.ls2{letter-spacing:32.328000px;}
.ls3{letter-spacing:32.688000px;}
.ls24{letter-spacing:53.520480px;}
.ls20{letter-spacing:85.956000px;}
.ls1f{letter-spacing:85.998000px;}
.ls21{letter-spacing:94.398000px;}
.ls22{letter-spacing:94.440000px;}
.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;}
}
.ws13{word-spacing:-81.480000px;}
.ws11{word-spacing:-81.360023px;}
.ws10{word-spacing:-81.360000px;}
.ws48{word-spacing:-73.224000px;}
.ws46{word-spacing:-73.116000px;}
.ws6b{word-spacing:-71.759520px;}
.ws5b{word-spacing:-54.529320px;}
.ws52{word-spacing:-54.321480px;}
.ws1c{word-spacing:-54.318960px;}
.ws19{word-spacing:-54.294240px;}
.wsf{word-spacing:-54.267120px;}
.ws40{word-spacing:-54.212040px;}
.ws35{word-spacing:-48.843120px;}
.ws7{word-spacing:-48.816000px;}
.ws42{word-spacing:-43.641480px;}
.ws38{word-spacing:-43.392000px;}
.ws39{word-spacing:-43.364880px;}
.ws8{word-spacing:-38.078520px;}
.wsa{word-spacing:-38.074920px;}
.ws5a{word-spacing:-38.022240px;}
.ws59{word-spacing:-37.995120px;}
.ws45{word-spacing:-32.544000px;}
.ws60{word-spacing:-27.166680px;}
.ws64{word-spacing:-27.162480px;}
.ws6{word-spacing:-27.157080px;}
.ws5c{word-spacing:-27.153480px;}
.ws5{word-spacing:-27.092880px;}
.ws2{word-spacing:-24.408000px;}
.ws1f{word-spacing:-19.269480px;}
.ws1e{word-spacing:-18.956880px;}
.ws16{word-spacing:-16.299120px;}
.wsb{word-spacing:-16.272000px;}
.ws4a{word-spacing:-16.271997px;}
.wsc{word-spacing:-16.128000px;}
.wse{word-spacing:-13.706520px;}
.ws4e{word-spacing:-13.589640px;}
.wsd{word-spacing:-13.587120px;}
.ws4b{word-spacing:-13.229520px;}
.ws5d{word-spacing:-1.233840px;}
.ws1b{word-spacing:-1.190160px;}
.ws5e{word-spacing:-1.112040px;}
.ws2d{word-spacing:-1.053600px;}
.ws2e{word-spacing:-1.047120px;}
.ws55{word-spacing:-1.002720px;}
.ws68{word-spacing:-0.991440px;}
.ws3a{word-spacing:-0.900240px;}
.ws21{word-spacing:-0.762120px;}
.ws41{word-spacing:-0.688920px;}
.ws30{word-spacing:-0.534120px;}
.ws4{word-spacing:-0.528000px;}
.ws66{word-spacing:-0.513000px;}
.ws24{word-spacing:-0.492720px;}
.ws28{word-spacing:-0.457080px;}
.ws34{word-spacing:-0.432000px;}
.ws50{word-spacing:-0.421440px;}
.ws2c{word-spacing:-0.361320px;}
.ws15{word-spacing:-0.348000px;}
.ws37{word-spacing:-0.326520px;}
.ws2b{word-spacing:-0.311040px;}
.ws6a{word-spacing:-0.301200px;}
.ws49{word-spacing:-0.288000px;}
.ws3d{word-spacing:-0.243600px;}
.ws3e{word-spacing:-0.238320px;}
.ws23{word-spacing:-0.225360px;}
.ws22{word-spacing:-0.210600px;}
.ws54{word-spacing:-0.172080px;}
.ws61{word-spacing:-0.164040px;}
.ws4d{word-spacing:-0.145440px;}
.ws32{word-spacing:-0.135840px;}
.ws1a{word-spacing:-0.056160px;}
.ws67{word-spacing:-0.043200px;}
.ws17{word-spacing:-0.028080px;}
.ws3{word-spacing:0.000000px;}
.ws53{word-spacing:0.011520px;}
.ws51{word-spacing:0.086160px;}
.ws3c{word-spacing:0.120000px;}
.ws18{word-spacing:0.178560px;}
.ws2f{word-spacing:0.195000px;}
.ws4c{word-spacing:0.298200px;}
.ws4f{word-spacing:0.358800px;}
.ws36{word-spacing:0.360000px;}
.ws0{word-spacing:0.378480px;}
.ws14{word-spacing:0.480229px;}
.ws69{word-spacing:0.494760px;}
.ws5f{word-spacing:0.567720px;}
.ws65{word-spacing:0.573960px;}
.ws62{word-spacing:0.636600px;}
.ws31{word-spacing:0.639720px;}
.ws3b{word-spacing:0.664200px;}
.ws33{word-spacing:0.864000px;}
.ws9{word-spacing:0.874080px;}
.ws29{word-spacing:1.243920px;}
.ws2a{word-spacing:1.404720px;}
.ws58{word-spacing:1.439954px;}
.ws25{word-spacing:1.559817px;}
.ws1d{word-spacing:1.560251px;}
.ws43{word-spacing:1.626120px;}
.ws20{word-spacing:1.746120px;}
.ws57{word-spacing:1.920080px;}
.ws12{word-spacing:2.040000px;}
.ws56{word-spacing:2.280000px;}
.ws3f{word-spacing:11.608560px;}
.ws26{word-spacing:12.859560px;}
.ws27{word-spacing:13.514760px;}
.ws63{word-spacing:27.573960px;}
.ws1{word-spacing:64.320840px;}
.ws44{word-spacing:111.181800px;}
.ws47{word-spacing:1807.944000px;}
._2{margin-left:-2.484000px;}
._0{margin-left:-1.226040px;}
._3{width:1.226040px;}
._1{width:2.528160px;}
._13{width:4.586760px;}
._e{width:20.065680px;}
._12{width:28.622040px;}
._11{width:50.664000px;}
._10{width:51.779280px;}
._7{width:53.119200px;}
._b{width:54.170160px;}
._f{width:55.327080px;}
._a{width:64.032000px;}
._9{width:65.954040px;}
._d{width:83.400000px;}
._c{width:84.933960px;}
._6{width:487.466040px;}
._4{width:1053.896400px;}
._8{width:1394.882760px;}
._5{width:1435.202760px;}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(192,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(144,144,133);}
.fc1{color:rgb(0,102,255);}
.fc8{color:rgb(137,137,137);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fsd{font-size:60.120000px;}
.fsb{font-size:72.000000px;}
.fs12{font-size:72.120000px;}
.fs7{font-size:79.560000px;}
.fs17{font-size:79.920000px;}
.fs10{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.fs13{font-size:111.960000px;}
.fs6{font-size:119.880000px;}
.fs2{font-size:144.000000px;}
.fs5{font-size:144.120000px;}
.fsa{font-size:168.120000px;}
.fs9{font-size:168.240000px;}
.fs16{font-size:191.880000px;}
.fs15{font-size:192.000000px;}
.fs1{font-size:216.000000px;}
.fs14{font-size:216.120000px;}
.fse{font-size:240.120000px;}
.fsf{font-size:240.240000px;}
.fs11{font-size:288.000000px;}
.fs19{font-size:317.520000px;}
.fs0{font-size:324.000000px;}
.fs8{font-size:360.000000px;}
.fs18{font-size:381.000000px;}
.fsc{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:8.580000px;}
.y11{bottom:27.060000px;}
.y6d{bottom:36.030000px;}
.y74{bottom:39.420000px;}
.y7{bottom:39.840000px;}
.y3c{bottom:65.010000px;}
.y3d{bottom:66.120000px;}
.y29{bottom:66.390000px;}
.y31{bottom:66.750000px;}
.y82{bottom:68.100000px;}
.y10{bottom:68.430000px;}
.y32{bottom:68.640000px;}
.y81{bottom:69.000000px;}
.y2a{bottom:69.180000px;}
.y1c{bottom:70.290000px;}
.y37{bottom:70.620000px;}
.y9c{bottom:70.740000px;}
.y6{bottom:71.340000px;}
.ya3{bottom:81.120000px;}
.y73{bottom:82.620000px;}
.y69{bottom:83.850000px;}
.y6c{bottom:86.520000px;}
.y20{bottom:86.760000px;}
.y5f{bottom:87.240000px;}
.y3b{bottom:89.130000px;}
.y54{bottom:89.220000px;}
.y27{bottom:94.440000px;}
.y68{bottom:95.820000px;}
.y36{bottom:101.640000px;}
.y5{bottom:102.840000px;}
.y44{bottom:104.070000px;}
.yf{bottom:104.430000px;}
.y65{bottom:105.690000px;}
.y99{bottom:106.740000px;}
.ya2{bottom:107.760000px;}
.y64{bottom:112.890000px;}
.y8d{bottom:118.470000px;}
.y88{bottom:120.090000px;}
.y1f{bottom:129.960000px;}
.y4d{bottom:130.470000px;}
.y98{bottom:142.740000px;}
.y1b{bottom:145.890000px;}
.y4{bottom:152.370000px;}
.y5a{bottom:154.050000px;}
.y43{bottom:154.500000px;}
.y7f{bottom:156.690000px;}
.y5e{bottom:159.270000px;}
.y3a{bottom:161.130000px;}
.y26{bottom:166.470000px;}
.y8c{bottom:168.900000px;}
.ye{bottom:170.850000px;}
.y53{bottom:172.050000px;}
.y1e{bottom:173.160000px;}
.y35{bottom:173.670000px;}
.y97{bottom:178.740000px;}
.y87{bottom:180.870000px;}
.y3{bottom:191.070000px;}
.ya4{bottom:194.460000px;}
.y63{bottom:198.870000px;}
.y77{bottom:201.390000px;}
.y49{bottom:202.470000px;}
.y80{bottom:203.010000px;}
.y42{bottom:204.900000px;}
.yd{bottom:214.080000px;}
.y7e{bottom:214.290000px;}
.y96{bottom:214.740000px;}
.y1d{bottom:216.360000px;}
.y59{bottom:218.850000px;}
.y1a{bottom:221.490000px;}
.y22{bottom:229.890000px;}
.y39{bottom:233.130000px;}
.ya1{bottom:237.360000px;}
.y67{bottom:238.470000px;}
.y9b{bottom:250.740000px;}
.y52{bottom:254.850000px;}
.yc{bottom:257.280000px;}
.y28{bottom:259.320000px;}
.y8b{bottom:269.700000px;}
.y62{bottom:270.870000px;}
.y7d{bottom:271.920000px;}
.y33{bottom:274.470000px;}
.y34{bottom:281.670000px;}
.y58{bottom:283.650000px;}
.y95{bottom:286.770000px;}
.y86{bottom:288.870000px;}
.y4c{bottom:292.470000px;}
.y19{bottom:297.120000px;}
.y5d{bottom:300.120000px;}
.y41{bottom:305.700000px;}
.y2{bottom:309.630000px;}
.y66{bottom:310.470000px;}
.y2e{bottom:312.840000px;}
.y51{bottom:319.650000px;}
.y8a{bottom:320.100000px;}
.y94{bottom:322.770000px;}
.yb{bottom:329.280000px;}
.y7c{bottom:329.520000px;}
.ya0{bottom:334.560000px;}
.y38{bottom:341.130000px;}
.y61{bottom:342.870000px;}
.y25{bottom:346.470000px;}
.y57{bottom:348.450000px;}
.y75{bottom:355.740000px;}
.y40{bottom:356.100000px;}
.y93{bottom:358.770000px;}
.y5c{bottom:360.870000px;}
.y4b{bottom:364.470000px;}
.y89{bottom:370.500000px;}
.y21{bottom:372.240000px;}
.y18{bottom:372.720000px;}
.ya{bottom:377.160000px;}
.y2c{bottom:378.420000px;}
.y6b{bottom:382.470000px;}
.y7b{bottom:387.120000px;}
.y92{bottom:394.770000px;}
.y85{bottom:396.870000px;}
.y50{bottom:402.450000px;}
.y3f{bottom:406.500000px;}
.y1{bottom:406.830000px;}
.y56{bottom:413.250000px;}
.y48{bottom:418.470000px;}
.y9a{bottom:430.770000px;}
.y2d{bottom:431.640000px;}
.y9f{bottom:431.790000px;}
.y60{bottom:435.300000px;}
.y9{bottom:441.960000px;}
.y7a{bottom:444.720000px;}
.y17{bottom:448.320000px;}
.y24{bottom:454.470000px;}
.y3e{bottom:456.900000px;}
.y2b{bottom:464.820000px;}
.y91{bottom:466.770000px;}
.y55{bottom:478.080000px;}
.y30{bottom:479.370000px;}
.y4f{bottom:485.280000px;}
.y47{bottom:490.500000px;}
.y76{bottom:499.530000px;}
.y5b{bottom:501.750000px;}
.y79{bottom:502.320000px;}
.y90{bottom:502.770000px;}
.y6a{bottom:518.580000px;}
.y16{bottom:523.920000px;}
.y4a{bottom:526.500000px;}
.y72{bottom:528.150000px;}
.y46{bottom:528.750000px;}
.y9e{bottom:528.990000px;}
.y8f{bottom:538.770000px;}
.y2f{bottom:551.370000px;}
.y78{bottom:559.920000px;}
.y23{bottom:562.500000px;}
.y4e{bottom:568.080000px;}
.y8e{bottom:574.770000px;}
.y15{bottom:599.550000px;}
.y71{bottom:600.180000px;}
.y45{bottom:600.750000px;}
.y13{bottom:607.320000px;}
.y9d{bottom:671.070000px;}
.y12{bottom:672.120000px;}
.y70{bottom:672.180000px;}
.y14{bottom:693.660000px;}
.y84{bottom:693.690000px;}
.y6e{bottom:729.030000px;}
.y6f{bottom:744.180000px;}
.y8{bottom:762.330000px;}
.h17{height:57.442500px;}
.hd{height:59.797090px;}
.h1d{height:61.558418px;}
.h11{height:71.613281px;}
.h13{height:71.732637px;}
.h8{height:79.132676px;}
.h10{height:83.429473px;}
.h18{height:83.970000px;}
.h3{height:95.603730px;}
.h1a{height:104.836465px;}
.h4{height:110.583984px;}
.h19{height:119.236113px;}
.h7{height:122.748223px;}
.h2{height:147.445312px;}
.h6{height:147.568184px;}
.hb{height:172.142402px;}
.ha{height:172.265273px;}
.h16{height:196.470879px;}
.h15{height:196.593750px;}
.h5{height:221.167969px;}
.h14{height:221.290840px;}
.he{height:245.865059px;}
.hf{height:245.987930px;}
.h12{height:294.890625px;}
.h1c{height:325.116914px;}
.h1{height:331.751953px;}
.h9{height:368.613281px;}
.h1b{height:390.115723px;}
.hc{height:405.474609px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x15{left:8.579979px;}
.x84{left:9.839979px;}
.x7c{left:35.369979px;}
.x38{left:37.229979px;}
.xc{left:44.999979px;}
.x12{left:49.259979px;}
.x3c{left:53.009979px;}
.x1a{left:54.179979px;}
.x76{left:58.619979px;}
.x4b{left:64.349979px;}
.x58{left:65.909979px;}
.x17{left:70.799979px;}
.x6d{left:81.089979px;}
.x1{left:82.139979px;}
.x2{left:87.749979px;}
.x40{left:90.629979px;}
.x56{left:94.049979px;}
.x11{left:96.929979px;}
.x7d{left:99.089979px;}
.x48{left:103.949979px;}
.x4c{left:107.189979px;}
.x62{left:113.729979px;}
.x57{left:116.729979px;}
.x28{left:122.399979px;}
.x4a{left:126.179979px;}
.x3f{left:132.389979px;}
.x60{left:134.159979px;}
.x83{left:135.599979px;}
.x19{left:137.069979px;}
.x4f{left:140.129979px;}
.x46{left:142.199979px;}
.x6c{left:149.549979px;}
.x1c{left:158.219979px;}
.x2a{left:162.719979px;}
.x80{left:164.999979px;}
.x1d{left:171.989979px;}
.x1f{left:176.879979px;}
.x47{left:179.639979px;}
.x2f{left:183.119979px;}
.x14{left:188.249979px;}
.x6e{left:189.299979px;}
.x7f{left:193.589979px;}
.x70{left:195.239979px;}
.x5b{left:203.999979px;}
.x59{left:212.849979px;}
.x2d{left:214.529979px;}
.x2e{left:216.059979px;}
.x6f{left:219.359979px;}
.x55{left:227.999979px;}
.x44{left:231.839979px;}
.x35{left:236.429979px;}
.x77{left:242.639979px;}
.x81{left:247.019979px;}
.x2c{left:262.259979px;}
.x72{left:268.229979px;}
.x7{left:271.619979px;}
.x27{left:277.139979px;}
.x5a{left:280.559979px;}
.x5c{left:282.299979px;}
.xd{left:284.669979px;}
.x79{left:289.709979px;}
.x4{left:292.319979px;}
.x2b{left:302.279979px;}
.x3{left:311.879979px;}
.x10{left:316.049979px;}
.x3b{left:320.759979px;}
.x73{left:322.409979px;}
.x5{left:324.269979px;}
.x1b{left:331.199979px;}
.x3e{left:333.749979px;}
.x45{left:342.299979px;}
.x36{left:343.709979px;}
.x9{left:346.409979px;}
.x3d{left:352.199979px;}
.x6{left:357.299979px;}
.x54{left:362.759979px;}
.x42{left:370.169979px;}
.x7e{left:375.869979px;}
.x41{left:377.939979px;}
.x82{left:381.419979px;}
.xe{left:382.859979px;}
.x21{left:387.839979px;}
.xb{left:395.099979px;}
.x4d{left:398.549979px;}
.x49{left:401.369979px;}
.x78{left:403.349979px;}
.x3a{left:406.799979px;}
.x61{left:410.099979px;}
.x13{left:412.979979px;}
.x7a{left:416.489979px;}
.x22{left:420.959979px;}
.x20{left:429.209979px;}
.x29{left:431.489979px;}
.x43{left:433.529979px;}
.x16{left:443.609979px;}
.x34{left:444.779979px;}
.x26{left:446.429979px;}
.x37{left:448.889979px;}
.x51{left:460.619979px;}
.xf{left:470.669979px;}
.x8{left:485.459979px;}
.x4e{left:492.239979px;}
.x7b{left:512.759979px;}
.x39{left:513.929979px;}
.x24{left:516.689979px;}
.x53{left:528.149979px;}
.x74{left:544.799979px;}
.x5d{left:548.399979px;}
.x75{left:554.189979px;}
.xa{left:555.839979px;}
.x1e{left:570.659979px;}
.x71{left:579.719979px;}
.x64{left:606.539979px;}
.x23{left:617.969979px;}
.x63{left:624.719979px;}
.x5f{left:637.259979px;}
.x50{left:639.479979px;}
.x6a{left:641.789979px;}
.x25{left:650.669979px;}
.x18{left:657.839979px;}
.x6b{left:670.139979px;}
.x66{left:696.149979px;}
.x67{left:707.399979px;}
.x65{left:710.549979px;}
.x69{left:725.579979px;}
.x33{left:760.289979px;}
.x52{left:765.299979px;}
.x68{left:768.059979px;}
.x31{left:787.199979px;}
.x32{left:859.139979px;}
.x30{left:895.499979px;}
.x5e{left:1387.949979px;}
@media print{
.v1{vertical-align:-69.866667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:44.800000pt;}
.ls2c{letter-spacing:-0.317867pt;}
.ls23{letter-spacing:-0.150400pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.114667pt;}
.ls2e{letter-spacing:-0.108267pt;}
.ls2a{letter-spacing:-0.096000pt;}
.ls25{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.075200pt;}
.ls29{letter-spacing:-0.074133pt;}
.ls34{letter-spacing:-0.058667pt;}
.ls13{letter-spacing:-0.057067pt;}
.lsd{letter-spacing:-0.053867pt;}
.ls14{letter-spacing:-0.052480pt;}
.ls26{letter-spacing:-0.048960pt;}
.ls1e{letter-spacing:-0.033280pt;}
.ls1{letter-spacing:-0.032000pt;}
.ls32{letter-spacing:-0.029440pt;}
.ls17{letter-spacing:-0.028480pt;}
.lse{letter-spacing:-0.027520pt;}
.ls12{letter-spacing:-0.026240pt;}
.ls10{letter-spacing:-0.015040pt;}
.ls19{letter-spacing:-0.002240pt;}
.ls11{letter-spacing:-0.000020pt;}
.ls31{letter-spacing:-0.000010pt;}
.ls2b{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000010pt;}
.lsf{letter-spacing:0.000020pt;}
.ls2d{letter-spacing:0.002240pt;}
.ls15{letter-spacing:0.021973pt;}
.ls1a{letter-spacing:0.026560pt;}
.ls38{letter-spacing:0.026880pt;}
.ls7{letter-spacing:0.031360pt;}
.ls37{letter-spacing:0.032640pt;}
.ls2f{letter-spacing:0.048320pt;}
.ls1c{letter-spacing:0.049387pt;}
.ls3b{letter-spacing:0.053120pt;}
.ls36{letter-spacing:0.053867pt;}
.ls39{letter-spacing:0.054080pt;}
.ls3d{letter-spacing:0.056000pt;}
.ls5{letter-spacing:0.057067pt;}
.ls3c{letter-spacing:0.061867pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.065600pt;}
.ls8{letter-spacing:0.068800pt;}
.ls6{letter-spacing:0.070933pt;}
.ls9{letter-spacing:0.074133pt;}
.ls33{letter-spacing:0.077333pt;}
.lsc{letter-spacing:0.106133pt;}
.lsa{letter-spacing:0.106667pt;}
.ls35{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.244267pt;}
.ls27{letter-spacing:0.245867pt;}
.ls16{letter-spacing:0.277867pt;}
.ls28{letter-spacing:27.360000pt;}
.ls2{letter-spacing:28.736000pt;}
.ls3{letter-spacing:29.056000pt;}
.ls24{letter-spacing:47.573760pt;}
.ls20{letter-spacing:76.405333pt;}
.ls1f{letter-spacing:76.442667pt;}
.ls21{letter-spacing:83.909333pt;}
.ls22{letter-spacing:83.946667pt;}
.ws13{word-spacing:-72.426667pt;}
.ws11{word-spacing:-72.320020pt;}
.ws10{word-spacing:-72.320000pt;}
.ws48{word-spacing:-65.088000pt;}
.ws46{word-spacing:-64.992000pt;}
.ws6b{word-spacing:-63.786240pt;}
.ws5b{word-spacing:-48.470507pt;}
.ws52{word-spacing:-48.285760pt;}
.ws1c{word-spacing:-48.283520pt;}
.ws19{word-spacing:-48.261547pt;}
.wsf{word-spacing:-48.237440pt;}
.ws40{word-spacing:-48.188480pt;}
.ws35{word-spacing:-43.416107pt;}
.ws7{word-spacing:-43.392000pt;}
.ws42{word-spacing:-38.792427pt;}
.ws38{word-spacing:-38.570667pt;}
.ws39{word-spacing:-38.546560pt;}
.ws8{word-spacing:-33.847573pt;}
.wsa{word-spacing:-33.844373pt;}
.ws5a{word-spacing:-33.797547pt;}
.ws59{word-spacing:-33.773440pt;}
.ws45{word-spacing:-28.928000pt;}
.ws60{word-spacing:-24.148160pt;}
.ws64{word-spacing:-24.144427pt;}
.ws6{word-spacing:-24.139627pt;}
.ws5c{word-spacing:-24.136427pt;}
.ws5{word-spacing:-24.082560pt;}
.ws2{word-spacing:-21.696000pt;}
.ws1f{word-spacing:-17.128427pt;}
.ws1e{word-spacing:-16.850560pt;}
.ws16{word-spacing:-14.488107pt;}
.wsb{word-spacing:-14.464000pt;}
.ws4a{word-spacing:-14.463997pt;}
.wsc{word-spacing:-14.336000pt;}
.wse{word-spacing:-12.183573pt;}
.ws4e{word-spacing:-12.079680pt;}
.wsd{word-spacing:-12.077440pt;}
.ws4b{word-spacing:-11.759573pt;}
.ws5d{word-spacing:-1.096747pt;}
.ws1b{word-spacing:-1.057920pt;}
.ws5e{word-spacing:-0.988480pt;}
.ws2d{word-spacing:-0.936533pt;}
.ws2e{word-spacing:-0.930773pt;}
.ws55{word-spacing:-0.891307pt;}
.ws68{word-spacing:-0.881280pt;}
.ws3a{word-spacing:-0.800213pt;}
.ws21{word-spacing:-0.677440pt;}
.ws41{word-spacing:-0.612373pt;}
.ws30{word-spacing:-0.474773pt;}
.ws4{word-spacing:-0.469333pt;}
.ws66{word-spacing:-0.456000pt;}
.ws24{word-spacing:-0.437973pt;}
.ws28{word-spacing:-0.406293pt;}
.ws34{word-spacing:-0.384000pt;}
.ws50{word-spacing:-0.374613pt;}
.ws2c{word-spacing:-0.321173pt;}
.ws15{word-spacing:-0.309333pt;}
.ws37{word-spacing:-0.290240pt;}
.ws2b{word-spacing:-0.276480pt;}
.ws6a{word-spacing:-0.267733pt;}
.ws49{word-spacing:-0.256000pt;}
.ws3d{word-spacing:-0.216533pt;}
.ws3e{word-spacing:-0.211840pt;}
.ws23{word-spacing:-0.200320pt;}
.ws22{word-spacing:-0.187200pt;}
.ws54{word-spacing:-0.152960pt;}
.ws61{word-spacing:-0.145813pt;}
.ws4d{word-spacing:-0.129280pt;}
.ws32{word-spacing:-0.120747pt;}
.ws1a{word-spacing:-0.049920pt;}
.ws67{word-spacing:-0.038400pt;}
.ws17{word-spacing:-0.024960pt;}
.ws3{word-spacing:0.000000pt;}
.ws53{word-spacing:0.010240pt;}
.ws51{word-spacing:0.076587pt;}
.ws3c{word-spacing:0.106667pt;}
.ws18{word-spacing:0.158720pt;}
.ws2f{word-spacing:0.173333pt;}
.ws4c{word-spacing:0.265067pt;}
.ws4f{word-spacing:0.318933pt;}
.ws36{word-spacing:0.320000pt;}
.ws0{word-spacing:0.336427pt;}
.ws14{word-spacing:0.426870pt;}
.ws69{word-spacing:0.439787pt;}
.ws5f{word-spacing:0.504640pt;}
.ws65{word-spacing:0.510187pt;}
.ws62{word-spacing:0.565867pt;}
.ws31{word-spacing:0.568640pt;}
.ws3b{word-spacing:0.590400pt;}
.ws33{word-spacing:0.768000pt;}
.ws9{word-spacing:0.776960pt;}
.ws29{word-spacing:1.105707pt;}
.ws2a{word-spacing:1.248640pt;}
.ws58{word-spacing:1.279959pt;}
.ws25{word-spacing:1.386504pt;}
.ws1d{word-spacing:1.386890pt;}
.ws43{word-spacing:1.445440pt;}
.ws20{word-spacing:1.552107pt;}
.ws57{word-spacing:1.706738pt;}
.ws12{word-spacing:1.813333pt;}
.ws56{word-spacing:2.026667pt;}
.ws3f{word-spacing:10.318720pt;}
.ws26{word-spacing:11.430720pt;}
.ws27{word-spacing:12.013120pt;}
.ws63{word-spacing:24.510187pt;}
.ws1{word-spacing:57.174080pt;}
.ws44{word-spacing:98.828267pt;}
.ws47{word-spacing:1607.061333pt;}
._2{margin-left:-2.208000pt;}
._0{margin-left:-1.089813pt;}
._3{width:1.089813pt;}
._1{width:2.247253pt;}
._13{width:4.077120pt;}
._e{width:17.836160pt;}
._12{width:25.441813pt;}
._11{width:45.034667pt;}
._10{width:46.026027pt;}
._7{width:47.217067pt;}
._b{width:48.151253pt;}
._f{width:49.179627pt;}
._a{width:56.917333pt;}
._9{width:58.625813pt;}
._d{width:74.133333pt;}
._c{width:75.496853pt;}
._6{width:433.303147pt;}
._4{width:936.796800pt;}
._8{width:1239.895787pt;}
._5{width:1275.735787pt;}
.fsd{font-size:53.440000pt;}
.fsb{font-size:64.000000pt;}
.fs12{font-size:64.106667pt;}
.fs7{font-size:70.720000pt;}
.fs17{font-size:71.040000pt;}
.fs10{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.fs13{font-size:99.520000pt;}
.fs6{font-size:106.560000pt;}
.fs2{font-size:128.000000pt;}
.fs5{font-size:128.106667pt;}
.fsa{font-size:149.440000pt;}
.fs9{font-size:149.546667pt;}
.fs16{font-size:170.560000pt;}
.fs15{font-size:170.666667pt;}
.fs1{font-size:192.000000pt;}
.fs14{font-size:192.106667pt;}
.fse{font-size:213.440000pt;}
.fsf{font-size:213.546667pt;}
.fs11{font-size:256.000000pt;}
.fs19{font-size:282.240000pt;}
.fs0{font-size:288.000000pt;}
.fs8{font-size:320.000000pt;}
.fs18{font-size:338.666667pt;}
.fsc{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:7.626667pt;}
.y11{bottom:24.053333pt;}
.y6d{bottom:32.026667pt;}
.y74{bottom:35.040000pt;}
.y7{bottom:35.413333pt;}
.y3c{bottom:57.786667pt;}
.y3d{bottom:58.773333pt;}
.y29{bottom:59.013333pt;}
.y31{bottom:59.333333pt;}
.y82{bottom:60.533333pt;}
.y10{bottom:60.826667pt;}
.y32{bottom:61.013333pt;}
.y81{bottom:61.333333pt;}
.y2a{bottom:61.493333pt;}
.y1c{bottom:62.480000pt;}
.y37{bottom:62.773333pt;}
.y9c{bottom:62.880000pt;}
.y6{bottom:63.413333pt;}
.ya3{bottom:72.106667pt;}
.y73{bottom:73.440000pt;}
.y69{bottom:74.533333pt;}
.y6c{bottom:76.906667pt;}
.y20{bottom:77.120000pt;}
.y5f{bottom:77.546667pt;}
.y3b{bottom:79.226667pt;}
.y54{bottom:79.306667pt;}
.y27{bottom:83.946667pt;}
.y68{bottom:85.173333pt;}
.y36{bottom:90.346667pt;}
.y5{bottom:91.413333pt;}
.y44{bottom:92.506667pt;}
.yf{bottom:92.826667pt;}
.y65{bottom:93.946667pt;}
.y99{bottom:94.880000pt;}
.ya2{bottom:95.786667pt;}
.y64{bottom:100.346667pt;}
.y8d{bottom:105.306667pt;}
.y88{bottom:106.746667pt;}
.y1f{bottom:115.520000pt;}
.y4d{bottom:115.973333pt;}
.y98{bottom:126.880000pt;}
.y1b{bottom:129.680000pt;}
.y4{bottom:135.440000pt;}
.y5a{bottom:136.933333pt;}
.y43{bottom:137.333333pt;}
.y7f{bottom:139.280000pt;}
.y5e{bottom:141.573333pt;}
.y3a{bottom:143.226667pt;}
.y26{bottom:147.973333pt;}
.y8c{bottom:150.133333pt;}
.ye{bottom:151.866667pt;}
.y53{bottom:152.933333pt;}
.y1e{bottom:153.920000pt;}
.y35{bottom:154.373333pt;}
.y97{bottom:158.880000pt;}
.y87{bottom:160.773333pt;}
.y3{bottom:169.840000pt;}
.ya4{bottom:172.853333pt;}
.y63{bottom:176.773333pt;}
.y77{bottom:179.013333pt;}
.y49{bottom:179.973333pt;}
.y80{bottom:180.453333pt;}
.y42{bottom:182.133333pt;}
.yd{bottom:190.293333pt;}
.y7e{bottom:190.480000pt;}
.y96{bottom:190.880000pt;}
.y1d{bottom:192.320000pt;}
.y59{bottom:194.533333pt;}
.y1a{bottom:196.880000pt;}
.y22{bottom:204.346667pt;}
.y39{bottom:207.226667pt;}
.ya1{bottom:210.986667pt;}
.y67{bottom:211.973333pt;}
.y9b{bottom:222.880000pt;}
.y52{bottom:226.533333pt;}
.yc{bottom:228.693333pt;}
.y28{bottom:230.506667pt;}
.y8b{bottom:239.733333pt;}
.y62{bottom:240.773333pt;}
.y7d{bottom:241.706667pt;}
.y33{bottom:243.973333pt;}
.y34{bottom:250.373333pt;}
.y58{bottom:252.133333pt;}
.y95{bottom:254.906667pt;}
.y86{bottom:256.773333pt;}
.y4c{bottom:259.973333pt;}
.y19{bottom:264.106667pt;}
.y5d{bottom:266.773333pt;}
.y41{bottom:271.733333pt;}
.y2{bottom:275.226667pt;}
.y66{bottom:275.973333pt;}
.y2e{bottom:278.080000pt;}
.y51{bottom:284.133333pt;}
.y8a{bottom:284.533333pt;}
.y94{bottom:286.906667pt;}
.yb{bottom:292.693333pt;}
.y7c{bottom:292.906667pt;}
.ya0{bottom:297.386667pt;}
.y38{bottom:303.226667pt;}
.y61{bottom:304.773333pt;}
.y25{bottom:307.973333pt;}
.y57{bottom:309.733333pt;}
.y75{bottom:316.213333pt;}
.y40{bottom:316.533333pt;}
.y93{bottom:318.906667pt;}
.y5c{bottom:320.773333pt;}
.y4b{bottom:323.973333pt;}
.y89{bottom:329.333333pt;}
.y21{bottom:330.880000pt;}
.y18{bottom:331.306667pt;}
.ya{bottom:335.253333pt;}
.y2c{bottom:336.373333pt;}
.y6b{bottom:339.973333pt;}
.y7b{bottom:344.106667pt;}
.y92{bottom:350.906667pt;}
.y85{bottom:352.773333pt;}
.y50{bottom:357.733333pt;}
.y3f{bottom:361.333333pt;}
.y1{bottom:361.626667pt;}
.y56{bottom:367.333333pt;}
.y48{bottom:371.973333pt;}
.y9a{bottom:382.906667pt;}
.y2d{bottom:383.680000pt;}
.y9f{bottom:383.813333pt;}
.y60{bottom:386.933333pt;}
.y9{bottom:392.853333pt;}
.y7a{bottom:395.306667pt;}
.y17{bottom:398.506667pt;}
.y24{bottom:403.973333pt;}
.y3e{bottom:406.133333pt;}
.y2b{bottom:413.173333pt;}
.y91{bottom:414.906667pt;}
.y55{bottom:424.960000pt;}
.y30{bottom:426.106667pt;}
.y4f{bottom:431.360000pt;}
.y47{bottom:436.000000pt;}
.y76{bottom:444.026667pt;}
.y5b{bottom:446.000000pt;}
.y79{bottom:446.506667pt;}
.y90{bottom:446.906667pt;}
.y6a{bottom:460.960000pt;}
.y16{bottom:465.706667pt;}
.y4a{bottom:468.000000pt;}
.y72{bottom:469.466667pt;}
.y46{bottom:470.000000pt;}
.y9e{bottom:470.213333pt;}
.y8f{bottom:478.906667pt;}
.y2f{bottom:490.106667pt;}
.y78{bottom:497.706667pt;}
.y23{bottom:500.000000pt;}
.y4e{bottom:504.960000pt;}
.y8e{bottom:510.906667pt;}
.y15{bottom:532.933333pt;}
.y71{bottom:533.493333pt;}
.y45{bottom:534.000000pt;}
.y13{bottom:539.840000pt;}
.y9d{bottom:596.506667pt;}
.y12{bottom:597.440000pt;}
.y70{bottom:597.493333pt;}
.y14{bottom:616.586667pt;}
.y84{bottom:616.613333pt;}
.y6e{bottom:648.026667pt;}
.y6f{bottom:661.493333pt;}
.y8{bottom:677.626667pt;}
.h17{height:51.060000pt;}
.hd{height:53.152969pt;}
.h1d{height:54.718594pt;}
.h11{height:63.656250pt;}
.h13{height:63.762344pt;}
.h8{height:70.340156pt;}
.h10{height:74.159531pt;}
.h18{height:74.640000pt;}
.h3{height:84.981094pt;}
.h1a{height:93.187969pt;}
.h4{height:98.296875pt;}
.h19{height:105.987656pt;}
.h7{height:109.109531pt;}
.h2{height:131.062500pt;}
.h6{height:131.171719pt;}
.hb{height:153.015469pt;}
.ha{height:153.124687pt;}
.h16{height:174.640781pt;}
.h15{height:174.750000pt;}
.h5{height:196.593750pt;}
.h14{height:196.702969pt;}
.he{height:218.546719pt;}
.hf{height:218.655937pt;}
.h12{height:262.125000pt;}
.h1c{height:288.992812pt;}
.h1{height:294.890625pt;}
.h9{height:327.656250pt;}
.h1b{height:346.769531pt;}
.hc{height:360.421875pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.626648pt;}
.x84{left:8.746648pt;}
.x7c{left:31.439981pt;}
.x38{left:33.093314pt;}
.xc{left:39.999981pt;}
.x12{left:43.786648pt;}
.x3c{left:47.119981pt;}
.x1a{left:48.159981pt;}
.x76{left:52.106648pt;}
.x4b{left:57.199981pt;}
.x58{left:58.586648pt;}
.x17{left:62.933314pt;}
.x6d{left:72.079981pt;}
.x1{left:73.013314pt;}
.x2{left:77.999981pt;}
.x40{left:80.559981pt;}
.x56{left:83.599981pt;}
.x11{left:86.159981pt;}
.x7d{left:88.079981pt;}
.x48{left:92.399981pt;}
.x4c{left:95.279981pt;}
.x62{left:101.093314pt;}
.x57{left:103.759981pt;}
.x28{left:108.799981pt;}
.x4a{left:112.159981pt;}
.x3f{left:117.679981pt;}
.x60{left:119.253314pt;}
.x83{left:120.533314pt;}
.x19{left:121.839981pt;}
.x4f{left:124.559981pt;}
.x46{left:126.399981pt;}
.x6c{left:132.933314pt;}
.x1c{left:140.639981pt;}
.x2a{left:144.639981pt;}
.x80{left:146.666648pt;}
.x1d{left:152.879981pt;}
.x1f{left:157.226648pt;}
.x47{left:159.679981pt;}
.x2f{left:162.773314pt;}
.x14{left:167.333314pt;}
.x6e{left:168.266648pt;}
.x7f{left:172.079981pt;}
.x70{left:173.546648pt;}
.x5b{left:181.333314pt;}
.x59{left:189.199981pt;}
.x2d{left:190.693314pt;}
.x2e{left:192.053314pt;}
.x6f{left:194.986648pt;}
.x55{left:202.666648pt;}
.x44{left:206.079981pt;}
.x35{left:210.159981pt;}
.x77{left:215.679981pt;}
.x81{left:219.573314pt;}
.x2c{left:233.119981pt;}
.x72{left:238.426648pt;}
.x7{left:241.439981pt;}
.x27{left:246.346648pt;}
.x5a{left:249.386648pt;}
.x5c{left:250.933314pt;}
.xd{left:253.039981pt;}
.x79{left:257.519981pt;}
.x4{left:259.839981pt;}
.x2b{left:268.693314pt;}
.x3{left:277.226648pt;}
.x10{left:280.933314pt;}
.x3b{left:285.119981pt;}
.x73{left:286.586648pt;}
.x5{left:288.239981pt;}
.x1b{left:294.399981pt;}
.x3e{left:296.666648pt;}
.x45{left:304.266648pt;}
.x36{left:305.519981pt;}
.x9{left:307.919981pt;}
.x3d{left:313.066648pt;}
.x6{left:317.599981pt;}
.x54{left:322.453314pt;}
.x42{left:329.039981pt;}
.x7e{left:334.106648pt;}
.x41{left:335.946648pt;}
.x82{left:339.039981pt;}
.xe{left:340.319981pt;}
.x21{left:344.746648pt;}
.xb{left:351.199981pt;}
.x4d{left:354.266648pt;}
.x49{left:356.773314pt;}
.x78{left:358.533314pt;}
.x3a{left:361.599981pt;}
.x61{left:364.533314pt;}
.x13{left:367.093314pt;}
.x7a{left:370.213314pt;}
.x22{left:374.186648pt;}
.x20{left:381.519981pt;}
.x29{left:383.546648pt;}
.x43{left:385.359981pt;}
.x16{left:394.319981pt;}
.x34{left:395.359981pt;}
.x26{left:396.826648pt;}
.x37{left:399.013314pt;}
.x51{left:409.439981pt;}
.xf{left:418.373314pt;}
.x8{left:431.519981pt;}
.x4e{left:437.546648pt;}
.x7b{left:455.786648pt;}
.x39{left:456.826648pt;}
.x24{left:459.279981pt;}
.x53{left:469.466648pt;}
.x74{left:484.266648pt;}
.x5d{left:487.466648pt;}
.x75{left:492.613314pt;}
.xa{left:494.079981pt;}
.x1e{left:507.253314pt;}
.x71{left:515.306648pt;}
.x64{left:539.146648pt;}
.x23{left:549.306648pt;}
.x63{left:555.306648pt;}
.x5f{left:566.453314pt;}
.x50{left:568.426648pt;}
.x6a{left:570.479981pt;}
.x25{left:578.373314pt;}
.x18{left:584.746648pt;}
.x6b{left:595.679981pt;}
.x66{left:618.799981pt;}
.x67{left:628.799981pt;}
.x65{left:631.599981pt;}
.x69{left:644.959981pt;}
.x33{left:675.813314pt;}
.x52{left:680.266648pt;}
.x68{left:682.719981pt;}
.x31{left:699.733314pt;}
.x32{left:763.679981pt;}
.x30{left:795.999981pt;}
.x5e{left:1233.733314pt;}
}




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