
    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_1114c99fe228944802799461.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_e5f21ab9154f0b14a12c1423.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_509f2f2d90c93229ffdf4739.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_94a4f1712927eef583c50b1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_c5d718e4841df59582074065.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_ecba70c3858ccd85c0577747.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_8611a992d4a21a4a3ea59495.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_e4adc95a8c5462f98e624bcf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.166504;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_330b0d9f99f6a09b0079deb1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.060059;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:ffb;src:url('chunks/assets/font_77cbfca642cc94d41d4bbb3a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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:ffc;src:url('chunks/assets/font_ee306eb5e8b60eff42188ccc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.977539;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:ffd;src:url('chunks/assets/font_ac9619cc356b1b81640f63d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.800293;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:ffe;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.688477;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:fff;src:url('chunks/assets/font_3e58b77da5706e65ac42cba4.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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:ff10;src:url('chunks/assets/font_f0bafe255dfbaa92289a3af5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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:ff11;src:url('chunks/assets/font_55e66f65e02a030f0683f436.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.220638,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.220638,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.220638,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.474905px;}
.ls5{letter-spacing:-0.930000px;}
.lsb{letter-spacing:-0.536400px;}
.ls6{letter-spacing:-0.450000px;}
.lsc{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.208200px;}
.ls7{letter-spacing:-0.140400px;}
.ls9{letter-spacing:-0.085200px;}
.ls3{letter-spacing:-0.034560px;}
.ls10{letter-spacing:-0.014749px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.326400px;}
.ls13{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.499501px;}
.ls1{letter-spacing:0.666000px;}
.ls16{letter-spacing:0.720000px;}
.ls17{letter-spacing:1.764000px;}
.lse{letter-spacing:3.972412px;}
.ls18{letter-spacing:17.280000px;}
.ls12{letter-spacing:22.320000px;}
.ls8{letter-spacing:28.080000px;}
.ls11{letter-spacing:30.240000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.532800px;}
.wsb{word-spacing:-18.072000px;}
.ws19{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.784000px;}
.ws1{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.935680px;}
.ws3{word-spacing:-14.572800px;}
.ws17{word-spacing:-11.823825px;}
.ws1b{word-spacing:-11.701440px;}
.ws10{word-spacing:-11.061791px;}
.ws7{word-spacing:-10.674000px;}
.wsa{word-spacing:-10.527600px;}
.ws9{word-spacing:-10.472400px;}
.ws1c{word-spacing:-10.263840px;}
.ws4{word-spacing:-9.937440px;}
.ws5{word-spacing:-9.729240px;}
.wsc{word-spacing:-9.401040px;}
.ws6{word-spacing:-9.007440px;}
.wsd{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.ws12{word-spacing:43.588372px;}
.ws11{word-spacing:49.487993px;}
.ws18{word-spacing:75.180846px;}
.ws16{word-spacing:84.925054px;}
.ws13{word-spacing:93.774487px;}
.ws14{word-spacing:155.799176px;}
.ws15{word-spacing:164.648608px;}
.wse{word-spacing:202.760164px;}
.wsf{word-spacing:416.685363px;}
._43{margin-left:-5.274017px;}
._24{margin-left:-4.211591px;}
._31{margin-left:-3.206739px;}
._6{margin-left:-2.160000px;}
._0{margin-left:-1.134000px;}
._5{width:1.728000px;}
._13{width:2.794800px;}
._8{width:4.464000px;}
._9{width:5.544000px;}
._4{width:7.488000px;}
._7{width:8.640000px;}
._12{width:10.368000px;}
._f{width:11.736000px;}
._d{width:12.816000px;}
._e{width:14.040000px;}
._16{width:15.120000px;}
._20{width:16.128000px;}
._14{width:17.887680px;}
._c{width:19.008000px;}
._10{width:20.160000px;}
._11{width:21.240000px;}
._1e{width:23.184000px;}
._1f{width:24.336000px;}
._49{width:25.344000px;}
._1b{width:26.352000px;}
._19{width:27.360000px;}
._1a{width:28.728000px;}
._4d{width:29.802000px;}
._2{width:30.870000px;}
._1c{width:32.472000px;}
._1d{width:33.756000px;}
._b{width:34.770000px;}
._a{width:35.910000px;}
._17{width:37.584000px;}
._18{width:38.934000px;}
._34{width:44.772573px;}
._4c{width:46.422000px;}
._4e{width:66.150000px;}
._39{width:71.879294px;}
._3d{width:78.321445px;}
._4a{width:91.512000px;}
._4b{width:92.592000px;}
._27{width:95.037350px;}
._42{width:96.328814px;}
._21{width:97.992000px;}
._3c{width:132.953964px;}
._2e{width:139.833422px;}
._3b{width:145.921587px;}
._25{width:147.774608px;}
._37{width:154.771020px;}
._40{width:158.788557px;}
._38{width:160.279835px;}
._29{width:174.235494px;}
._35{width:175.666347px;}
._3a{width:180.017123px;}
._28{width:188.866555px;}
._2d{width:199.004516px;}
._2b{width:204.813921px;}
._45{width:246.517736px;}
._44{width:270.273858px;}
._32{width:296.155258px;}
._3e{width:366.488332px;}
._23{width:378.888897px;}
._2c{width:386.840688px;}
._33{width:411.692018px;}
._41{width:416.265592px;}
._47{width:422.839787px;}
._2a{width:442.593257px;}
._22{width:449.952248px;}
._48{width:451.681966px;}
._36{width:466.700479px;}
._26{width:481.479724px;}
._30{width:483.859433px;}
._3f{width:513.863536px;}
._2f{width:518.080443px;}
._46{width:576.875720px;}
._3{width:1091.557200px;}
._15{width:1337.370240px;}
._1{width:2098.266000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc8{color:rgb(34,34,34);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fsb{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fsc{font-size:44.247163px;}
.fs0{font-size:45.360000px;}
.fsd{font-size:47.295300px;}
.fs9{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y30{bottom:-14.970000px;}
.y0{bottom:0.000000px;}
.y34{bottom:1.080000px;}
.yde{bottom:1.293002px;}
.yd6{bottom:1.301680px;}
.y2f{bottom:1.590000px;}
.y2e{bottom:2.670000px;}
.yc9{bottom:3.254199px;}
.y3{bottom:4.500000px;}
.yce{bottom:4.555879px;}
.ye3{bottom:5.206723px;}
.ye9{bottom:5.206724px;}
.yef{bottom:5.206725px;}
.yf5{bottom:5.206726px;}
.yfb{bottom:5.206727px;}
.y65{bottom:5.940000px;}
.ya2{bottom:6.120000px;}
.yc6{bottom:7.159238px;}
.yd1{bottom:7.810078px;}
.yd4{bottom:7.810079px;}
.ydc{bottom:7.810080px;}
.y32{bottom:9.330000px;}
.ycf{bottom:11.715117px;}
.y15c{bottom:14.400000px;}
.ya1{bottom:14.940000px;}
.yfd{bottom:15.120000px;}
.y64{bottom:15.660000px;}
.ycc{bottom:16.270995px;}
.yca{bottom:16.947868px;}
.y39{bottom:19.800000px;}
.yd2{bottom:21.499408px;}
.y3c{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y35{bottom:36.180000px;}
.y37{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.yc7{bottom:56.015611px;}
.y33{bottom:70.200000px;}
.y2c{bottom:111.780000px;}
.y2b{bottom:119.340000px;}
.yc4{bottom:123.660000px;}
.y15b{bottom:125.280000px;}
.y86{bottom:126.720000px;}
.yd7{bottom:134.836648px;}
.ye1{bottom:134.836650px;}
.ye7{bottom:134.836652px;}
.yed{bottom:134.836653px;}
.yf3{bottom:134.836654px;}
.yf9{bottom:134.836655px;}
.y2a{bottom:137.340000px;}
.ya0{bottom:141.660000px;}
.y11c{bottom:142.740000px;}
.yc3{bottom:147.420000px;}
.y15a{bottom:149.040000px;}
.y85{bottom:150.480000px;}
.y63{bottom:159.300000px;}
.y9f{bottom:165.600000px;}
.y11b{bottom:166.500000px;}
.yc2{bottom:171.360000px;}
.y29{bottom:172.080000px;}
.y159{bottom:172.800000px;}
.y84{bottom:174.240000px;}
.y13c{bottom:181.080000px;}
.y16f{bottom:181.620000px;}
.y62{bottom:183.060000px;}
.y9e{bottom:189.360000px;}
.y11a{bottom:190.440000px;}
.y28{bottom:195.840000px;}
.y83{bottom:198.180000px;}
.y13b{bottom:204.840000px;}
.y16e{bottom:205.380000px;}
.y61{bottom:207.030000px;}
.yc1{bottom:210.090000px;}
.y158{bottom:211.710000px;}
.y9d{bottom:213.150000px;}
.y119{bottom:214.230000px;}
.y27{bottom:219.450000px;}
.y82{bottom:221.970000px;}
.y60{bottom:230.790000px;}
.y157{bottom:235.470000px;}
.y9c{bottom:236.910000px;}
.y118{bottom:237.990000px;}
.y26{bottom:242.670000px;}
.y13a{bottom:243.750000px;}
.y16d{bottom:244.290000px;}
.yc0{bottom:244.650000px;}
.y81{bottom:245.730000px;}
.yc5{bottom:245.885831px;}
.yd3{bottom:245.885832px;}
.yda{bottom:245.885833px;}
.ye2{bottom:245.885834px;}
.ye8{bottom:245.885836px;}
.yee{bottom:245.885837px;}
.yf4{bottom:245.885838px;}
.yfa{bottom:245.885839px;}
.y5f{bottom:254.550000px;}
.y156{bottom:259.230000px;}
.y9b{bottom:260.670000px;}
.y117{bottom:261.750000px;}
.y25{bottom:264.990000px;}
.yd5{bottom:266.083560px;}
.ye0{bottom:266.083562px;}
.ye6{bottom:266.083563px;}
.yec{bottom:266.083564px;}
.yf2{bottom:266.083565px;}
.yf8{bottom:266.083567px;}
.y139{bottom:267.510000px;}
.y16c{bottom:268.050000px;}
.y80{bottom:269.490000px;}
.y5e{bottom:278.310000px;}
.y155{bottom:282.990000px;}
.y9a{bottom:284.610000px;}
.y116{bottom:285.690000px;}
.y24{bottom:287.130000px;}
.y7f{bottom:293.430000px;}
.y138{bottom:306.390000px;}
.y16b{bottom:306.930000px;}
.y99{bottom:308.370000px;}
.y5d{bottom:309.090000px;}
.y115{bottom:309.450000px;}
.y23{bottom:310.350000px;}
.y7e{bottom:317.190000px;}
.y154{bottom:321.870000px;}
.ybe{bottom:326.550000px;}
.y137{bottom:330.150000px;}
.y16a{bottom:330.690000px;}
.y98{bottom:332.130000px;}
.y114{bottom:333.210000px;}
.y22{bottom:334.110000px;}
.y126{bottom:340.950000px;}
.y153{bottom:345.630000px;}
.y7d{bottom:347.790000px;}
.y5c{bottom:348.150000px;}
.ybd{bottom:350.310000px;}
.y136{bottom:353.910000px;}
.y169{bottom:354.450000px;}
.y97{bottom:355.890000px;}
.y113{bottom:356.970000px;}
.y21{bottom:367.410000px;}
.y125{bottom:371.730000px;}
.y5b{bottom:372.090000px;}
.ybc{bottom:374.070000px;}
.y96{bottom:379.830000px;}
.y112{bottom:380.730000px;}
.y152{bottom:384.510000px;}
.y7c{bottom:387.030000px;}
.y135{bottom:392.790000px;}
.y168{bottom:393.330000px;}
.y5a{bottom:395.850000px;}
.y95{bottom:403.590000px;}
.y111{bottom:404.670000px;}
.ybb{bottom:404.850000px;}
.y151{bottom:408.270000px;}
.y20{bottom:409.890000px;}
.y7b{bottom:410.790000px;}
.y134{bottom:416.550000px;}
.y167{bottom:417.090000px;}
.y59{bottom:419.610000px;}
.y94{bottom:427.350000px;}
.y1f{bottom:433.650000px;}
.y7a{bottom:434.550000px;}
.y110{bottom:435.270000px;}
.y58{bottom:443.415000px;}
.yba{bottom:443.955000px;}
.y150{bottom:447.195000px;}
.y93{bottom:451.155000px;}
.y133{bottom:455.475000px;}
.y166{bottom:456.015000px;}
.y1e{bottom:457.455000px;}
.y79{bottom:458.535000px;}
.ydb{bottom:463.094197px;}
.yd8{bottom:465.046717px;}
.yb9{bottom:467.715000px;}
.y14f{bottom:470.955000px;}
.y10f{bottom:474.555000px;}
.y92{bottom:475.095000px;}
.y132{bottom:479.235000px;}
.y165{bottom:479.775000px;}
.y1d{bottom:481.215000px;}
.y57{bottom:482.295000px;}
.yb8{bottom:491.655000px;}
.y10e{bottom:498.315000px;}
.y1c{bottom:505.155000px;}
.y91{bottom:505.695000px;}
.y56{bottom:506.055000px;}
.y14e{bottom:509.655000px;}
.yb7{bottom:515.415000px;}
.y131{bottom:517.935000px;}
.y164{bottom:518.475000px;}
.y10d{bottom:522.075000px;}
.y1b{bottom:528.915000px;}
.y55{bottom:529.815000px;}
.y14d{bottom:533.595000px;}
.yb6{bottom:539.175000px;}
.y130{bottom:541.875000px;}
.y163{bottom:542.415000px;}
.y90{bottom:544.935000px;}
.y10c{bottom:546.015000px;}
.y1a{bottom:552.675000px;}
.y54{bottom:553.755000px;}
.y14c{bottom:557.355000px;}
.yb5{bottom:562.935000px;}
.y8f{bottom:568.695000px;}
.y10b{bottom:569.775000px;}
.yd0{bottom:575.776258px;}
.y19{bottom:576.435000px;}
.y53{bottom:577.515000px;}
.y12f{bottom:580.575000px;}
.y162{bottom:581.115000px;}
.yb4{bottom:586.875000px;}
.y8e{bottom:592.455000px;}
.y10a{bottom:593.535000px;}
.y14b{bottom:596.055000px;}
.y18{bottom:600.375000px;}
.y52{bottom:601.275000px;}
.y12e{bottom:604.335000px;}
.y161{bottom:604.875000px;}
.yb3{bottom:610.635000px;}
.y8d{bottom:616.215000px;}
.y109{bottom:617.295000px;}
.y14a{bottom:619.995000px;}
.y17{bottom:624.135000px;}
.y51{bottom:625.035000px;}
.y160{bottom:628.815000px;}
.yb2{bottom:634.395000px;}
.y12d{bottom:635.115000px;}
.y8c{bottom:640.155000px;}
.y108{bottom:641.055000px;}
.y149{bottom:643.755000px;}
.yc8{bottom:645.154340px;}
.y16{bottom:647.895000px;}
.y50{bottom:648.975000px;}
.y8b{bottom:663.915000px;}
.yb1{bottom:665.175000px;}
.y15f{bottom:667.515000px;}
.y15{bottom:671.655000px;}
.y4f{bottom:672.735000px;}
.y12c{bottom:674.175000px;}
.y78{bottom:679.605000px;}
.y107{bottom:679.965000px;}
.y148{bottom:682.665000px;}
.ycb{bottom:684.248116px;}
.y8a{bottom:687.705000px;}
.y15e{bottom:691.305000px;}
.y14{bottom:695.445000px;}
.y124{bottom:696.525000px;}
.y106{bottom:703.725000px;}
.yb0{bottom:704.265000px;}
.y12b{bottom:704.985000px;}
.y147{bottom:706.425000px;}
.y4e{bottom:711.465000px;}
.y77{bottom:718.845000px;}
.y123{bottom:720.285000px;}
.y105{bottom:727.665000px;}
.yaf{bottom:728.025000px;}
.y13{bottom:728.925000px;}
.y146{bottom:730.185000px;}
.y4d{bottom:735.405000px;}
.y76{bottom:742.605000px;}
.y122{bottom:744.225000px;}
.ycd{bottom:748.073804px;}
.y104{bottom:751.425000px;}
.yae{bottom:751.965000px;}
.y15d{bottom:753.945000px;}
.y4c{bottom:759.165000px;}
.y75{bottom:766.365000px;}
.y12{bottom:767.085000px;}
.y121{bottom:767.985000px;}
.y145{bottom:769.065000px;}
.y103{bottom:775.185000px;}
.yad{bottom:775.725000px;}
.ydd{bottom:778.038470px;}
.ye4{bottom:778.038471px;}
.yea{bottom:778.038473px;}
.yf0{bottom:778.038474px;}
.yf6{bottom:778.038475px;}
.y4b{bottom:782.925000px;}
.y74{bottom:790.125000px;}
.y12a{bottom:791.745000px;}
.y144{bottom:792.825000px;}
.y11{bottom:794.625000px;}
.y120{bottom:798.585000px;}
.y102{bottom:798.945000px;}
.yac{bottom:799.485000px;}
.y4a{bottom:806.685000px;}
.y73{bottom:814.065000px;}
.y129{bottom:815.505000px;}
.y143{bottom:816.585000px;}
.yf{bottom:817.845000px;}
.y101{bottom:822.705000px;}
.yab{bottom:823.245000px;}
.y10{bottom:825.405000px;}
.y173{bottom:826.125000px;}
.y49{bottom:830.625000px;}
.ye{bottom:836.565000px;}
.y72{bottom:837.825000px;}
.y128{bottom:839.265000px;}
.y100{bottom:846.645000px;}
.yaa{bottom:847.185000px;}
.y48{bottom:854.385000px;}
.y142{bottom:855.465000px;}
.y71{bottom:861.585000px;}
.yd{bottom:864.105000px;}
.y172{bottom:864.825000px;}
.y127{bottom:870.045000px;}
.ya9{bottom:870.945000px;}
.y47{bottom:878.145000px;}
.y141{bottom:879.225000px;}
.yc{bottom:884.985000px;}
.y70{bottom:885.345000px;}
.y171{bottom:888.585000px;}
.ya8{bottom:894.705000px;}
.y46{bottom:901.905000px;}
.y140{bottom:902.985000px;}
.yb{bottom:908.205000px;}
.y6f{bottom:909.285000px;}
.ya7{bottom:918.510000px;}
.y45{bottom:925.890000px;}
.yd9{bottom:927.184912px;}
.ydf{bottom:927.184913px;}
.ye5{bottom:927.184915px;}
.yeb{bottom:927.184916px;}
.yf1{bottom:927.184917px;}
.yf7{bottom:927.184918px;}
.yfc{bottom:927.184919px;}
.y170{bottom:927.510000px;}
.y6e{bottom:933.090000px;}
.y13f{bottom:941.910000px;}
.ya6{bottom:942.450000px;}
.ya{bottom:944.610000px;}
.y89{bottom:949.650000px;}
.y6d{bottom:956.850000px;}
.y44{bottom:964.590000px;}
.y13e{bottom:965.670000px;}
.ya5{bottom:966.210000px;}
.y88{bottom:973.410000px;}
.y9{bottom:973.590000px;}
.yff{bottom:980.610000px;}
.y31{bottom:983.880000px;}
.y43{bottom:988.350000px;}
.y13d{bottom:989.430000px;}
.ya4{bottom:989.970000px;}
.y2d{bottom:991.260000px;}
.y8{bottom:993.390000px;}
.y6c{bottom:995.730000px;}
.y87{bottom:1004.010000px;}
.yfe{bottom:1004.370000px;}
.y42{bottom:1012.290000px;}
.y6b{bottom:1019.490000px;}
.ya3{bottom:1020.570000px;}
.y7{bottom:1027.590000px;}
.y11f{bottom:1028.310000px;}
.y41{bottom:1036.050000px;}
.y6a{bottom:1043.250000px;}
.y11e{bottom:1052.070000px;}
.y40{bottom:1059.810000px;}
.y6{bottom:1062.870000px;}
.y69{bottom:1067.010000px;}
.y11d{bottom:1075.830000px;}
.y3f{bottom:1083.570000px;}
.y68{bottom:1090.950000px;}
.ybf{bottom:1099.230000px;}
.y5{bottom:1101.030000px;}
.y3e{bottom:1107.510000px;}
.y67{bottom:1114.710000px;}
.y3d{bottom:1138.110000px;}
.y66{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y3b{bottom:1183.500000px;}
.y3a{bottom:1197.540000px;}
.y36{bottom:1207.800000px;}
.y38{bottom:1241.640000px;}
.h15{height:13.320000px;}
.h13{height:14.580000px;}
.h20{height:18.000000px;}
.h22{height:18.180000px;}
.h1d{height:18.945352px;}
.h17{height:21.240000px;}
.h1c{height:24.380859px;}
.h18{height:24.660000px;}
.h28{height:29.309485px;}
.h1e{height:36.168398px;}
.h2{height:38.405391px;}
.h26{height:38.442937px;}
.h14{height:38.464805px;}
.h5{height:38.469727px;}
.h11{height:38.671172px;}
.h1f{height:40.843828px;}
.h6{height:42.573164px;}
.hc{height:42.759141px;}
.h1a{height:43.057617px;}
.h29{height:43.426170px;}
.h24{height:44.592844px;}
.h2d{height:46.394658px;}
.h2c{height:46.417751px;}
.h1b{height:47.650430px;}
.h19{height:49.680000px;}
.h21{height:52.066406px;}
.h16{height:52.817344px;}
.h4{height:53.709961px;}
.h8{height:54.421875px;}
.hf{height:56.084062px;}
.h12{height:59.439023px;}
.h27{height:63.174848px;}
.h3{height:65.884219px;}
.ha{height:67.824844px;}
.he{height:70.628906px;}
.h9{height:70.664062px;}
.hd{height:71.324297px;}
.h10{height:72.562500px;}
.h7{height:91.441406px;}
.h2a{height:102.251269px;}
.h2b{height:148.504282px;}
.h25{height:830.454202px;}
.h23{height:830.454211px;}
.hb{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:24.360521px;}
.w10{width:27.310332px;}
.w11{width:30.260143px;}
.wd{width:30.284725px;}
.we{width:31.735048px;}
.wf{width:32.497083px;}
.w13{width:37.634670px;}
.w12{width:37.659252px;}
.wb{width:41.346515px;}
.w9{width:77.400000px;}
.w7{width:79.020000px;}
.w8{width:96.300000px;}
.w3{width:104.760000px;}
.w4{width:132.480000px;}
.w5{width:189.540000px;}
.w6{width:626.400000px;}
.wa{width:674.761008px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:8.844516px;}
.x10{left:10.836000px;}
.x16{left:12.210000px;}
.x12{left:15.555000px;}
.x22{left:17.718530px;}
.x2b{left:19.203269px;}
.xe{left:20.310000px;}
.x2f{left:23.623068px;}
.x20{left:25.094668px;}
.x2a{left:26.577796px;}
.x3a{left:30.265059px;}
.x23{left:31.730132px;}
.x41{left:37.659252px;}
.x21{left:39.134157px;}
.x17{left:41.220000px;}
.x18{left:47.700000px;}
.x24{left:58.329204px;}
.x26{left:83.432094px;}
.x13{left:93.420000px;}
.x1{left:108.036000px;}
.xc{left:112.896000px;}
.x2{left:116.496000px;}
.xf{left:117.540000px;}
.x19{left:127.836000px;}
.x28{left:136.577853px;}
.x25{left:150.844655px;}
.x2c{left:164.620721px;}
.x4c{left:171.930000px;}
.x27{left:175.947545px;}
.x30{left:193.430540px;}
.x1b{left:195.330000px;}
.x1a{left:201.450000px;}
.x3{left:202.710000px;}
.xa{left:213.150000px;}
.x29{left:226.138576px;}
.x1d{left:249.870000px;}
.x2d{left:257.165670px;}
.x31{left:282.258728px;}
.x34{left:286.447909px;}
.x32{left:314.731229px;}
.x36{left:317.450421px;}
.xb{left:324.075000px;}
.x33{left:347.970680px;}
.x7{left:349.275000px;}
.x38{left:352.159862px;}
.x11{left:366.300000px;}
.x35{left:376.013549px;}
.x3b{left:390.556566px;}
.x5{left:402.555000px;}
.x37{left:407.011144px;}
.x3d{left:428.923772px;}
.x39{left:438.033322px;}
.x14{left:454.965000px;}
.x3f{left:467.320477px;}
.x4{left:473.505000px;}
.x3c{left:476.434943px;}
.x42{left:505.717181px;}
.x3e{left:514.807065px;}
.x8{left:538.663125px;}
.x9{left:543.885000px;}
.x40{left:553.203770px;}
.x45{left:582.488958px;}
.x43{left:591.595558px;}
.x47{left:620.885663px;}
.x44{left:629.967680px;}
.x49{left:659.282367px;}
.x46{left:668.367335px;}
.xd{left:687.420000px;}
.x48{left:706.764039px;}
.x1c{left:730.080000px;}
.x1e{left:731.340000px;}
.x4b{left:733.500000px;}
.x4a{left:745.161097px;}
.x1f{left:783.510000px;}
.x6{left:785.130000px;}
.x15{left:813.960000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.311027pt;}
.ls5{letter-spacing:-0.826667pt;}
.lsb{letter-spacing:-0.476800pt;}
.ls6{letter-spacing:-0.400000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.185067pt;}
.ls7{letter-spacing:-0.124800pt;}
.ls9{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:-0.030720pt;}
.ls10{letter-spacing:-0.013110pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.290133pt;}
.ls13{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.444001pt;}
.ls1{letter-spacing:0.592000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls17{letter-spacing:1.568000pt;}
.lse{letter-spacing:3.531033pt;}
.ls18{letter-spacing:15.360000pt;}
.ls12{letter-spacing:19.840000pt;}
.ls8{letter-spacing:24.960000pt;}
.ls11{letter-spacing:26.880000pt;}
.ws2{word-spacing:-16.473600pt;}
.wsb{word-spacing:-16.064000pt;}
.ws19{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.306880pt;}
.ws0{word-spacing:-13.276160pt;}
.ws3{word-spacing:-12.953600pt;}
.ws17{word-spacing:-10.510067pt;}
.ws1b{word-spacing:-10.401280pt;}
.ws10{word-spacing:-9.832703pt;}
.ws7{word-spacing:-9.488000pt;}
.wsa{word-spacing:-9.357867pt;}
.ws9{word-spacing:-9.308800pt;}
.ws1c{word-spacing:-9.123413pt;}
.ws4{word-spacing:-8.833280pt;}
.ws5{word-spacing:-8.648213pt;}
.wsc{word-spacing:-8.356480pt;}
.ws6{word-spacing:-8.006613pt;}
.wsd{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws12{word-spacing:38.745219pt;}
.ws11{word-spacing:43.989327pt;}
.ws18{word-spacing:66.827418pt;}
.ws16{word-spacing:75.488937pt;}
.ws13{word-spacing:83.355099pt;}
.ws14{word-spacing:138.488156pt;}
.ws15{word-spacing:146.354319pt;}
.wse{word-spacing:180.231257pt;}
.wsf{word-spacing:370.386989pt;}
._43{margin-left:-4.688015pt;}
._24{margin-left:-3.743637pt;}
._31{margin-left:-2.850435pt;}
._6{margin-left:-1.920000pt;}
._0{margin-left:-1.008000pt;}
._5{width:1.536000pt;}
._13{width:2.484267pt;}
._8{width:3.968000pt;}
._9{width:4.928000pt;}
._4{width:6.656000pt;}
._7{width:7.680000pt;}
._12{width:9.216000pt;}
._f{width:10.432000pt;}
._d{width:11.392000pt;}
._e{width:12.480000pt;}
._16{width:13.440000pt;}
._20{width:14.336000pt;}
._14{width:15.900160pt;}
._c{width:16.896000pt;}
._10{width:17.920000pt;}
._11{width:18.880000pt;}
._1e{width:20.608000pt;}
._1f{width:21.632000pt;}
._49{width:22.528000pt;}
._1b{width:23.424000pt;}
._19{width:24.320000pt;}
._1a{width:25.536000pt;}
._4d{width:26.490667pt;}
._2{width:27.440000pt;}
._1c{width:28.864000pt;}
._1d{width:30.005333pt;}
._b{width:30.906667pt;}
._a{width:31.920000pt;}
._17{width:33.408000pt;}
._18{width:34.608000pt;}
._34{width:39.797843pt;}
._4c{width:41.264000pt;}
._4e{width:58.800000pt;}
._39{width:63.892706pt;}
._3d{width:69.619062pt;}
._4a{width:81.344000pt;}
._4b{width:82.304000pt;}
._27{width:84.477644pt;}
._42{width:85.625613pt;}
._21{width:87.104000pt;}
._3c{width:118.181302pt;}
._2e{width:124.296375pt;}
._3b{width:129.708077pt;}
._25{width:131.355207pt;}
._37{width:137.574240pt;}
._40{width:141.145384pt;}
._38{width:142.470964pt;}
._29{width:154.875994pt;}
._35{width:156.147864pt;}
._3a{width:160.015220pt;}
._28{width:167.881383pt;}
._2d{width:176.892903pt;}
._2b{width:182.056819pt;}
._45{width:219.126877pt;}
._44{width:240.243429pt;}
._32{width:263.249118pt;}
._3e{width:325.767406pt;}
._23{width:336.790131pt;}
._2c{width:343.858389pt;}
._33{width:365.948460pt;}
._41{width:370.013859pt;}
._47{width:375.857589pt;}
._2a{width:393.416228pt;}
._22{width:399.957554pt;}
._48{width:401.495081pt;}
._36{width:414.844870pt;}
._26{width:427.981977pt;}
._30{width:430.097274pt;}
._3f{width:456.767588pt;}
._2f{width:460.515949pt;}
._46{width:512.778417pt;}
._3{width:970.273067pt;}
._15{width:1188.773547pt;}
._1{width:1865.125333pt;}
.fsb{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fsc{font-size:39.330811pt;}
.fs0{font-size:40.320000pt;}
.fsd{font-size:42.040267pt;}
.fs9{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y30{bottom:-13.306667pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:0.960000pt;}
.yde{bottom:1.149335pt;}
.yd6{bottom:1.157049pt;}
.y2f{bottom:1.413333pt;}
.y2e{bottom:2.373333pt;}
.yc9{bottom:2.892622pt;}
.y3{bottom:4.000000pt;}
.yce{bottom:4.049670pt;}
.ye3{bottom:4.628198pt;}
.ye9{bottom:4.628199pt;}
.yef{bottom:4.628200pt;}
.yf5{bottom:4.628201pt;}
.yfb{bottom:4.628202pt;}
.y65{bottom:5.280000pt;}
.ya2{bottom:5.440000pt;}
.yc6{bottom:6.363767pt;}
.yd1{bottom:6.942292pt;}
.yd4{bottom:6.942293pt;}
.ydc{bottom:6.942294pt;}
.y32{bottom:8.293333pt;}
.ycf{bottom:10.413437pt;}
.y15c{bottom:12.800000pt;}
.ya1{bottom:13.280000pt;}
.yfd{bottom:13.440000pt;}
.y64{bottom:13.920000pt;}
.ycc{bottom:14.463106pt;}
.yca{bottom:15.064772pt;}
.y39{bottom:17.600000pt;}
.yd2{bottom:19.110585pt;}
.y3c{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y35{bottom:32.160000pt;}
.y37{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.yc7{bottom:49.791654pt;}
.y33{bottom:62.400000pt;}
.y2c{bottom:99.360000pt;}
.y2b{bottom:106.080000pt;}
.yc4{bottom:109.920000pt;}
.y15b{bottom:111.360000pt;}
.y86{bottom:112.640000pt;}
.yd7{bottom:119.854798pt;}
.ye1{bottom:119.854800pt;}
.ye7{bottom:119.854801pt;}
.yed{bottom:119.854802pt;}
.yf3{bottom:119.854803pt;}
.yf9{bottom:119.854804pt;}
.y2a{bottom:122.080000pt;}
.ya0{bottom:125.920000pt;}
.y11c{bottom:126.880000pt;}
.yc3{bottom:131.040000pt;}
.y15a{bottom:132.480000pt;}
.y85{bottom:133.760000pt;}
.y63{bottom:141.600000pt;}
.y9f{bottom:147.200000pt;}
.y11b{bottom:148.000000pt;}
.yc2{bottom:152.320000pt;}
.y29{bottom:152.960000pt;}
.y159{bottom:153.600000pt;}
.y84{bottom:154.880000pt;}
.y13c{bottom:160.960000pt;}
.y16f{bottom:161.440000pt;}
.y62{bottom:162.720000pt;}
.y9e{bottom:168.320000pt;}
.y11a{bottom:169.280000pt;}
.y28{bottom:174.080000pt;}
.y83{bottom:176.160000pt;}
.y13b{bottom:182.080000pt;}
.y16e{bottom:182.560000pt;}
.y61{bottom:184.026667pt;}
.yc1{bottom:186.746667pt;}
.y158{bottom:188.186667pt;}
.y9d{bottom:189.466667pt;}
.y119{bottom:190.426667pt;}
.y27{bottom:195.066667pt;}
.y82{bottom:197.306667pt;}
.y60{bottom:205.146667pt;}
.y157{bottom:209.306667pt;}
.y9c{bottom:210.586667pt;}
.y118{bottom:211.546667pt;}
.y26{bottom:215.706667pt;}
.y13a{bottom:216.666667pt;}
.y16d{bottom:217.146667pt;}
.yc0{bottom:217.466667pt;}
.y81{bottom:218.426667pt;}
.yc5{bottom:218.565183pt;}
.yd3{bottom:218.565184pt;}
.yda{bottom:218.565185pt;}
.ye2{bottom:218.565186pt;}
.ye8{bottom:218.565187pt;}
.yee{bottom:218.565188pt;}
.yf4{bottom:218.565189pt;}
.yfa{bottom:218.565190pt;}
.y5f{bottom:226.266667pt;}
.y156{bottom:230.426667pt;}
.y9b{bottom:231.706667pt;}
.y117{bottom:232.666667pt;}
.y25{bottom:235.546667pt;}
.yd5{bottom:236.518720pt;}
.ye0{bottom:236.518722pt;}
.ye6{bottom:236.518723pt;}
.yec{bottom:236.518724pt;}
.yf2{bottom:236.518725pt;}
.yf8{bottom:236.518726pt;}
.y139{bottom:237.786667pt;}
.y16c{bottom:238.266667pt;}
.y80{bottom:239.546667pt;}
.y5e{bottom:247.386667pt;}
.y155{bottom:251.546667pt;}
.y9a{bottom:252.986667pt;}
.y116{bottom:253.946667pt;}
.y24{bottom:255.226667pt;}
.y7f{bottom:260.826667pt;}
.y138{bottom:272.346667pt;}
.y16b{bottom:272.826667pt;}
.y99{bottom:274.106667pt;}
.y5d{bottom:274.746667pt;}
.y115{bottom:275.066667pt;}
.y23{bottom:275.866667pt;}
.y7e{bottom:281.946667pt;}
.y154{bottom:286.106667pt;}
.ybe{bottom:290.266667pt;}
.y137{bottom:293.466667pt;}
.y16a{bottom:293.946667pt;}
.y98{bottom:295.226667pt;}
.y114{bottom:296.186667pt;}
.y22{bottom:296.986667pt;}
.y126{bottom:303.066667pt;}
.y153{bottom:307.226667pt;}
.y7d{bottom:309.146667pt;}
.y5c{bottom:309.466667pt;}
.ybd{bottom:311.386667pt;}
.y136{bottom:314.586667pt;}
.y169{bottom:315.066667pt;}
.y97{bottom:316.346667pt;}
.y113{bottom:317.306667pt;}
.y21{bottom:326.586667pt;}
.y125{bottom:330.426667pt;}
.y5b{bottom:330.746667pt;}
.ybc{bottom:332.506667pt;}
.y96{bottom:337.626667pt;}
.y112{bottom:338.426667pt;}
.y152{bottom:341.786667pt;}
.y7c{bottom:344.026667pt;}
.y135{bottom:349.146667pt;}
.y168{bottom:349.626667pt;}
.y5a{bottom:351.866667pt;}
.y95{bottom:358.746667pt;}
.y111{bottom:359.706667pt;}
.ybb{bottom:359.866667pt;}
.y151{bottom:362.906667pt;}
.y20{bottom:364.346667pt;}
.y7b{bottom:365.146667pt;}
.y134{bottom:370.266667pt;}
.y167{bottom:370.746667pt;}
.y59{bottom:372.986667pt;}
.y94{bottom:379.866667pt;}
.y1f{bottom:385.466667pt;}
.y7a{bottom:386.266667pt;}
.y110{bottom:386.906667pt;}
.y58{bottom:394.146667pt;}
.yba{bottom:394.626667pt;}
.y150{bottom:397.506667pt;}
.y93{bottom:401.026667pt;}
.y133{bottom:404.866667pt;}
.y166{bottom:405.346667pt;}
.y1e{bottom:406.626667pt;}
.y79{bottom:407.586667pt;}
.ydb{bottom:411.639286pt;}
.yd8{bottom:413.374859pt;}
.yb9{bottom:415.746667pt;}
.y14f{bottom:418.626667pt;}
.y10f{bottom:421.826667pt;}
.y92{bottom:422.306667pt;}
.y132{bottom:425.986667pt;}
.y165{bottom:426.466667pt;}
.y1d{bottom:427.746667pt;}
.y57{bottom:428.706667pt;}
.yb8{bottom:437.026667pt;}
.y10e{bottom:442.946667pt;}
.y1c{bottom:449.026667pt;}
.y91{bottom:449.506667pt;}
.y56{bottom:449.826667pt;}
.y14e{bottom:453.026667pt;}
.yb7{bottom:458.146667pt;}
.y131{bottom:460.386667pt;}
.y164{bottom:460.866667pt;}
.y10d{bottom:464.066667pt;}
.y1b{bottom:470.146667pt;}
.y55{bottom:470.946667pt;}
.y14d{bottom:474.306667pt;}
.yb6{bottom:479.266667pt;}
.y130{bottom:481.666667pt;}
.y163{bottom:482.146667pt;}
.y90{bottom:484.386667pt;}
.y10c{bottom:485.346667pt;}
.y1a{bottom:491.266667pt;}
.y54{bottom:492.226667pt;}
.y14c{bottom:495.426667pt;}
.yb5{bottom:500.386667pt;}
.y8f{bottom:505.506667pt;}
.y10b{bottom:506.466667pt;}
.yd0{bottom:511.801118pt;}
.y19{bottom:512.386667pt;}
.y53{bottom:513.346667pt;}
.y12f{bottom:516.066667pt;}
.y162{bottom:516.546667pt;}
.yb4{bottom:521.666667pt;}
.y8e{bottom:526.626667pt;}
.y10a{bottom:527.586667pt;}
.y14b{bottom:529.826667pt;}
.y18{bottom:533.666667pt;}
.y52{bottom:534.466667pt;}
.y12e{bottom:537.186667pt;}
.y161{bottom:537.666667pt;}
.yb3{bottom:542.786667pt;}
.y8d{bottom:547.746667pt;}
.y109{bottom:548.706667pt;}
.y14a{bottom:551.106667pt;}
.y17{bottom:554.786667pt;}
.y51{bottom:555.586667pt;}
.y160{bottom:558.946667pt;}
.yb2{bottom:563.906667pt;}
.y12d{bottom:564.546667pt;}
.y8c{bottom:569.026667pt;}
.y108{bottom:569.826667pt;}
.y149{bottom:572.226667pt;}
.yc8{bottom:573.470524pt;}
.y16{bottom:575.906667pt;}
.y50{bottom:576.866667pt;}
.y8b{bottom:590.146667pt;}
.yb1{bottom:591.266667pt;}
.y15f{bottom:593.346667pt;}
.y15{bottom:597.026667pt;}
.y4f{bottom:597.986667pt;}
.y12c{bottom:599.266667pt;}
.y78{bottom:604.093333pt;}
.y107{bottom:604.413333pt;}
.y148{bottom:606.813333pt;}
.ycb{bottom:608.220548pt;}
.y8a{bottom:611.293333pt;}
.y15e{bottom:614.493333pt;}
.y14{bottom:618.173333pt;}
.y124{bottom:619.133333pt;}
.y106{bottom:625.533333pt;}
.yb0{bottom:626.013333pt;}
.y12b{bottom:626.653333pt;}
.y147{bottom:627.933333pt;}
.y4e{bottom:632.413333pt;}
.y77{bottom:638.973333pt;}
.y123{bottom:640.253333pt;}
.y105{bottom:646.813333pt;}
.yaf{bottom:647.133333pt;}
.y13{bottom:647.933333pt;}
.y146{bottom:649.053333pt;}
.y4d{bottom:653.693333pt;}
.y76{bottom:660.093333pt;}
.y122{bottom:661.533333pt;}
.ycd{bottom:664.954492pt;}
.y104{bottom:667.933333pt;}
.yae{bottom:668.413333pt;}
.y15d{bottom:670.173333pt;}
.y4c{bottom:674.813333pt;}
.y75{bottom:681.213333pt;}
.y12{bottom:681.853333pt;}
.y121{bottom:682.653333pt;}
.y145{bottom:683.613333pt;}
.y103{bottom:689.053333pt;}
.yad{bottom:689.533333pt;}
.ydd{bottom:691.589751pt;}
.ye4{bottom:691.589752pt;}
.yea{bottom:691.589753pt;}
.yf0{bottom:691.589754pt;}
.yf6{bottom:691.589755pt;}
.y4b{bottom:695.933333pt;}
.y74{bottom:702.333333pt;}
.y12a{bottom:703.773333pt;}
.y144{bottom:704.733333pt;}
.y11{bottom:706.333333pt;}
.y120{bottom:709.853333pt;}
.y102{bottom:710.173333pt;}
.yac{bottom:710.653333pt;}
.y4a{bottom:717.053333pt;}
.y73{bottom:723.613333pt;}
.y129{bottom:724.893333pt;}
.y143{bottom:725.853333pt;}
.yf{bottom:726.973333pt;}
.y101{bottom:731.293333pt;}
.yab{bottom:731.773333pt;}
.y10{bottom:733.693333pt;}
.y173{bottom:734.333333pt;}
.y49{bottom:738.333333pt;}
.ye{bottom:743.613333pt;}
.y72{bottom:744.733333pt;}
.y128{bottom:746.013333pt;}
.y100{bottom:752.573333pt;}
.yaa{bottom:753.053333pt;}
.y48{bottom:759.453333pt;}
.y142{bottom:760.413333pt;}
.y71{bottom:765.853333pt;}
.yd{bottom:768.093333pt;}
.y172{bottom:768.733333pt;}
.y127{bottom:773.373333pt;}
.ya9{bottom:774.173333pt;}
.y47{bottom:780.573333pt;}
.y141{bottom:781.533333pt;}
.yc{bottom:786.653333pt;}
.y70{bottom:786.973333pt;}
.y171{bottom:789.853333pt;}
.ya8{bottom:795.293333pt;}
.y46{bottom:801.693333pt;}
.y140{bottom:802.653333pt;}
.yb{bottom:807.293333pt;}
.y6f{bottom:808.253333pt;}
.ya7{bottom:816.453333pt;}
.y45{bottom:823.013333pt;}
.yd9{bottom:824.164366pt;}
.ydf{bottom:824.164368pt;}
.ye5{bottom:824.164369pt;}
.yeb{bottom:824.164370pt;}
.yf1{bottom:824.164371pt;}
.yf7{bottom:824.164372pt;}
.yfc{bottom:824.164373pt;}
.y170{bottom:824.453333pt;}
.y6e{bottom:829.413333pt;}
.y13f{bottom:837.253333pt;}
.ya6{bottom:837.733333pt;}
.ya{bottom:839.653333pt;}
.y89{bottom:844.133333pt;}
.y6d{bottom:850.533333pt;}
.y44{bottom:857.413333pt;}
.y13e{bottom:858.373333pt;}
.ya5{bottom:858.853333pt;}
.y88{bottom:865.253333pt;}
.y9{bottom:865.413333pt;}
.yff{bottom:871.653333pt;}
.y31{bottom:874.560000pt;}
.y43{bottom:878.533333pt;}
.y13d{bottom:879.493333pt;}
.ya4{bottom:879.973333pt;}
.y2d{bottom:881.120000pt;}
.y8{bottom:883.013333pt;}
.y6c{bottom:885.093333pt;}
.y87{bottom:892.453333pt;}
.yfe{bottom:892.773333pt;}
.y42{bottom:899.813333pt;}
.y6b{bottom:906.213333pt;}
.ya3{bottom:907.173333pt;}
.y7{bottom:913.413333pt;}
.y11f{bottom:914.053333pt;}
.y41{bottom:920.933333pt;}
.y6a{bottom:927.333333pt;}
.y11e{bottom:935.173333pt;}
.y40{bottom:942.053333pt;}
.y6{bottom:944.773333pt;}
.y69{bottom:948.453333pt;}
.y11d{bottom:956.293333pt;}
.y3f{bottom:963.173333pt;}
.y68{bottom:969.733333pt;}
.ybf{bottom:977.093333pt;}
.y5{bottom:978.693333pt;}
.y3e{bottom:984.453333pt;}
.y67{bottom:990.853333pt;}
.y3d{bottom:1011.653333pt;}
.y66{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y3b{bottom:1052.000000pt;}
.y3a{bottom:1064.480000pt;}
.y36{bottom:1073.600000pt;}
.y38{bottom:1103.680000pt;}
.h15{height:11.840000pt;}
.h13{height:12.960000pt;}
.h20{height:16.000000pt;}
.h22{height:16.160000pt;}
.h1d{height:16.840312pt;}
.h17{height:18.880000pt;}
.h1c{height:21.671875pt;}
.h18{height:21.920000pt;}
.h28{height:26.052876pt;}
.h1e{height:32.149687pt;}
.h2{height:34.138125pt;}
.h26{height:34.171499pt;}
.h14{height:34.190937pt;}
.h5{height:34.195312pt;}
.h11{height:34.374375pt;}
.h1f{height:36.305625pt;}
.h6{height:37.842813pt;}
.hc{height:38.008125pt;}
.h1a{height:38.273438pt;}
.h29{height:38.601040pt;}
.h24{height:39.638083pt;}
.h2d{height:41.239696pt;}
.h2c{height:41.260223pt;}
.h1b{height:42.355937pt;}
.h19{height:44.160000pt;}
.h21{height:46.281250pt;}
.h16{height:46.948750pt;}
.h4{height:47.742188pt;}
.h8{height:48.375000pt;}
.hf{height:49.852500pt;}
.h12{height:52.834688pt;}
.h27{height:56.155421pt;}
.h3{height:58.563750pt;}
.ha{height:60.288750pt;}
.he{height:62.781250pt;}
.h9{height:62.812500pt;}
.hd{height:63.399375pt;}
.h10{height:64.500000pt;}
.h7{height:81.281250pt;}
.h2a{height:90.890016pt;}
.h2b{height:132.003806pt;}
.h25{height:738.181513pt;}
.h23{height:738.181521pt;}
.hb{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:21.653797pt;}
.w10{width:24.275851pt;}
.w11{width:26.897905pt;}
.wd{width:26.919755pt;}
.we{width:28.208932pt;}
.wf{width:28.886296pt;}
.w13{width:33.453040pt;}
.w12{width:33.474890pt;}
.wb{width:36.752458pt;}
.w9{width:68.800000pt;}
.w7{width:70.240000pt;}
.w8{width:85.600000pt;}
.w3{width:93.120000pt;}
.w4{width:117.760000pt;}
.w5{width:168.480000pt;}
.w6{width:556.800000pt;}
.wa{width:599.787562pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:7.861792pt;}
.x10{left:9.632000pt;}
.x16{left:10.853333pt;}
.x12{left:13.826667pt;}
.x22{left:15.749805pt;}
.x2b{left:17.069572pt;}
.xe{left:18.053333pt;}
.x2f{left:20.998283pt;}
.x20{left:22.306372pt;}
.x2a{left:23.624707pt;}
.x3a{left:26.902275pt;}
.x23{left:28.204562pt;}
.x41{left:33.474890pt;}
.x21{left:34.785917pt;}
.x17{left:36.640000pt;}
.x18{left:42.400000pt;}
.x24{left:51.848181pt;}
.x26{left:74.161861pt;}
.x13{left:83.040000pt;}
.x1{left:96.032000pt;}
.xc{left:100.352000pt;}
.x2{left:103.552000pt;}
.xf{left:104.480000pt;}
.x19{left:113.632000pt;}
.x28{left:121.402536pt;}
.x25{left:134.084137pt;}
.x2c{left:146.329530pt;}
.x4c{left:152.826667pt;}
.x27{left:156.397818pt;}
.x30{left:171.938258pt;}
.x1b{left:173.626667pt;}
.x1a{left:179.066667pt;}
.x3{left:180.186667pt;}
.xa{left:189.466667pt;}
.x29{left:201.012068pt;}
.x1d{left:222.106667pt;}
.x2d{left:228.591707pt;}
.x31{left:250.896647pt;}
.x34{left:254.620363pt;}
.x32{left:279.761092pt;}
.x36{left:282.178152pt;}
.xb{left:288.066667pt;}
.x33{left:309.307271pt;}
.x7{left:310.466667pt;}
.x38{left:313.030988pt;}
.x11{left:325.600000pt;}
.x35{left:334.234266pt;}
.x3b{left:347.161392pt;}
.x5{left:357.826667pt;}
.x37{left:361.787684pt;}
.x3d{left:381.265575pt;}
.x39{left:389.362953pt;}
.x14{left:404.413333pt;}
.x3f{left:415.395979pt;}
.x4{left:420.893333pt;}
.x3c{left:423.497727pt;}
.x42{left:449.526383pt;}
.x3e{left:457.606280pt;}
.x8{left:478.811667pt;}
.x9{left:483.453333pt;}
.x40{left:491.736684pt;}
.x45{left:517.767963pt;}
.x43{left:525.862718pt;}
.x47{left:551.898367pt;}
.x44{left:559.971271pt;}
.x49{left:586.028771pt;}
.x46{left:594.104297pt;}
.xd{left:611.040000pt;}
.x48{left:628.234701pt;}
.x1c{left:648.960000pt;}
.x1e{left:650.080000pt;}
.x4b{left:652.000000pt;}
.x4a{left:662.365420pt;}
.x1f{left:696.453333pt;}
.x6{left:697.893333pt;}
.x15{left:723.520000pt;}
}




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