
    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_fd26d25aa6b94c277c879d87.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_d1c48f48d208e39b5a079b07.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.723000;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_2895613ceded8e23ac923a9d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_a36000916f8ec8e7b9d9c687.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.907000;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_bf7b8a8476e7d4f77ce6aebd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_084377c0ec731f23ef87b561.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_d80589b35ef3c0594833a070.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_e07bd5de4ea8b99053587639.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.687000;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_55fc2e30bacc052569d9e3f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_740ef28e9d4942060f5d2ef7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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);}
.v2{vertical-align:-8.194172px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.578000px;}
.v4{vertical-align:20.610000px;}
.v3{vertical-align:23.538000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000538px;}
.lsf{letter-spacing:0.000544px;}
.ls2d{letter-spacing:0.003031px;}
.ls18{letter-spacing:0.003269px;}
.ls2e{letter-spacing:0.004200px;}
.ls20{letter-spacing:4.276379px;}
.ls1{letter-spacing:5.731970px;}
.ls7{letter-spacing:6.516305px;}
.ls17{letter-spacing:8.298065px;}
.ls1a{letter-spacing:8.304065px;}
.ls21{letter-spacing:9.956338px;}
.ls19{letter-spacing:9.962338px;}
.ls2{letter-spacing:13.402200px;}
.ls23{letter-spacing:16.599223px;}
.ls31{letter-spacing:16.600896px;}
.ls1f{letter-spacing:16.601607px;}
.ls6{letter-spacing:16.602538px;}
.ls1e{letter-spacing:16.604245px;}
.ls9{letter-spacing:16.604685px;}
.ls29{letter-spacing:16.605199px;}
.ls8{letter-spacing:16.605223px;}
.ls1c{letter-spacing:16.823549px;}
.ls2b{letter-spacing:16.829549px;}
.ls27{letter-spacing:17.037223px;}
.ls33{letter-spacing:17.309549px;}
.ls26{letter-spacing:17.448538px;}
.lsb{letter-spacing:17.909919px;}
.lsd{letter-spacing:18.215247px;}
.ls14{letter-spacing:19.082525px;}
.ls25{letter-spacing:19.232368px;}
.ls4{letter-spacing:19.276200px;}
.ls12{letter-spacing:19.592234px;}
.ls2a{letter-spacing:19.592525px;}
.ls2f{letter-spacing:19.694685px;}
.ls22{letter-spacing:19.926538px;}
.ls5{letter-spacing:21.293915px;}
.ls28{letter-spacing:22.322685px;}
.ls3{letter-spacing:23.350200px;}
.ls13{letter-spacing:23.772538px;}
.ls16{letter-spacing:24.374525px;}
.ls30{letter-spacing:26.770896px;}
.ls10{letter-spacing:27.368525px;}
.ls15{letter-spacing:29.886792px;}
.ls1b{letter-spacing:29.888611px;}
.ls24{letter-spacing:29.890123px;}
.ls1d{letter-spacing:29.890463px;}
.lsa{letter-spacing:29.892621px;}
.lse{letter-spacing:29.896803px;}
.ls11{letter-spacing:42.522538px;}
.ls34{letter-spacing:132.524245px;}
.ls32{letter-spacing:149.132245px;}
.lsc{letter-spacing:376.511711px;}
.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;}
}
.ws35{word-spacing:-59.775600px;}
.ws2b{word-spacing:-38.937826px;}
.ws28{word-spacing:-35.593845px;}
.ws23{word-spacing:-28.955301px;}
.ws30{word-spacing:-22.348660px;}
.ws32{word-spacing:-22.342660px;}
.ws15{word-spacing:-16.605662px;}
.ws47{word-spacing:-15.278643px;}
.ws27{word-spacing:-15.179567px;}
.ws4{word-spacing:-7.100791px;}
.ws2c{word-spacing:-6.362911px;}
.ws8{word-spacing:-3.215927px;}
.ws7f{word-spacing:-2.498620px;}
.ws6a{word-spacing:-2.438844px;}
.ws44{word-spacing:-2.379069px;}
.ws66{word-spacing:-1.960640px;}
.ws7e{word-spacing:-1.781313px;}
.ws5{word-spacing:-1.721537px;}
.ws5b{word-spacing:-1.183557px;}
.ws20{word-spacing:-0.944454px;}
.ws1d{word-spacing:-0.526025px;}
.ws5c{word-spacing:-0.346698px;}
.ws43{word-spacing:-0.047820px;}
.wsc{word-spacing:0.000000px;}
.ws22{word-spacing:0.011955px;}
.ws62{word-spacing:0.251058px;}
.ws50{word-spacing:0.370609px;}
.ws26{word-spacing:0.490160px;}
.ws5d{word-spacing:0.789038px;}
.ws6b{word-spacing:0.800993px;}
.ws36{word-spacing:0.848814px;}
.ws51{word-spacing:0.908589px;}
.ws13{word-spacing:1.087916px;}
.ws1e{word-spacing:1.207467px;}
.ws71{word-spacing:1.386794px;}
.ws3a{word-spacing:1.506345px;}
.ws69{word-spacing:1.924774px;}
.ws5a{word-spacing:2.163877px;}
.ws2d{word-spacing:2.223652px;}
.ws5f{word-spacing:2.522530px;}
.ws3{word-spacing:2.577516px;}
.wsa{word-spacing:2.701857px;}
.ws25{word-spacing:2.940960px;}
.ws29{word-spacing:3.016242px;}
.ws4d{word-spacing:3.060511px;}
.ws2{word-spacing:3.093408px;}
.ws34{word-spacing:3.239838px;}
.ws78{word-spacing:3.291584px;}
.ws46{word-spacing:3.295228px;}
.ws6{word-spacing:3.299613px;}
.ws7d{word-spacing:3.309645px;}
.ws63{word-spacing:3.311568px;}
.ws83{word-spacing:3.316554px;}
.ws3f{word-spacing:3.317933px;}
.wsb{word-spacing:3.359389px;}
.ws3b{word-spacing:3.538716px;}
.ws55{word-spacing:3.597934px;}
.ws56{word-spacing:3.598491px;}
.ws4f{word-spacing:3.658267px;}
.ws57{word-spacing:4.016920px;}
.ws1b{word-spacing:4.076696px;}
.wsf{word-spacing:4.136472px;}
.ws3e{word-spacing:4.196247px;}
.ws1c{word-spacing:4.256023px;}
.ws7c{word-spacing:4.315798px;}
.ws1a{word-spacing:4.614676px;}
.ws31{word-spacing:4.778938px;}
.ws77{word-spacing:4.794003px;}
.ws52{word-spacing:5.033106px;}
.ws4c{word-spacing:5.152657px;}
.ws1f{word-spacing:5.379825px;}
.ws24{word-spacing:5.391759px;}
.ws49{word-spacing:5.451535px;}
.ws3c{word-spacing:5.690637px;}
.ws4a{word-spacing:5.750413px;}
.ws76{word-spacing:5.810188px;}
.ws40{word-spacing:6.057089px;}
.ws2e{word-spacing:6.061246px;}
.ws2f{word-spacing:6.090634px;}
.ws45{word-spacing:6.121021px;}
.ws74{word-spacing:6.300348px;}
.ws17{word-spacing:6.348169px;}
.ws70{word-spacing:6.467720px;}
.ws1{word-spacing:6.496290px;}
.ws14{word-spacing:6.527496px;}
.ws7a{word-spacing:6.647047px;}
.ws9{word-spacing:6.766598px;}
.ws16{word-spacing:6.945925px;}
.ws58{word-spacing:7.005700px;}
.ws6c{word-spacing:7.304578px;}
.ws2a{word-spacing:7.782783px;}
.ws61{word-spacing:7.794738px;}
.ws10{word-spacing:8.021886px;}
.ws33{word-spacing:8.141437px;}
.ws80{word-spacing:8.260988px;}
.ws37{word-spacing:8.380539px;}
.ws38{word-spacing:8.440315px;}
.ws4b{word-spacing:8.619642px;}
.ws6d{word-spacing:8.858744px;}
.ws48{word-spacing:9.133269px;}
.ws82{word-spacing:9.157622px;}
.ws0{word-spacing:9.295163px;}
.ws7b{word-spacing:9.396724px;}
.ws59{word-spacing:9.468455px;}
.ws6f{word-spacing:9.541294px;}
.ws21{word-spacing:9.874929px;}
.ws39{word-spacing:9.934705px;}
.ws18{word-spacing:10.173807px;}
.ws72{word-spacing:10.233583px;}
.ws81{word-spacing:10.663967px;}
.ws19{word-spacing:10.891114px;}
.ws11{word-spacing:11.070441px;}
.ws79{word-spacing:11.189992px;}
.ws6e{word-spacing:11.201947px;}
.ws12{word-spacing:11.787748px;}
.wse{word-spacing:11.847524px;}
.ws7{word-spacing:11.967075px;}
.ws73{word-spacing:12.457235px;}
.ws5e{word-spacing:12.923485px;}
.ws4e{word-spacing:13.222363px;}
.ws67{word-spacing:18.960820px;}
.ws68{word-spacing:26.671873px;}
.ws65{word-spacing:28.764019px;}
.ws75{word-spacing:30.497511px;}
.ws64{word-spacing:30.617062px;}
.ws54{word-spacing:55.125058px;}
.ws41{word-spacing:68.432938px;}
.ws42{word-spacing:68.434738px;}
.wsd{word-spacing:69.937725px;}
.ws53{word-spacing:142.457210px;}
.ws60{word-spacing:196.075923px;}
.ws3d{word-spacing:323.552938px;}
._1{margin-left:-83.582101px;}
._4{margin-left:-56.780550px;}
._12{margin-left:-48.412208px;}
._1c{margin-left:-34.947675px;}
._d{margin-left:-31.615304px;}
._10{margin-left:-29.887800px;}
._29{margin-left:-28.773255px;}
._8{margin-left:-27.652378px;}
._15{margin-left:-25.434528px;}
._13{margin-left:-23.694996px;}
._7{margin-left:-21.519360px;}
._0{margin-left:-13.979924px;}
._3{margin-left:-9.794025px;}
._6{margin-left:-6.186816px;}
._f{margin-left:-5.134714px;}
._2{margin-left:-3.223350px;}
._5{margin-left:-1.560154px;}
._c{width:1.673717px;}
._b{width:3.174095px;}
._22{width:4.754666px;}
._9{width:6.415626px;}
._18{width:9.982525px;}
._a{width:16.109478px;}
._1a{width:17.182413px;}
._14{width:18.710626px;}
._19{width:20.047046px;}
._1d{width:25.105752px;}
._e{width:26.540366px;}
._2a{width:28.117179px;}
._28{width:29.887800px;}
._1b{width:31.800619px;}
._17{width:65.612567px;}
._20{width:101.504957px;}
._23{width:126.036587px;}
._26{width:128.158886px;}
._1f{width:133.066474px;}
._16{width:141.483559px;}
._25{width:155.595887px;}
._1e{width:164.236435px;}
._24{width:216.208345px;}
._27{width:491.468995px;}
._21{width:926.521800px;}
._11{width:956.409600px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.249340px;}
.fs3{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs6{font-size:54.642071px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2f{bottom:126.529500px;}
.y13{bottom:134.047500px;}
.yb1{bottom:193.023000px;}
.yb0{bottom:212.748000px;}
.yaf{bottom:232.474500px;}
.y12{bottom:240.865500px;}
.y11{bottom:260.592000px;}
.yae{bottom:264.156000px;}
.y10{bottom:280.318500px;}
.yad{bottom:283.882500px;}
.yf{bottom:300.045000px;}
.yac{bottom:303.607500px;}
.ye{bottom:319.770000px;}
.y44{bottom:330.916500px;}
.yab{bottom:335.289000px;}
.yd{bottom:339.496500px;}
.y66{bottom:345.238500px;}
.y43{bottom:345.489000px;}
.y42{bottom:350.643000px;}
.y5e{bottom:351.283500px;}
.yaa{bottom:355.015500px;}
.yc{bottom:359.223000px;}
.y65{bottom:364.963500px;}
.y41{bottom:365.215500px;}
.y40{bottom:370.368000px;}
.ya9{bottom:374.742000px;}
.yb{bottom:378.949500px;}
.y5d{bottom:382.965000px;}
.y3f{bottom:390.094500px;}
.y72{bottom:396.544500px;}
.y2e{bottom:396.859500px;}
.y7f{bottom:398.397000px;}
.ya{bottom:398.674500px;}
.ya8{bottom:406.423500px;}
.y5c{bottom:414.646500px;}
.y88{bottom:415.398000px;}
.y71{bottom:416.271000px;}
.y2d{bottom:416.584500px;}
.y7e{bottom:418.123500px;}
.y9{bottom:418.401000px;}
.ya7{bottom:426.150000px;}
.y92{bottom:429.151500px;}
.y3e{bottom:429.547500px;}
.y87{bottom:435.124500px;}
.y2c{bottom:436.311000px;}
.ya6{bottom:445.875000px;}
.y5b{bottom:446.328000px;}
.y7b{bottom:448.878000px;}
.y3d{bottom:449.272500px;}
.y2b{bottom:456.037500px;}
.ya5{bottom:465.601500px;}
.y5a{bottom:466.054500px;}
.y7a{bottom:468.604500px;}
.y63{bottom:471.421500px;}
.y2a{bottom:475.764000px;}
.ya4{bottom:485.328000px;}
.y6{bottom:489.409500px;}
.y62{bottom:491.148000px;}
.y29{bottom:495.489000px;}
.y59{bottom:497.734500px;}
.y5{bottom:507.492000px;}
.y28{bottom:515.215500px;}
.ya3{bottom:517.009500px;}
.y8b{bottom:519.820500px;}
.y58{bottom:529.416000px;}
.y86{bottom:532.041000px;}
.y3c{bottom:533.546169px;}
.y27{bottom:534.942000px;}
.y4{bottom:536.376000px;}
.ya2{bottom:536.734500px;}
.y8a{bottom:539.547000px;}
.y6e{bottom:542.331000px;}
.y49{bottom:549.531000px;}
.y3b{bottom:551.577186px;}
.y26{bottom:554.668500px;}
.ya1{bottom:556.461000px;}
.y85{bottom:563.722500px;}
.y57{bottom:564.087000px;}
.y48{bottom:569.257500px;}
.y3a{bottom:569.609574px;}
.y25{bottom:574.393500px;}
.y6d{bottom:581.784000px;}
.y70{bottom:583.282500px;}
.y7d{bottom:585.135000px;}
.ya0{bottom:588.142500px;}
.y91{bottom:588.313500px;}
.y24{bottom:594.120000px;}
.y84{bottom:598.392000px;}
.y6f{bottom:603.007500px;}
.y56{bottom:603.538500px;}
.y39{bottom:605.672979px;}
.y9f{bottom:607.869000px;}
.y79{bottom:608.040000px;}
.y23{bottom:613.846500px;}
.y90{bottom:619.995000px;}
.y55{bottom:623.265000px;}
.y38{bottom:623.705367px;}
.y9e{bottom:627.595500px;}
.y61{bottom:630.583500px;}
.y3{bottom:631.471500px;}
.y22{bottom:633.573000px;}
.y78{bottom:639.720000px;}
.y54{bottom:642.991500px;}
.y37{bottom:646.653436px;}
.y8f{bottom:654.664500px;}
.y9d{bottom:659.275500px;}
.y60{bottom:662.265000px;}
.y83{bottom:663.969000px;}
.y2{bottom:667.636500px;}
.y21{bottom:668.242500px;}
.y77{bottom:674.391000px;}
.y9c{bottom:679.002000px;}
.y82{bottom:683.695500px;}
.y36{bottom:696.934500px;}
.y9b{bottom:698.728500px;}
.y20{bottom:699.924000px;}
.y53{bottom:702.169500px;}
.y1{bottom:703.800000px;}
.y81{bottom:710.925000px;}
.y8e{bottom:720.243000px;}
.y52{bottom:721.896000px;}
.y9a{bottom:730.410000px;}
.y1f{bottom:731.605500px;}
.y80{bottom:736.029000px;}
.y35{bottom:736.387500px;}
.y76{bottom:739.968000px;}
.y51{bottom:741.621000px;}
.y89{bottom:749.077500px;}
.y99{bottom:750.136500px;}
.y5f{bottom:751.332000px;}
.y34{bottom:756.114000px;}
.y75{bottom:759.694500px;}
.y6c{bottom:760.750500px;}
.y50{bottom:761.347500px;}
.y1e{bottom:766.275000px;}
.y8d{bottom:767.197500px;}
.y98{bottom:769.861500px;}
.y33{bottom:775.839000px;}
.yb7{bottom:776.890500px;}
.y4f{bottom:781.074000px;}
.y1d{bottom:786.001500px;}
.y74{bottom:786.924000px;}
.y8c{bottom:792.301500px;}
.y6b{bottom:792.432000px;}
.y7c{bottom:794.665500px;}
.y32{bottom:795.565500px;}
.yb6{bottom:796.615500px;}
.y4e{bottom:800.800500px;}
.y97{bottom:801.543000px;}
.y1c{bottom:805.728000px;}
.y73{bottom:812.028000px;}
.y31{bottom:815.292000px;}
.yb5{bottom:816.342000px;}
.y4d{bottom:820.527000px;}
.y96{bottom:821.269500px;}
.y6a{bottom:824.113500px;}
.y1b{bottom:825.453000px;}
.y4c{bottom:840.252000px;}
.y95{bottom:840.996000px;}
.y69{bottom:843.838500px;}
.y1a{bottom:845.179500px;}
.yb4{bottom:848.023500px;}
.y30{bottom:849.961500px;}
.y19{bottom:864.906000px;}
.yb3{bottom:867.750000px;}
.y94{bottom:872.677500px;}
.y68{bottom:875.520000px;}
.y4b{bottom:879.705000px;}
.y64{bottom:884.487000px;}
.y18{bottom:884.632500px;}
.yb2{bottom:887.475000px;}
.y93{bottom:892.402500px;}
.y4a{bottom:899.431500px;}
.y17{bottom:904.359000px;}
.y67{bottom:907.201500px;}
.y47{bottom:919.156500px;}
.y16{bottom:924.084000px;}
.y46{bottom:938.883000px;}
.y15{bottom:943.810500px;}
.y45{bottom:958.609500px;}
.y14{bottom:978.336000px;}
.y8{bottom:1034.226000px;}
.y7{bottom:1046.181000px;}
.h4{height:29.833916px;}
.h3{height:40.348800px;}
.h5{height:40.411916px;}
.h9{height:40.981554px;}
.h6{height:44.831700px;}
.hc{height:53.365916px;}
.ha{height:53.371916px;}
.h7{height:60.598349px;}
.hb{height:65.441700px;}
.hd{height:65.447700px;}
.h2{height:87.650325px;}
.h1{height:104.700710px;}
.h8{height:105.146878px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:200.652000px;}
.xd{left:205.734000px;}
.x1b{left:208.125000px;}
.x11{left:213.402603px;}
.x1c{left:231.370500px;}
.x2{left:232.903500px;}
.xe{left:238.012500px;}
.x5{left:257.886000px;}
.x1{left:273.357000px;}
.x1a{left:283.882500px;}
.x4{left:287.371500px;}
.x12{left:332.603394px;}
.x3{left:336.063000px;}
.x14{left:338.173500px;}
.x15{left:341.152500px;}
.x16{left:344.217000px;}
.x18{left:359.182500px;}
.x6{left:370.833000px;}
.x19{left:377.988000px;}
.xf{left:381.837000px;}
.x17{left:402.562500px;}
.x10{left:431.237856px;}
.x13{left:513.530595px;}
.xb{left:516.747000px;}
.x8{left:570.504000px;}
.x9{left:581.256000px;}
.xc{left:608.881500px;}
.xa{left:698.224500px;}
@media print{
.v2{vertical-align:-7.283708pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.402667pt;}
.v4{vertical-align:18.320000pt;}
.v3{vertical-align:20.922667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000479pt;}
.lsf{letter-spacing:0.000483pt;}
.ls2d{letter-spacing:0.002694pt;}
.ls18{letter-spacing:0.002906pt;}
.ls2e{letter-spacing:0.003733pt;}
.ls20{letter-spacing:3.801225pt;}
.ls1{letter-spacing:5.095085pt;}
.ls7{letter-spacing:5.792271pt;}
.ls17{letter-spacing:7.376058pt;}
.ls1a{letter-spacing:7.381391pt;}
.ls21{letter-spacing:8.850079pt;}
.ls19{letter-spacing:8.855412pt;}
.ls2{letter-spacing:11.913067pt;}
.ls23{letter-spacing:14.754865pt;}
.ls31{letter-spacing:14.756352pt;}
.ls1f{letter-spacing:14.756984pt;}
.ls6{letter-spacing:14.757812pt;}
.ls1e{letter-spacing:14.759329pt;}
.ls9{letter-spacing:14.759720pt;}
.ls29{letter-spacing:14.760177pt;}
.ls8{letter-spacing:14.760199pt;}
.ls1c{letter-spacing:14.954265pt;}
.ls2b{letter-spacing:14.959599pt;}
.ls27{letter-spacing:15.144199pt;}
.ls33{letter-spacing:15.386265pt;}
.ls26{letter-spacing:15.509812pt;}
.lsb{letter-spacing:15.919928pt;}
.lsd{letter-spacing:16.191331pt;}
.ls14{letter-spacing:16.962245pt;}
.ls25{letter-spacing:17.095439pt;}
.ls4{letter-spacing:17.134400pt;}
.ls12{letter-spacing:17.415319pt;}
.ls2a{letter-spacing:17.415578pt;}
.ls2f{letter-spacing:17.506387pt;}
.ls22{letter-spacing:17.712479pt;}
.ls5{letter-spacing:18.927925pt;}
.ls28{letter-spacing:19.842387pt;}
.ls3{letter-spacing:20.755733pt;}
.ls13{letter-spacing:21.131145pt;}
.ls16{letter-spacing:21.666245pt;}
.ls30{letter-spacing:23.796352pt;}
.ls10{letter-spacing:24.327578pt;}
.ls15{letter-spacing:26.566038pt;}
.ls1b{letter-spacing:26.567654pt;}
.ls24{letter-spacing:26.568998pt;}
.ls1d{letter-spacing:26.569300pt;}
.lsa{letter-spacing:26.571219pt;}
.lse{letter-spacing:26.574936pt;}
.ls11{letter-spacing:37.797812pt;}
.ls34{letter-spacing:117.799329pt;}
.ls32{letter-spacing:132.561995pt;}
.lsc{letter-spacing:334.677077pt;}
.ws35{word-spacing:-53.133867pt;}
.ws2b{word-spacing:-34.611401pt;}
.ws28{word-spacing:-31.638974pt;}
.ws23{word-spacing:-25.738045pt;}
.ws30{word-spacing:-19.865475pt;}
.ws32{word-spacing:-19.860142pt;}
.ws15{word-spacing:-14.760588pt;}
.ws47{word-spacing:-13.581016pt;}
.ws27{word-spacing:-13.492949pt;}
.ws4{word-spacing:-6.311814pt;}
.ws2c{word-spacing:-5.655921pt;}
.ws8{word-spacing:-2.858602pt;}
.ws7f{word-spacing:-2.220996pt;}
.ws6a{word-spacing:-2.167862pt;}
.ws44{word-spacing:-2.114728pt;}
.ws66{word-spacing:-1.742791pt;}
.ws7e{word-spacing:-1.583389pt;}
.ws5{word-spacing:-1.530255pt;}
.ws5b{word-spacing:-1.052051pt;}
.ws20{word-spacing:-0.839515pt;}
.ws1d{word-spacing:-0.467578pt;}
.ws5c{word-spacing:-0.308176pt;}
.ws43{word-spacing:-0.042507pt;}
.wsc{word-spacing:0.000000pt;}
.ws22{word-spacing:0.010627pt;}
.ws62{word-spacing:0.223162pt;}
.ws50{word-spacing:0.329430pt;}
.ws26{word-spacing:0.435698pt;}
.ws5d{word-spacing:0.701367pt;}
.ws6b{word-spacing:0.711994pt;}
.ws36{word-spacing:0.754501pt;}
.ws51{word-spacing:0.807635pt;}
.ws13{word-spacing:0.967036pt;}
.ws1e{word-spacing:1.073304pt;}
.ws71{word-spacing:1.232706pt;}
.ws3a{word-spacing:1.338973pt;}
.ws69{word-spacing:1.710911pt;}
.ws5a{word-spacing:1.923446pt;}
.ws2d{word-spacing:1.976580pt;}
.ws5f{word-spacing:2.242249pt;}
.ws3{word-spacing:2.291126pt;}
.wsa{word-spacing:2.401651pt;}
.ws25{word-spacing:2.614186pt;}
.ws29{word-spacing:2.681104pt;}
.ws4d{word-spacing:2.720454pt;}
.ws2{word-spacing:2.749696pt;}
.ws34{word-spacing:2.879856pt;}
.ws78{word-spacing:2.925852pt;}
.ws46{word-spacing:2.929092pt;}
.ws6{word-spacing:2.932989pt;}
.ws7d{word-spacing:2.941907pt;}
.ws63{word-spacing:2.943616pt;}
.ws83{word-spacing:2.948048pt;}
.ws3f{word-spacing:2.949274pt;}
.wsb{word-spacing:2.986123pt;}
.ws3b{word-spacing:3.145525pt;}
.ws55{word-spacing:3.198164pt;}
.ws56{word-spacing:3.198659pt;}
.ws4f{word-spacing:3.251793pt;}
.ws57{word-spacing:3.570596pt;}
.ws1b{word-spacing:3.623730pt;}
.wsf{word-spacing:3.676864pt;}
.ws3e{word-spacing:3.729997pt;}
.ws1c{word-spacing:3.783131pt;}
.ws7c{word-spacing:3.836265pt;}
.ws1a{word-spacing:4.101935pt;}
.ws31{word-spacing:4.247945pt;}
.ws77{word-spacing:4.261336pt;}
.ws52{word-spacing:4.473872pt;}
.ws4c{word-spacing:4.580139pt;}
.ws1f{word-spacing:4.782067pt;}
.ws24{word-spacing:4.792675pt;}
.ws49{word-spacing:4.845809pt;}
.ws3c{word-spacing:5.058344pt;}
.ws4a{word-spacing:5.111478pt;}
.ws76{word-spacing:5.164612pt;}
.ws40{word-spacing:5.384079pt;}
.ws2e{word-spacing:5.387774pt;}
.ws2f{word-spacing:5.413897pt;}
.ws45{word-spacing:5.440908pt;}
.ws74{word-spacing:5.600310pt;}
.ws17{word-spacing:5.642817pt;}
.ws70{word-spacing:5.749084pt;}
.ws1{word-spacing:5.774480pt;}
.ws14{word-spacing:5.802218pt;}
.ws7a{word-spacing:5.908486pt;}
.ws9{word-spacing:6.014754pt;}
.ws16{word-spacing:6.174155pt;}
.ws58{word-spacing:6.227289pt;}
.ws6c{word-spacing:6.492959pt;}
.ws2a{word-spacing:6.918029pt;}
.ws61{word-spacing:6.928656pt;}
.ws10{word-spacing:7.130565pt;}
.ws33{word-spacing:7.236833pt;}
.ws80{word-spacing:7.343100pt;}
.ws37{word-spacing:7.449368pt;}
.ws38{word-spacing:7.502502pt;}
.ws4b{word-spacing:7.661904pt;}
.ws6d{word-spacing:7.874439pt;}
.ws48{word-spacing:8.118461pt;}
.ws82{word-spacing:8.140108pt;}
.ws0{word-spacing:8.262367pt;}
.ws7b{word-spacing:8.352644pt;}
.ws59{word-spacing:8.416404pt;}
.ws6f{word-spacing:8.481150pt;}
.ws21{word-spacing:8.777715pt;}
.ws39{word-spacing:8.830849pt;}
.ws18{word-spacing:9.043384pt;}
.ws72{word-spacing:9.096518pt;}
.ws81{word-spacing:9.479082pt;}
.ws19{word-spacing:9.680991pt;}
.ws11{word-spacing:9.840392pt;}
.ws79{word-spacing:9.946660pt;}
.ws6e{word-spacing:9.957287pt;}
.ws12{word-spacing:10.477999pt;}
.wse{word-spacing:10.531132pt;}
.ws7{word-spacing:10.637400pt;}
.ws73{word-spacing:11.073098pt;}
.ws5e{word-spacing:11.487542pt;}
.ws4e{word-spacing:11.753211pt;}
.ws67{word-spacing:16.854063pt;}
.ws68{word-spacing:23.708331pt;}
.ws65{word-spacing:25.568017pt;}
.ws75{word-spacing:27.108899pt;}
.ws64{word-spacing:27.215167pt;}
.ws54{word-spacing:49.000052pt;}
.ws41{word-spacing:60.829279pt;}
.ws42{word-spacing:60.830879pt;}
.wsd{word-spacing:62.166867pt;}
.ws53{word-spacing:126.628631pt;}
.ws60{word-spacing:174.289709pt;}
.ws3d{word-spacing:287.602612pt;}
._1{margin-left:-74.295201pt;}
._4{margin-left:-50.471600pt;}
._12{margin-left:-43.033074pt;}
._1c{margin-left:-31.064600pt;}
._d{margin-left:-28.102493pt;}
._10{margin-left:-26.566933pt;}
._29{margin-left:-25.576227pt;}
._8{margin-left:-24.579891pt;}
._15{margin-left:-22.608469pt;}
._13{margin-left:-21.062219pt;}
._7{margin-left:-19.128320pt;}
._0{margin-left:-12.426599pt;}
._3{margin-left:-8.705800pt;}
._6{margin-left:-5.499392pt;}
._f{margin-left:-4.564190pt;}
._2{margin-left:-2.865200pt;}
._5{margin-left:-1.386803pt;}
._c{width:1.487748pt;}
._b{width:2.821418pt;}
._22{width:4.226369pt;}
._9{width:5.702779pt;}
._18{width:8.873356pt;}
._a{width:14.319536pt;}
._1a{width:15.273256pt;}
._14{width:16.631668pt;}
._19{width:17.819597pt;}
._1d{width:22.316224pt;}
._e{width:23.591437pt;}
._2a{width:24.993048pt;}
._28{width:26.566933pt;}
._1b{width:28.267217pt;}
._17{width:58.322281pt;}
._20{width:90.226628pt;}
._23{width:112.032521pt;}
._26{width:113.919010pt;}
._1f{width:118.281310pt;}
._16{width:125.763164pt;}
._25{width:138.307455pt;}
._1e{width:145.987942pt;}
._24{width:192.185196pt;}
._27{width:436.861329pt;}
._21{width:823.574933pt;}
._11{width:850.141867pt;}
.fs7{font-size:33.999414pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs6{font-size:48.570730pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:112.470667pt;}
.y13{bottom:119.153333pt;}
.yb1{bottom:171.576000pt;}
.yb0{bottom:189.109333pt;}
.yaf{bottom:206.644000pt;}
.y12{bottom:214.102667pt;}
.y11{bottom:231.637333pt;}
.yae{bottom:234.805333pt;}
.y10{bottom:249.172000pt;}
.yad{bottom:252.340000pt;}
.yf{bottom:266.706667pt;}
.yac{bottom:269.873333pt;}
.ye{bottom:284.240000pt;}
.y44{bottom:294.148000pt;}
.yab{bottom:298.034667pt;}
.yd{bottom:301.774667pt;}
.y66{bottom:306.878667pt;}
.y43{bottom:307.101333pt;}
.y42{bottom:311.682667pt;}
.y5e{bottom:312.252000pt;}
.yaa{bottom:315.569333pt;}
.yc{bottom:319.309333pt;}
.y65{bottom:324.412000pt;}
.y41{bottom:324.636000pt;}
.y40{bottom:329.216000pt;}
.ya9{bottom:333.104000pt;}
.yb{bottom:336.844000pt;}
.y5d{bottom:340.413333pt;}
.y3f{bottom:346.750667pt;}
.y72{bottom:352.484000pt;}
.y2e{bottom:352.764000pt;}
.y7f{bottom:354.130667pt;}
.ya{bottom:354.377333pt;}
.ya8{bottom:361.265333pt;}
.y5c{bottom:368.574667pt;}
.y88{bottom:369.242667pt;}
.y71{bottom:370.018667pt;}
.y2d{bottom:370.297333pt;}
.y7e{bottom:371.665333pt;}
.y9{bottom:371.912000pt;}
.ya7{bottom:378.800000pt;}
.y92{bottom:381.468000pt;}
.y3e{bottom:381.820000pt;}
.y87{bottom:386.777333pt;}
.y2c{bottom:387.832000pt;}
.ya6{bottom:396.333333pt;}
.y5b{bottom:396.736000pt;}
.y7b{bottom:399.002667pt;}
.y3d{bottom:399.353333pt;}
.y2b{bottom:405.366667pt;}
.ya5{bottom:413.868000pt;}
.y5a{bottom:414.270667pt;}
.y7a{bottom:416.537333pt;}
.y63{bottom:419.041333pt;}
.y2a{bottom:422.901333pt;}
.ya4{bottom:431.402667pt;}
.y6{bottom:435.030667pt;}
.y62{bottom:436.576000pt;}
.y29{bottom:440.434667pt;}
.y59{bottom:442.430667pt;}
.y5{bottom:451.104000pt;}
.y28{bottom:457.969333pt;}
.ya3{bottom:459.564000pt;}
.y8b{bottom:462.062667pt;}
.y58{bottom:470.592000pt;}
.y86{bottom:472.925333pt;}
.y3c{bottom:474.263261pt;}
.y27{bottom:475.504000pt;}
.y4{bottom:476.778667pt;}
.ya2{bottom:477.097333pt;}
.y8a{bottom:479.597333pt;}
.y6e{bottom:482.072000pt;}
.y49{bottom:488.472000pt;}
.y3b{bottom:490.290832pt;}
.y26{bottom:493.038667pt;}
.ya1{bottom:494.632000pt;}
.y85{bottom:501.086667pt;}
.y57{bottom:501.410667pt;}
.y48{bottom:506.006667pt;}
.y3a{bottom:506.319621pt;}
.y25{bottom:510.572000pt;}
.y6d{bottom:517.141333pt;}
.y70{bottom:518.473333pt;}
.y7d{bottom:520.120000pt;}
.ya0{bottom:522.793333pt;}
.y91{bottom:522.945333pt;}
.y24{bottom:528.106667pt;}
.y84{bottom:531.904000pt;}
.y6f{bottom:536.006667pt;}
.y56{bottom:536.478667pt;}
.y39{bottom:538.375981pt;}
.y9f{bottom:540.328000pt;}
.y79{bottom:540.480000pt;}
.y23{bottom:545.641333pt;}
.y90{bottom:551.106667pt;}
.y55{bottom:554.013333pt;}
.y38{bottom:554.404771pt;}
.y9e{bottom:557.862667pt;}
.y61{bottom:560.518667pt;}
.y3{bottom:561.308000pt;}
.y22{bottom:563.176000pt;}
.y78{bottom:568.640000pt;}
.y54{bottom:571.548000pt;}
.y37{bottom:574.803054pt;}
.y8f{bottom:581.924000pt;}
.y9d{bottom:586.022667pt;}
.y60{bottom:588.680000pt;}
.y83{bottom:590.194667pt;}
.y2{bottom:593.454667pt;}
.y21{bottom:593.993333pt;}
.y77{bottom:599.458667pt;}
.y9c{bottom:603.557333pt;}
.y82{bottom:607.729333pt;}
.y36{bottom:619.497333pt;}
.y9b{bottom:621.092000pt;}
.y20{bottom:622.154667pt;}
.y53{bottom:624.150667pt;}
.y1{bottom:625.600000pt;}
.y81{bottom:631.933333pt;}
.y8e{bottom:640.216000pt;}
.y52{bottom:641.685333pt;}
.y9a{bottom:649.253333pt;}
.y1f{bottom:650.316000pt;}
.y80{bottom:654.248000pt;}
.y35{bottom:654.566667pt;}
.y76{bottom:657.749333pt;}
.y51{bottom:659.218667pt;}
.y89{bottom:665.846667pt;}
.y99{bottom:666.788000pt;}
.y5f{bottom:667.850667pt;}
.y34{bottom:672.101333pt;}
.y75{bottom:675.284000pt;}
.y6c{bottom:676.222667pt;}
.y50{bottom:676.753333pt;}
.y1e{bottom:681.133333pt;}
.y8d{bottom:681.953333pt;}
.y98{bottom:684.321333pt;}
.y33{bottom:689.634667pt;}
.yb7{bottom:690.569333pt;}
.y4f{bottom:694.288000pt;}
.y1d{bottom:698.668000pt;}
.y74{bottom:699.488000pt;}
.y8c{bottom:704.268000pt;}
.y6b{bottom:704.384000pt;}
.y7c{bottom:706.369333pt;}
.y32{bottom:707.169333pt;}
.yb6{bottom:708.102667pt;}
.y4e{bottom:711.822667pt;}
.y97{bottom:712.482667pt;}
.y1c{bottom:716.202667pt;}
.y73{bottom:721.802667pt;}
.y31{bottom:724.704000pt;}
.yb5{bottom:725.637333pt;}
.y4d{bottom:729.357333pt;}
.y96{bottom:730.017333pt;}
.y6a{bottom:732.545333pt;}
.y1b{bottom:733.736000pt;}
.y4c{bottom:746.890667pt;}
.y95{bottom:747.552000pt;}
.y69{bottom:750.078667pt;}
.y1a{bottom:751.270667pt;}
.yb4{bottom:753.798667pt;}
.y30{bottom:755.521333pt;}
.y19{bottom:768.805333pt;}
.yb3{bottom:771.333333pt;}
.y94{bottom:775.713333pt;}
.y68{bottom:778.240000pt;}
.y4b{bottom:781.960000pt;}
.y64{bottom:786.210667pt;}
.y18{bottom:786.340000pt;}
.yb2{bottom:788.866667pt;}
.y93{bottom:793.246667pt;}
.y4a{bottom:799.494667pt;}
.y17{bottom:803.874667pt;}
.y67{bottom:806.401333pt;}
.y47{bottom:817.028000pt;}
.y16{bottom:821.408000pt;}
.y46{bottom:834.562667pt;}
.y15{bottom:838.942667pt;}
.y45{bottom:852.097333pt;}
.y14{bottom:869.632000pt;}
.y8{bottom:919.312000pt;}
.y7{bottom:929.938667pt;}
.h4{height:26.519037pt;}
.h3{height:35.865600pt;}
.h5{height:35.921703pt;}
.h9{height:36.428048pt;}
.h6{height:39.850400pt;}
.hc{height:47.436370pt;}
.ha{height:47.441703pt;}
.h7{height:53.865199pt;}
.hb{height:58.170400pt;}
.hd{height:58.175733pt;}
.h2{height:77.911400pt;}
.h1{height:93.067298pt;}
.h8{height:93.463892pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:178.357333pt;}
.xd{left:182.874667pt;}
.x1b{left:185.000000pt;}
.x11{left:189.691203pt;}
.x1c{left:205.662667pt;}
.x2{left:207.025333pt;}
.xe{left:211.566667pt;}
.x5{left:229.232000pt;}
.x1{left:242.984000pt;}
.x1a{left:252.340000pt;}
.x4{left:255.441333pt;}
.x12{left:295.647461pt;}
.x3{left:298.722667pt;}
.x14{left:300.598667pt;}
.x15{left:303.246667pt;}
.x16{left:305.970667pt;}
.x18{left:319.273333pt;}
.x6{left:329.629333pt;}
.x19{left:335.989333pt;}
.xf{left:339.410667pt;}
.x17{left:357.833333pt;}
.x10{left:383.322539pt;}
.x13{left:456.471640pt;}
.xb{left:459.330667pt;}
.x8{left:507.114667pt;}
.x9{left:516.672000pt;}
.xc{left:541.228000pt;}
.xa{left:620.644000pt;}
}




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