
    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_0006fd80bbc2c441c87f932f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_9558e6653162a876fd05842a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_04003fc177784f47803c925c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_5125f91ee56ba97adb6d02ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_5ddb6fd04dba4548262bb1e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.482000;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_ffa92df0bb2c99cbc865e29c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.579000;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_14a37080cdc7af0999e63c3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.234000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.702000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.242000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.989200px;}
.ls6{letter-spacing:17.771407px;}
.ls5{letter-spacing:17.813400px;}
.ls9{letter-spacing:17.879407px;}
.ls8{letter-spacing:17.885407px;}
.ls7{letter-spacing:17.921400px;}
.lsd{letter-spacing:18.173407px;}
.lsc{letter-spacing:18.209400px;}
.ls16{letter-spacing:19.979407px;}
.ls15{letter-spacing:20.021400px;}
.ls14{letter-spacing:20.141407px;}
.ls13{letter-spacing:20.189400px;}
.ls19{letter-spacing:21.518700px;}
.lsf{letter-spacing:21.953407px;}
.lse{letter-spacing:21.995400px;}
.ls10{letter-spacing:23.896940px;}
.lsa{letter-spacing:23.902940px;}
.lsb{letter-spacing:26.951407px;}
.ls4{letter-spacing:29.974500px;}
.ls17{letter-spacing:35.975100px;}
.ls12{letter-spacing:36.803407px;}
.ls18{letter-spacing:42.145217px;}
.ls11{letter-spacing:45.418940px;}
.ls1a{letter-spacing:55.798500px;}
.ls3{letter-spacing:415.691400px;}
.ls2{letter-spacing:437.207400px;}
.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;}
}
.ws77{word-spacing:-21.519300px;}
.ws3{word-spacing:-14.943900px;}
.ws3a{word-spacing:-4.992478px;}
.ws31{word-spacing:-4.217783px;}
.ws8{word-spacing:-2.926625px;}
.ws50{word-spacing:-2.151930px;}
.ws25{word-spacing:-1.721544px;}
.wsa{word-spacing:-1.635467px;}
.ws55{word-spacing:-1.549390px;}
.ws37{word-spacing:-1.463312px;}
.ws56{word-spacing:-1.119004px;}
.ws4c{word-spacing:-1.032926px;}
.ws38{word-spacing:-0.946849px;}
.ws23{word-spacing:-0.086077px;}
.ws2{word-spacing:-0.059776px;}
.ws11{word-spacing:-0.001258px;}
.ws1{word-spacing:0.000000px;}
.ws26{word-spacing:0.086077px;}
.ws53{word-spacing:0.172154px;}
.ws2b{word-spacing:0.258232px;}
.ws2c{word-spacing:0.344309px;}
.ws29{word-spacing:0.602540px;}
.ws22{word-spacing:0.946849px;}
.wsb{word-spacing:1.032926px;}
.ws4a{word-spacing:1.119004px;}
.ws67{word-spacing:1.291158px;}
.ws7{word-spacing:1.377235px;}
.ws36{word-spacing:1.635467px;}
.ws58{word-spacing:1.721544px;}
.ws3b{word-spacing:1.893698px;}
.ws28{word-spacing:1.979776px;}
.ws4d{word-spacing:2.668393px;}
.ws42{word-spacing:2.754470px;}
.ws9{word-spacing:2.926625px;}
.ws63{word-spacing:3.098779px;}
.ws5b{word-spacing:3.529165px;}
.ws40{word-spacing:3.787397px;}
.ws46{word-spacing:4.217783px;}
.ws3f{word-spacing:4.476014px;}
.ws5d{word-spacing:4.820323px;}
.ws59{word-spacing:4.906400px;}
.ws68{word-spacing:5.078555px;}
.ws48{word-spacing:5.250709px;}
.ws72{word-spacing:5.508941px;}
.ws35{word-spacing:5.595018px;}
.ws33{word-spacing:5.681095px;}
.ws6f{word-spacing:5.939327px;}
.ws69{word-spacing:6.283636px;}
.ws6a{word-spacing:6.369713px;}
.ws6d{word-spacing:6.408900px;}
.ws44{word-spacing:6.627944px;}
.ws41{word-spacing:6.714022px;}
.ws52{word-spacing:7.058330px;}
.ws65{word-spacing:7.402639px;}
.ws24{word-spacing:8.005180px;}
.ws30{word-spacing:9.210260px;}
.ws2a{word-spacing:9.812801px;}
.ws2d{word-spacing:10.845727px;}
.ws2f{word-spacing:10.931804px;}
.ws5e{word-spacing:11.276113px;}
.ws0{word-spacing:14.884124px;}
.ws93{word-spacing:16.268591px;}
.ws7c{word-spacing:16.698977px;}
.ws32{word-spacing:17.231651px;}
.ws5{word-spacing:17.861069px;}
.ws81{word-spacing:18.162289px;}
.ws82{word-spacing:18.850907px;}
.ws51{word-spacing:19.307508px;}
.ws83{word-spacing:19.453447px;}
.ws9c{word-spacing:19.797756px;}
.ws1b{word-spacing:19.883833px;}
.wsf{word-spacing:19.941274px;}
.ws88{word-spacing:20.228142px;}
.ws91{word-spacing:20.572451px;}
.ws7d{word-spacing:20.658528px;}
.ws92{word-spacing:20.744605px;}
.ws7f{word-spacing:20.830682px;}
.ws80{word-spacing:20.916760px;}
.ws90{word-spacing:21.174991px;}
.ws75{word-spacing:21.421931px;}
.ws39{word-spacing:21.425508px;}
.ws71{word-spacing:21.426522px;}
.wsa5{word-spacing:21.427721px;}
.ws73{word-spacing:21.428362px;}
.ws3e{word-spacing:21.430108px;}
.ws9d{word-spacing:21.430823px;}
.ws95{word-spacing:21.431423px;}
.ws5a{word-spacing:21.431508px;}
.ws89{word-spacing:21.432023px;}
.ws14{word-spacing:21.433223px;}
.ws8f{word-spacing:21.435115px;}
.ws74{word-spacing:21.435223px;}
.ws54{word-spacing:21.575508px;}
.ws86{word-spacing:21.605377px;}
.ws87{word-spacing:21.691454px;}
.ws60{word-spacing:22.014522px;}
.ws43{word-spacing:22.028893px;}
.wsa3{word-spacing:22.035763px;}
.wsa4{word-spacing:22.121840px;}
.ws10{word-spacing:22.156723px;}
.wse{word-spacing:22.157856px;}
.wsd{word-spacing:22.158653px;}
.ws12{word-spacing:22.163174px;}
.wsc{word-spacing:22.466149px;}
.ws57{word-spacing:23.189651px;}
.ws3d{word-spacing:23.326921px;}
.ws3c{word-spacing:23.357651px;}
.ws8b{word-spacing:23.757307px;}
.ws84{word-spacing:24.015539px;}
.ws1a{word-spacing:24.101616px;}
.ws94{word-spacing:24.187693px;}
.ws96{word-spacing:24.359848px;}
.ws64{word-spacing:24.575508px;}
.ws85{word-spacing:24.704156px;}
.ws5c{word-spacing:24.977508px;}
.ws47{word-spacing:25.653754px;}
.ws79{word-spacing:25.719808px;}
.ws99{word-spacing:26.167469px;}
.ws9a{word-spacing:26.253546px;}
.ws8d{word-spacing:26.339623px;}
.ws49{word-spacing:26.688522px;}
.ws17{word-spacing:26.856086px;}
.ws4b{word-spacing:26.905523px;}
.ws8a{word-spacing:26.942164px;}
.ws34{word-spacing:27.077508px;}
.ws62{word-spacing:27.118769px;}
.ws61{word-spacing:27.121800px;}
.ws4e{word-spacing:27.139922px;}
.ws4f{word-spacing:27.143508px;}
.ws9b{word-spacing:27.372550px;}
.ws70{word-spacing:27.384522px;}
.ws8e{word-spacing:27.544704px;}
.ws6c{word-spacing:27.835523px;}
.ws45{word-spacing:28.097508px;}
.ws19{word-spacing:28.147244px;}
.ws8c{word-spacing:28.319399px;}
.ws66{word-spacing:28.828769px;}
.ws16{word-spacing:29.094094px;}
.ws97{word-spacing:29.610557px;}
.ws18{word-spacing:29.696634px;}
.ws6{word-spacing:30.869775px;}
.ws27{word-spacing:31.246024px;}
.ws98{word-spacing:31.676410px;}
.ws2e{word-spacing:32.319754px;}
.ws5f{word-spacing:32.709336px;}
.ws6e{word-spacing:36.757523px;}
.ws6b{word-spacing:36.763523px;}
.ws4{word-spacing:37.031927px;}
.ws7e{word-spacing:42.053308px;}
.ws78{word-spacing:42.053908px;}
.ws76{word-spacing:42.054023px;}
.wsa6{word-spacing:42.780368px;}
.wsa7{word-spacing:42.866446px;}
.wsa1{word-spacing:44.587990px;}
.wsa0{word-spacing:47.084228px;}
.wsa2{word-spacing:50.355162px;}
.ws7a{word-spacing:56.208412px;}
.ws7b{word-spacing:64.902209px;}
.ws9e{word-spacing:66.193367px;}
.ws9f{word-spacing:77.383403px;}
.wsaa{word-spacing:81.773340px;}
.ws13{word-spacing:85.991123px;}
.ws1c{word-spacing:88.379497px;}
.wsa8{word-spacing:89.520288px;}
.wsa9{word-spacing:106.649651px;}
.ws15{word-spacing:123.851025px;}
.ws20{word-spacing:394.082723px;}
.ws1f{word-spacing:415.598723px;}
.ws21{word-spacing:482.180723px;}
.ws1e{word-spacing:503.703323px;}
.ws1d{word-spacing:525.219323px;}
._5{margin-left:-13.761225px;}
._2b{margin-left:-9.554569px;}
._14{margin-left:-8.091257px;}
._9{margin-left:-6.898172px;}
._0{margin-left:-5.499355px;}
._1{margin-left:-3.287658px;}
._7{margin-left:-2.151930px;}
._2{margin-left:-1.075961px;}
._2a{width:6.818625px;}
._2e{width:17.442328px;}
._3{width:18.530429px;}
._26{width:20.486374px;}
._4{width:22.233552px;}
._23{width:24.532002px;}
._6{width:25.737083px;}
._21{width:27.114318px;}
._10{width:28.147244px;}
._1c{width:29.825746px;}
._12{width:31.762487px;}
._15{width:33.699220px;}
._8{width:34.861266px;}
._24{width:36.083071px;}
._22{width:37.960045px;}
._25{width:39.337280px;}
._28{width:41.446168px;}
._f{width:43.038600px;}
._20{width:44.083523px;}
._13{width:45.879148px;}
._27{width:47.901958px;}
._29{width:49.479518px;}
._11{width:51.258968px;}
._31{width:52.778388px;}
._1f{width:53.884319px;}
._1d{width:55.278287px;}
._2d{width:56.735159px;}
._1e{width:59.307674px;}
._2c{width:64.945378px;}
._30{width:67.026173px;}
._2f{width:77.454661px;}
._b{width:86.077200px;}
._16{width:87.518825px;}
._17{width:89.060365px;}
._33{width:90.260486px;}
._34{width:96.918162px;}
._32{width:106.855067px;}
._1b{width:123.975000px;}
._1a{width:666.082800px;}
._19{width:687.598800px;}
._18{width:709.121400px;}
._e{width:2819.458686px;}
._d{width:2862.521585px;}
._c{width:2905.559585px;}
._a{width:3412.468216px;}
.fc2{color:rgb(141,134,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:45.429600px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs8{font-size:89.692200px;}
.fs9{font-size:89.692800px;}
.fs7{font-size:103.292400px;}
.fs6{font-size:107.631000px;}
.fs3{font-size:123.975000px;}
.fsa{font-size:129.181800px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y15{bottom:74.835000px;}
.y91{bottom:125.859000px;}
.y14{bottom:125.881500px;}
.y109{bottom:129.096000px;}
.y4a{bottom:133.813500px;}
.ydb{bottom:143.053500px;}
.y59{bottom:145.851000px;}
.y13{bottom:146.803500px;}
.yf0{bottom:150.526500px;}
.y90{bottom:153.804000px;}
.y5d{bottom:156.696000px;}
.y108{bottom:157.041000px;}
.y49{bottom:161.758500px;}
.y12{bottom:167.724000px;}
.yc1{bottom:175.114500px;}
.yef{bottom:178.471500px;}
.ya2{bottom:179.608500px;}
.yda{bottom:179.965500px;}
.y8f{bottom:181.749000px;}
.yb8{bottom:183.880500px;}
.y48{bottom:189.703500px;}
.y11{bottom:194.071500px;}
.y58{bottom:195.106500px;}
.y107{bottom:205.908000px;}
.yc6{bottom:206.106000px;}
.y8e{bottom:209.694000px;}
.y120{bottom:215.562000px;}
.yd9{bottom:225.843000px;}
.yee{bottom:227.338500px;}
.ya1{bottom:228.864000px;}
.y47{bottom:231.547500px;}
.yb7{bottom:233.136000px;}
.y106{bottom:233.853000px;}
.yc5{bottom:234.051000px;}
.y11f{bottom:243.507000px;}
.yc0{bottom:248.637000px;}
.y8d{bottom:251.538000px;}
.y3d{bottom:254.581500px;}
.yed{bottom:255.283500px;}
.yc4{bottom:261.996000px;}
.yce{bottom:264.147000px;}
.y57{bottom:268.632000px;}
.yd8{bottom:271.722000px;}
.ybf{bottom:276.583500px;}
.y105{bottom:282.720000px;}
.yc3{bottom:289.942500px;}
.y11e{bottom:292.374000px;}
.y56{bottom:296.577000px;}
.ya0{bottom:302.388000px;}
.y3c{bottom:303.837000px;}
.yec{bottom:304.150500px;}
.ybe{bottom:304.528500px;}
.yb6{bottom:306.660000px;}
.yd7{bottom:308.634000px;}
.y104{bottom:310.665000px;}
.ycd{bottom:313.402500px;}
.y11d{bottom:320.319000px;}
.y55{bottom:324.522000px;}
.y9f{bottom:330.333000px;}
.yc2{bottom:331.785000px;}
.yeb{bottom:332.095500px;}
.ybd{bottom:332.473500px;}
.yb5{bottom:334.605000px;}
.y54{bottom:352.467000px;}
.yd6{bottom:354.511500px;}
.y9e{bottom:358.279500px;}
.y103{bottom:359.532000px;}
.yb4{bottom:362.550000px;}
.y11c{bottom:369.186000px;}
.ybc{bottom:374.317500px;}
.y53{bottom:380.413500px;}
.yea{bottom:380.962500px;}
.y9d{bottom:386.224500px;}
.ycc{bottom:386.926500px;}
.y102{bottom:387.477000px;}
.yb3{bottom:390.496500px;}
.y25{bottom:396.804000px;}
.y11b{bottom:397.131000px;}
.yd5{bottom:406.368000px;}
.y52{bottom:408.358500px;}
.ye9{bottom:408.907500px;}
.y3b{bottom:413.644500px;}
.ycb{bottom:414.873000px;}
.y5c{bottom:427.911000px;}
.y9c{bottom:432.102000px;}
.y101{bottom:436.344000px;}
.yb2{bottom:436.374000px;}
.y7f{bottom:437.887500px;}
.yca{bottom:442.818000px;}
.y11a{bottom:445.998000px;}
.y24{bottom:446.268000px;}
.y3a{bottom:447.268500px;}
.y51{bottom:450.201000px;}
.yd4{bottom:455.622000px;}
.y5b{bottom:455.856000px;}
.ye8{bottom:457.774500px;}
.y8a{bottom:459.166500px;}
.y9b{bottom:460.048500px;}
.y100{bottom:464.290500px;}
.yb1{bottom:464.319000px;}
.yc9{bottom:470.763000px;}
.y119{bottom:473.944500px;}
.yaf{bottom:476.112000px;}
.y39{bottom:480.892500px;}
.ye7{bottom:485.719500px;}
.y7e{bottom:487.143000px;}
.y10{bottom:492.439500px;}
.y23{bottom:495.733500px;}
.y5a{bottom:497.700000px;}
.y9a{bottom:501.891000px;}
.y99{bottom:510.097500px;}
.yff{bottom:513.157500px;}
.y38{bottom:514.516500px;}
.yc8{bottom:516.642000px;}
.y89{bottom:517.224000px;}
.yf{bottom:522.925500px;}
.yd3{bottom:529.147500px;}
.y118{bottom:536.709000px;}
.yae{bottom:539.994000px;}
.yfe{bottom:541.102500px;}
.y22{bottom:545.197500px;}
.y37{bottom:548.140500px;}
.ye6{bottom:548.485500px;}
.ye{bottom:553.411500px;}
.yd2{bottom:557.092500px;}
.y7d{bottom:560.667000px;}
.y88{bottom:566.479500px;}
.yad{bottom:567.939000px;}
.y36{bottom:581.764500px;}
.yd{bottom:583.896000px;}
.yd1{bottom:585.037500px;}
.y7c{bottom:588.612000px;}
.yfd{bottom:589.969500px;}
.y21{bottom:594.661500px;}
.y8b{bottom:595.137000px;}
.yac{bottom:595.884000px;}
.y117{bottom:611.952000px;}
.yd0{bottom:612.984000px;}
.yc{bottom:614.382000px;}
.y35{bottom:615.388500px;}
.y7b{bottom:616.558500px;}
.yfc{bottom:617.914500px;}
.y66{bottom:619.447500px;}
.ye5{bottom:623.728500px;}
.yab{bottom:623.830500px;}
.y116{bottom:639.897000px;}
.y87{bottom:640.005000px;}
.y20{bottom:644.127000px;}
.yb{bottom:644.868000px;}
.y34{bottom:649.012500px;}
.ye4{bottom:651.673500px;}
.yaa{bottom:651.775500px;}
.ycf{bottom:654.826500px;}
.y7a{bottom:662.436000px;}
.yfb{bottom:666.781500px;}
.y86{bottom:667.950000px;}
.y65{bottom:677.505000px;}
.ya9{bottom:679.720500px;}
.y67{bottom:680.164500px;}
.y33{bottom:682.636500px;}
.yb0{bottom:685.449000px;}
.y115{bottom:688.764000px;}
.y79{bottom:690.381000px;}
.y46{bottom:690.655500px;}
.y1f{bottom:693.591000px;}
.yfa{bottom:694.726500px;}
.y85{bottom:695.895000px;}
.ya{bottom:699.264000px;}
.ye3{bottom:700.540500px;}
.y121{bottom:704.754000px;}
.ya8{bottom:707.665500px;}
.y32{bottom:716.260500px;}
.y114{bottom:716.709000px;}
.y50{bottom:718.036500px;}
.y78{bottom:718.327500px;}
.y45{bottom:718.602000px;}
.y64{bottom:726.760500px;}
.ye2{bottom:728.485500px;}
.ya7{bottom:735.612000px;}
.y84{bottom:741.772500px;}
.y1e{bottom:743.056500px;}
.yf9{bottom:743.593500px;}
.yc7{bottom:745.342500px;}
.y77{bottom:746.272500px;}
.y31{bottom:749.884500px;}
.y72{bottom:755.250000px;}
.ya6{bottom:763.557000px;}
.y113{bottom:765.576000px;}
.y4f{bottom:767.292000px;}
.y44{bottom:767.857500px;}
.y83{bottom:769.719000px;}
.yf8{bottom:771.538500px;}
.y76{bottom:774.217500px;}
.y30{bottom:783.508500px;}
.ye1{bottom:791.250000px;}
.y1d{bottom:792.520500px;}
.y112{bottom:793.521000px;}
.y9{bottom:796.839000px;}
.y82{bottom:797.664000px;}
.y63{bottom:800.284500px;}
.y75{bottom:802.162500px;}
.ya5{bottom:805.399500px;}
.ya4{bottom:812.001000px;}
.ya3{bottom:812.002500px;}
.y71{bottom:813.307500px;}
.y2f{bottom:817.132500px;}
.yf7{bottom:820.405500px;}
.y81{bottom:825.609000px;}
.y62{bottom:828.231000px;}
.y98{bottom:829.432500px;}
.y4e{bottom:840.817500px;}
.y43{bottom:841.381500px;}
.y1c{bottom:841.986000px;}
.y111{bottom:842.388000px;}
.y74{bottom:844.006500px;}
.yf6{bottom:848.350500px;}
.y2e{bottom:850.756500px;}
.y73{bottom:852.234000px;}
.y61{bottom:856.176000px;}
.y70{bottom:862.563000px;}
.ye0{bottom:866.493000px;}
.y80{bottom:867.453000px;}
.y4d{bottom:868.762500px;}
.y42{bottom:869.326500px;}
.y110{bottom:870.334500px;}
.y8c{bottom:875.841000px;}
.y60{bottom:884.121000px;}
.y2d{bottom:884.380500px;}
.y8{bottom:884.560500px;}
.y97{bottom:887.490000px;}
.y1b{bottom:891.450000px;}
.yf5{bottom:897.217500px;}
.y41{bottom:897.271500px;}
.y7{bottom:907.573500px;}
.ybb{bottom:915.076500px;}
.ydf{bottom:915.360000px;}
.y10f{bottom:919.200000px;}
.yf4{bottom:925.164000px;}
.y40{bottom:925.218000px;}
.y5f{bottom:930.000000px;}
.y6{bottom:930.588000px;}
.y6f{bottom:936.087000px;}
.y96{bottom:936.745500px;}
.y1a{bottom:940.914000px;}
.y2c{bottom:943.155000px;}
.y10e{bottom:947.146500px;}
.y3f{bottom:953.163000px;}
.y5e{bottom:957.945000px;}
.y6e{bottom:964.032000px;}
.yde{bottom:964.227000px;}
.yba{bottom:964.332000px;}
.y2b{bottom:971.101500px;}
.yf3{bottom:974.031000px;}
.y19{bottom:990.379500px;}
.y6d{bottom:991.978500px;}
.y3e{bottom:995.005500px;}
.y10d{bottom:996.013500px;}
.y2a{bottom:999.046500px;}
.yf2{bottom:1001.976000px;}
.y95{bottom:1010.269500px;}
.ydd{bottom:1013.094000px;}
.y5{bottom:1018.458000px;}
.y6c{bottom:1019.923500px;}
.y10c{bottom:1023.958500px;}
.y29{bottom:1026.991500px;}
.yb9{bottom:1037.856000px;}
.y94{bottom:1038.214500px;}
.y18{bottom:1039.843500px;}
.y28{bottom:1054.936500px;}
.ydc{bottom:1061.961000px;}
.yf1{bottom:1064.740500px;}
.y6b{bottom:1065.801000px;}
.y93{bottom:1066.159500px;}
.y10b{bottom:1072.825500px;}
.y27{bottom:1082.883000px;}
.y17{bottom:1089.309000px;}
.y6a{bottom:1093.747500px;}
.y10a{bottom:1100.770500px;}
.y26{bottom:1110.828000px;}
.y92{bottom:1112.038500px;}
.y4{bottom:1112.157000px;}
.y69{bottom:1121.692500px;}
.y4c{bottom:1139.983500px;}
.y16{bottom:1160.083500px;}
.y3{bottom:1161.987000px;}
.y68{bottom:1163.535000px;}
.y4b{bottom:1167.928500px;}
.y2{bottom:1236.750000px;}
.y1{bottom:1254.682500px;}
.h8{height:33.072749px;}
.h2{height:43.516637px;}
.h3{height:43.815515px;}
.h5{height:52.076851px;}
.h9{height:52.578970px;}
.hb{height:61.975584px;}
.ha{height:62.664202px;}
.h7{height:63.094588px;}
.hc{height:74.370528px;}
.h6{height:89.262000px;}
.h4{height:107.080272px;}
.h1{height:1317.750000px;}
.h0{height:1318.110000px;}
.w1{width:1190.250000px;}
.w0{width:1190.551500px;}
.x0{left:0.000000px;}
.x1{left:86.740500px;}
.x14{left:97.500000px;}
.xc{left:107.214000px;}
.x12{left:115.840500px;}
.x15{left:133.449000px;}
.xb{left:139.417500px;}
.x4{left:143.599500px;}
.x13{left:159.097500px;}
.x5{left:269.101500px;}
.xe{left:345.888000px;}
.x10{left:363.619500px;}
.xf{left:368.998500px;}
.x16{left:444.432000px;}
.xa{left:489.984000px;}
.x3{left:537.163500px;}
.x2{left:562.869000px;}
.x11{left:586.216500px;}
.xd{left:591.597000px;}
.x9{left:672.330000px;}
.x6{left:730.503000px;}
.x7{left:771.891000px;}
.x8{left:846.561000px;}
@media print{
.v2{vertical-align:-19.290667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.770667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.657067pt;}
.ls6{letter-spacing:15.796806pt;}
.ls5{letter-spacing:15.834133pt;}
.ls9{letter-spacing:15.892806pt;}
.ls8{letter-spacing:15.898139pt;}
.ls7{letter-spacing:15.930133pt;}
.lsd{letter-spacing:16.154139pt;}
.lsc{letter-spacing:16.186133pt;}
.ls16{letter-spacing:17.759473pt;}
.ls15{letter-spacing:17.796800pt;}
.ls14{letter-spacing:17.903473pt;}
.ls13{letter-spacing:17.946133pt;}
.ls19{letter-spacing:19.127733pt;}
.lsf{letter-spacing:19.514139pt;}
.lse{letter-spacing:19.551467pt;}
.ls10{letter-spacing:21.241725pt;}
.lsa{letter-spacing:21.247058pt;}
.lsb{letter-spacing:23.956806pt;}
.ls4{letter-spacing:26.644000pt;}
.ls17{letter-spacing:31.977867pt;}
.ls12{letter-spacing:32.714139pt;}
.ls18{letter-spacing:37.462415pt;}
.ls11{letter-spacing:40.372391pt;}
.ls1a{letter-spacing:49.598667pt;}
.ls3{letter-spacing:369.503467pt;}
.ls2{letter-spacing:388.628800pt;}
.ws77{word-spacing:-19.128267pt;}
.ws3{word-spacing:-13.283467pt;}
.ws3a{word-spacing:-4.437758pt;}
.ws31{word-spacing:-3.749140pt;}
.ws8{word-spacing:-2.601444pt;}
.ws50{word-spacing:-1.912827pt;}
.ws25{word-spacing:-1.530261pt;}
.wsa{word-spacing:-1.453748pt;}
.ws55{word-spacing:-1.377235pt;}
.ws37{word-spacing:-1.300722pt;}
.ws56{word-spacing:-0.994670pt;}
.ws4c{word-spacing:-0.918157pt;}
.ws38{word-spacing:-0.841644pt;}
.ws23{word-spacing:-0.076513pt;}
.ws2{word-spacing:-0.053134pt;}
.ws11{word-spacing:-0.001118pt;}
.ws1{word-spacing:0.000000pt;}
.ws26{word-spacing:0.076513pt;}
.ws53{word-spacing:0.153026pt;}
.ws2b{word-spacing:0.229539pt;}
.ws2c{word-spacing:0.306052pt;}
.ws29{word-spacing:0.535591pt;}
.ws22{word-spacing:0.841644pt;}
.wsb{word-spacing:0.918157pt;}
.ws4a{word-spacing:0.994670pt;}
.ws67{word-spacing:1.147696pt;}
.ws7{word-spacing:1.224209pt;}
.ws36{word-spacing:1.453748pt;}
.ws58{word-spacing:1.530261pt;}
.ws3b{word-spacing:1.683287pt;}
.ws28{word-spacing:1.759801pt;}
.ws4d{word-spacing:2.371905pt;}
.ws42{word-spacing:2.448418pt;}
.ws9{word-spacing:2.601444pt;}
.ws63{word-spacing:2.754470pt;}
.ws5b{word-spacing:3.137036pt;}
.ws40{word-spacing:3.366575pt;}
.ws46{word-spacing:3.749140pt;}
.ws3f{word-spacing:3.978679pt;}
.ws5d{word-spacing:4.284732pt;}
.ws59{word-spacing:4.361245pt;}
.ws68{word-spacing:4.514271pt;}
.ws48{word-spacing:4.667297pt;}
.ws72{word-spacing:4.896836pt;}
.ws35{word-spacing:4.973349pt;}
.ws33{word-spacing:5.049862pt;}
.ws6f{word-spacing:5.279402pt;}
.ws69{word-spacing:5.585454pt;}
.ws6a{word-spacing:5.661967pt;}
.ws6d{word-spacing:5.696800pt;}
.ws44{word-spacing:5.891506pt;}
.ws41{word-spacing:5.968019pt;}
.ws52{word-spacing:6.274071pt;}
.ws65{word-spacing:6.580124pt;}
.ws24{word-spacing:7.115715pt;}
.ws30{word-spacing:8.186898pt;}
.ws2a{word-spacing:8.722490pt;}
.ws2d{word-spacing:9.640646pt;}
.ws2f{word-spacing:9.717159pt;}
.ws5e{word-spacing:10.023212pt;}
.ws0{word-spacing:13.230333pt;}
.ws93{word-spacing:14.460970pt;}
.ws7c{word-spacing:14.843535pt;}
.ws32{word-spacing:15.317023pt;}
.ws5{word-spacing:15.876506pt;}
.ws81{word-spacing:16.144257pt;}
.ws82{word-spacing:16.756362pt;}
.ws51{word-spacing:17.162229pt;}
.ws83{word-spacing:17.291953pt;}
.ws9c{word-spacing:17.598005pt;}
.ws1b{word-spacing:17.674518pt;}
.wsf{word-spacing:17.725577pt;}
.ws88{word-spacing:17.980571pt;}
.ws91{word-spacing:18.286623pt;}
.ws7d{word-spacing:18.363136pt;}
.ws92{word-spacing:18.439649pt;}
.ws7f{word-spacing:18.516162pt;}
.ws80{word-spacing:18.592675pt;}
.ws90{word-spacing:18.822214pt;}
.ws75{word-spacing:19.041716pt;}
.ws39{word-spacing:19.044896pt;}
.ws71{word-spacing:19.045797pt;}
.wsa5{word-spacing:19.046863pt;}
.ws73{word-spacing:19.047433pt;}
.ws3e{word-spacing:19.048985pt;}
.ws9d{word-spacing:19.049620pt;}
.ws95{word-spacing:19.050154pt;}
.ws5a{word-spacing:19.050229pt;}
.ws89{word-spacing:19.050687pt;}
.ws14{word-spacing:19.051754pt;}
.ws8f{word-spacing:19.053436pt;}
.ws74{word-spacing:19.053532pt;}
.ws54{word-spacing:19.178229pt;}
.ws86{word-spacing:19.204780pt;}
.ws87{word-spacing:19.281293pt;}
.ws60{word-spacing:19.568464pt;}
.ws43{word-spacing:19.581238pt;}
.wsa3{word-spacing:19.587345pt;}
.wsa4{word-spacing:19.663858pt;}
.ws10{word-spacing:19.694865pt;}
.wse{word-spacing:19.695872pt;}
.wsd{word-spacing:19.696580pt;}
.ws12{word-spacing:19.700599pt;}
.wsc{word-spacing:19.969910pt;}
.ws57{word-spacing:20.613023pt;}
.ws3d{word-spacing:20.735041pt;}
.ws3c{word-spacing:20.762356pt;}
.ws8b{word-spacing:21.117606pt;}
.ws84{word-spacing:21.347146pt;}
.ws1a{word-spacing:21.423659pt;}
.ws94{word-spacing:21.500172pt;}
.ws96{word-spacing:21.653198pt;}
.ws64{word-spacing:21.844896pt;}
.ws85{word-spacing:21.959250pt;}
.ws5c{word-spacing:22.202229pt;}
.ws47{word-spacing:22.803337pt;}
.ws79{word-spacing:22.862051pt;}
.ws99{word-spacing:23.259972pt;}
.ws9a{word-spacing:23.336485pt;}
.ws8d{word-spacing:23.412998pt;}
.ws49{word-spacing:23.723131pt;}
.ws17{word-spacing:23.872077pt;}
.ws4b{word-spacing:23.916020pt;}
.ws8a{word-spacing:23.948590pt;}
.ws34{word-spacing:24.068896pt;}
.ws62{word-spacing:24.105572pt;}
.ws61{word-spacing:24.108267pt;}
.ws4e{word-spacing:24.124375pt;}
.ws4f{word-spacing:24.127563pt;}
.ws9b{word-spacing:24.331155pt;}
.ws70{word-spacing:24.341797pt;}
.ws8e{word-spacing:24.484181pt;}
.ws6c{word-spacing:24.742687pt;}
.ws45{word-spacing:24.975563pt;}
.ws19{word-spacing:25.019773pt;}
.ws8c{word-spacing:25.172799pt;}
.ws66{word-spacing:25.625572pt;}
.ws16{word-spacing:25.861417pt;}
.ws97{word-spacing:26.320495pt;}
.ws18{word-spacing:26.397008pt;}
.ws6{word-spacing:27.439800pt;}
.ws27{word-spacing:27.774243pt;}
.ws98{word-spacing:28.156809pt;}
.ws2e{word-spacing:28.728670pt;}
.ws5f{word-spacing:29.074965pt;}
.ws6e{word-spacing:32.673354pt;}
.ws6b{word-spacing:32.678687pt;}
.ws4{word-spacing:32.917269pt;}
.ws7e{word-spacing:37.380718pt;}
.ws78{word-spacing:37.381251pt;}
.ws76{word-spacing:37.381354pt;}
.wsa6{word-spacing:38.026994pt;}
.wsa7{word-spacing:38.103507pt;}
.wsa1{word-spacing:39.633769pt;}
.wsa0{word-spacing:41.852647pt;}
.wsa2{word-spacing:44.760144pt;}
.ws7a{word-spacing:49.963033pt;}
.ws7b{word-spacing:57.690852pt;}
.ws9e{word-spacing:58.838548pt;}
.ws9f{word-spacing:68.785247pt;}
.wsaa{word-spacing:72.687413pt;}
.ws13{word-spacing:76.436554pt;}
.ws1c{word-spacing:78.559553pt;}
.wsa8{word-spacing:79.573589pt;}
.wsa9{word-spacing:94.799690pt;}
.ws15{word-spacing:110.089800pt;}
.ws20{word-spacing:350.295754pt;}
.ws1f{word-spacing:369.421087pt;}
.ws21{word-spacing:428.605087pt;}
.ws1e{word-spacing:447.736287pt;}
.ws1d{word-spacing:466.861620pt;}
._5{margin-left:-12.232200pt;}
._2b{margin-left:-8.492950pt;}
._14{margin-left:-7.192228pt;}
._9{margin-left:-6.131709pt;}
._0{margin-left:-4.888316pt;}
._1{margin-left:-2.922363pt;}
._7{margin-left:-1.912827pt;}
._2{margin-left:-0.956410pt;}
._2a{width:6.061000pt;}
._2e{width:15.504291pt;}
._3{width:16.471492pt;}
._26{width:18.210110pt;}
._4{width:19.763157pt;}
._23{width:21.806224pt;}
._6{width:22.877407pt;}
._21{width:24.101616pt;}
._10{width:25.019773pt;}
._1c{width:26.511774pt;}
._12{width:28.233322pt;}
._15{width:29.954862pt;}
._8{width:30.987792pt;}
._24{width:32.073841pt;}
._22{width:33.742262pt;}
._25{width:34.966471pt;}
._28{width:36.841038pt;}
._f{width:38.256533pt;}
._20{width:39.185354pt;}
._13{width:40.781465pt;}
._27{width:42.579518pt;}
._29{width:43.981794pt;}
._11{width:45.563527pt;}
._31{width:46.914123pt;}
._1f{width:47.897172pt;}
._1d{width:49.136255pt;}
._2d{width:50.431252pt;}
._1e{width:52.717933pt;}
._2c{width:57.729225pt;}
._30{width:59.578820pt;}
._2f{width:68.848588pt;}
._b{width:76.513067pt;}
._16{width:77.794511pt;}
._17{width:79.164769pt;}
._33{width:80.231543pt;}
._34{width:86.149477pt;}
._32{width:94.982282pt;}
._1b{width:110.200000pt;}
._1a{width:592.073600pt;}
._19{width:611.198933pt;}
._18{width:630.330133pt;}
._e{width:2506.185499pt;}
._d{width:2544.463631pt;}
._c{width:2582.719631pt;}
._a{width:3033.305081pt;}
.fs5{font-size:40.381867pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs8{font-size:79.726400pt;}
.fs9{font-size:79.726933pt;}
.fs7{font-size:91.815467pt;}
.fs6{font-size:95.672000pt;}
.fs3{font-size:110.200000pt;}
.fsa{font-size:114.828267pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:66.520000pt;}
.y91{bottom:111.874667pt;}
.y14{bottom:111.894667pt;}
.y109{bottom:114.752000pt;}
.y4a{bottom:118.945333pt;}
.ydb{bottom:127.158667pt;}
.y59{bottom:129.645333pt;}
.y13{bottom:130.492000pt;}
.yf0{bottom:133.801333pt;}
.y90{bottom:136.714667pt;}
.y5d{bottom:139.285333pt;}
.y108{bottom:139.592000pt;}
.y49{bottom:143.785333pt;}
.y12{bottom:149.088000pt;}
.yc1{bottom:155.657333pt;}
.yef{bottom:158.641333pt;}
.ya2{bottom:159.652000pt;}
.yda{bottom:159.969333pt;}
.y8f{bottom:161.554667pt;}
.yb8{bottom:163.449333pt;}
.y48{bottom:168.625333pt;}
.y11{bottom:172.508000pt;}
.y58{bottom:173.428000pt;}
.y107{bottom:183.029333pt;}
.yc6{bottom:183.205333pt;}
.y8e{bottom:186.394667pt;}
.y120{bottom:191.610667pt;}
.yd9{bottom:200.749333pt;}
.yee{bottom:202.078667pt;}
.ya1{bottom:203.434667pt;}
.y47{bottom:205.820000pt;}
.yb7{bottom:207.232000pt;}
.y106{bottom:207.869333pt;}
.yc5{bottom:208.045333pt;}
.y11f{bottom:216.450667pt;}
.yc0{bottom:221.010667pt;}
.y8d{bottom:223.589333pt;}
.y3d{bottom:226.294667pt;}
.yed{bottom:226.918667pt;}
.yc4{bottom:232.885333pt;}
.yce{bottom:234.797333pt;}
.y57{bottom:238.784000pt;}
.yd8{bottom:241.530667pt;}
.ybf{bottom:245.852000pt;}
.y105{bottom:251.306667pt;}
.yc3{bottom:257.726667pt;}
.y11e{bottom:259.888000pt;}
.y56{bottom:263.624000pt;}
.ya0{bottom:268.789333pt;}
.y3c{bottom:270.077333pt;}
.yec{bottom:270.356000pt;}
.ybe{bottom:270.692000pt;}
.yb6{bottom:272.586667pt;}
.yd7{bottom:274.341333pt;}
.y104{bottom:276.146667pt;}
.ycd{bottom:278.580000pt;}
.y11d{bottom:284.728000pt;}
.y55{bottom:288.464000pt;}
.y9f{bottom:293.629333pt;}
.yc2{bottom:294.920000pt;}
.yeb{bottom:295.196000pt;}
.ybd{bottom:295.532000pt;}
.yb5{bottom:297.426667pt;}
.y54{bottom:313.304000pt;}
.yd6{bottom:315.121333pt;}
.y9e{bottom:318.470667pt;}
.y103{bottom:319.584000pt;}
.yb4{bottom:322.266667pt;}
.y11c{bottom:328.165333pt;}
.ybc{bottom:332.726667pt;}
.y53{bottom:338.145333pt;}
.yea{bottom:338.633333pt;}
.y9d{bottom:343.310667pt;}
.ycc{bottom:343.934667pt;}
.y102{bottom:344.424000pt;}
.yb3{bottom:347.108000pt;}
.y25{bottom:352.714667pt;}
.y11b{bottom:353.005333pt;}
.yd5{bottom:361.216000pt;}
.y52{bottom:362.985333pt;}
.ye9{bottom:363.473333pt;}
.y3b{bottom:367.684000pt;}
.ycb{bottom:368.776000pt;}
.y5c{bottom:380.365333pt;}
.y9c{bottom:384.090667pt;}
.y101{bottom:387.861333pt;}
.yb2{bottom:387.888000pt;}
.y7f{bottom:389.233333pt;}
.yca{bottom:393.616000pt;}
.y11a{bottom:396.442667pt;}
.y24{bottom:396.682667pt;}
.y3a{bottom:397.572000pt;}
.y51{bottom:400.178667pt;}
.yd4{bottom:404.997333pt;}
.y5b{bottom:405.205333pt;}
.ye8{bottom:406.910667pt;}
.y8a{bottom:408.148000pt;}
.y9b{bottom:408.932000pt;}
.y100{bottom:412.702667pt;}
.yb1{bottom:412.728000pt;}
.yc9{bottom:418.456000pt;}
.y119{bottom:421.284000pt;}
.yaf{bottom:423.210667pt;}
.y39{bottom:427.460000pt;}
.ye7{bottom:431.750667pt;}
.y7e{bottom:433.016000pt;}
.y10{bottom:437.724000pt;}
.y23{bottom:440.652000pt;}
.y5a{bottom:442.400000pt;}
.y9a{bottom:446.125333pt;}
.y99{bottom:453.420000pt;}
.yff{bottom:456.140000pt;}
.y38{bottom:457.348000pt;}
.yc8{bottom:459.237333pt;}
.y89{bottom:459.754667pt;}
.yf{bottom:464.822667pt;}
.yd3{bottom:470.353333pt;}
.y118{bottom:477.074667pt;}
.yae{bottom:479.994667pt;}
.yfe{bottom:480.980000pt;}
.y22{bottom:484.620000pt;}
.y37{bottom:487.236000pt;}
.ye6{bottom:487.542667pt;}
.ye{bottom:491.921333pt;}
.yd2{bottom:495.193333pt;}
.y7d{bottom:498.370667pt;}
.y88{bottom:503.537333pt;}
.yad{bottom:504.834667pt;}
.y36{bottom:517.124000pt;}
.yd{bottom:519.018667pt;}
.yd1{bottom:520.033333pt;}
.y7c{bottom:523.210667pt;}
.yfd{bottom:524.417333pt;}
.y21{bottom:528.588000pt;}
.y8b{bottom:529.010667pt;}
.yac{bottom:529.674667pt;}
.y117{bottom:543.957333pt;}
.yd0{bottom:544.874667pt;}
.yc{bottom:546.117333pt;}
.y35{bottom:547.012000pt;}
.y7b{bottom:548.052000pt;}
.yfc{bottom:549.257333pt;}
.y66{bottom:550.620000pt;}
.ye5{bottom:554.425333pt;}
.yab{bottom:554.516000pt;}
.y116{bottom:568.797333pt;}
.y87{bottom:568.893333pt;}
.y20{bottom:572.557333pt;}
.yb{bottom:573.216000pt;}
.y34{bottom:576.900000pt;}
.ye4{bottom:579.265333pt;}
.yaa{bottom:579.356000pt;}
.ycf{bottom:582.068000pt;}
.y7a{bottom:588.832000pt;}
.yfb{bottom:592.694667pt;}
.y86{bottom:593.733333pt;}
.y65{bottom:602.226667pt;}
.ya9{bottom:604.196000pt;}
.y67{bottom:604.590667pt;}
.y33{bottom:606.788000pt;}
.yb0{bottom:609.288000pt;}
.y115{bottom:612.234667pt;}
.y79{bottom:613.672000pt;}
.y46{bottom:613.916000pt;}
.y1f{bottom:616.525333pt;}
.yfa{bottom:617.534667pt;}
.y85{bottom:618.573333pt;}
.ya{bottom:621.568000pt;}
.ye3{bottom:622.702667pt;}
.y121{bottom:626.448000pt;}
.ya8{bottom:629.036000pt;}
.y32{bottom:636.676000pt;}
.y114{bottom:637.074667pt;}
.y50{bottom:638.254667pt;}
.y78{bottom:638.513333pt;}
.y45{bottom:638.757333pt;}
.y64{bottom:646.009333pt;}
.ye2{bottom:647.542667pt;}
.ya7{bottom:653.877333pt;}
.y84{bottom:659.353333pt;}
.y1e{bottom:660.494667pt;}
.yf9{bottom:660.972000pt;}
.yc7{bottom:662.526667pt;}
.y77{bottom:663.353333pt;}
.y31{bottom:666.564000pt;}
.y72{bottom:671.333333pt;}
.ya6{bottom:678.717333pt;}
.y113{bottom:680.512000pt;}
.y4f{bottom:682.037333pt;}
.y44{bottom:682.540000pt;}
.y83{bottom:684.194667pt;}
.yf8{bottom:685.812000pt;}
.y76{bottom:688.193333pt;}
.y30{bottom:696.452000pt;}
.ye1{bottom:703.333333pt;}
.y1d{bottom:704.462667pt;}
.y112{bottom:705.352000pt;}
.y9{bottom:708.301333pt;}
.y82{bottom:709.034667pt;}
.y63{bottom:711.364000pt;}
.y75{bottom:713.033333pt;}
.ya5{bottom:715.910667pt;}
.ya4{bottom:721.778667pt;}
.ya3{bottom:721.780000pt;}
.y71{bottom:722.940000pt;}
.y2f{bottom:726.340000pt;}
.yf7{bottom:729.249333pt;}
.y81{bottom:733.874667pt;}
.y62{bottom:736.205333pt;}
.y98{bottom:737.273333pt;}
.y4e{bottom:747.393333pt;}
.y43{bottom:747.894667pt;}
.y1c{bottom:748.432000pt;}
.y111{bottom:748.789333pt;}
.y74{bottom:750.228000pt;}
.yf6{bottom:754.089333pt;}
.y2e{bottom:756.228000pt;}
.y73{bottom:757.541333pt;}
.y61{bottom:761.045333pt;}
.y70{bottom:766.722667pt;}
.ye0{bottom:770.216000pt;}
.y80{bottom:771.069333pt;}
.y4d{bottom:772.233333pt;}
.y42{bottom:772.734667pt;}
.y110{bottom:773.630667pt;}
.y8c{bottom:778.525333pt;}
.y60{bottom:785.885333pt;}
.y2d{bottom:786.116000pt;}
.y8{bottom:786.276000pt;}
.y97{bottom:788.880000pt;}
.y1b{bottom:792.400000pt;}
.yf5{bottom:797.526667pt;}
.y41{bottom:797.574667pt;}
.y7{bottom:806.732000pt;}
.ybb{bottom:813.401333pt;}
.ydf{bottom:813.653333pt;}
.y10f{bottom:817.066667pt;}
.yf4{bottom:822.368000pt;}
.y40{bottom:822.416000pt;}
.y5f{bottom:826.666667pt;}
.y6{bottom:827.189333pt;}
.y6f{bottom:832.077333pt;}
.y96{bottom:832.662667pt;}
.y1a{bottom:836.368000pt;}
.y2c{bottom:838.360000pt;}
.y10e{bottom:841.908000pt;}
.y3f{bottom:847.256000pt;}
.y5e{bottom:851.506667pt;}
.y6e{bottom:856.917333pt;}
.yde{bottom:857.090667pt;}
.yba{bottom:857.184000pt;}
.y2b{bottom:863.201333pt;}
.yf3{bottom:865.805333pt;}
.y19{bottom:880.337333pt;}
.y6d{bottom:881.758667pt;}
.y3e{bottom:884.449333pt;}
.y10d{bottom:885.345333pt;}
.y2a{bottom:888.041333pt;}
.yf2{bottom:890.645333pt;}
.y95{bottom:898.017333pt;}
.ydd{bottom:900.528000pt;}
.y5{bottom:905.296000pt;}
.y6c{bottom:906.598667pt;}
.y10c{bottom:910.185333pt;}
.y29{bottom:912.881333pt;}
.yb9{bottom:922.538667pt;}
.y94{bottom:922.857333pt;}
.y18{bottom:924.305333pt;}
.y28{bottom:937.721333pt;}
.ydc{bottom:943.965333pt;}
.yf1{bottom:946.436000pt;}
.y6b{bottom:947.378667pt;}
.y93{bottom:947.697333pt;}
.y10b{bottom:953.622667pt;}
.y27{bottom:962.562667pt;}
.y17{bottom:968.274667pt;}
.y6a{bottom:972.220000pt;}
.y10a{bottom:978.462667pt;}
.y26{bottom:987.402667pt;}
.y92{bottom:988.478667pt;}
.y4{bottom:988.584000pt;}
.y69{bottom:997.060000pt;}
.y4c{bottom:1013.318667pt;}
.y16{bottom:1031.185333pt;}
.y3{bottom:1032.877333pt;}
.y68{bottom:1034.253333pt;}
.y4b{bottom:1038.158667pt;}
.y2{bottom:1099.333333pt;}
.y1{bottom:1115.273333pt;}
.h8{height:29.397999pt;}
.h2{height:38.681455pt;}
.h3{height:38.947124pt;}
.h5{height:46.290534pt;}
.h9{height:46.736862pt;}
.hb{height:55.089408pt;}
.ha{height:55.701513pt;}
.h7{height:56.084078pt;}
.hc{height:66.107136pt;}
.h6{height:79.344000pt;}
.h4{height:95.182464pt;}
.h1{height:1171.333333pt;}
.h0{height:1171.653333pt;}
.w1{width:1058.000000pt;}
.w0{width:1058.268000pt;}
.x0{left:0.000000pt;}
.x1{left:77.102667pt;}
.x14{left:86.666667pt;}
.xc{left:95.301333pt;}
.x12{left:102.969333pt;}
.x15{left:118.621333pt;}
.xb{left:123.926667pt;}
.x4{left:127.644000pt;}
.x13{left:141.420000pt;}
.x5{left:239.201333pt;}
.xe{left:307.456000pt;}
.x10{left:323.217333pt;}
.xf{left:327.998667pt;}
.x16{left:395.050667pt;}
.xa{left:435.541333pt;}
.x3{left:477.478667pt;}
.x2{left:500.328000pt;}
.x11{left:521.081333pt;}
.xd{left:525.864000pt;}
.x9{left:597.626667pt;}
.x6{left:649.336000pt;}
.x7{left:686.125333pt;}
.x8{left:752.498667pt;}
}




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