
    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_0c667f71b672d42886f264eb.woff')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_98b677e8ba4e27072b4c6392.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_8ed8d096ef653343ed877ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_ad0efd63fd9a1cf98d488d6c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_b30db25c5e9aa44c5fd5ebbc.woff')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_2bb4f26219cd35b11fa8d667.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_07c65bb9125e332dea1602b9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e5e324df2947ef3339791129.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f6b35dfed46ebb013332964d.woff')format("woff");}.ffc{font-family:ffc;line-height:1.065430;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_52c0df2c5c4c17093b35c1a4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.145020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.va{vertical-align:-10.800000px;}
.v3{vertical-align:-8.640000px;}
.vf{vertical-align:-7.200000px;}
.v6{vertical-align:-5.760000px;}
.v9{vertical-align:-4.320000px;}
.v5{vertical-align:-2.880000px;}
.ve{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.440000px;}
.v8{vertical-align:2.880000px;}
.v10{vertical-align:4.320000px;}
.v7{vertical-align:5.760000px;}
.vc{vertical-align:7.200000px;}
.v4{vertical-align:8.640000px;}
.vb{vertical-align:10.800000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-13.140000px;}
.ls2c{letter-spacing:-0.804000px;}
.ls1a{letter-spacing:-0.529200px;}
.ls2f{letter-spacing:-0.363000px;}
.ls2{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.299400px;}
.ls22{letter-spacing:-0.291600px;}
.ls58{letter-spacing:-0.288600px;}
.ls5{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.283200px;}
.ls9{letter-spacing:-0.270600px;}
.lsa{letter-spacing:-0.240000px;}
.ls56{letter-spacing:-0.226200px;}
.ls24{letter-spacing:-0.193200px;}
.ls57{letter-spacing:-0.187200px;}
.lsc{letter-spacing:-0.094800px;}
.ls35{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.085200px;}
.ls29{letter-spacing:-0.083400px;}
.ls14{letter-spacing:-0.078000px;}
.ls32{letter-spacing:-0.053280px;}
.ls2e{letter-spacing:-0.052560px;}
.lsf{letter-spacing:-0.046800px;}
.ls23{letter-spacing:-0.038160px;}
.ls4{letter-spacing:-0.036000px;}
.ls10{letter-spacing:-0.010800px;}
.ls1{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.007200px;}
.ls11{letter-spacing:0.012960px;}
.ls27{letter-spacing:0.020880px;}
.ls28{letter-spacing:0.052560px;}
.ls21{letter-spacing:0.060600px;}
.ls31{letter-spacing:0.063600px;}
.ls59{letter-spacing:0.078000px;}
.ls3{letter-spacing:0.141000px;}
.ls5a{letter-spacing:0.155400px;}
.ls15{letter-spacing:0.186600px;}
.ls7{letter-spacing:0.187200px;}
.ls2a{letter-spacing:0.209400px;}
.lse{letter-spacing:0.211800px;}
.ls3d{letter-spacing:0.214560px;}
.ls30{letter-spacing:0.223200px;}
.ls41{letter-spacing:0.246240px;}
.ls19{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.319680px;}
.ls2b{letter-spacing:0.323400px;}
.lsb{letter-spacing:0.328200px;}
.ls36{letter-spacing:0.357000px;}
.ls0{letter-spacing:0.360000px;}
.ls54{letter-spacing:0.403200px;}
.ls26{letter-spacing:0.532800px;}
.ls12{letter-spacing:0.708000px;}
.ls44{letter-spacing:0.720000px;}
.ls45{letter-spacing:0.740880px;}
.ls50{letter-spacing:0.843120px;}
.ls1b{letter-spacing:0.912000px;}
.ls55{letter-spacing:1.039680px;}
.ls1e{letter-spacing:1.076400px;}
.ls38{letter-spacing:1.309680px;}
.ls3f{letter-spacing:1.440000px;}
.ls4a{letter-spacing:1.524240px;}
.ls4f{letter-spacing:1.563120px;}
.ls39{letter-spacing:1.654560px;}
.ls3e{letter-spacing:1.686240px;}
.ls3c{letter-spacing:2.121120px;}
.ls40{letter-spacing:2.749680px;}
.ls42{letter-spacing:4.281120px;}
.ls1c{letter-spacing:4.406400px;}
.ls46{letter-spacing:4.858560px;}
.ls4c{letter-spacing:5.337360px;}
.ls4d{letter-spacing:5.863680px;}
.ls48{letter-spacing:6.777360px;}
.ls47{letter-spacing:8.388000px;}
.ls43{letter-spacing:8.458560px;}
.ls52{letter-spacing:9.250560px;}
.ls3b{letter-spacing:9.490320px;}
.ls4b{letter-spacing:9.606240px;}
.ls18{letter-spacing:11.606400px;}
.ls4e{letter-spacing:11.766240px;}
.ls53{letter-spacing:11.889360px;}
.ls17{letter-spacing:13.046400px;}
.ls8{letter-spacing:13.867200px;}
.ls3a{letter-spacing:15.120000px;}
.ls49{letter-spacing:17.818560px;}
.ls20{letter-spacing:18.666720px;}
.ls2d{letter-spacing:22.266720px;}
.ls34{letter-spacing:22.986720px;}
.ls25{letter-spacing:26.586720px;}
.ls6{letter-spacing:40.986720px;}
.ls1d{letter-spacing:153.282720px;}
.ls37{letter-spacing:154.002720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws1d{word-spacing:-13.504200px;}
.ws1{word-spacing:-13.500000px;}
.ws17{word-spacing:-13.470600px;}
.ws1b{word-spacing:-13.370400px;}
.ws9{word-spacing:-13.359000px;}
.ws16{word-spacing:-13.356600px;}
.ws23{word-spacing:-13.302600px;}
.ws3{word-spacing:-13.288200px;}
.ws22{word-spacing:-13.225200px;}
.ws14{word-spacing:-13.199760px;}
.wsa{word-spacing:-13.160160px;}
.wsb{word-spacing:-13.147200px;}
.ws0{word-spacing:-13.140000px;}
.ws13{word-spacing:-13.109040px;}
.ws11{word-spacing:-13.100400px;}
.ws19{word-spacing:-13.094640px;}
.ws15{word-spacing:-13.063800px;}
.ws20{word-spacing:-12.921000px;}
.ws1c{word-spacing:-12.864000px;}
.ws21{word-spacing:-12.858600px;}
.ws12{word-spacing:-12.855600px;}
.ws1a{word-spacing:-12.784200px;}
.ws1f{word-spacing:-11.016000px;}
.wsf{word-spacing:-10.799400px;}
.ws2{word-spacing:-10.612800px;}
.wse{word-spacing:-10.534800px;}
.wsd{word-spacing:-10.527600px;}
.ws7{word-spacing:-10.342200px;}
.ws10{word-spacing:-10.313400px;}
.ws18{word-spacing:-9.808800px;}
.ws8{word-spacing:-9.092400px;}
.ws4{word-spacing:-7.884000px;}
.ws5{word-spacing:-7.632000px;}
.ws1e{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
._2e{margin-left:-1900.932000px;}
._2d{margin-left:-732.578880px;}
._2b{margin-left:-710.287200px;}
._2f{margin-left:-605.629440px;}
._1c{margin-left:-13.261680px;}
._22{margin-left:-11.111520px;}
._2c{margin-left:-9.360000px;}
._21{margin-left:-8.069280px;}
._29{margin-left:-6.086160px;}
._20{margin-left:-4.301280px;}
._9{margin-left:-2.728080px;}
._2{margin-left:-1.314000px;}
._1{width:1.164000px;}
._4{width:2.527680px;}
._7{width:3.884400px;}
._15{width:5.260800px;}
._13{width:6.274800px;}
._12{width:7.700640px;}
._11{width:8.844480px;}
._1f{width:10.185120px;}
._5{width:11.286000px;}
._19{width:13.170000px;}
._c{width:14.285280px;}
._17{width:15.776880px;}
._18{width:16.860240px;}
._1d{width:18.210000px;}
._b{width:19.544160px;}
._a{width:20.736720px;}
._2a{width:21.843600px;}
._16{width:23.306400px;}
._26{width:24.356160px;}
._30{width:25.637040px;}
._f{width:27.042720px;}
._10{width:28.326240px;}
._28{width:29.427120px;}
._27{width:30.584400px;}
._1e{width:31.823520px;}
._8{width:33.644880px;}
._e{width:35.141520px;}
._d{width:36.752400px;}
._25{width:43.033680px;}
._1a{width:47.006280px;}
._23{width:50.726640px;}
._24{width:53.166240px;}
._0{width:75.000000px;}
._14{width:83.066400px;}
._3{width:181.620000px;}
._6{width:200.280000px;}
._1b{width:1069.687200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(1,1,1);}
.fc4{color:rgb(31,31,31);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y54{bottom:46.800000px;}
.y7{bottom:56.520000px;}
.y53{bottom:60.120000px;}
.y6{bottom:70.596000px;}
.y52{bottom:70.740000px;}
.y51{bottom:81.180000px;}
.y50{bottom:98.820000px;}
.y9a{bottom:108.936000px;}
.y99{bottom:111.996000px;}
.y98{bottom:122.976000px;}
.ye3{bottom:126.036000px;}
.y40{bottom:127.116000px;}
.y97{bottom:137.016000px;}
.ye2{bottom:138.276000px;}
.y96{bottom:140.076000px;}
.y3f{bottom:144.756000px;}
.y95{bottom:151.050000px;}
.y4f{bottom:151.740000px;}
.y94{bottom:154.110000px;}
.y3e{bottom:162.210000px;}
.y93{bottom:165.090000px;}
.y4e{bottom:165.780000px;}
.yd7{bottom:166.350000px;}
.yed{bottom:168.150000px;}
.y123{bottom:174.990000px;}
.y92{bottom:179.310000px;}
.y3d{bottom:179.850000px;}
.y4d{bottom:180.000000px;}
.yec{bottom:180.390000px;}
.y91{bottom:182.370000px;}
.yd6{bottom:189.570000px;}
.ye1{bottom:192.630000px;}
.y11f{bottom:193.350000px;}
.y4c{bottom:194.040000px;}
.y90{bottom:194.610000px;}
.y11e{bottom:196.410000px;}
.y3c{bottom:197.490000px;}
.yd5{bottom:207.030000px;}
.y4b{bottom:208.080000px;}
.y11d{bottom:208.650000px;}
.ye0{bottom:210.270000px;}
.ye6{bottom:210.810000px;}
.y3b{bottom:215.130000px;}
.y4a{bottom:222.120000px;}
.yd4{bottom:224.670000px;}
.y8f{bottom:225.210000px;}
.ydf{bottom:227.730000px;}
.y3a{bottom:232.590000px;}
.y49{bottom:234.720000px;}
.yd3{bottom:242.310000px;}
.y8e{bottom:242.850000px;}
.y48{bottom:243.180000px;}
.yde{bottom:245.370000px;}
.y11c{bottom:246.090000px;}
.y39{bottom:250.230000px;}
.y47{bottom:257.400000px;}
.yd2{bottom:259.770000px;}
.y8d{bottom:260.490000px;}
.ydd{bottom:263.010000px;}
.y11b{bottom:263.550000px;}
.y38{bottom:267.870000px;}
.y46{bottom:271.485000px;}
.yd1{bottom:277.410000px;}
.y8c{bottom:277.950000px;}
.ydc{bottom:280.470000px;}
.y11a{bottom:281.190000px;}
.yf5{bottom:284.250000px;}
.y37{bottom:285.330000px;}
.y45{bottom:285.525000px;}
.yd0{bottom:295.050000px;}
.y8b{bottom:296.310000px;}
.ydb{bottom:298.110000px;}
.y118{bottom:298.830000px;}
.y44{bottom:299.565000px;}
.y119{bottom:302.610000px;}
.y36{bottom:302.970000px;}
.y43{bottom:312.165000px;}
.ycf{bottom:312.510000px;}
.y8a{bottom:314.670000px;}
.yda{bottom:315.750000px;}
.yf8{bottom:316.290000px;}
.y35{bottom:320.610000px;}
.y42{bottom:323.325000px;}
.yce{bottom:330.150000px;}
.y89{bottom:333.210000px;}
.y117{bottom:333.930000px;}
.y34{bottom:338.115000px;}
.ycd{bottom:347.835000px;}
.y88{bottom:350.895000px;}
.y116{bottom:351.615000px;}
.yeb{bottom:354.675000px;}
.y33{bottom:355.755000px;}
.ycc{bottom:365.295000px;}
.y87{bottom:368.535000px;}
.y115{bottom:369.255000px;}
.yf4{bottom:372.315000px;}
.y32{bottom:373.395000px;}
.ycb{bottom:382.935000px;}
.y86{bottom:386.175000px;}
.y114{bottom:386.715000px;}
.y31{bottom:391.035000px;}
.yca{bottom:400.575000px;}
.y85{bottom:403.635000px;}
.y113{bottom:404.355000px;}
.y30{bottom:408.495000px;}
.yc9{bottom:418.215000px;}
.y84{bottom:421.275000px;}
.y112{bottom:421.995000px;}
.y2f{bottom:426.135000px;}
.yc8{bottom:435.675000px;}
.y83{bottom:438.915000px;}
.y111{bottom:439.455000px;}
.y2e{bottom:443.775000px;}
.yc6{bottom:453.315000px;}
.y82{bottom:456.375000px;}
.yc7{bottom:457.095000px;}
.yd9{bottom:460.155000px;}
.y2d{bottom:463.215000px;}
.yc5{bottom:470.955000px;}
.y81{bottom:474.015000px;}
.y110{bottom:474.735000px;}
.y2c{bottom:479.415000px;}
.yc4{bottom:488.415000px;}
.y80{bottom:491.655000px;}
.y10f{bottom:492.195000px;}
.y2b{bottom:496.875000px;}
.yc3{bottom:506.055000px;}
.y7f{bottom:509.115000px;}
.yf7{bottom:509.835000px;}
.y2a{bottom:514.515000px;}
.yc2{bottom:523.695000px;}
.y7d{bottom:526.755000px;}
.y10e{bottom:527.475000px;}
.y7e{bottom:530.535000px;}
.y29{bottom:532.155000px;}
.yc1{bottom:541.155000px;}
.y7c{bottom:544.395000px;}
.y10d{bottom:544.935000px;}
.y28{bottom:549.795000px;}
.yc0{bottom:558.795000px;}
.y7b{bottom:561.855000px;}
.y10c{bottom:562.215000px;}
.yea{bottom:565.635000px;}
.y27{bottom:567.255000px;}
.ybf{bottom:576.435000px;}
.y7a{bottom:579.495000px;}
.y10b{bottom:579.855000px;}
.y26{bottom:584.895000px;}
.ybe{bottom:594.075000px;}
.y79{bottom:597.135000px;}
.y10a{bottom:597.495000px;}
.ye5{bottom:597.855000px;}
.y25{bottom:602.535000px;}
.y41{bottom:610.485000px;}
.ybd{bottom:611.565000px;}
.y78{bottom:614.805000px;}
.y109{bottom:614.985000px;}
.yd8{bottom:618.585000px;}
.y24{bottom:620.025000px;}
.ybc{bottom:629.205000px;}
.y77{bottom:632.265000px;}
.y108{bottom:632.625000px;}
.yf0{bottom:632.985000px;}
.yf3{bottom:636.045000px;}
.y23{bottom:637.665000px;}
.ybb{bottom:646.845000px;}
.y76{bottom:649.905000px;}
.y107{bottom:650.265000px;}
.y22{bottom:655.305000px;}
.yba{bottom:664.305000px;}
.y75{bottom:667.545000px;}
.y106{bottom:667.905000px;}
.y21{bottom:672.765000px;}
.yb9{bottom:681.945000px;}
.y74{bottom:685.005000px;}
.y105{bottom:685.365000px;}
.y121{bottom:685.725000px;}
.ye9{bottom:688.785000px;}
.y20{bottom:690.405000px;}
.yb8{bottom:699.585000px;}
.y73{bottom:702.645000px;}
.y104{bottom:703.005000px;}
.y1f{bottom:708.045000px;}
.yb7{bottom:717.045000px;}
.y71{bottom:720.285000px;}
.y103{bottom:720.645000px;}
.y72{bottom:724.065000px;}
.y1e{bottom:725.685000px;}
.yb6{bottom:734.685000px;}
.y70{bottom:737.745000px;}
.y102{bottom:738.105000px;}
.yef{bottom:738.465000px;}
.y1d{bottom:743.145000px;}
.yb4{bottom:752.325000px;}
.y6f{bottom:755.385000px;}
.y100{bottom:755.745000px;}
.yb5{bottom:756.105000px;}
.y101{bottom:759.525000px;}
.y1c{bottom:760.785000px;}
.yb3{bottom:769.965000px;}
.y6e{bottom:773.025000px;}
.yff{bottom:773.385000px;}
.y1b{bottom:778.425000px;}
.yb2{bottom:787.425000px;}
.y6d{bottom:790.665000px;}
.yfe{bottom:790.845000px;}
.yf2{bottom:794.445000px;}
.y1a{bottom:795.885000px;}
.yb1{bottom:805.065000px;}
.y6c{bottom:808.125000px;}
.yfd{bottom:808.485000px;}
.y19{bottom:813.525000px;}
.yb0{bottom:822.705000px;}
.y6b{bottom:825.765000px;}
.yfc{bottom:825.945000px;}
.ye8{bottom:829.545000px;}
.y18{bottom:831.165000px;}
.yaf{bottom:840.165000px;}
.y6a{bottom:843.405000px;}
.y17{bottom:848.625000px;}
.yae{bottom:857.805000px;}
.y69{bottom:860.865000px;}
.yee{bottom:861.585000px;}
.yfb{bottom:864.645000px;}
.y16{bottom:866.265000px;}
.yac{bottom:875.490000px;}
.y67{bottom:878.550000px;}
.yad{bottom:879.270000px;}
.y68{bottom:882.330000px;}
.y15{bottom:883.950000px;}
.yab{bottom:892.950000px;}
.y66{bottom:896.190000px;}
.y14{bottom:901.410000px;}
.yaa{bottom:910.590000px;}
.y65{bottom:913.650000px;}
.y120{bottom:914.370000px;}
.y122{bottom:917.430000px;}
.y13{bottom:919.050000px;}
.ya9{bottom:928.230000px;}
.y64{bottom:931.290000px;}
.y12{bottom:936.690000px;}
.ya8{bottom:945.690000px;}
.y63{bottom:948.930000px;}
.yf6{bottom:949.470000px;}
.yf1{bottom:952.710000px;}
.y11{bottom:953.970000px;}
.ya7{bottom:963.330000px;}
.y62{bottom:966.570000px;}
.y10{bottom:969.450000px;}
.ya6{bottom:980.970000px;}
.yf{bottom:983.850000px;}
.y61{bottom:984.030000px;}
.yfa{bottom:987.810000px;}
.ya5{bottom:998.610000px;}
.ye{bottom:1000.230000px;}
.y60{bottom:1001.670000px;}
.ya4{bottom:1016.070000px;}
.yd{bottom:1018.590000px;}
.y5e{bottom:1019.310000px;}
.y5f{bottom:1023.090000px;}
.yc{bottom:1033.350000px;}
.ya3{bottom:1033.710000px;}
.y5d{bottom:1036.770000px;}
.ye7{bottom:1040.550000px;}
.yb{bottom:1050.990000px;}
.ya2{bottom:1051.350000px;}
.y5c{bottom:1054.410000px;}
.ya1{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.y5b{bottom:1072.050000px;}
.ya0{bottom:1086.450000px;}
.y5a{bottom:1089.510000px;}
.y9{bottom:1092.390000px;}
.yf9{bottom:1093.290000px;}
.y9f{bottom:1104.090000px;}
.y59{bottom:1107.150000px;}
.y8{bottom:1114.350000px;}
.y9e{bottom:1121.550000px;}
.y58{bottom:1124.790000px;}
.ye4{bottom:1125.330000px;}
.y5{bottom:1135.050000px;}
.y9d{bottom:1139.220000px;}
.y57{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y9c{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y56{bottom:1175.220000px;}
.y9b{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y55{bottom:1197.540000px;}
.hb{height:20.117109px;}
.h10{height:25.603594px;}
.hc{height:30.480469px;}
.hf{height:32.918906px;}
.h2{height:35.357344px;}
.h11{height:35.477578px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h8{height:45.720703px;}
.hd{height:50.273438px;}
.h5{height:50.597578px;}
.h12{height:55.762383px;}
.h7{height:56.084062px;}
.he{height:58.819922px;}
.h16{height:60.082383px;}
.h9{height:60.960938px;}
.h17{height:62.962383px;}
.h6{height:65.837812px;}
.h14{height:66.562383px;}
.h15{height:67.282383px;}
.h13{height:71.602383px;}
.ha{height:336.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:221.970000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x5{left:111.455987px;}
.x27{left:114.695987px;}
.x13{left:127.655987px;}
.x15{left:131.795987px;}
.xa{left:134.994000px;}
.x5e{left:145.835973px;}
.x3{left:147.095987px;}
.x60{left:148.895987px;}
.x1f{left:152.489973px;}
.x5f{left:156.629987px;}
.x1b{left:158.429973px;}
.xb{left:159.509987px;}
.x1c{left:163.829987px;}
.x56{left:175.169987px;}
.x2e{left:176.789973px;}
.x2f{left:187.589987px;}
.x23{left:204.689973px;}
.x24{left:215.489987px;}
.xe{left:223.769973px;}
.xf{left:229.169987px;}
.x17{left:230.429973px;}
.x21{left:233.129973px;}
.x18{left:235.829987px;}
.x22{left:243.929987px;}
.x57{left:248.069973px;}
.x4{left:251.669987px;}
.x32{left:254.729973px;}
.x58{left:258.869987px;}
.x33{left:265.529987px;}
.x38{left:275.429973px;}
.x39{left:286.274987px;}
.x4b{left:293.294973px;}
.x2c{left:304.814973px;}
.x2d{left:315.614987px;}
.x52{left:319.934987px;}
.x14{left:322.454987px;}
.x8{left:324.434987px;}
.x48{left:337.034973px;}
.x9{left:342.614987px;}
.x49{left:347.834987px;}
.x10{left:352.154973px;}
.x11{left:357.554987px;}
.x2a{left:359.894973px;}
.x12{left:362.234987px;}
.x53{left:368.354987px;}
.x2b{left:370.694987px;}
.xc{left:402.734973px;}
.xd{left:408.134987px;}
.x6{left:418.754987px;}
.x59{left:421.454973px;}
.x54{left:427.934987px;}
.x5a{left:432.254987px;}
.x20{left:435.674973px;}
.x7{left:446.654987px;}
.x4e{left:454.214987px;}
.x1d{left:455.834973px;}
.x1e{left:461.234987px;}
.x45{left:478.904973px;}
.x19{left:485.924973px;}
.x46{left:489.704987px;}
.x1a{left:491.324987px;}
.x3b{left:493.484973px;}
.x3c{left:504.284987px;}
.x43{left:508.604973px;}
.x30{left:512.564973px;}
.x16{left:514.724987px;}
.x44{left:519.404987px;}
.x31{left:523.364987px;}
.x5d{left:529.484973px;}
.x47{left:534.344987px;}
.x34{left:541.004973px;}
.x4a{left:544.784987px;}
.x35{left:551.804987px;}
.x36{left:553.604973px;}
.x37{left:564.404987px;}
.x3a{left:575.744987px;}
.x4f{left:582.914987px;}
.x41{left:602.924973px;}
.x42{left:613.724987px;}
.x28{left:616.424973px;}
.x5b{left:617.504973px;}
.x29{left:627.224987px;}
.x5c{left:628.304987px;}
.x50{left:632.414987px;}
.x4d{left:668.444987px;}
.x25{left:696.569973px;}
.x26{left:707.369987px;}
.x51{left:738.794987px;}
.x3f{left:761.549973px;}
.x40{left:772.349987px;}
.x55{left:777.929987px;}
.x3d{left:779.189973px;}
.x4c{left:783.689987px;}
.x3e{left:789.989987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.va{vertical-align:-9.600000pt;}
.v3{vertical-align:-7.680000pt;}
.vf{vertical-align:-6.400000pt;}
.v6{vertical-align:-5.120000pt;}
.v9{vertical-align:-3.840000pt;}
.v5{vertical-align:-2.560000pt;}
.ve{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.280000pt;}
.v8{vertical-align:2.560000pt;}
.v10{vertical-align:3.840000pt;}
.v7{vertical-align:5.120000pt;}
.vc{vertical-align:6.400000pt;}
.v4{vertical-align:7.680000pt;}
.vb{vertical-align:9.600000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-11.680000pt;}
.ls2c{letter-spacing:-0.714667pt;}
.ls1a{letter-spacing:-0.470400pt;}
.ls2f{letter-spacing:-0.322667pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.266133pt;}
.ls22{letter-spacing:-0.259200pt;}
.ls58{letter-spacing:-0.256533pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.251733pt;}
.ls9{letter-spacing:-0.240533pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls56{letter-spacing:-0.201067pt;}
.ls24{letter-spacing:-0.171733pt;}
.ls57{letter-spacing:-0.166400pt;}
.lsc{letter-spacing:-0.084267pt;}
.ls35{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.075733pt;}
.ls29{letter-spacing:-0.074133pt;}
.ls14{letter-spacing:-0.069333pt;}
.ls32{letter-spacing:-0.047360pt;}
.ls2e{letter-spacing:-0.046720pt;}
.lsf{letter-spacing:-0.041600pt;}
.ls23{letter-spacing:-0.033920pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls10{letter-spacing:-0.009600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.006400pt;}
.ls11{letter-spacing:0.011520pt;}
.ls27{letter-spacing:0.018560pt;}
.ls28{letter-spacing:0.046720pt;}
.ls21{letter-spacing:0.053867pt;}
.ls31{letter-spacing:0.056533pt;}
.ls59{letter-spacing:0.069333pt;}
.ls3{letter-spacing:0.125333pt;}
.ls5a{letter-spacing:0.138133pt;}
.ls15{letter-spacing:0.165867pt;}
.ls7{letter-spacing:0.166400pt;}
.ls2a{letter-spacing:0.186133pt;}
.lse{letter-spacing:0.188267pt;}
.ls3d{letter-spacing:0.190720pt;}
.ls30{letter-spacing:0.198400pt;}
.ls41{letter-spacing:0.218880pt;}
.ls19{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.284160pt;}
.ls2b{letter-spacing:0.287467pt;}
.lsb{letter-spacing:0.291733pt;}
.ls36{letter-spacing:0.317333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls54{letter-spacing:0.358400pt;}
.ls26{letter-spacing:0.473600pt;}
.ls12{letter-spacing:0.629333pt;}
.ls44{letter-spacing:0.640000pt;}
.ls45{letter-spacing:0.658560pt;}
.ls50{letter-spacing:0.749440pt;}
.ls1b{letter-spacing:0.810667pt;}
.ls55{letter-spacing:0.924160pt;}
.ls1e{letter-spacing:0.956800pt;}
.ls38{letter-spacing:1.164160pt;}
.ls3f{letter-spacing:1.280000pt;}
.ls4a{letter-spacing:1.354880pt;}
.ls4f{letter-spacing:1.389440pt;}
.ls39{letter-spacing:1.470720pt;}
.ls3e{letter-spacing:1.498880pt;}
.ls3c{letter-spacing:1.885440pt;}
.ls40{letter-spacing:2.444160pt;}
.ls42{letter-spacing:3.805440pt;}
.ls1c{letter-spacing:3.916800pt;}
.ls46{letter-spacing:4.318720pt;}
.ls4c{letter-spacing:4.744320pt;}
.ls4d{letter-spacing:5.212160pt;}
.ls48{letter-spacing:6.024320pt;}
.ls47{letter-spacing:7.456000pt;}
.ls43{letter-spacing:7.518720pt;}
.ls52{letter-spacing:8.222720pt;}
.ls3b{letter-spacing:8.435840pt;}
.ls4b{letter-spacing:8.538880pt;}
.ls18{letter-spacing:10.316800pt;}
.ls4e{letter-spacing:10.458880pt;}
.ls53{letter-spacing:10.568320pt;}
.ls17{letter-spacing:11.596800pt;}
.ls8{letter-spacing:12.326400pt;}
.ls3a{letter-spacing:13.440000pt;}
.ls49{letter-spacing:15.838720pt;}
.ls20{letter-spacing:16.592640pt;}
.ls2d{letter-spacing:19.792640pt;}
.ls34{letter-spacing:20.432640pt;}
.ls25{letter-spacing:23.632640pt;}
.ls6{letter-spacing:36.432640pt;}
.ls1d{letter-spacing:136.251307pt;}
.ls37{letter-spacing:136.891307pt;}
.wsc{word-spacing:-53.120000pt;}
.ws1d{word-spacing:-12.003733pt;}
.ws1{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.973867pt;}
.ws1b{word-spacing:-11.884800pt;}
.ws9{word-spacing:-11.874667pt;}
.ws16{word-spacing:-11.872533pt;}
.ws23{word-spacing:-11.824533pt;}
.ws3{word-spacing:-11.811733pt;}
.ws22{word-spacing:-11.755733pt;}
.ws14{word-spacing:-11.733120pt;}
.wsa{word-spacing:-11.697920pt;}
.wsb{word-spacing:-11.686400pt;}
.ws0{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.652480pt;}
.ws11{word-spacing:-11.644800pt;}
.ws19{word-spacing:-11.639680pt;}
.ws15{word-spacing:-11.612267pt;}
.ws20{word-spacing:-11.485333pt;}
.ws1c{word-spacing:-11.434667pt;}
.ws21{word-spacing:-11.429867pt;}
.ws12{word-spacing:-11.427200pt;}
.ws1a{word-spacing:-11.363733pt;}
.ws1f{word-spacing:-9.792000pt;}
.wsf{word-spacing:-9.599467pt;}
.ws2{word-spacing:-9.433600pt;}
.wse{word-spacing:-9.364267pt;}
.wsd{word-spacing:-9.357867pt;}
.ws7{word-spacing:-9.193067pt;}
.ws10{word-spacing:-9.167467pt;}
.ws18{word-spacing:-8.718933pt;}
.ws8{word-spacing:-8.082133pt;}
.ws4{word-spacing:-7.008000pt;}
.ws5{word-spacing:-6.784000pt;}
.ws1e{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
._2e{margin-left:-1689.717333pt;}
._2d{margin-left:-651.181227pt;}
._2b{margin-left:-631.366400pt;}
._2f{margin-left:-538.337280pt;}
._1c{margin-left:-11.788160pt;}
._22{margin-left:-9.876907pt;}
._2c{margin-left:-8.320000pt;}
._21{margin-left:-7.172693pt;}
._29{margin-left:-5.409920pt;}
._20{margin-left:-3.823360pt;}
._9{margin-left:-2.424960pt;}
._2{margin-left:-1.168000pt;}
._1{width:1.034667pt;}
._4{width:2.246827pt;}
._7{width:3.452800pt;}
._15{width:4.676267pt;}
._13{width:5.577600pt;}
._12{width:6.845013pt;}
._11{width:7.861760pt;}
._1f{width:9.053440pt;}
._5{width:10.032000pt;}
._19{width:11.706667pt;}
._c{width:12.698027pt;}
._17{width:14.023893pt;}
._18{width:14.986880pt;}
._1d{width:16.186667pt;}
._b{width:17.372587pt;}
._a{width:18.432640pt;}
._2a{width:19.416533pt;}
._16{width:20.716800pt;}
._26{width:21.649920pt;}
._30{width:22.788480pt;}
._f{width:24.037973pt;}
._10{width:25.178880pt;}
._28{width:26.157440pt;}
._27{width:27.186133pt;}
._1e{width:28.287573pt;}
._8{width:29.906560pt;}
._e{width:31.236907pt;}
._d{width:32.668800pt;}
._25{width:38.252160pt;}
._1a{width:41.783360pt;}
._23{width:45.090347pt;}
._24{width:47.258880pt;}
._0{width:66.666667pt;}
._14{width:73.836800pt;}
._3{width:161.440000pt;}
._6{width:178.026667pt;}
._1b{width:950.833067pt;}
.fs7{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:41.600000pt;}
.y7{bottom:50.240000pt;}
.y53{bottom:53.440000pt;}
.y6{bottom:62.752000pt;}
.y52{bottom:62.880000pt;}
.y51{bottom:72.160000pt;}
.y50{bottom:87.840000pt;}
.y9a{bottom:96.832000pt;}
.y99{bottom:99.552000pt;}
.y98{bottom:109.312000pt;}
.ye3{bottom:112.032000pt;}
.y40{bottom:112.992000pt;}
.y97{bottom:121.792000pt;}
.ye2{bottom:122.912000pt;}
.y96{bottom:124.512000pt;}
.y3f{bottom:128.672000pt;}
.y95{bottom:134.266667pt;}
.y4f{bottom:134.880000pt;}
.y94{bottom:136.986667pt;}
.y3e{bottom:144.186667pt;}
.y93{bottom:146.746667pt;}
.y4e{bottom:147.360000pt;}
.yd7{bottom:147.866667pt;}
.yed{bottom:149.466667pt;}
.y123{bottom:155.546667pt;}
.y92{bottom:159.386667pt;}
.y3d{bottom:159.866667pt;}
.y4d{bottom:160.000000pt;}
.yec{bottom:160.346667pt;}
.y91{bottom:162.106667pt;}
.yd6{bottom:168.506667pt;}
.ye1{bottom:171.226667pt;}
.y11f{bottom:171.866667pt;}
.y4c{bottom:172.480000pt;}
.y90{bottom:172.986667pt;}
.y11e{bottom:174.586667pt;}
.y3c{bottom:175.546667pt;}
.yd5{bottom:184.026667pt;}
.y4b{bottom:184.960000pt;}
.y11d{bottom:185.466667pt;}
.ye0{bottom:186.906667pt;}
.ye6{bottom:187.386667pt;}
.y3b{bottom:191.226667pt;}
.y4a{bottom:197.440000pt;}
.yd4{bottom:199.706667pt;}
.y8f{bottom:200.186667pt;}
.ydf{bottom:202.426667pt;}
.y3a{bottom:206.746667pt;}
.y49{bottom:208.640000pt;}
.yd3{bottom:215.386667pt;}
.y8e{bottom:215.866667pt;}
.y48{bottom:216.160000pt;}
.yde{bottom:218.106667pt;}
.y11c{bottom:218.746667pt;}
.y39{bottom:222.426667pt;}
.y47{bottom:228.800000pt;}
.yd2{bottom:230.906667pt;}
.y8d{bottom:231.546667pt;}
.ydd{bottom:233.786667pt;}
.y11b{bottom:234.266667pt;}
.y38{bottom:238.106667pt;}
.y46{bottom:241.320000pt;}
.yd1{bottom:246.586667pt;}
.y8c{bottom:247.066667pt;}
.ydc{bottom:249.306667pt;}
.y11a{bottom:249.946667pt;}
.yf5{bottom:252.666667pt;}
.y37{bottom:253.626667pt;}
.y45{bottom:253.800000pt;}
.yd0{bottom:262.266667pt;}
.y8b{bottom:263.386667pt;}
.ydb{bottom:264.986667pt;}
.y118{bottom:265.626667pt;}
.y44{bottom:266.280000pt;}
.y119{bottom:268.986667pt;}
.y36{bottom:269.306667pt;}
.y43{bottom:277.480000pt;}
.ycf{bottom:277.786667pt;}
.y8a{bottom:279.706667pt;}
.yda{bottom:280.666667pt;}
.yf8{bottom:281.146667pt;}
.y35{bottom:284.986667pt;}
.y42{bottom:287.400000pt;}
.yce{bottom:293.466667pt;}
.y89{bottom:296.186667pt;}
.y117{bottom:296.826667pt;}
.y34{bottom:300.546667pt;}
.ycd{bottom:309.186667pt;}
.y88{bottom:311.906667pt;}
.y116{bottom:312.546667pt;}
.yeb{bottom:315.266667pt;}
.y33{bottom:316.226667pt;}
.ycc{bottom:324.706667pt;}
.y87{bottom:327.586667pt;}
.y115{bottom:328.226667pt;}
.yf4{bottom:330.946667pt;}
.y32{bottom:331.906667pt;}
.ycb{bottom:340.386667pt;}
.y86{bottom:343.266667pt;}
.y114{bottom:343.746667pt;}
.y31{bottom:347.586667pt;}
.yca{bottom:356.066667pt;}
.y85{bottom:358.786667pt;}
.y113{bottom:359.426667pt;}
.y30{bottom:363.106667pt;}
.yc9{bottom:371.746667pt;}
.y84{bottom:374.466667pt;}
.y112{bottom:375.106667pt;}
.y2f{bottom:378.786667pt;}
.yc8{bottom:387.266667pt;}
.y83{bottom:390.146667pt;}
.y111{bottom:390.626667pt;}
.y2e{bottom:394.466667pt;}
.yc6{bottom:402.946667pt;}
.y82{bottom:405.666667pt;}
.yc7{bottom:406.306667pt;}
.yd9{bottom:409.026667pt;}
.y2d{bottom:411.746667pt;}
.yc5{bottom:418.626667pt;}
.y81{bottom:421.346667pt;}
.y110{bottom:421.986667pt;}
.y2c{bottom:426.146667pt;}
.yc4{bottom:434.146667pt;}
.y80{bottom:437.026667pt;}
.y10f{bottom:437.506667pt;}
.y2b{bottom:441.666667pt;}
.yc3{bottom:449.826667pt;}
.y7f{bottom:452.546667pt;}
.yf7{bottom:453.186667pt;}
.y2a{bottom:457.346667pt;}
.yc2{bottom:465.506667pt;}
.y7d{bottom:468.226667pt;}
.y10e{bottom:468.866667pt;}
.y7e{bottom:471.586667pt;}
.y29{bottom:473.026667pt;}
.yc1{bottom:481.026667pt;}
.y7c{bottom:483.906667pt;}
.y10d{bottom:484.386667pt;}
.y28{bottom:488.706667pt;}
.yc0{bottom:496.706667pt;}
.y7b{bottom:499.426667pt;}
.y10c{bottom:499.746667pt;}
.yea{bottom:502.786667pt;}
.y27{bottom:504.226667pt;}
.ybf{bottom:512.386667pt;}
.y7a{bottom:515.106667pt;}
.y10b{bottom:515.426667pt;}
.y26{bottom:519.906667pt;}
.ybe{bottom:528.066667pt;}
.y79{bottom:530.786667pt;}
.y10a{bottom:531.106667pt;}
.ye5{bottom:531.426667pt;}
.y25{bottom:535.586667pt;}
.y41{bottom:542.653333pt;}
.ybd{bottom:543.613333pt;}
.y78{bottom:546.493333pt;}
.y109{bottom:546.653333pt;}
.yd8{bottom:549.853333pt;}
.y24{bottom:551.133333pt;}
.ybc{bottom:559.293333pt;}
.y77{bottom:562.013333pt;}
.y108{bottom:562.333333pt;}
.yf0{bottom:562.653333pt;}
.yf3{bottom:565.373333pt;}
.y23{bottom:566.813333pt;}
.ybb{bottom:574.973333pt;}
.y76{bottom:577.693333pt;}
.y107{bottom:578.013333pt;}
.y22{bottom:582.493333pt;}
.yba{bottom:590.493333pt;}
.y75{bottom:593.373333pt;}
.y106{bottom:593.693333pt;}
.y21{bottom:598.013333pt;}
.yb9{bottom:606.173333pt;}
.y74{bottom:608.893333pt;}
.y105{bottom:609.213333pt;}
.y121{bottom:609.533333pt;}
.ye9{bottom:612.253333pt;}
.y20{bottom:613.693333pt;}
.yb8{bottom:621.853333pt;}
.y73{bottom:624.573333pt;}
.y104{bottom:624.893333pt;}
.y1f{bottom:629.373333pt;}
.yb7{bottom:637.373333pt;}
.y71{bottom:640.253333pt;}
.y103{bottom:640.573333pt;}
.y72{bottom:643.613333pt;}
.y1e{bottom:645.053333pt;}
.yb6{bottom:653.053333pt;}
.y70{bottom:655.773333pt;}
.y102{bottom:656.093333pt;}
.yef{bottom:656.413333pt;}
.y1d{bottom:660.573333pt;}
.yb4{bottom:668.733333pt;}
.y6f{bottom:671.453333pt;}
.y100{bottom:671.773333pt;}
.yb5{bottom:672.093333pt;}
.y101{bottom:675.133333pt;}
.y1c{bottom:676.253333pt;}
.yb3{bottom:684.413333pt;}
.y6e{bottom:687.133333pt;}
.yff{bottom:687.453333pt;}
.y1b{bottom:691.933333pt;}
.yb2{bottom:699.933333pt;}
.y6d{bottom:702.813333pt;}
.yfe{bottom:702.973333pt;}
.yf2{bottom:706.173333pt;}
.y1a{bottom:707.453333pt;}
.yb1{bottom:715.613333pt;}
.y6c{bottom:718.333333pt;}
.yfd{bottom:718.653333pt;}
.y19{bottom:723.133333pt;}
.yb0{bottom:731.293333pt;}
.y6b{bottom:734.013333pt;}
.yfc{bottom:734.173333pt;}
.ye8{bottom:737.373333pt;}
.y18{bottom:738.813333pt;}
.yaf{bottom:746.813333pt;}
.y6a{bottom:749.693333pt;}
.y17{bottom:754.333333pt;}
.yae{bottom:762.493333pt;}
.y69{bottom:765.213333pt;}
.yee{bottom:765.853333pt;}
.yfb{bottom:768.573333pt;}
.y16{bottom:770.013333pt;}
.yac{bottom:778.213333pt;}
.y67{bottom:780.933333pt;}
.yad{bottom:781.573333pt;}
.y68{bottom:784.293333pt;}
.y15{bottom:785.733333pt;}
.yab{bottom:793.733333pt;}
.y66{bottom:796.613333pt;}
.y14{bottom:801.253333pt;}
.yaa{bottom:809.413333pt;}
.y65{bottom:812.133333pt;}
.y120{bottom:812.773333pt;}
.y122{bottom:815.493333pt;}
.y13{bottom:816.933333pt;}
.ya9{bottom:825.093333pt;}
.y64{bottom:827.813333pt;}
.y12{bottom:832.613333pt;}
.ya8{bottom:840.613333pt;}
.y63{bottom:843.493333pt;}
.yf6{bottom:843.973333pt;}
.yf1{bottom:846.853333pt;}
.y11{bottom:847.973333pt;}
.ya7{bottom:856.293333pt;}
.y62{bottom:859.173333pt;}
.y10{bottom:861.733333pt;}
.ya6{bottom:871.973333pt;}
.yf{bottom:874.533333pt;}
.y61{bottom:874.693333pt;}
.yfa{bottom:878.053333pt;}
.ya5{bottom:887.653333pt;}
.ye{bottom:889.093333pt;}
.y60{bottom:890.373333pt;}
.ya4{bottom:903.173333pt;}
.yd{bottom:905.413333pt;}
.y5e{bottom:906.053333pt;}
.y5f{bottom:909.413333pt;}
.yc{bottom:918.533333pt;}
.ya3{bottom:918.853333pt;}
.y5d{bottom:921.573333pt;}
.ye7{bottom:924.933333pt;}
.yb{bottom:934.213333pt;}
.ya2{bottom:934.533333pt;}
.y5c{bottom:937.253333pt;}
.ya1{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.y5b{bottom:952.933333pt;}
.ya0{bottom:965.733333pt;}
.y5a{bottom:968.453333pt;}
.y9{bottom:971.013333pt;}
.yf9{bottom:971.813333pt;}
.y9f{bottom:981.413333pt;}
.y59{bottom:984.133333pt;}
.y8{bottom:990.533333pt;}
.y9e{bottom:996.933333pt;}
.y58{bottom:999.813333pt;}
.ye4{bottom:1000.293333pt;}
.y5{bottom:1008.933333pt;}
.y9d{bottom:1012.640000pt;}
.y57{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y9c{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y56{bottom:1044.640000pt;}
.y9b{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y55{bottom:1064.480000pt;}
.hb{height:17.881875pt;}
.h10{height:22.758750pt;}
.hc{height:27.093750pt;}
.hf{height:29.261250pt;}
.h2{height:31.428750pt;}
.h11{height:31.535625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h8{height:40.640625pt;}
.hd{height:44.687500pt;}
.h5{height:44.975625pt;}
.h12{height:49.566563pt;}
.h7{height:49.852500pt;}
.he{height:52.284375pt;}
.h16{height:53.406563pt;}
.h9{height:54.187500pt;}
.h17{height:55.966562pt;}
.h6{height:58.522500pt;}
.h14{height:59.166563pt;}
.h15{height:59.806562pt;}
.h13{height:63.646563pt;}
.ha{height:298.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.306667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x5{left:99.071988pt;}
.x27{left:101.951988pt;}
.x13{left:113.471988pt;}
.x15{left:117.151988pt;}
.xa{left:119.994667pt;}
.x5e{left:129.631976pt;}
.x3{left:130.751988pt;}
.x60{left:132.351988pt;}
.x1f{left:135.546643pt;}
.x5f{left:139.226655pt;}
.x1b{left:140.826643pt;}
.xb{left:141.786655pt;}
.x1c{left:145.626655pt;}
.x56{left:155.706655pt;}
.x2e{left:157.146643pt;}
.x2f{left:166.746655pt;}
.x23{left:181.946643pt;}
.x24{left:191.546655pt;}
.xe{left:198.906643pt;}
.xf{left:203.706655pt;}
.x17{left:204.826643pt;}
.x21{left:207.226643pt;}
.x18{left:209.626655pt;}
.x22{left:216.826655pt;}
.x57{left:220.506643pt;}
.x4{left:223.706655pt;}
.x32{left:226.426643pt;}
.x58{left:230.106655pt;}
.x33{left:236.026655pt;}
.x38{left:244.826643pt;}
.x39{left:254.466655pt;}
.x4b{left:260.706643pt;}
.x2c{left:270.946643pt;}
.x2d{left:280.546655pt;}
.x52{left:284.386655pt;}
.x14{left:286.626655pt;}
.x8{left:288.386655pt;}
.x48{left:299.586643pt;}
.x9{left:304.546655pt;}
.x49{left:309.186655pt;}
.x10{left:313.026643pt;}
.x11{left:317.826655pt;}
.x2a{left:319.906643pt;}
.x12{left:321.986655pt;}
.x53{left:327.426655pt;}
.x2b{left:329.506655pt;}
.xc{left:357.986643pt;}
.xd{left:362.786655pt;}
.x6{left:372.226655pt;}
.x59{left:374.626643pt;}
.x54{left:380.386655pt;}
.x5a{left:384.226655pt;}
.x20{left:387.266643pt;}
.x7{left:397.026655pt;}
.x4e{left:403.746655pt;}
.x1d{left:405.186643pt;}
.x1e{left:409.986655pt;}
.x45{left:425.693310pt;}
.x19{left:431.933310pt;}
.x46{left:435.293322pt;}
.x1a{left:436.733322pt;}
.x3b{left:438.653310pt;}
.x3c{left:448.253322pt;}
.x43{left:452.093310pt;}
.x30{left:455.613310pt;}
.x16{left:457.533322pt;}
.x44{left:461.693322pt;}
.x31{left:465.213322pt;}
.x5d{left:470.653310pt;}
.x47{left:474.973322pt;}
.x34{left:480.893310pt;}
.x4a{left:484.253322pt;}
.x35{left:490.493322pt;}
.x36{left:492.093310pt;}
.x37{left:501.693322pt;}
.x3a{left:511.773322pt;}
.x4f{left:518.146655pt;}
.x41{left:535.933310pt;}
.x42{left:545.533322pt;}
.x28{left:547.933310pt;}
.x5b{left:548.893310pt;}
.x29{left:557.533322pt;}
.x5c{left:558.493322pt;}
.x50{left:562.146655pt;}
.x4d{left:594.173322pt;}
.x25{left:619.173310pt;}
.x26{left:628.773322pt;}
.x51{left:656.706655pt;}
.x3f{left:676.933310pt;}
.x40{left:686.533322pt;}
.x55{left:691.493322pt;}
.x3d{left:692.613310pt;}
.x4c{left:696.613322pt;}
.x3e{left:702.213322pt;}
}




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