
    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_8af7ef6f6f8c271cd97ac31a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_03285c06fc6997b56a608993.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.124023;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_2d7d7200156aee54424f79bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.912598;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_e27d102b9141374c8dcdeaac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_6051745fcca0d3ea193838eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.816406;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_c5a793ffda6b51640b781045.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895020;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_b6bc463cf50d37ceb3dddf5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.863770;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_453122d261509e54c9de80bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.862793;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_ea970efe332ce6b8e30ef2d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.863770;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_d5cbf7b4aa8a46182454a6d2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.670898;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.029520px;}
.ls8{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.144140px;}
.ls1{letter-spacing:0.150480px;}
.ls9{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:18.613433px;}
.lsb{letter-spacing:25.631990px;}
.ls7{letter-spacing:28.128949px;}
.ls6{letter-spacing:38.208945px;}
.lsc{letter-spacing:62.063975px;}
.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;}
}
.ws50{word-spacing:-71.999971px;}
.ws4d{word-spacing:-52.524823px;}
.ws2{word-spacing:-30.023988px;}
.wse{word-spacing:-26.981269px;}
.wsd{word-spacing:-26.621269px;}
.ws3{word-spacing:-23.418711px;}
.ws9f{word-spacing:-21.617271px;}
.ws1{word-spacing:-20.015992px;}
.ws1b{word-spacing:-18.414713px;}
.ws93{word-spacing:-16.271993px;}
.ws6f{word-spacing:-7.343997px;}
.ws9e{word-spacing:-6.690234px;}
.ws5{word-spacing:-3.350306px;}
.ws8{word-spacing:-2.838419px;}
.ws6{word-spacing:-2.630140px;}
.ws45{word-spacing:-2.468168px;}
.ws41{word-spacing:-2.312636px;}
.ws4{word-spacing:-2.239311px;}
.ws7{word-spacing:-2.239302px;}
.wsf{word-spacing:-2.177266px;}
.wsa4{word-spacing:-1.879230px;}
.ws1e{word-spacing:-1.805503px;}
.ws9{word-spacing:-1.547235px;}
.ws91{word-spacing:-1.440143px;}
.ws13{word-spacing:-1.152000px;}
.ws54{word-spacing:-0.720144px;}
.ws16{word-spacing:-0.504000px;}
.ws10{word-spacing:-0.431965px;}
.ws14{word-spacing:-0.431772px;}
.ws2b{word-spacing:-0.365645px;}
.ws28{word-spacing:-0.308404px;}
.ws25{word-spacing:-0.308148px;}
.ws94{word-spacing:-0.288000px;}
.wsa5{word-spacing:-0.210263px;}
.ws24{word-spacing:-0.161294px;}
.ws52{word-spacing:-0.144000px;}
.ws55{word-spacing:-0.143860px;}
.ws57{word-spacing:-0.000004px;}
.ws0{word-spacing:0.000000px;}
.ws56{word-spacing:0.071860px;}
.ws49{word-spacing:0.072000px;}
.ws22{word-spacing:0.149901px;}
.ws11{word-spacing:0.216000px;}
.ws12{word-spacing:0.288000px;}
.ws4e{word-spacing:0.322591px;}
.ws2e{word-spacing:0.338693px;}
.ws1d{word-spacing:0.354318px;}
.ws2c{word-spacing:0.354516px;}
.ws29{word-spacing:0.411684px;}
.ws27{word-spacing:0.411834px;}
.ws96{word-spacing:0.432000px;}
.wsa2{word-spacing:0.452148px;}
.ws9d{word-spacing:0.452174px;}
.ws2a{word-spacing:0.460697px;}
.ws99{word-spacing:0.468720px;}
.ws9c{word-spacing:0.504000px;}
.ws98{word-spacing:0.504805px;}
.ws47{word-spacing:0.576000px;}
.ws4a{word-spacing:0.792000px;}
.ws23{word-spacing:0.820647px;}
.ws4f{word-spacing:1.008000px;}
.ws21{word-spacing:1.074346px;}
.wsc{word-spacing:1.131117px;}
.ws26{word-spacing:1.131830px;}
.ws2d{word-spacing:1.132335px;}
.wsa0{word-spacing:1.172154px;}
.ws95{word-spacing:1.224000px;}
.ws9b{word-spacing:1.224140px;}
.ws20{word-spacing:1.278696px;}
.ws4b{word-spacing:1.295999px;}
.ws90{word-spacing:1.799855px;}
.ws17{word-spacing:1.879193px;}
.ws97{word-spacing:1.943859px;}
.wsa3{word-spacing:2.419190px;}
.ws44{word-spacing:2.571833px;}
.ws64{word-spacing:3.095999px;}
.ws1f{word-spacing:3.340813px;}
.wsa1{word-spacing:3.859072px;}
.ws88{word-spacing:3.959854px;}
.ws42{word-spacing:4.731853px;}
.ws82{word-spacing:5.255998px;}
.wsa{word-spacing:5.644769px;}
.ws67{word-spacing:5.759998px;}
.ws66{word-spacing:5.975998px;}
.wsb{word-spacing:6.249569px;}
.ws89{word-spacing:6.479853px;}
.ws5f{word-spacing:7.055997px;}
.ws5e{word-spacing:7.199997px;}
.ws1a{word-spacing:8.331863px;}
.ws65{word-spacing:8.855996px;}
.ws1c{word-spacing:8.994527px;}
.ws7e{word-spacing:8.999852px;}
.ws79{word-spacing:9.558860px;}
.ws7f{word-spacing:9.575996px;}
.ws3a{word-spacing:9.714035px;}
.ws38{word-spacing:9.771753px;}
.ws43{word-spacing:9.771853px;}
.ws40{word-spacing:9.836835px;}
.ws3d{word-spacing:9.919143px;}
.ws39{word-spacing:10.433849px;}
.ws3e{word-spacing:10.434121px;}
.ws3c{word-spacing:10.434273px;}
.ws37{word-spacing:10.491567px;}
.ws3b{word-spacing:10.492022px;}
.ws3f{word-spacing:10.492036px;}
.ws86{word-spacing:11.519851px;}
.ws72{word-spacing:11.735995px;}
.ws87{word-spacing:11.879851px;}
.ws5c{word-spacing:12.455995px;}
.ws7b{word-spacing:13.679995px;}
.ws7c{word-spacing:14.039850px;}
.ws19{word-spacing:14.238746px;}
.ws18{word-spacing:14.754292px;}
.ws8c{word-spacing:15.839850px;}
.ws8d{word-spacing:16.055994px;}
.ws77{word-spacing:18.215993px;}
.ws36{word-spacing:18.354500px;}
.ws6b{word-spacing:18.791992px;}
.ws53{word-spacing:18.935992px;}
.ws32{word-spacing:19.058408px;}
.ws33{word-spacing:19.074132px;}
.ws31{word-spacing:19.131666px;}
.ws2f{word-spacing:19.131827px;}
.ws7a{word-spacing:19.439848px;}
.ws30{word-spacing:19.851855px;}
.ws35{word-spacing:19.851925px;}
.ws34{word-spacing:19.852254px;}
.ws48{word-spacing:20.159992px;}
.ws59{word-spacing:20.231992px;}
.ws7d{word-spacing:20.663992px;}
.ws51{word-spacing:20.951851px;}
.ws8b{word-spacing:20.951992px;}
.ws6d{word-spacing:21.095992px;}
.ws15{word-spacing:21.520784px;}
.ws8f{word-spacing:21.599847px;}
.ws5d{word-spacing:21.815991px;}
.ws75{word-spacing:22.535991px;}
.ws76{word-spacing:25.991990px;}
.ws78{word-spacing:26.279989px;}
.ws73{word-spacing:28.079989px;}
.ws84{word-spacing:29.375985px;}
.ws85{word-spacing:29.735700px;}
.ws8e{word-spacing:31.679843px;}
.ws6c{word-spacing:33.335987px;}
.ws74{word-spacing:41.615703px;}
.ws6e{word-spacing:51.335979px;}
.ws83{word-spacing:52.055979px;}
.ws69{word-spacing:53.351979px;}
.ws6a{word-spacing:53.495979px;}
.ws68{word-spacing:53.639979px;}
.ws60{word-spacing:55.295978px;}
.ws61{word-spacing:55.439978px;}
.ws80{word-spacing:77.759969px;}
.ws8a{word-spacing:82.998687px;}
.ws71{word-spacing:150.678660px;}
.ws70{word-spacing:157.967937px;}
.ws63{word-spacing:161.351935px;}
.ws62{word-spacing:161.657092px;}
.ws81{word-spacing:178.758648px;}
.ws5b{word-spacing:178.775928px;}
.wsa6{word-spacing:214.518829px;}
.ws92{word-spacing:693.870346px;}
.ws9a{word-spacing:747.711090px;}
.ws5a{word-spacing:825.566142px;}
.ws58{word-spacing:829.886788px;}
.ws46{word-spacing:860.975656px;}
.ws4c{word-spacing:878.131017px;}
._2a{margin-left:-15.353753px;}
._16{margin-left:-13.608567px;}
._4{margin-left:-12.255652px;}
._a{margin-left:-10.523147px;}
._9{margin-left:-9.404505px;}
._e{margin-left:-8.404154px;}
._6{margin-left:-7.374217px;}
._5{margin-left:-6.297805px;}
._8{margin-left:-4.948543px;}
._3{margin-left:-3.497785px;}
._0{margin-left:-2.035454px;}
._c{margin-left:-1.001399px;}
._1{width:1.135458px;}
._2{width:2.390015px;}
._2d{width:9.829772px;}
._13{width:11.739589px;}
._10{width:14.792471px;}
._1a{width:15.832768px;}
._19{width:17.697577px;}
._12{width:18.733664px;}
._18{width:19.853522px;}
._7{width:21.167992px;}
._d{width:22.398486px;}
._2e{width:23.399483px;}
._f{width:24.681400px;}
._1c{width:26.226048px;}
._15{width:27.750989px;}
._14{width:28.766132px;}
._1b{width:29.812473px;}
._11{width:31.010416px;}
._17{width:34.781899px;}
._27{width:36.791985px;}
._21{width:40.308425px;}
._22{width:41.358204px;}
._b{width:45.428958px;}
._28{width:65.718697px;}
._1f{width:95.357794px;}
._29{width:110.393236px;}
._24{width:127.545076px;}
._26{width:206.155372px;}
._2c{width:808.850831px;}
._20{width:818.999672px;}
._2b{width:824.170053px;}
._23{width:903.171571px;}
._25{width:910.372824px;}
._1e{width:964.374076px;}
._1d{width:968.543613px;}
.fc7{color:rgb(56,145,167);}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(50,14,4);}
.fc4{color:rgb(255,0,0);}
.fc0{color:rgb(87,35,20);}
.fs9{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fsc{font-size:66.959973px;}
.fs1{font-size:71.999971px;}
.fsa{font-size:77.759969px;}
.fs2{font-size:84.239966px;}
.fs5{font-size:86.399965px;}
.fs3{font-size:89.031004px;}
.fs6{font-size:95.759962px;}
.fs4{font-size:107.999957px;}
.fsb{font-size:120.239952px;}
.fs0{font-size:131.759947px;}
.fs7{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.ydd{bottom:1.620340px;}
.ydc{bottom:41.280000px;}
.y94{bottom:63.060332px;}
.ydb{bottom:64.500331px;}
.y93{bottom:82.860324px;}
.yda{bottom:86.100323px;}
.y60{bottom:93.480320px;}
.y92{bottom:102.660316px;}
.yd9{bottom:107.700314px;}
.y33{bottom:107.880314px;}
.y46{bottom:109.320313px;}
.y1d{bottom:114.540311px;}
.y91{bottom:122.460308px;}
.yd8{bottom:129.300305px;}
.y45{bottom:130.920305px;}
.y32{bottom:133.080304px;}
.ya{bottom:134.160303px;}
.y1c{bottom:139.740301px;}
.y5f{bottom:141.000301px;}
.yeb{bottom:145.320299px;}
.y6e{bottom:147.480298px;}
.yd7{bottom:150.900297px;}
.yb8{bottom:151.080297px;}
.y9{bottom:158.280294px;}
.y11d{bottom:160.260293px;}
.y90{bottom:162.060292px;}
.yea{bottom:166.920290px;}
.y6d{bottom:169.080289px;}
.yd6{bottom:172.500288px;}
.y44{bottom:174.120287px;}
.y110{bottom:177.180286px;}
.y8f{bottom:181.860284px;}
.y4{bottom:182.220284px;}
.y31{bottom:183.480284px;}
.ye9{bottom:188.520282px;}
.y1b{bottom:190.140281px;}
.y5e{bottom:190.680281px;}
.y8e{bottom:201.660276px;}
.y10f{bottom:202.020276px;}
.y3{bottom:204.180275px;}
.yd5{bottom:204.900275px;}
.yb7{bottom:205.080275px;}
.y8{bottom:206.520274px;}
.y30{bottom:208.680274px;}
.ye8{bottom:210.120273px;}
.y5d{bottom:212.280272px;}
.y6c{bottom:216.600270px;}
.y43{bottom:217.320270px;}
.y8d{bottom:221.460268px;}
.y7b{bottom:224.700267px;}
.yd4{bottom:226.500266px;}
.y10e{bottom:226.860266px;}
.ye7{bottom:231.720264px;}
.y2f{bottom:233.880263px;}
.yb6{bottom:237.480262px;}
.y42{bottom:238.920261px;}
.y7a{bottom:246.300258px;}
.ycb{bottom:248.100258px;}
.y10d{bottom:251.700256px;}
.y2e{bottom:259.080253px;}
.y5c{bottom:259.800253px;}
.y41{bottom:260.520253px;}
.y8c{bottom:263.220252px;}
.y1a{bottom:265.740251px;}
.yca{bottom:269.700249px;}
.ye6{bottom:274.920247px;}
.y10c{bottom:276.540246px;}
.y40{bottom:283.560244px;}
.y6b{bottom:284.280243px;}
.yfc{bottom:286.980242px;}
.y51{bottom:288.780241px;}
.y79{bottom:289.500241px;}
.y19{bottom:290.940241px;}
.yc9{bottom:291.300240px;}
.yb5{bottom:291.480240px;}
.y80{bottom:298.860237px;}
.y10b{bottom:301.380236px;}
.y5b{bottom:309.480233px;}
.yfb{bottom:311.820232px;}
.y2d{bottom:312.900232px;}
.yb4{bottom:313.080232px;}
.y18{bottom:316.140231px;}
.y50{bottom:317.580230px;}
.ya5{bottom:326.220227px;}
.y6a{bottom:327.480226px;}
.y11a{bottom:327.840226px;}
.y78{bottom:332.700224px;}
.yc8{bottom:334.500223px;}
.yfa{bottom:336.660222px;}
.y2c{bottom:338.100222px;}
.y3f{bottom:339.720221px;}
.y17{bottom:341.340220px;}
.yb3{bottom:345.480219px;}
.y4f{bottom:346.380218px;}
.ya4{bottom:347.820218px;}
.y69{bottom:349.080217px;}
.y10a{bottom:351.060217px;}
.yc7{bottom:356.100215px;}
.y5a{bottom:357.000214px;}
.y8b{bottom:357.360214px;}
.y3e{bottom:361.320212px;}
.yf9{bottom:361.500212px;}
.y119{bottom:362.040212px;}
.y2b{bottom:363.300212px;}
.yb2{bottom:367.080210px;}
.ya3{bottom:369.420209px;}
.y7f{bottom:374.820207px;}
.y77{bottom:375.900207px;}
.y8a{bottom:377.160206px;}
.yc6{bottom:377.700206px;}
.ye5{bottom:382.920204px;}
.yf8{bottom:386.340202px;}
.y2a{bottom:388.500202px;}
.ya2{bottom:391.020201px;}
.y16{bottom:391.740200px;}
.y68{bottom:392.280200px;}
.y118{bottom:396.240199px;}
.y89{bottom:396.960198px;}
.yc5{bottom:399.300197px;}
.yb1{bottom:399.480197px;}
.y109{bottom:400.740197px;}
.y4e{bottom:403.980195px;}
.y3d{bottom:404.520195px;}
.y59{bottom:406.680194px;}
.yd3{bottom:410.100193px;}
.yf7{bottom:411.180193px;}
.ya1{bottom:412.620192px;}
.y6{bottom:413.520192px;}
.y67{bottom:413.880191px;}
.y88{bottom:416.760190px;}
.yc4{bottom:420.900189px;}
.yb0{bottom:421.080189px;}
.y108{bottom:425.580187px;}
.y3c{bottom:426.120187px;}
.y76{bottom:429.900185px;}
.yd2{bottom:431.700184px;}
.ya0{bottom:434.220183px;}
.yf6{bottom:436.020183px;}
.y87{bottom:436.560182px;}
.y5{bottom:438.720182px;}
.y15{bottom:442.140180px;}
.yc3{bottom:442.500180px;}
.y3b{bottom:447.720178px;}
.y107{bottom:450.420177px;}
.y75{bottom:451.500176px;}
.yaf{bottom:453.480176px;}
.y58{bottom:454.200175px;}
.y117{bottom:454.920175px;}
.y9f{bottom:455.820175px;}
.y29{bottom:456.000175px;}
.y66{bottom:457.080174px;}
.yf5{bottom:460.860173px;}
.y4d{bottom:461.580172px;}
.yc2{bottom:464.100171px;}
.y14{bottom:467.340170px;}
.ye4{bottom:469.320169px;}
.yae{bottom:475.080167px;}
.y106{bottom:475.260167px;}
.y86{bottom:476.160167px;}
.y9e{bottom:477.420166px;}
.y28{bottom:481.200165px;}
.yc1{bottom:485.700163px;}
.y4c{bottom:490.380161px;}
.y11c{bottom:490.560161px;}
.y3a{bottom:490.920161px;}
.y74{bottom:494.700159px;}
.y85{bottom:495.960159px;}
.y2{bottom:499.020157px;}
.y105{bottom:500.100157px;}
.y65{bottom:501.000157px;}
.y57{bottom:503.880155px;}
.y27{bottom:506.400154px;}
.yc0{bottom:507.300154px;}
.yad{bottom:507.480154px;}
.y116{bottom:507.840154px;}
.yf4{bottom:510.540153px;}
.y39{bottom:512.520152px;}
.y84{bottom:515.760151px;}
.y13{bottom:517.740150px;}
.y4b{bottom:519.180149px;}
.y9d{bottom:520.620149px;}
.y56{bottom:525.480147px;}
.yec{bottom:525.660147px;}
.ye{bottom:525.840147px;}
.yd1{bottom:528.900145px;}
.yac{bottom:529.080145px;}
.y11b{bottom:530.160145px;}
.y26{bottom:531.600144px;}
.y73{bottom:533.940143px;}
.y38{bottom:534.120143px;}
.yf3{bottom:535.380143px;}
.y83{bottom:535.560143px;}
.y1{bottom:538.620142px;}
.ybf{bottom:539.700141px;}
.y9c{bottom:542.220140px;}
.yc{bottom:542.940140px;}
.y104{bottom:544.380139px;}
.y4a{bottom:547.980138px;}
.yd0{bottom:550.500137px;}
.y82{bottom:555.360135px;}
.ye3{bottom:555.720135px;}
.y25{bottom:556.800134px;}
.yf2{bottom:560.220133px;}
.ybe{bottom:561.300132px;}
.yab{bottom:561.480132px;}
.y9b{bottom:563.820131px;}
.y64{bottom:568.680130px;}
.y103{bottom:569.220129px;}
.y37{bottom:569.760129px;}
.ycf{bottom:572.100128px;}
.y55{bottom:573.000128px;}
.y49{bottom:576.780126px;}
.y72{bottom:577.140126px;}
.ye2{bottom:577.320126px;}
.yaa{bottom:583.080124px;}
.yf1{bottom:585.060123px;}
.y9a{bottom:585.420123px;}
.y115{bottom:590.640121px;}
.y12{bottom:593.340120px;}
.ybd{bottom:593.700120px;}
.y102{bottom:594.060119px;}
.ye1{bottom:598.920117px;}
.y81{bottom:600.720117px;}
.yce{bottom:604.500115px;}
.y99{bottom:607.020114px;}
.yf0{bottom:609.900113px;}
.yd{bottom:610.800113px;}
.y63{bottom:611.880112px;}
.ybc{bottom:615.300111px;}
.ya9{bottom:615.480111px;}
.ye0{bottom:620.520109px;}
.y54{bottom:623.400108px;}
.y98{bottom:628.620106px;}
.y71{bottom:631.140105px;}
.yf{bottom:632.040104px;}
.y36{bottom:632.400104px;}
.y24{bottom:632.940104px;}
.yef{bottom:634.740103px;}
.ybb{bottom:636.900102px;}
.ya8{bottom:637.080102px;}
.y101{bottom:640.320101px;}
.yb{bottom:640.680101px;}
.y11{bottom:641.760100px;}
.ydf{bottom:642.120100px;}
.y53{bottom:648.600098px;}
.y114{bottom:650.220097px;}
.y35{bottom:654.000095px;}
.y62{bottom:655.800095px;}
.y23{bottom:658.140094px;}
.yba{bottom:658.500094px;}
.yde{bottom:663.720092px;}
.y100{bottom:665.160091px;}
.y97{bottom:671.820088px;}
.ya7{bottom:673.080088px;}
.y70{bottom:674.340087px;}
.yee{bottom:674.520087px;}
.y7e{bottom:676.860086px;}
.y22{bottom:683.340084px;}
.y48{bottom:684.600083px;}
.yff{bottom:690.000081px;}
.yb9{bottom:690.180081px;}
.y113{bottom:700.980077px;}
.y61{bottom:704.040075px;}
.y96{bottom:704.220075px;}
.y34{bottom:708.000074px;}
.y21{bottom:708.540074px;}
.y52{bottom:709.800073px;}
.yed{bottom:713.040072px;}
.yfe{bottom:714.840071px;}
.y6f{bottom:718.440070px;}
.y112{bottom:726.360066px;}
.y20{bottom:733.740064px;}
.y10{bottom:735.540063px;}
.y7c{bottom:737.700062px;}
.y7d{bottom:752.100056px;}
.ycd{bottom:752.280056px;}
.yfd{bottom:753.000056px;}
.ycc{bottom:761.460052px;}
.ya6{bottom:766.140051px;}
.y95{bottom:768.480050px;}
.y1f{bottom:769.740049px;}
.y47{bottom:773.880047px;}
.y111{bottom:775.320047px;}
.y7{bottom:790.620041px;}
.y1e{bottom:794.940039px;}
.hf{height:20.340000px;}
.h10{height:45.410607px;}
.h11{height:49.289043px;}
.h12{height:49.359355px;}
.h13{height:53.308104px;}
.he{height:53.427986px;}
.h3{height:56.146267px;}
.hd{height:59.221383px;}
.h4{height:59.339512px;}
.h6{height:63.281225px;}
.h2{height:64.371068px;}
.h14{height:69.520753px;}
.h8{height:74.039033px;}
.h5{height:75.314150px;}
.hb{height:84.164029px;}
.ha{height:85.613520px;}
.h7{height:94.921837px;}
.h9{height:96.556602px;}
.h15{height:107.499684px;}
.h1{height:115.804641px;}
.hc{height:128.742136px;}
.h0{height:892.500000px;}
.w2{width:12.780000px;}
.w8{width:34.380000px;}
.w7{width:45.000000px;}
.w5{width:64.620000px;}
.w1{width:86.040000px;}
.w4{width:109.440000px;}
.w6{width:115.020000px;}
.w3{width:136.080000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x11{left:214.546414px;}
.xf{left:223.186411px;}
.x12{left:225.346410px;}
.x10{left:233.986406px;}
.x5{left:235.066406px;}
.xb{left:240.106404px;}
.x20{left:242.446403px;}
.x15{left:245.686402px;}
.xd{left:250.906400px;}
.x2{left:254.146398px;}
.xe{left:259.546396px;}
.x1{left:268.006393px;}
.x16{left:271.786391px;}
.x14{left:277.186389px;}
.x13{left:278.446389px;}
.x29{left:282.406387px;}
.x2f{left:283.846386px;}
.x32{left:293.566383px;}
.x23{left:328.305600px;}
.x1f{left:345.226362px;}
.x17{left:346.666361px;}
.x1a{left:362.866355px;}
.x1d{left:371.506351px;}
.x28{left:390.406344px;}
.xc{left:410.566336px;}
.x6{left:454.846318px;}
.x2c{left:476.986309px;}
.x7{left:495.166302px;}
.x2d{left:511.366295px;}
.x21{left:521.446291px;}
.x3{left:540.166284px;}
.x18{left:543.046283px;}
.x30{left:547.006281px;}
.x1b{left:548.446281px;}
.x1e{left:557.086277px;}
.x2a{left:566.806273px;}
.x8{left:612.166255px;}
.x24{left:657.525600px;}
.x9{left:719.446212px;}
.xa{left:775.966190px;}
.x2e{left:779.746188px;}
.x22{left:807.286177px;}
.x31{left:811.426175px;}
.x1c{left:846.166162px;}
.x2b{left:851.026160px;}
.x19{left:854.806158px;}
.x25{left:871.905600px;}
.x4{left:927.526129px;}
.x26{left:986.925600px;}
.x27{left:1037.325600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.026240pt;}
.ls8{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.128125pt;}
.ls1{letter-spacing:0.133760pt;}
.ls9{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:16.545273pt;}
.lsb{letter-spacing:22.783991pt;}
.ls7{letter-spacing:25.003510pt;}
.ls6{letter-spacing:33.963506pt;}
.lsc{letter-spacing:55.167978pt;}
.ws50{word-spacing:-63.999974pt;}
.ws4d{word-spacing:-46.688731pt;}
.ws2{word-spacing:-26.687989pt;}
.wse{word-spacing:-23.983351pt;}
.wsd{word-spacing:-23.663351pt;}
.ws3{word-spacing:-20.816632pt;}
.ws9f{word-spacing:-19.215352pt;}
.ws1{word-spacing:-17.791993pt;}
.ws1b{word-spacing:-16.368633pt;}
.ws93{word-spacing:-14.463994pt;}
.ws6f{word-spacing:-6.527997pt;}
.ws9e{word-spacing:-5.946875pt;}
.ws5{word-spacing:-2.978050pt;}
.ws8{word-spacing:-2.523039pt;}
.ws6{word-spacing:-2.337902pt;}
.ws45{word-spacing:-2.193927pt;}
.ws41{word-spacing:-2.055677pt;}
.ws4{word-spacing:-1.990499pt;}
.ws7{word-spacing:-1.990491pt;}
.wsf{word-spacing:-1.935348pt;}
.wsa4{word-spacing:-1.670427pt;}
.ws1e{word-spacing:-1.604892pt;}
.ws9{word-spacing:-1.375320pt;}
.ws91{word-spacing:-1.280127pt;}
.ws13{word-spacing:-1.024000pt;}
.ws54{word-spacing:-0.640128pt;}
.ws16{word-spacing:-0.448000pt;}
.ws10{word-spacing:-0.383969pt;}
.ws14{word-spacing:-0.383797pt;}
.ws2b{word-spacing:-0.325017pt;}
.ws28{word-spacing:-0.274137pt;}
.ws25{word-spacing:-0.273910pt;}
.ws94{word-spacing:-0.256000pt;}
.wsa5{word-spacing:-0.186900pt;}
.ws24{word-spacing:-0.143373pt;}
.ws52{word-spacing:-0.128000pt;}
.ws55{word-spacing:-0.127875pt;}
.ws57{word-spacing:-0.000003pt;}
.ws0{word-spacing:0.000000pt;}
.ws56{word-spacing:0.063875pt;}
.ws49{word-spacing:0.064000pt;}
.ws22{word-spacing:0.133245pt;}
.ws11{word-spacing:0.192000pt;}
.ws12{word-spacing:0.256000pt;}
.ws4e{word-spacing:0.286747pt;}
.ws2e{word-spacing:0.301061pt;}
.ws1d{word-spacing:0.314949pt;}
.ws2c{word-spacing:0.315126pt;}
.ws29{word-spacing:0.365941pt;}
.ws27{word-spacing:0.366075pt;}
.ws96{word-spacing:0.384000pt;}
.wsa2{word-spacing:0.401910pt;}
.ws9d{word-spacing:0.401933pt;}
.ws2a{word-spacing:0.409509pt;}
.ws99{word-spacing:0.416640pt;}
.ws9c{word-spacing:0.448000pt;}
.ws98{word-spacing:0.448716pt;}
.ws47{word-spacing:0.512000pt;}
.ws4a{word-spacing:0.704000pt;}
.ws23{word-spacing:0.729464pt;}
.ws4f{word-spacing:0.896000pt;}
.ws21{word-spacing:0.954974pt;}
.wsc{word-spacing:1.005437pt;}
.ws26{word-spacing:1.006071pt;}
.ws2d{word-spacing:1.006520pt;}
.wsa0{word-spacing:1.041914pt;}
.ws95{word-spacing:1.088000pt;}
.ws9b{word-spacing:1.088124pt;}
.ws20{word-spacing:1.136619pt;}
.ws4b{word-spacing:1.152000pt;}
.ws90{word-spacing:1.599871pt;}
.ws17{word-spacing:1.670394pt;}
.ws97{word-spacing:1.727875pt;}
.wsa3{word-spacing:2.150391pt;}
.ws44{word-spacing:2.286074pt;}
.ws64{word-spacing:2.751999pt;}
.ws1f{word-spacing:2.969612pt;}
.wsa1{word-spacing:3.430286pt;}
.ws88{word-spacing:3.519871pt;}
.ws42{word-spacing:4.206091pt;}
.ws82{word-spacing:4.671998pt;}
.wsa{word-spacing:5.017572pt;}
.ws67{word-spacing:5.119998pt;}
.ws66{word-spacing:5.311998pt;}
.wsb{word-spacing:5.555172pt;}
.ws89{word-spacing:5.759870pt;}
.ws5f{word-spacing:6.271997pt;}
.ws5e{word-spacing:6.399997pt;}
.ws1a{word-spacing:7.406100pt;}
.ws65{word-spacing:7.871997pt;}
.ws1c{word-spacing:7.995135pt;}
.ws7e{word-spacing:7.999869pt;}
.ws79{word-spacing:8.496765pt;}
.ws7f{word-spacing:8.511997pt;}
.ws3a{word-spacing:8.634698pt;}
.ws38{word-spacing:8.686003pt;}
.ws43{word-spacing:8.686092pt;}
.ws40{word-spacing:8.743853pt;}
.ws3d{word-spacing:8.817016pt;}
.ws39{word-spacing:9.274532pt;}
.ws3e{word-spacing:9.274774pt;}
.ws3c{word-spacing:9.274909pt;}
.ws37{word-spacing:9.325838pt;}
.ws3b{word-spacing:9.326241pt;}
.ws3f{word-spacing:9.326254pt;}
.ws86{word-spacing:10.239868pt;}
.ws72{word-spacing:10.431996pt;}
.ws87{word-spacing:10.559868pt;}
.ws5c{word-spacing:11.071996pt;}
.ws7b{word-spacing:12.159995pt;}
.ws7c{word-spacing:12.479867pt;}
.ws19{word-spacing:12.656663pt;}
.ws18{word-spacing:13.114926pt;}
.ws8c{word-spacing:14.079866pt;}
.ws8d{word-spacing:14.271994pt;}
.ws77{word-spacing:16.191994pt;}
.ws36{word-spacing:16.315112pt;}
.ws6b{word-spacing:16.703993pt;}
.ws53{word-spacing:16.831993pt;}
.ws32{word-spacing:16.940807pt;}
.ws33{word-spacing:16.954784pt;}
.ws31{word-spacing:17.005926pt;}
.ws2f{word-spacing:17.006068pt;}
.ws7a{word-spacing:17.279865pt;}
.ws30{word-spacing:17.646093pt;}
.ws35{word-spacing:17.646155pt;}
.ws34{word-spacing:17.646448pt;}
.ws48{word-spacing:17.919993pt;}
.ws59{word-spacing:17.983993pt;}
.ws7d{word-spacing:18.367993pt;}
.ws51{word-spacing:18.623868pt;}
.ws8b{word-spacing:18.623993pt;}
.ws6d{word-spacing:18.751992pt;}
.ws15{word-spacing:19.129586pt;}
.ws8f{word-spacing:19.199864pt;}
.ws5d{word-spacing:19.391992pt;}
.ws75{word-spacing:20.031992pt;}
.ws76{word-spacing:23.103991pt;}
.ws78{word-spacing:23.359991pt;}
.ws73{word-spacing:24.959990pt;}
.ws84{word-spacing:26.111986pt;}
.ws85{word-spacing:26.431733pt;}
.ws8e{word-spacing:28.159861pt;}
.ws6c{word-spacing:29.631988pt;}
.ws74{word-spacing:36.991736pt;}
.ws6e{word-spacing:45.631982pt;}
.ws83{word-spacing:46.271981pt;}
.ws69{word-spacing:47.423981pt;}
.ws6a{word-spacing:47.551981pt;}
.ws68{word-spacing:47.679981pt;}
.ws60{word-spacing:49.151980pt;}
.ws61{word-spacing:49.279980pt;}
.ws80{word-spacing:69.119972pt;}
.ws8a{word-spacing:73.776610pt;}
.ws71{word-spacing:133.936586pt;}
.ws70{word-spacing:140.415944pt;}
.ws63{word-spacing:143.423943pt;}
.ws62{word-spacing:143.695193pt;}
.ws81{word-spacing:158.896576pt;}
.ws5b{word-spacing:158.911936pt;}
.wsa6{word-spacing:190.683404pt;}
.ws92{word-spacing:616.773641pt;}
.ws9a{word-spacing:664.632080pt;}
.ws5a{word-spacing:733.836570pt;}
.ws58{word-spacing:737.677145pt;}
.ws46{word-spacing:765.311694pt;}
.ws4c{word-spacing:780.560904pt;}
._2a{margin-left:-13.647781pt;}
._16{margin-left:-12.096504pt;}
._4{margin-left:-10.893912pt;}
._a{margin-left:-9.353908pt;}
._9{margin-left:-8.359560pt;}
._e{margin-left:-7.470359pt;}
._6{margin-left:-6.554860pt;}
._5{margin-left:-5.598049pt;}
._8{margin-left:-4.398705pt;}
._3{margin-left:-3.109142pt;}
._0{margin-left:-1.809292pt;}
._c{margin-left:-0.890132pt;}
._1{width:1.009296pt;}
._2{width:2.124457pt;}
._2d{width:8.737575pt;}
._13{width:10.435190pt;}
._10{width:13.148864pt;}
._1a{width:14.073572pt;}
._19{width:15.731179pt;}
._12{width:16.652146pt;}
._18{width:17.647575pt;}
._7{width:18.815992pt;}
._d{width:19.909765pt;}
._2e{width:20.799540pt;}
._f{width:21.939022pt;}
._1c{width:23.312043pt;}
._15{width:24.667546pt;}
._14{width:25.569895pt;}
._1b{width:26.499976pt;}
._11{width:27.564815pt;}
._17{width:30.917244pt;}
._27{width:32.703987pt;}
._21{width:35.829711pt;}
._22{width:36.762848pt;}
._b{width:40.381296pt;}
._28{width:58.416620pt;}
._1f{width:84.762484pt;}
._29{width:98.127321pt;}
._24{width:113.373401pt;}
._26{width:183.249220pt;}
._2c{width:718.978516pt;}
._20{width:727.999709pt;}
._2b{width:732.595603pt;}
._23{width:802.819174pt;}
._25{width:809.220288pt;}
._1e{width:857.221401pt;}
._1d{width:860.927656pt;}
.fs9{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fsc{font-size:59.519976pt;}
.fs1{font-size:63.999974pt;}
.fsa{font-size:69.119972pt;}
.fs2{font-size:74.879970pt;}
.fs5{font-size:76.799969pt;}
.fs3{font-size:79.138670pt;}
.fs6{font-size:85.119966pt;}
.fs4{font-size:95.999962pt;}
.fsb{font-size:106.879957pt;}
.fs0{font-size:117.119953pt;}
.fs7{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:1.440302pt;}
.ydc{bottom:36.693333pt;}
.y94{bottom:56.053628pt;}
.ydb{bottom:57.333628pt;}
.y93{bottom:73.653621pt;}
.yda{bottom:76.533620pt;}
.y60{bottom:83.093617pt;}
.y92{bottom:91.253614pt;}
.yd9{bottom:95.733612pt;}
.y33{bottom:95.893612pt;}
.y46{bottom:97.173612pt;}
.y1d{bottom:101.813610pt;}
.y91{bottom:108.853607pt;}
.yd8{bottom:114.933605pt;}
.y45{bottom:116.373604pt;}
.y32{bottom:118.293603pt;}
.ya{bottom:119.253603pt;}
.y1c{bottom:124.213601pt;}
.y5f{bottom:125.333601pt;}
.yeb{bottom:129.173599pt;}
.y6e{bottom:131.093598pt;}
.yd7{bottom:134.133597pt;}
.yb8{bottom:134.293597pt;}
.y9{bottom:140.693594pt;}
.y11d{bottom:142.453594pt;}
.y90{bottom:144.053593pt;}
.yea{bottom:148.373591pt;}
.y6d{bottom:150.293591pt;}
.yd6{bottom:153.333589pt;}
.y44{bottom:154.773589pt;}
.y110{bottom:157.493588pt;}
.y8f{bottom:161.653586pt;}
.y4{bottom:161.973586pt;}
.y31{bottom:163.093585pt;}
.ye9{bottom:167.573584pt;}
.y1b{bottom:169.013583pt;}
.y5e{bottom:169.493583pt;}
.y8e{bottom:179.253579pt;}
.y10f{bottom:179.573579pt;}
.y3{bottom:181.493578pt;}
.yd5{bottom:182.133578pt;}
.yb7{bottom:182.293578pt;}
.y8{bottom:183.573577pt;}
.y30{bottom:185.493576pt;}
.ye8{bottom:186.773576pt;}
.y5d{bottom:188.693575pt;}
.y6c{bottom:192.533574pt;}
.y43{bottom:193.173573pt;}
.y8d{bottom:196.853572pt;}
.y7b{bottom:199.733571pt;}
.yd4{bottom:201.333570pt;}
.y10e{bottom:201.653570pt;}
.ye7{bottom:205.973568pt;}
.y2f{bottom:207.893568pt;}
.yb6{bottom:211.093566pt;}
.y42{bottom:212.373566pt;}
.y7a{bottom:218.933563pt;}
.ycb{bottom:220.533562pt;}
.y10d{bottom:223.733561pt;}
.y2e{bottom:230.293559pt;}
.y5c{bottom:230.933558pt;}
.y41{bottom:231.573558pt;}
.y8c{bottom:233.973557pt;}
.y1a{bottom:236.213556pt;}
.yca{bottom:239.733555pt;}
.ye6{bottom:244.373553pt;}
.y10c{bottom:245.813552pt;}
.y40{bottom:252.053550pt;}
.y6b{bottom:252.693550pt;}
.yfc{bottom:255.093549pt;}
.y51{bottom:256.693548pt;}
.y79{bottom:257.333548pt;}
.y19{bottom:258.613547pt;}
.yc9{bottom:258.933547pt;}
.yb5{bottom:259.093547pt;}
.y80{bottom:265.653544pt;}
.y10b{bottom:267.893544pt;}
.y5b{bottom:275.093541pt;}
.yfb{bottom:277.173540pt;}
.y2d{bottom:278.133539pt;}
.yb4{bottom:278.293539pt;}
.y18{bottom:281.013538pt;}
.y50{bottom:282.293538pt;}
.ya5{bottom:289.973535pt;}
.y6a{bottom:291.093534pt;}
.y11a{bottom:291.413534pt;}
.y78{bottom:295.733532pt;}
.yc8{bottom:297.333532pt;}
.yfa{bottom:299.253531pt;}
.y2c{bottom:300.533530pt;}
.y3f{bottom:301.973530pt;}
.y17{bottom:303.413529pt;}
.yb3{bottom:307.093528pt;}
.y4f{bottom:307.893528pt;}
.ya4{bottom:309.173527pt;}
.y69{bottom:310.293527pt;}
.y10a{bottom:312.053526pt;}
.yc7{bottom:316.533524pt;}
.y5a{bottom:317.333524pt;}
.y8b{bottom:317.653524pt;}
.y3e{bottom:321.173522pt;}
.yf9{bottom:321.333522pt;}
.y119{bottom:321.813522pt;}
.y2b{bottom:322.933521pt;}
.yb2{bottom:326.293520pt;}
.ya3{bottom:328.373519pt;}
.y7f{bottom:333.173517pt;}
.y77{bottom:334.133517pt;}
.y8a{bottom:335.253517pt;}
.yc6{bottom:335.733516pt;}
.ye5{bottom:340.373515pt;}
.yf8{bottom:343.413513pt;}
.y2a{bottom:345.333513pt;}
.ya2{bottom:347.573512pt;}
.y16{bottom:348.213511pt;}
.y68{bottom:348.693511pt;}
.y118{bottom:352.213510pt;}
.y89{bottom:352.853510pt;}
.yc5{bottom:354.933509pt;}
.yb1{bottom:355.093509pt;}
.y109{bottom:356.213508pt;}
.y4e{bottom:359.093507pt;}
.y3d{bottom:359.573507pt;}
.y59{bottom:361.493506pt;}
.yd3{bottom:364.533505pt;}
.yf7{bottom:365.493504pt;}
.ya1{bottom:366.773504pt;}
.y6{bottom:367.573504pt;}
.y67{bottom:367.893504pt;}
.y88{bottom:370.453502pt;}
.yc4{bottom:374.133501pt;}
.yb0{bottom:374.293501pt;}
.y108{bottom:378.293499pt;}
.y3c{bottom:378.773499pt;}
.y76{bottom:382.133498pt;}
.yd2{bottom:383.733497pt;}
.ya0{bottom:385.973496pt;}
.yf6{bottom:387.573496pt;}
.y87{bottom:388.053495pt;}
.y5{bottom:389.973495pt;}
.y15{bottom:393.013493pt;}
.yc3{bottom:393.333493pt;}
.y3b{bottom:397.973491pt;}
.y107{bottom:400.373491pt;}
.y75{bottom:401.333490pt;}
.yaf{bottom:403.093489pt;}
.y58{bottom:403.733489pt;}
.y117{bottom:404.373489pt;}
.y9f{bottom:405.173489pt;}
.y29{bottom:405.333489pt;}
.y66{bottom:406.293488pt;}
.yf5{bottom:409.653487pt;}
.y4d{bottom:410.293487pt;}
.yc2{bottom:412.533486pt;}
.y14{bottom:415.413485pt;}
.ye4{bottom:417.173484pt;}
.yae{bottom:422.293482pt;}
.y106{bottom:422.453482pt;}
.y86{bottom:423.253481pt;}
.y9e{bottom:424.373481pt;}
.y28{bottom:427.733480pt;}
.yc1{bottom:431.733478pt;}
.y4c{bottom:435.893476pt;}
.y11c{bottom:436.053476pt;}
.y3a{bottom:436.373476pt;}
.y74{bottom:439.733475pt;}
.y85{bottom:440.853474pt;}
.y2{bottom:443.573473pt;}
.y105{bottom:444.533473pt;}
.y65{bottom:445.333473pt;}
.y57{bottom:447.893472pt;}
.y27{bottom:450.133471pt;}
.yc0{bottom:450.933470pt;}
.yad{bottom:451.093470pt;}
.y116{bottom:451.413470pt;}
.yf4{bottom:453.813469pt;}
.y39{bottom:455.573468pt;}
.y84{bottom:458.453467pt;}
.y13{bottom:460.213467pt;}
.y4b{bottom:461.493466pt;}
.y9d{bottom:462.773466pt;}
.y56{bottom:467.093464pt;}
.yec{bottom:467.253464pt;}
.ye{bottom:467.413464pt;}
.yd1{bottom:470.133463pt;}
.yac{bottom:470.293463pt;}
.y11b{bottom:471.253462pt;}
.y26{bottom:472.533462pt;}
.y73{bottom:474.613461pt;}
.y38{bottom:474.773461pt;}
.yf3{bottom:475.893460pt;}
.y83{bottom:476.053460pt;}
.y1{bottom:478.773459pt;}
.ybf{bottom:479.733459pt;}
.y9c{bottom:481.973458pt;}
.yc{bottom:482.613458pt;}
.y104{bottom:483.893457pt;}
.y4a{bottom:487.093456pt;}
.yd0{bottom:489.333455pt;}
.y82{bottom:493.653453pt;}
.ye3{bottom:493.973453pt;}
.y25{bottom:494.933453pt;}
.yf2{bottom:497.973451pt;}
.ybe{bottom:498.933451pt;}
.yab{bottom:499.093451pt;}
.y9b{bottom:501.173450pt;}
.y64{bottom:505.493448pt;}
.y103{bottom:505.973448pt;}
.y37{bottom:506.453448pt;}
.ycf{bottom:508.533447pt;}
.y55{bottom:509.333447pt;}
.y49{bottom:512.693446pt;}
.y72{bottom:513.013445pt;}
.ye2{bottom:513.173445pt;}
.yaa{bottom:518.293443pt;}
.yf1{bottom:520.053443pt;}
.y9a{bottom:520.373443pt;}
.y115{bottom:525.013441pt;}
.y12{bottom:527.413440pt;}
.ybd{bottom:527.733440pt;}
.y102{bottom:528.053439pt;}
.ye1{bottom:532.373438pt;}
.y81{bottom:533.973437pt;}
.yce{bottom:537.333436pt;}
.y99{bottom:539.573435pt;}
.yf0{bottom:542.133434pt;}
.yd{bottom:542.933433pt;}
.y63{bottom:543.893433pt;}
.ybc{bottom:546.933432pt;}
.ya9{bottom:547.093432pt;}
.ye0{bottom:551.573430pt;}
.y54{bottom:554.133429pt;}
.y98{bottom:558.773427pt;}
.y71{bottom:561.013426pt;}
.yf{bottom:561.813426pt;}
.y36{bottom:562.133426pt;}
.y24{bottom:562.613426pt;}
.yef{bottom:564.213425pt;}
.ybb{bottom:566.133424pt;}
.ya8{bottom:566.293424pt;}
.y101{bottom:569.173423pt;}
.yb{bottom:569.493423pt;}
.y11{bottom:570.453422pt;}
.ydf{bottom:570.773422pt;}
.y53{bottom:576.533420pt;}
.y114{bottom:577.973419pt;}
.y35{bottom:581.333418pt;}
.y62{bottom:582.933417pt;}
.y23{bottom:585.013417pt;}
.yba{bottom:585.333417pt;}
.yde{bottom:589.973415pt;}
.y100{bottom:591.253414pt;}
.y97{bottom:597.173412pt;}
.ya7{bottom:598.293411pt;}
.y70{bottom:599.413411pt;}
.yee{bottom:599.573411pt;}
.y7e{bottom:601.653410pt;}
.y22{bottom:607.413408pt;}
.y48{bottom:608.533407pt;}
.yff{bottom:613.333405pt;}
.yb9{bottom:613.493405pt;}
.y113{bottom:623.093401pt;}
.y61{bottom:625.813400pt;}
.y96{bottom:625.973400pt;}
.y34{bottom:629.333399pt;}
.y21{bottom:629.813399pt;}
.y52{bottom:630.933398pt;}
.yed{bottom:633.813397pt;}
.yfe{bottom:635.413397pt;}
.y6f{bottom:638.613395pt;}
.y112{bottom:645.653392pt;}
.y20{bottom:652.213390pt;}
.y10{bottom:653.813389pt;}
.y7c{bottom:655.733388pt;}
.y7d{bottom:668.533383pt;}
.ycd{bottom:668.693383pt;}
.yfd{bottom:669.333383pt;}
.ycc{bottom:676.853380pt;}
.ya6{bottom:681.013378pt;}
.y95{bottom:683.093377pt;}
.y1f{bottom:684.213377pt;}
.y47{bottom:687.893376pt;}
.y111{bottom:689.173375pt;}
.y7{bottom:702.773370pt;}
.y1e{bottom:706.613368pt;}
.hf{height:18.080000pt;}
.h10{height:40.364984pt;}
.h11{height:43.812482pt;}
.h12{height:43.874982pt;}
.h13{height:47.384981pt;}
.he{height:47.491544pt;}
.h3{height:49.907793pt;}
.hd{height:52.641229pt;}
.h4{height:52.746233pt;}
.h6{height:56.249977pt;}
.h2{height:57.218727pt;}
.h14{height:61.796225pt;}
.h8{height:65.812474pt;}
.h5{height:66.945911pt;}
.hb{height:74.812470pt;}
.ha{height:76.100907pt;}
.h7{height:84.374966pt;}
.h9{height:85.828091pt;}
.h15{height:95.555274pt;}
.h1{height:102.937459pt;}
.hc{height:114.437454pt;}
.h0{height:793.333333pt;}
.w2{width:11.360000pt;}
.w8{width:30.560000pt;}
.w7{width:40.000000pt;}
.w5{width:57.440000pt;}
.w1{width:76.480000pt;}
.w4{width:97.280000pt;}
.w6{width:102.240000pt;}
.w3{width:120.960000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x11{left:190.707924pt;}
.xf{left:198.387921pt;}
.x12{left:200.307920pt;}
.x10{left:207.987917pt;}
.x5{left:208.947916pt;}
.xb{left:213.427915pt;}
.x20{left:215.507914pt;}
.x15{left:218.387913pt;}
.xd{left:223.027911pt;}
.x2{left:225.907910pt;}
.xe{left:230.707908pt;}
.x1{left:238.227905pt;}
.x16{left:241.587903pt;}
.x14{left:246.387901pt;}
.x13{left:247.507901pt;}
.x29{left:251.027900pt;}
.x2f{left:252.307899pt;}
.x32{left:260.947896pt;}
.x23{left:291.827200pt;}
.x1f{left:306.867877pt;}
.x17{left:308.147877pt;}
.x1a{left:322.547871pt;}
.x1d{left:330.227868pt;}
.x28{left:347.027861pt;}
.xc{left:364.947854pt;}
.x6{left:404.307838pt;}
.x2c{left:423.987830pt;}
.x7{left:440.147824pt;}
.x2d{left:454.547818pt;}
.x21{left:463.507815pt;}
.x3{left:480.147808pt;}
.x18{left:482.707807pt;}
.x30{left:486.227806pt;}
.x1b{left:487.507805pt;}
.x1e{left:495.187802pt;}
.x2a{left:503.827798pt;}
.x8{left:544.147782pt;}
.x24{left:584.467200pt;}
.x9{left:639.507744pt;}
.xa{left:689.747724pt;}
.x2e{left:693.107723pt;}
.x22{left:717.587713pt;}
.x31{left:721.267711pt;}
.x1c{left:752.147699pt;}
.x2b{left:756.467697pt;}
.x19{left:759.827696pt;}
.x25{left:775.027200pt;}
.x4{left:824.467670pt;}
.x26{left:877.267200pt;}
.x27{left:922.067200pt;}
}




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