
    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_a0a22f0d0fb25f0027f0e430.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.866211;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_32b7fdc556d5e88144b4beef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_bceef1279d44a3af53083397.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_5aff7dc63204fbadd4d79e23.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.756348;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_fd4de6ad1e064370265d15ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967773;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_4b728c4da9a813187ef59137.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_78294843f9ec10977f694679.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_699c52420e1168c728f009e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_b69a04b0b94069a2d513d92e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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;}
.m12{transform:matrix(0.000000,-0.247921,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247921,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247921,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.247978,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247978,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247978,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249648,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249648,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249648,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249946,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249946,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249946,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249982,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249982,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249982,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.079326,-0.237081,0.237081,0.079326,0,0);-ms-transform:matrix(0.079326,-0.237081,0.237081,0.079326,0,0);-webkit-transform:matrix(0.079326,-0.237081,0.237081,0.079326,0,0);}
.mf{transform:matrix(0.093426,-0.231239,0.231796,0.093652,0,0);-ms-transform:matrix(0.093426,-0.231239,0.231796,0.093652,0,0);-webkit-transform:matrix(0.093426,-0.231239,0.231796,0.093652,0,0);}
.m6{transform:matrix(0.143750,-0.204535,0.204537,0.143751,0,0);-ms-transform:matrix(0.143750,-0.204535,0.204537,0.143751,0,0);-webkit-transform:matrix(0.143750,-0.204535,0.204537,0.143751,0,0);}
.m9{transform:matrix(0.216748,-0.124635,0.124622,0.216724,0,0);-ms-transform:matrix(0.216748,-0.124635,0.124622,0.216724,0,0);-webkit-transform:matrix(0.216748,-0.124635,0.124622,0.216724,0,0);}
.m13{transform:matrix(0.247351,-0.008638,0.008725,0.249848,0,0);-ms-transform:matrix(0.247351,-0.008638,0.008725,0.249848,0,0);-webkit-transform:matrix(0.247351,-0.008638,0.008725,0.249848,0,0);}
.m17{transform:matrix(0.247374,-0.017298,0.017439,0.249391,0,0);-ms-transform:matrix(0.247374,-0.017298,0.017439,0.249391,0,0);-webkit-transform:matrix(0.247374,-0.017298,0.017439,0.249391,0,0);}
.m19{transform:matrix(0.247723,0.018626,-0.018745,0.249296,0,0);-ms-transform:matrix(0.247723,0.018626,-0.018745,0.249296,0,0);-webkit-transform:matrix(0.247723,0.018626,-0.018745,0.249296,0,0);}
.m11{transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248143,-0.030468,0.030467,0.248137,0,0);-ms-transform:matrix(0.248143,-0.030468,0.030467,0.248137,0,0);-webkit-transform:matrix(0.248143,-0.030468,0.030467,0.248137,0,0);}
.m16{transform:matrix(0.248253,-0.008669,0.008725,0.249848,0,0);-ms-transform:matrix(0.248253,-0.008669,0.008725,0.249848,0,0);-webkit-transform:matrix(0.248253,-0.008669,0.008725,0.249848,0,0);}
.m18{transform:matrix(0.248390,-0.002168,0.002182,0.249990,0,0);-ms-transform:matrix(0.248390,-0.002168,0.002182,0.249990,0,0);-webkit-transform:matrix(0.248390,-0.002168,0.002182,0.249990,0,0);}
.ma{transform:matrix(0.249140,0.021359,-0.021354,0.249086,0,0);-ms-transform:matrix(0.249140,0.021359,-0.021354,0.249086,0,0);-webkit-transform:matrix(0.249140,0.021359,-0.021354,0.249086,0,0);}
.md{transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249399,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250054,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-39.972000px;}
.v9{vertical-align:-32.142000px;}
.v7{vertical-align:-30.954000px;}
.va{vertical-align:-29.766000px;}
.v4{vertical-align:-26.706000px;}
.v2{vertical-align:-23.814000px;}
.v6{vertical-align:-21.426000px;}
.vb{vertical-align:-20.412000px;}
.v3{vertical-align:-17.178000px;}
.v8{vertical-align:-14.622000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.266000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.003190px;}
.ls10{letter-spacing:0.006640px;}
.lsf{letter-spacing:0.008099px;}
.ls9{letter-spacing:0.084000px;}
.ls16{letter-spacing:0.102048px;}
.ls12{letter-spacing:0.118564px;}
.ls6{letter-spacing:0.120078px;}
.ls5{letter-spacing:0.124955px;}
.ls11{letter-spacing:0.176698px;}
.lse{letter-spacing:0.235575px;}
.ls15{letter-spacing:0.306246px;}
.ls4{letter-spacing:29.763360px;}
.lsc{letter-spacing:32.686710px;}
.lsa{letter-spacing:39.390000px;}
.ls3{letter-spacing:42.693360px;}
.ls1{letter-spacing:43.772310px;}
.ls8{letter-spacing:48.060000px;}
.ls2{letter-spacing:50.172960px;}
.ls14{letter-spacing:70.337700px;}
.lsb{letter-spacing:103.132650px;}
.ls7{letter-spacing:110.129304px;}
.ls13{letter-spacing:121.194840px;}
.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;}
}
.ws5{word-spacing:-49.924680px;}
.ws7{word-spacing:-31.340358px;}
.ws3{word-spacing:-31.220280px;}
.ws9{word-spacing:-30.250848px;}
.wsa{word-spacing:-28.816368px;}
.wsf{word-spacing:-28.080000px;}
.ws20{word-spacing:-27.850596px;}
.ws1c{word-spacing:-27.830580px;}
.ws18{word-spacing:-27.687132px;}
.ws22{word-spacing:-26.634528px;}
.ws21{word-spacing:-26.532480px;}
.ws1d{word-spacing:-26.047320px;}
.ws1e{word-spacing:-26.028600px;}
.ws19{word-spacing:-25.874160px;}
.ws11{word-spacing:-20.509728px;}
.ws16{word-spacing:-20.004324px;}
.ws15{word-spacing:-20.002656px;}
.ws6{word-spacing:-18.705960px;}
.ws0{word-spacing:-18.086640px;}
.wsb{word-spacing:-17.337192px;}
.ws4{word-spacing:-14.901120px;}
.wsc{word-spacing:-10.801968px;}
.ws1{word-spacing:-10.445760px;}
.ws2{word-spacing:0.000000px;}
.ws1f{word-spacing:43.633596px;}
.ws1b{word-spacing:43.639644px;}
.ws14{word-spacing:61.580774px;}
.ws17{word-spacing:110.965470px;}
.ws1a{word-spacing:149.136927px;}
.ws13{word-spacing:172.450321px;}
.ws12{word-spacing:172.456330px;}
.ws10{word-spacing:576.347820px;}
.wsd{word-spacing:1067.274000px;}
.wse{word-spacing:1101.636000px;}
.ws8{word-spacing:1240.525818px;}
._1f{margin-left:-2462.928395px;}
._17{margin-left:-2068.006776px;}
._1b{margin-left:-1624.494828px;}
._19{margin-left:-1512.194013px;}
._1a{margin-left:-1480.458462px;}
._1e{margin-left:-1245.714576px;}
._15{margin-left:-1048.669782px;}
._1c{margin-left:-1032.940278px;}
._24{margin-left:-964.087338px;}
._8{margin-left:-887.103744px;}
._2c{margin-left:-885.978204px;}
._20{margin-left:-818.342013px;}
._22{margin-left:-695.322965px;}
._21{margin-left:-497.025142px;}
._28{margin-left:-479.867934px;}
._2b{margin-left:-411.183318px;}
._18{margin-left:-379.434354px;}
._4{margin-left:-18.900792px;}
._6{margin-left:-16.123584px;}
._3{margin-left:-7.654956px;}
._1{margin-left:-5.185944px;}
._5{margin-left:-3.840360px;}
._0{margin-left:-1.872702px;}
._2{width:1.008378px;}
._16{width:2.164212px;}
._2d{width:3.583758px;}
._27{width:41.717958px;}
._26{width:65.645126px;}
._23{width:75.214920px;}
._7{width:85.720320px;}
._1d{width:100.168038px;}
._14{width:101.177208px;}
._b{width:103.608520px;}
._e{width:105.977879px;}
._f{width:113.024318px;}
._25{width:115.444408px;}
._c{width:123.680004px;}
._9{width:124.903519px;}
._29{width:130.983511px;}
._d{width:135.402768px;}
._11{width:139.504229px;}
._a{width:140.850836px;}
._10{width:144.219370px;}
._2a{width:146.399721px;}
._12{width:149.154477px;}
._13{width:167.225047px;}
.fcf{color:rgb(0,179,179);}
.fc10{color:rgb(50,205,50);}
.fce{color:rgb(179,0,179);}
.fcd{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fc7{color:rgb(178,178,178);}
.fc9{color:rgb(255,214,0);}
.fcc{color:rgb(0,143,0);}
.fc1{color:rgb(53,82,105);}
.fc4{color:rgb(0,144,0);}
.fc5{color:rgb(153,102,51);}
.fc6{color:rgb(255,0,0);}
.fca{color:rgb(0,176,0);}
.fc8{color:rgb(201,33,30);}
.fc2{color:rgb(255,51,51);}
.fc3{color:rgb(0,0,255);}
.fcb{color:transparent;}
.fs13{font-size:38.856000px;}
.fs14{font-size:40.140000px;}
.fs3{font-size:40.176000px;}
.fs9{font-size:46.890000px;}
.fsa{font-size:47.964000px;}
.fsc{font-size:54.084000px;}
.fs8{font-size:57.312000px;}
.fsf{font-size:60.036000px;}
.fs11{font-size:62.364000px;}
.fs12{font-size:63.036000px;}
.fs15{font-size:67.860000px;}
.fs2{font-size:69.564000px;}
.fsb{font-size:71.946000px;}
.fs17{font-size:71.952000px;}
.fs18{font-size:71.958000px;}
.fs16{font-size:73.776000px;}
.fse{font-size:89.970000px;}
.fs1a{font-size:99.516000px;}
.fs19{font-size:99.594000px;}
.fs1b{font-size:100.110000px;}
.fs1c{font-size:100.182000px;}
.fs7{font-size:102.048000px;}
.fs10{font-size:103.656000px;}
.fs4{font-size:108.000000px;}
.fsd{font-size:108.816000px;}
.fs6{font-size:120.078000px;}
.fs1{font-size:131.982000px;}
.fs0{font-size:144.054000px;}
.fs5{font-size:192.018000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y94{bottom:1.365000px;}
.yb1{bottom:1.888500px;}
.ya2{bottom:1.918500px;}
.y91{bottom:2.886000px;}
.y7{bottom:7.611000px;}
.y88{bottom:15.682500px;}
.y93{bottom:23.574000px;}
.y30{bottom:30.037500px;}
.ya1{bottom:32.506500px;}
.yb0{bottom:32.787000px;}
.y76{bottom:38.325000px;}
.y95{bottom:40.230000px;}
.y8f{bottom:45.556500px;}
.y65{bottom:49.408500px;}
.y99{bottom:51.333000px;}
.y33{bottom:52.215000px;}
.ya3{bottom:55.447500px;}
.yb2{bottom:55.959000px;}
.y55{bottom:60.336000px;}
.y9f{bottom:61.144500px;}
.y72{bottom:62.619000px;}
.y89{bottom:64.047000px;}
.y2f{bottom:66.507000px;}
.y9e{bottom:69.222000px;}
.ybc{bottom:71.407500px;}
.ybb{bottom:71.439000px;}
.y51{bottom:72.709500px;}
.y9c{bottom:73.557000px;}
.ya9{bottom:74.533500px;}
.y2c{bottom:87.346500px;}
.y70{bottom:88.866000px;}
.ya8{bottom:89.790000px;}
.y39{bottom:93.118500px;}
.y64{bottom:93.373500px;}
.y74{bottom:103.534500px;}
.y8a{bottom:113.868000px;}
.y9d{bottom:118.162500px;}
.y54{bottom:118.545000px;}
.yb8{bottom:119.670000px;}
.ycb{bottom:120.417000px;}
.yb3{bottom:123.562500px;}
.y17{bottom:123.733500px;}
.ya6{bottom:124.269000px;}
.y96{bottom:124.885500px;}
.yaf{bottom:125.772000px;}
.y49{bottom:126.241500px;}
.ya0{bottom:129.216000px;}
.yaa{bottom:130.020000px;}
.yae{bottom:131.916000px;}
.ybf{bottom:133.203000px;}
.y73{bottom:135.501000px;}
.y63{bottom:137.338500px;}
.y31{bottom:138.105000px;}
.y69{bottom:141.250500px;}
.y38{bottom:142.059000px;}
.y6f{bottom:143.292000px;}
.y86{bottom:145.971000px;}
.yba{bottom:148.651500px;}
.y48{bottom:150.733500px;}
.y9b{bottom:151.269000px;}
.y32{bottom:157.644000px;}
.y8b{bottom:163.689000px;}
.y4{bottom:168.294000px;}
.yca{bottom:171.355500px;}
.y77{bottom:174.372000px;}
.y53{bottom:176.755500px;}
.ybd{bottom:177.633000px;}
.y2d{bottom:177.870000px;}
.y85{bottom:178.582500px;}
.ya4{bottom:179.694000px;}
.y92{bottom:187.299000px;}
.yb4{bottom:193.081500px;}
.y6e{bottom:194.230500px;}
.y87{bottom:205.752000px;}
.yab{bottom:206.488500px;}
.y66{bottom:210.175500px;}
.y97{bottom:210.964500px;}
.y16{bottom:212.428500px;}
.y84{bottom:214.342500px;}
.y8c{bottom:214.923000px;}
.y62{bottom:215.277000px;}
.y75{bottom:222.960000px;}
.y4b{bottom:225.015000px;}
.yc9{bottom:225.780000px;}
.yc4{bottom:225.822000px;}
.y6d{bottom:245.169000px;}
.y71{bottom:248.398500px;}
.y15{bottom:248.740500px;}
.y83{bottom:252.993000px;}
.y68{bottom:255.160500px;}
.y59{bottom:256.978500px;}
.yb5{bottom:262.600500px;}
.y8d{bottom:264.744000px;}
.y4a{bottom:267.193500px;}
.y61{bottom:267.450000px;}
.y2e{bottom:268.392000px;}
.y56{bottom:273.448500px;}
.yc8{bottom:276.718500px;}
.y26{bottom:282.720000px;}
.yac{bottom:282.958500px;}
.y14{bottom:285.052500px;}
.y3{bottom:285.180000px;}
.y20{bottom:289.884000px;}
.y98{bottom:295.621500px;}
.y6c{bottom:296.107500px;}
.y25{bottom:301.606500px;}
.y90{bottom:303.135000px;}
.ybe{bottom:303.138000px;}
.ya5{bottom:305.899500px;}
.y78{bottom:307.357500px;}
.y1f{bottom:308.118000px;}
.y41{bottom:312.604500px;}
.y67{bottom:313.371000px;}
.y50{bottom:313.668000px;}
.y8e{bottom:314.520000px;}
.y44{bottom:314.604000px;}
.y13{bottom:317.070000px;}
.y60{bottom:318.388500px;}
.y24{bottom:319.840500px;}
.y1a{bottom:320.491500px;}
.yb9{bottom:320.541000px;}
.y9a{bottom:320.583000px;}
.yc{bottom:320.683500px;}
.yc3{bottom:325.191000px;}
.y3e{bottom:326.593500px;}
.y1e{bottom:327.004500px;}
.yd1{bottom:327.487500px;}
.yc7{bottom:327.657000px;}
.yc0{bottom:328.246500px;}
.y2{bottom:328.380000px;}
.yb6{bottom:332.119500px;}
.y40{bottom:337.096500px;}
.y45{bottom:337.479000px;}
.y23{bottom:338.727000px;}
.y43{bottom:339.094500px;}
.y19{bottom:339.378000px;}
.y1d{bottom:345.238500px;}
.y12{bottom:346.494000px;}
.y2b{bottom:346.542000px;}
.y57{bottom:350.302500px;}
.y3d{bottom:351.085500px;}
.y28{bottom:351.751500px;}
.y7b{bottom:354.636000px;}
.y4f{bottom:354.699000px;}
.y7f{bottom:356.268000px;}
.y18{bottom:357.613500px;}
.y81{bottom:359.125500px;}
.yad{bottom:359.427000px;}
.y3c{bottom:360.993000px;}
.y3f{bottom:361.588500px;}
.y42{bottom:363.586500px;}
.y1c{bottom:364.125000px;}
.y2a{bottom:364.776000px;}
.y7c{bottom:365.821500px;}
.y27{bottom:369.987000px;}
.y6b{bottom:370.050000px;}
.y5f{bottom:371.580000px;}
.yd0{bottom:372.898500px;}
.yb{bottom:375.109500px;}
.y22{bottom:375.847500px;}
.yc2{bottom:376.129500px;}
.yc6{bottom:378.595500px;}
.y79{bottom:380.826000px;}
.y80{bottom:382.314000px;}
.y11{bottom:382.804500px;}
.y1b{bottom:383.011500px;}
.y29{bottom:383.662500px;}
.y5c{bottom:388.843500px;}
.ya7{bottom:391.911000px;}
.y21{bottom:394.734000px;}
.yb7{bottom:401.638500px;}
.y4d{bottom:402.960000px;}
.y52{bottom:403.938000px;}
.y6a{bottom:404.958000px;}
.y3b{bottom:409.933500px;}
.ycf{bottom:418.309500px;}
.y10{bottom:419.116500px;}
.yc1{bottom:427.068000px;}
.ya{bottom:429.534000px;}
.y7e{bottom:429.559500px;}
.y5e{bottom:429.789000px;}
.y58{bottom:432.648000px;}
.yc5{bottom:433.021500px;}
.y5b{bottom:435.912000px;}
.y4c{bottom:443.991000px;}
.y47{bottom:446.074500px;}
.y7a{bottom:454.294500px;}
.yf{bottom:455.428500px;}
.yce{bottom:463.720500px;}
.y46{bottom:470.566500px;}
.y9{bottom:483.960000px;}
.y5a{bottom:486.468000px;}
.y5d{bottom:487.999500px;}
.ye{bottom:491.740500px;}
.y82{bottom:493.804500px;}
.y7d{bottom:500.325000px;}
.y37{bottom:507.261000px;}
.ycd{bottom:509.131500px;}
.y4e{bottom:510.364500px;}
.y36{bottom:542.041500px;}
.y35{bottom:571.465500px;}
.y3a{bottom:584.560500px;}
.yd{bottom:584.604000px;}
.ycc{bottom:584.646000px;}
.y8{bottom:587.665500px;}
.y34{bottom:610.540500px;}
.y6{bottom:614.367000px;}
.y5{bottom:638.136000px;}
.h1f{height:28.792831px;}
.h20{height:28.913670px;}
.hd{height:35.870850px;}
.he{height:36.692460px;}
.h21{height:39.061050px;}
.hc{height:43.843680px;}
.h17{height:45.927540px;}
.h1d{height:46.211724px;}
.h1e{height:46.709676px;}
.h22{height:50.232305px;}
.h12{height:51.887670px;}
.h13{height:51.893670px;}
.h5{height:53.216460px;}
.h26{height:53.316432px;}
.h27{height:53.382526px;}
.h28{height:53.404679px;}
.h6{height:53.684640px;}
.h24{height:54.668016px;}
.hf{height:55.038690px;}
.h10{height:55.111351px;}
.h18{height:59.089137px;}
.h16{height:66.598887px;}
.h2a{height:73.799154px;}
.h2d{height:74.181510px;}
.h31{height:74.296440px;}
.ha{height:75.539438px;}
.h2b{height:76.197025px;}
.h30{height:76.699041px;}
.h2f{height:76.708821px;}
.h2e{height:76.721464px;}
.h1b{height:76.809096px;}
.h1c{height:77.014519px;}
.hb{height:78.066720px;}
.h15{height:79.945312px;}
.h14{height:80.632656px;}
.h7{height:82.620000px;}
.h9{height:88.885863px;}
.h19{height:91.231137px;}
.h11{height:91.859670px;}
.h3{height:100.021869px;}
.h4{height:100.966230px;}
.h8{height:146.893770px;}
.h1a{height:285.604500px;}
.h23{height:335.862000px;}
.h25{height:345.600000px;}
.h29{height:409.081500px;}
.h2c{height:419.031000px;}
.h2{height:669.556500px;}
.h0{height:669.600000px;}
.h1{height:669.750000px;}
.w5{width:378.000000px;}
.w4{width:485.956500px;}
.w6{width:1042.666500px;}
.w7{width:1053.466500px;}
.w3{width:1172.565000px;}
.w2{width:1190.125500px;}
.w0{width:1190.168504px;}
.w1{width:1190.250000px;}
.x3e{left:-661.068000px;}
.x39{left:-219.655500px;}
.x0{left:0.000000px;}
.x58{left:14.188500px;}
.x5{left:17.178000px;}
.x57{left:19.873500px;}
.x38{left:23.295000px;}
.x62{left:28.480500px;}
.x56{left:29.832000px;}
.x6c{left:36.406500px;}
.x5d{left:41.565000px;}
.x61{left:43.647000px;}
.x55{left:51.160500px;}
.x5b{left:56.764500px;}
.x1{left:75.132000px;}
.x2{left:79.384500px;}
.x60{left:81.564000px;}
.x5c{left:85.875000px;}
.x6a{left:91.332000px;}
.x59{left:93.772500px;}
.x5f{left:95.583000px;}
.x16{left:101.593500px;}
.x8{left:107.575500px;}
.x54{left:109.189500px;}
.x5e{left:112.150500px;}
.x17{left:115.921500px;}
.x6{left:118.375500px;}
.x6d{left:120.688500px;}
.x7{left:124.200000px;}
.x13{left:135.468000px;}
.x2d{left:136.956000px;}
.x43{left:138.715500px;}
.x9{left:143.631000px;}
.xb{left:145.800000px;}
.xc{left:147.883500px;}
.x40{left:150.480000px;}
.x12{left:151.750500px;}
.x32{left:157.300500px;}
.x6b{left:158.997000px;}
.x6e{left:166.671000px;}
.xa{left:168.463500px;}
.x33{left:187.980000px;}
.xd{left:206.458500px;}
.x63{left:216.153000px;}
.x51{left:223.569000px;}
.x41{left:239.998500px;}
.x31{left:244.920000px;}
.x14{left:252.049500px;}
.x3a{left:261.583500px;}
.x3c{left:294.751500px;}
.x42{left:302.446500px;}
.x3b{left:307.600500px;}
.x1e{left:310.903500px;}
.x2a{left:320.514000px;}
.x44{left:324.720000px;}
.x1d{left:337.393500px;}
.x3d{left:377.031000px;}
.x3f{left:382.855500px;}
.x27{left:434.169000px;}
.x64{left:479.658000px;}
.x29{left:481.110000px;}
.x26{left:483.406500px;}
.x21{left:489.784500px;}
.x28{left:493.866000px;}
.x1f{left:495.907500px;}
.x46{left:497.872500px;}
.x47{left:509.656500px;}
.x20{left:513.723000px;}
.x2e{left:530.478000px;}
.xe{left:533.407500px;}
.x69{left:563.074500px;}
.x2c{left:567.892500px;}
.x68{left:572.598000px;}
.x73{left:582.300000px;}
.x5a{left:593.871000px;}
.x48{left:599.179500px;}
.x67{left:600.990000px;}
.x15{left:605.700000px;}
.x72{left:607.185000px;}
.x1c{left:615.259500px;}
.x71{left:620.608500px;}
.x65{left:627.562500px;}
.x4{left:634.138500px;}
.x37{left:639.580500px;}
.xf{left:648.034500px;}
.x6f{left:658.918500px;}
.x35{left:665.602500px;}
.x74{left:670.462500px;}
.x25{left:681.037500px;}
.x66{left:703.395000px;}
.x3{left:721.516500px;}
.x70{left:724.074000px;}
.x34{left:738.099000px;}
.x45{left:742.032000px;}
.x19{left:745.200000px;}
.x1a{left:766.800000px;}
.x36{left:773.602500px;}
.x52{left:783.808500px;}
.x1b{left:803.707500px;}
.x10{left:812.158500px;}
.x53{left:818.589000px;}
.x22{left:822.798000px;}
.x23{left:832.791000px;}
.x24{left:854.901000px;}
.x4e{left:857.029500px;}
.x4a{left:868.834500px;}
.x30{left:881.934000px;}
.x4d{left:939.910500px;}
.x2b{left:941.725500px;}
.x2f{left:958.326000px;}
.x50{left:961.951500px;}
.x4f{left:984.285000px;}
.x11{left:1016.664000px;}
.x18{left:1070.773500px;}
.x49{left:1101.208500px;}
.x4b{left:1105.297500px;}
.x4c{left:1127.338500px;}
@media print{
.v5{vertical-align:-35.530667pt;}
.v9{vertical-align:-28.570667pt;}
.v7{vertical-align:-27.514667pt;}
.va{vertical-align:-26.458667pt;}
.v4{vertical-align:-23.738667pt;}
.v2{vertical-align:-21.168000pt;}
.v6{vertical-align:-19.045333pt;}
.vb{vertical-align:-18.144000pt;}
.v3{vertical-align:-15.269333pt;}
.v8{vertical-align:-12.997333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.792000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.002836pt;}
.ls10{letter-spacing:0.005902pt;}
.lsf{letter-spacing:0.007199pt;}
.ls9{letter-spacing:0.074667pt;}
.ls16{letter-spacing:0.090709pt;}
.ls12{letter-spacing:0.105390pt;}
.ls6{letter-spacing:0.106736pt;}
.ls5{letter-spacing:0.111071pt;}
.ls11{letter-spacing:0.157065pt;}
.lse{letter-spacing:0.209400pt;}
.ls15{letter-spacing:0.272219pt;}
.ls4{letter-spacing:26.456320pt;}
.lsc{letter-spacing:29.054853pt;}
.lsa{letter-spacing:35.013333pt;}
.ls3{letter-spacing:37.949653pt;}
.ls1{letter-spacing:38.908720pt;}
.ls8{letter-spacing:42.720000pt;}
.ls2{letter-spacing:44.598187pt;}
.ls14{letter-spacing:62.522400pt;}
.lsb{letter-spacing:91.673467pt;}
.ls7{letter-spacing:97.892715pt;}
.ls13{letter-spacing:107.728747pt;}
.ws5{word-spacing:-44.377493pt;}
.ws7{word-spacing:-27.858096pt;}
.ws3{word-spacing:-27.751360pt;}
.ws9{word-spacing:-26.889643pt;}
.wsa{word-spacing:-25.614549pt;}
.wsf{word-spacing:-24.960000pt;}
.ws20{word-spacing:-24.756085pt;}
.ws1c{word-spacing:-24.738293pt;}
.ws18{word-spacing:-24.610784pt;}
.ws22{word-spacing:-23.675136pt;}
.ws21{word-spacing:-23.584427pt;}
.ws1d{word-spacing:-23.153173pt;}
.ws1e{word-spacing:-23.136533pt;}
.ws19{word-spacing:-22.999253pt;}
.ws11{word-spacing:-18.230869pt;}
.ws16{word-spacing:-17.781621pt;}
.ws15{word-spacing:-17.780139pt;}
.ws6{word-spacing:-16.627520pt;}
.ws0{word-spacing:-16.077013pt;}
.wsb{word-spacing:-15.410837pt;}
.ws4{word-spacing:-13.245440pt;}
.wsc{word-spacing:-9.601749pt;}
.ws1{word-spacing:-9.285120pt;}
.ws2{word-spacing:0.000000pt;}
.ws1f{word-spacing:38.785418pt;}
.ws1b{word-spacing:38.790795pt;}
.ws14{word-spacing:54.738466pt;}
.ws17{word-spacing:98.635973pt;}
.ws1a{word-spacing:132.566158pt;}
.ws13{word-spacing:153.289175pt;}
.ws12{word-spacing:153.294515pt;}
.ws10{word-spacing:512.309173pt;}
.wsd{word-spacing:948.688000pt;}
.wse{word-spacing:979.232000pt;}
.ws8{word-spacing:1102.689616pt;}
._1f{margin-left:-2189.269684pt;}
._17{margin-left:-1838.228245pt;}
._1b{margin-left:-1443.995403pt;}
._19{margin-left:-1344.172456pt;}
._1a{margin-left:-1315.963077pt;}
._1e{margin-left:-1107.301845pt;}
._15{margin-left:-932.150917pt;}
._1c{margin-left:-918.169136pt;}
._24{margin-left:-856.966523pt;}
._8{margin-left:-788.536661pt;}
._2c{margin-left:-787.536181pt;}
._20{margin-left:-727.415123pt;}
._22{margin-left:-618.064858pt;}
._21{margin-left:-441.800127pt;}
._28{margin-left:-426.549275pt;}
._2b{margin-left:-365.496283pt;}
._18{margin-left:-337.274981pt;}
._4{margin-left:-16.800704pt;}
._6{margin-left:-14.332075pt;}
._3{margin-left:-6.804405pt;}
._1{margin-left:-4.609728pt;}
._5{margin-left:-3.413653pt;}
._0{margin-left:-1.664624pt;}
._2{width:0.896336pt;}
._16{width:1.923744pt;}
._2d{width:3.185563pt;}
._27{width:37.082629pt;}
._26{width:58.351223pt;}
._23{width:66.857707pt;}
._7{width:76.195840pt;}
._1d{width:89.038256pt;}
._14{width:89.935296pt;}
._b{width:92.096462pt;}
._e{width:94.202559pt;}
._f{width:100.466060pt;}
._25{width:102.617252pt;}
._c{width:109.937781pt;}
._9{width:111.025350pt;}
._29{width:116.429787pt;}
._d{width:120.358016pt;}
._11{width:124.003759pt;}
._a{width:125.200743pt;}
._10{width:128.194996pt;}
._2a{width:130.133085pt;}
._12{width:132.581757pt;}
._13{width:148.644486pt;}
.fs13{font-size:34.538667pt;}
.fs14{font-size:35.680000pt;}
.fs3{font-size:35.712000pt;}
.fs9{font-size:41.680000pt;}
.fsa{font-size:42.634667pt;}
.fsc{font-size:48.074667pt;}
.fs8{font-size:50.944000pt;}
.fsf{font-size:53.365333pt;}
.fs11{font-size:55.434667pt;}
.fs12{font-size:56.032000pt;}
.fs15{font-size:60.320000pt;}
.fs2{font-size:61.834667pt;}
.fsb{font-size:63.952000pt;}
.fs17{font-size:63.957333pt;}
.fs18{font-size:63.962667pt;}
.fs16{font-size:65.578667pt;}
.fse{font-size:79.973333pt;}
.fs1a{font-size:88.458667pt;}
.fs19{font-size:88.528000pt;}
.fs1b{font-size:88.986667pt;}
.fs1c{font-size:89.050667pt;}
.fs7{font-size:90.709333pt;}
.fs10{font-size:92.138667pt;}
.fs4{font-size:96.000000pt;}
.fsd{font-size:96.725333pt;}
.fs6{font-size:106.736000pt;}
.fs1{font-size:117.317333pt;}
.fs0{font-size:128.048000pt;}
.fs5{font-size:170.682667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y94{bottom:1.213333pt;}
.yb1{bottom:1.678667pt;}
.ya2{bottom:1.705333pt;}
.y91{bottom:2.565333pt;}
.y7{bottom:6.765333pt;}
.y88{bottom:13.940000pt;}
.y93{bottom:20.954667pt;}
.y30{bottom:26.700000pt;}
.ya1{bottom:28.894667pt;}
.yb0{bottom:29.144000pt;}
.y76{bottom:34.066667pt;}
.y95{bottom:35.760000pt;}
.y8f{bottom:40.494667pt;}
.y65{bottom:43.918667pt;}
.y99{bottom:45.629333pt;}
.y33{bottom:46.413333pt;}
.ya3{bottom:49.286667pt;}
.yb2{bottom:49.741333pt;}
.y55{bottom:53.632000pt;}
.y9f{bottom:54.350667pt;}
.y72{bottom:55.661333pt;}
.y89{bottom:56.930667pt;}
.y2f{bottom:59.117333pt;}
.y9e{bottom:61.530667pt;}
.ybc{bottom:63.473333pt;}
.ybb{bottom:63.501333pt;}
.y51{bottom:64.630667pt;}
.y9c{bottom:65.384000pt;}
.ya9{bottom:66.252000pt;}
.y2c{bottom:77.641333pt;}
.y70{bottom:78.992000pt;}
.ya8{bottom:79.813333pt;}
.y39{bottom:82.772000pt;}
.y64{bottom:82.998667pt;}
.y74{bottom:92.030667pt;}
.y8a{bottom:101.216000pt;}
.y9d{bottom:105.033333pt;}
.y54{bottom:105.373333pt;}
.yb8{bottom:106.373333pt;}
.ycb{bottom:107.037333pt;}
.yb3{bottom:109.833333pt;}
.y17{bottom:109.985333pt;}
.ya6{bottom:110.461333pt;}
.y96{bottom:111.009333pt;}
.yaf{bottom:111.797333pt;}
.y49{bottom:112.214667pt;}
.ya0{bottom:114.858667pt;}
.yaa{bottom:115.573333pt;}
.yae{bottom:117.258667pt;}
.ybf{bottom:118.402667pt;}
.y73{bottom:120.445333pt;}
.y63{bottom:122.078667pt;}
.y31{bottom:122.760000pt;}
.y69{bottom:125.556000pt;}
.y38{bottom:126.274667pt;}
.y6f{bottom:127.370667pt;}
.y86{bottom:129.752000pt;}
.yba{bottom:132.134667pt;}
.y48{bottom:133.985333pt;}
.y9b{bottom:134.461333pt;}
.y32{bottom:140.128000pt;}
.y8b{bottom:145.501333pt;}
.y4{bottom:149.594667pt;}
.yca{bottom:152.316000pt;}
.y77{bottom:154.997333pt;}
.y53{bottom:157.116000pt;}
.ybd{bottom:157.896000pt;}
.y2d{bottom:158.106667pt;}
.y85{bottom:158.740000pt;}
.ya4{bottom:159.728000pt;}
.y92{bottom:166.488000pt;}
.yb4{bottom:171.628000pt;}
.y6e{bottom:172.649333pt;}
.y87{bottom:182.890667pt;}
.yab{bottom:183.545333pt;}
.y66{bottom:186.822667pt;}
.y97{bottom:187.524000pt;}
.y16{bottom:188.825333pt;}
.y84{bottom:190.526667pt;}
.y8c{bottom:191.042667pt;}
.y62{bottom:191.357333pt;}
.y75{bottom:198.186667pt;}
.y4b{bottom:200.013333pt;}
.yc9{bottom:200.693333pt;}
.yc4{bottom:200.730667pt;}
.y6d{bottom:217.928000pt;}
.y71{bottom:220.798667pt;}
.y15{bottom:221.102667pt;}
.y83{bottom:224.882667pt;}
.y68{bottom:226.809333pt;}
.y59{bottom:228.425333pt;}
.yb5{bottom:233.422667pt;}
.y8d{bottom:235.328000pt;}
.y4a{bottom:237.505333pt;}
.y61{bottom:237.733333pt;}
.y2e{bottom:238.570667pt;}
.y56{bottom:243.065333pt;}
.yc8{bottom:245.972000pt;}
.y26{bottom:251.306667pt;}
.yac{bottom:251.518667pt;}
.y14{bottom:253.380000pt;}
.y3{bottom:253.493333pt;}
.y20{bottom:257.674667pt;}
.y98{bottom:262.774667pt;}
.y6c{bottom:263.206667pt;}
.y25{bottom:268.094667pt;}
.y90{bottom:269.453333pt;}
.ybe{bottom:269.456000pt;}
.ya5{bottom:271.910667pt;}
.y78{bottom:273.206667pt;}
.y1f{bottom:273.882667pt;}
.y41{bottom:277.870667pt;}
.y67{bottom:278.552000pt;}
.y50{bottom:278.816000pt;}
.y8e{bottom:279.573333pt;}
.y44{bottom:279.648000pt;}
.y13{bottom:281.840000pt;}
.y60{bottom:283.012000pt;}
.y24{bottom:284.302667pt;}
.y1a{bottom:284.881333pt;}
.yb9{bottom:284.925333pt;}
.y9a{bottom:284.962667pt;}
.yc{bottom:285.052000pt;}
.yc3{bottom:289.058667pt;}
.y3e{bottom:290.305333pt;}
.y1e{bottom:290.670667pt;}
.yd1{bottom:291.100000pt;}
.yc7{bottom:291.250667pt;}
.yc0{bottom:291.774667pt;}
.y2{bottom:291.893333pt;}
.yb6{bottom:295.217333pt;}
.y40{bottom:299.641333pt;}
.y45{bottom:299.981333pt;}
.y23{bottom:301.090667pt;}
.y43{bottom:301.417333pt;}
.y19{bottom:301.669333pt;}
.y1d{bottom:306.878667pt;}
.y12{bottom:307.994667pt;}
.y2b{bottom:308.037333pt;}
.y57{bottom:311.380000pt;}
.y3d{bottom:312.076000pt;}
.y28{bottom:312.668000pt;}
.y7b{bottom:315.232000pt;}
.y4f{bottom:315.288000pt;}
.y7f{bottom:316.682667pt;}
.y18{bottom:317.878667pt;}
.y81{bottom:319.222667pt;}
.yad{bottom:319.490667pt;}
.y3c{bottom:320.882667pt;}
.y3f{bottom:321.412000pt;}
.y42{bottom:323.188000pt;}
.y1c{bottom:323.666667pt;}
.y2a{bottom:324.245333pt;}
.y7c{bottom:325.174667pt;}
.y27{bottom:328.877333pt;}
.y6b{bottom:328.933333pt;}
.y5f{bottom:330.293333pt;}
.yd0{bottom:331.465333pt;}
.yb{bottom:333.430667pt;}
.y22{bottom:334.086667pt;}
.yc2{bottom:334.337333pt;}
.yc6{bottom:336.529333pt;}
.y79{bottom:338.512000pt;}
.y80{bottom:339.834667pt;}
.y11{bottom:340.270667pt;}
.y1b{bottom:340.454667pt;}
.y29{bottom:341.033333pt;}
.y5c{bottom:345.638667pt;}
.ya7{bottom:348.365333pt;}
.y21{bottom:350.874667pt;}
.yb7{bottom:357.012000pt;}
.y4d{bottom:358.186667pt;}
.y52{bottom:359.056000pt;}
.y6a{bottom:359.962667pt;}
.y3b{bottom:364.385333pt;}
.ycf{bottom:371.830667pt;}
.y10{bottom:372.548000pt;}
.yc1{bottom:379.616000pt;}
.ya{bottom:381.808000pt;}
.y7e{bottom:381.830667pt;}
.y5e{bottom:382.034667pt;}
.y58{bottom:384.576000pt;}
.yc5{bottom:384.908000pt;}
.y5b{bottom:387.477333pt;}
.y4c{bottom:394.658667pt;}
.y47{bottom:396.510667pt;}
.y7a{bottom:403.817333pt;}
.yf{bottom:404.825333pt;}
.yce{bottom:412.196000pt;}
.y46{bottom:418.281333pt;}
.y9{bottom:430.186667pt;}
.y5a{bottom:432.416000pt;}
.y5d{bottom:433.777333pt;}
.ye{bottom:437.102667pt;}
.y82{bottom:438.937333pt;}
.y7d{bottom:444.733333pt;}
.y37{bottom:450.898667pt;}
.ycd{bottom:452.561333pt;}
.y4e{bottom:453.657333pt;}
.y36{bottom:481.814667pt;}
.y35{bottom:507.969333pt;}
.y3a{bottom:519.609333pt;}
.yd{bottom:519.648000pt;}
.ycc{bottom:519.685333pt;}
.y8{bottom:522.369333pt;}
.y34{bottom:542.702667pt;}
.y6{bottom:546.104000pt;}
.y5{bottom:567.232000pt;}
.h1f{height:25.593628pt;}
.h20{height:25.701040pt;}
.hd{height:31.885200pt;}
.he{height:32.615520pt;}
.h21{height:34.720933pt;}
.hc{height:38.972160pt;}
.h17{height:40.824480pt;}
.h1d{height:41.077088pt;}
.h1e{height:41.519712pt;}
.h22{height:44.650937pt;}
.h12{height:46.122373pt;}
.h13{height:46.127707pt;}
.h5{height:47.303520pt;}
.h26{height:47.392384pt;}
.h27{height:47.451134pt;}
.h28{height:47.470826pt;}
.h6{height:47.719680pt;}
.h24{height:48.593792pt;}
.hf{height:48.923280pt;}
.h10{height:48.987867pt;}
.h18{height:52.523677pt;}
.h16{height:59.199010pt;}
.h2a{height:65.599248pt;}
.h2d{height:65.939120pt;}
.h31{height:66.041280pt;}
.ha{height:67.146167pt;}
.h2b{height:67.730689pt;}
.h30{height:68.176925pt;}
.h2f{height:68.185619pt;}
.h2e{height:68.196857pt;}
.h1b{height:68.274752pt;}
.h1c{height:68.457350pt;}
.hb{height:69.392640pt;}
.h15{height:71.062500pt;}
.h14{height:71.673472pt;}
.h7{height:73.440000pt;}
.h9{height:79.009656pt;}
.h19{height:81.094344pt;}
.h11{height:81.653040pt;}
.h3{height:88.908328pt;}
.h4{height:89.747760pt;}
.h8{height:130.572240pt;}
.h1a{height:253.870667pt;}
.h23{height:298.544000pt;}
.h25{height:307.200000pt;}
.h29{height:363.628000pt;}
.h2c{height:372.472000pt;}
.h2{height:595.161333pt;}
.h0{height:595.200000pt;}
.h1{height:595.333333pt;}
.w5{width:336.000000pt;}
.w4{width:431.961333pt;}
.w6{width:926.814667pt;}
.w7{width:936.414667pt;}
.w3{width:1042.280000pt;}
.w2{width:1057.889333pt;}
.w0{width:1057.927559pt;}
.w1{width:1058.000000pt;}
.x3e{left:-587.616000pt;}
.x39{left:-195.249333pt;}
.x0{left:0.000000pt;}
.x58{left:12.612000pt;}
.x5{left:15.269333pt;}
.x57{left:17.665333pt;}
.x38{left:20.706667pt;}
.x62{left:25.316000pt;}
.x56{left:26.517333pt;}
.x6c{left:32.361333pt;}
.x5d{left:36.946667pt;}
.x61{left:38.797333pt;}
.x55{left:45.476000pt;}
.x5b{left:50.457333pt;}
.x1{left:66.784000pt;}
.x2{left:70.564000pt;}
.x60{left:72.501333pt;}
.x5c{left:76.333333pt;}
.x6a{left:81.184000pt;}
.x59{left:83.353333pt;}
.x5f{left:84.962667pt;}
.x16{left:90.305333pt;}
.x8{left:95.622667pt;}
.x54{left:97.057333pt;}
.x5e{left:99.689333pt;}
.x17{left:103.041333pt;}
.x6{left:105.222667pt;}
.x6d{left:107.278667pt;}
.x7{left:110.400000pt;}
.x13{left:120.416000pt;}
.x2d{left:121.738667pt;}
.x43{left:123.302667pt;}
.x9{left:127.672000pt;}
.xb{left:129.600000pt;}
.xc{left:131.452000pt;}
.x40{left:133.760000pt;}
.x12{left:134.889333pt;}
.x32{left:139.822667pt;}
.x6b{left:141.330667pt;}
.x6e{left:148.152000pt;}
.xa{left:149.745333pt;}
.x33{left:167.093333pt;}
.xd{left:183.518667pt;}
.x63{left:192.136000pt;}
.x51{left:198.728000pt;}
.x41{left:213.332000pt;}
.x31{left:217.706667pt;}
.x14{left:224.044000pt;}
.x3a{left:232.518667pt;}
.x3c{left:262.001333pt;}
.x42{left:268.841333pt;}
.x3b{left:273.422667pt;}
.x1e{left:276.358667pt;}
.x2a{left:284.901333pt;}
.x44{left:288.640000pt;}
.x1d{left:299.905333pt;}
.x3d{left:335.138667pt;}
.x3f{left:340.316000pt;}
.x27{left:385.928000pt;}
.x64{left:426.362667pt;}
.x29{left:427.653333pt;}
.x26{left:429.694667pt;}
.x21{left:435.364000pt;}
.x28{left:438.992000pt;}
.x1f{left:440.806667pt;}
.x46{left:442.553333pt;}
.x47{left:453.028000pt;}
.x20{left:456.642667pt;}
.x2e{left:471.536000pt;}
.xe{left:474.140000pt;}
.x69{left:500.510667pt;}
.x2c{left:504.793333pt;}
.x68{left:508.976000pt;}
.x73{left:517.600000pt;}
.x5a{left:527.885333pt;}
.x48{left:532.604000pt;}
.x67{left:534.213333pt;}
.x15{left:538.400000pt;}
.x72{left:539.720000pt;}
.x1c{left:546.897333pt;}
.x71{left:551.652000pt;}
.x65{left:557.833333pt;}
.x4{left:563.678667pt;}
.x37{left:568.516000pt;}
.xf{left:576.030667pt;}
.x6f{left:585.705333pt;}
.x35{left:591.646667pt;}
.x74{left:595.966667pt;}
.x25{left:605.366667pt;}
.x66{left:625.240000pt;}
.x3{left:641.348000pt;}
.x70{left:643.621333pt;}
.x34{left:656.088000pt;}
.x45{left:659.584000pt;}
.x19{left:662.400000pt;}
.x1a{left:681.600000pt;}
.x36{left:687.646667pt;}
.x52{left:696.718667pt;}
.x1b{left:714.406667pt;}
.x10{left:721.918667pt;}
.x53{left:727.634667pt;}
.x22{left:731.376000pt;}
.x23{left:740.258667pt;}
.x24{left:759.912000pt;}
.x4e{left:761.804000pt;}
.x4a{left:772.297333pt;}
.x30{left:783.941333pt;}
.x4d{left:835.476000pt;}
.x2b{left:837.089333pt;}
.x2f{left:851.845333pt;}
.x50{left:855.068000pt;}
.x4f{left:874.920000pt;}
.x11{left:903.701333pt;}
.x18{left:951.798667pt;}
.x49{left:978.852000pt;}
.x4b{left:982.486667pt;}
.x4c{left:1002.078667pt;}
}




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