
    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_b81eac16b435eccb0d3657ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_5e2206ec79ffcf776311fc41.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_5efe728a9f28ce26a19a2d76.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_5472f88ffacc350effee4278.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_02246eca42b2e710238e35b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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);}
.v3{vertical-align:-23.040000px;}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.032000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.435271px;}
.ls3{letter-spacing:2.978556px;}
.lsc{letter-spacing:11.801748px;}
.lsb{letter-spacing:11.807748px;}
.ls6{letter-spacing:17.552556px;}
.ls1{letter-spacing:18.740556px;}
.ls8{letter-spacing:19.130556px;}
.ls5{letter-spacing:28.352556px;}
.ls7{letter-spacing:30.098556px;}
.ls4{letter-spacing:30.256702px;}
.ls2{letter-spacing:31.070556px;}
.ls9{letter-spacing:32.725718px;}
.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;}
}
.wsac{word-spacing:-36.003146px;}
.ws9{word-spacing:-35.878783px;}
.ws3{word-spacing:-35.567875px;}
.ws3a{word-spacing:-29.233776px;}
.wsb6{word-spacing:-25.985731px;}
.ws9f{word-spacing:-24.561732px;}
.wsae{word-spacing:-24.250824px;}
.ws19{word-spacing:-24.101616px;}
.ws7b{word-spacing:-23.939916px;}
.ws60{word-spacing:-23.255918px;}
.ws9a{word-spacing:-23.193737px;}
.ws80{word-spacing:-23.131555px;}
.ws9e{word-spacing:-23.007192px;}
.wsad{word-spacing:-22.882829px;}
.ws98{word-spacing:-22.571921px;}
.ws5c{word-spacing:-22.447558px;}
.wsb3{word-spacing:-22.012286px;}
.wsb2{word-spacing:-21.950105px;}
.ws33{word-spacing:-21.452652px;}
.ws50{word-spacing:-21.017381px;}
.ws81{word-spacing:-20.893018px;}
.wsbe{word-spacing:-20.768654px;}
.wsbb{word-spacing:-20.706473px;}
.ws5a{word-spacing:-20.022475px;}
.ws22{word-spacing:-19.835930px;}
.wsb4{word-spacing:-19.711567px;}
.ws69{word-spacing:-19.669382px;}
.wsbf{word-spacing:-19.587204px;}
.ws2{word-spacing:-19.462841px;}
.wsb{word-spacing:-19.436304px;}
.ws5d{word-spacing:-19.404413px;}
.ws0{word-spacing:-19.400659px;}
.ws55{word-spacing:-19.338478px;}
.ws4{word-spacing:-19.332497px;}
.wsa4{word-spacing:-19.276296px;}
.ws30{word-spacing:-18.841025px;}
.ws3c{word-spacing:-18.778843px;}
.ws1f{word-spacing:-18.716662px;}
.wsab{word-spacing:-18.654480px;}
.ws84{word-spacing:-18.592298px;}
.ws6f{word-spacing:-18.530117px;}
.ws9c{word-spacing:-18.343572px;}
.wsa8{word-spacing:-18.281390px;}
.ws86{word-spacing:-18.157027px;}
.ws64{word-spacing:-18.094846px;}
.ws6c{word-spacing:-18.032664px;}
.ws91{word-spacing:-17.846119px;}
.wse{word-spacing:-17.774331px;}
.wsa0{word-spacing:-17.721756px;}
.ws18{word-spacing:-17.717544px;}
.ws31{word-spacing:-17.659574px;}
.ws6e{word-spacing:-17.597393px;}
.ws89{word-spacing:-17.535211px;}
.ws83{word-spacing:-17.410848px;}
.wsa2{word-spacing:-17.348666px;}
.ws2d{word-spacing:-17.162122px;}
.ws4b{word-spacing:-17.037758px;}
.ws8f{word-spacing:-16.913395px;}
.ws44{word-spacing:-16.851214px;}
.ws16{word-spacing:-16.789032px;}
.ws32{word-spacing:-16.726850px;}
.ws90{word-spacing:-16.478124px;}
.wsba{word-spacing:-16.415942px;}
.ws7c{word-spacing:-16.353761px;}
.ws9b{word-spacing:-16.291579px;}
.ws96{word-spacing:-16.229398px;}
.ws57{word-spacing:-16.167216px;}
.ws38{word-spacing:-16.167000px;}
.ws61{word-spacing:-16.105034px;}
.ws35{word-spacing:-16.008708px;}
.ws36{word-spacing:-15.996804px;}
.ws34{word-spacing:-15.945696px;}
.ws47{word-spacing:-15.794126px;}
.ws2c{word-spacing:-15.731945px;}
.ws5f{word-spacing:-15.607582px;}
.ws99{word-spacing:-15.545400px;}
.ws6b{word-spacing:-15.296674px;}
.ws5b{word-spacing:-15.234492px;}
.ws92{word-spacing:-15.172310px;}
.ws3d{word-spacing:-15.047947px;}
.wsaf{word-spacing:-14.799221px;}
.ws73{word-spacing:-14.737039px;}
.wsc0{word-spacing:-14.628331px;}
.ws53{word-spacing:-14.550494px;}
.ws74{word-spacing:-14.426131px;}
.ws59{word-spacing:-14.301768px;}
.ws8c{word-spacing:-14.239586px;}
.wsb9{word-spacing:-14.219465px;}
.wsb5{word-spacing:-14.174035px;}
.wsa7{word-spacing:-14.061948px;}
.ws72{word-spacing:-13.866497px;}
.ws71{word-spacing:-13.555589px;}
.ws82{word-spacing:-13.493407px;}
.ws46{word-spacing:-13.369044px;}
.ws37{word-spacing:-13.339188px;}
.wsaa{word-spacing:-13.306862px;}
.ws51{word-spacing:-13.244681px;}
.ws4c{word-spacing:-12.995954px;}
.ws48{word-spacing:-12.933773px;}
.ws6{word-spacing:-12.871591px;}
.ws52{word-spacing:-12.187594px;}
.ws65{word-spacing:-12.063230px;}
.ws2b{word-spacing:-12.001049px;}
.ws17{word-spacing:-11.876686px;}
.ws21{word-spacing:-11.627959px;}
.ws39{word-spacing:-11.571768px;}
.wsc{word-spacing:-11.503596px;}
.ws28{word-spacing:-11.379233px;}
.ws9d{word-spacing:-11.254870px;}
.ws25{word-spacing:-11.192688px;}
.ws3b{word-spacing:-11.068325px;}
.ws8b{word-spacing:-11.006143px;}
.ws88{word-spacing:-10.819598px;}
.ws5e{word-spacing:-10.695235px;}
.ws2a{word-spacing:-10.633054px;}
.wsd{word-spacing:-10.570872px;}
.ws23{word-spacing:-10.446509px;}
.ws4e{word-spacing:-10.197782px;}
.ws8e{word-spacing:-10.135601px;}
.ws4a{word-spacing:-10.011238px;}
.ws78{word-spacing:-9.949056px;}
.wsa6{word-spacing:-9.762511px;}
.wsa9{word-spacing:-9.202877px;}
.ws2f{word-spacing:-9.016332px;}
.wsa5{word-spacing:-8.954150px;}
.ws6a{word-spacing:-8.767606px;}
.ws77{word-spacing:-8.721895px;}
.ws63{word-spacing:-8.456698px;}
.ws12{word-spacing:-8.270153px;}
.ws70{word-spacing:-8.207971px;}
.ws68{word-spacing:-8.083608px;}
.ws67{word-spacing:-7.772700px;}
.ws97{word-spacing:-7.523974px;}
.ws24{word-spacing:-7.461792px;}
.ws8{word-spacing:-7.399610px;}
.ws7a{word-spacing:-6.839976px;}
.ws95{word-spacing:-6.715613px;}
.wsa{word-spacing:-6.404705px;}
.ws10{word-spacing:-6.342523px;}
.ws3f{word-spacing:-5.969434px;}
.ws93{word-spacing:-5.782889px;}
.ws2e{word-spacing:-5.720707px;}
.ws42{word-spacing:-5.658526px;}
.ws66{word-spacing:-5.596344px;}
.wsbc{word-spacing:-5.409799px;}
.ws41{word-spacing:-5.347618px;}
.ws94{word-spacing:-5.285436px;}
.ws62{word-spacing:-5.098891px;}
.ws6d{word-spacing:-4.390332px;}
.ws4f{word-spacing:-4.290530px;}
.ws13{word-spacing:-3.979622px;}
.ws76{word-spacing:-3.855259px;}
.ws56{word-spacing:-3.793078px;}
.ws58{word-spacing:-3.606533px;}
.ws75{word-spacing:-3.544351px;}
.wsa1{word-spacing:-3.419988px;}
.ws45{word-spacing:-3.357806px;}
.ws54{word-spacing:-2.848056px;}
.ws20{word-spacing:-2.673809px;}
.ws11{word-spacing:-2.425082px;}
.wsa3{word-spacing:-1.927630px;}
.ws79{word-spacing:-1.865448px;}
.ws14{word-spacing:-1.741085px;}
.ws15{word-spacing:-1.678903px;}
.ws3e{word-spacing:-0.621816px;}
.ws49{word-spacing:-0.373090px;}
.ws27{word-spacing:-0.124363px;}
.ws5{word-spacing:0.000000px;}
.ws40{word-spacing:0.062182px;}
.ws43{word-spacing:0.124363px;}
.ws26{word-spacing:0.497453px;}
.ws7e{word-spacing:0.559634px;}
.ws85{word-spacing:2.300719px;}
.ws87{word-spacing:2.487264px;}
.ws7d{word-spacing:2.549446px;}
.ws1c{word-spacing:3.046898px;}
.ws7f{word-spacing:3.730896px;}
.ws8d{word-spacing:4.103986px;}
.ws1e{word-spacing:5.629096px;}
.ws1a{word-spacing:5.694550px;}
.wsb1{word-spacing:6.168883px;}
.ws4d{word-spacing:6.240614px;}
.ws8a{word-spacing:7.399610px;}
.wsb0{word-spacing:7.402639px;}
.wsf{word-spacing:7.488716px;}
.ws1{word-spacing:10.785825px;}
.ws1b{word-spacing:18.916379px;}
.ws29{word-spacing:18.936984px;}
.ws7{word-spacing:23.006318px;}
.wsb7{word-spacing:114.694553px;}
.wsbd{word-spacing:189.940426px;}
.wsb8{word-spacing:340.708553px;}
.ws1d{word-spacing:2344.441898px;}
._2b{margin-left:-6.367951px;}
._0{margin-left:-3.843225px;}
._8{margin-left:-2.582316px;}
._2{margin-left:-1.525896px;}
._10{width:2.029093px;}
._1{width:3.719250px;}
._7{width:5.670172px;}
._5{width:10.322146px;}
._31{width:11.441414px;}
._32{width:13.182499px;}
._22{width:15.123785px;}
._13{width:16.291579px;}
._23{width:17.702460px;}
._21{width:20.319727px;}
._4{width:21.469841px;}
._26{width:23.193737px;}
._3{width:24.313006px;}
._d{width:25.681001px;}
._6{width:27.125263px;}
._c{width:29.349715px;}
._29{width:31.277345px;}
._27{width:32.317243px;}
._20{width:33.578064px;}
._18{width:35.008241px;}
._30{width:36.127510px;}
._e{width:37.243667px;}
._b{width:38.323056px;}
._1f{width:40.231495px;}
._33{width:41.972580px;}
._1b{width:43.038600px;}
._2f{width:45.019478px;}
._1e{width:46.138747px;}
._1d{width:48.439466px;}
._28{width:49.745280px;}
._19{width:51.489696px;}
._3b{width:52.834625px;}
._2a{width:53.911447px;}
._9{width:55.030716px;}
._1a{width:56.650927px;}
._25{width:63.487414px;}
._a{width:67.777944px;}
._2c{width:68.959394px;}
._1c{width:71.819748px;}
._2d{width:74.058286px;}
._24{width:77.913545px;}
._2e{width:81.520078px;}
._4a{width:96.401611px;}
._40{width:99.036528px;}
._3c{width:103.261481px;}
._3a{width:108.439207px;}
._14{width:113.500334px;}
._47{width:159.737635px;}
._41{width:165.469375px;}
._4d{width:183.872018px;}
._42{width:194.574245px;}
._3e{width:239.512013px;}
._3f{width:255.359050px;}
._45{width:257.638423px;}
._43{width:269.495549px;}
._4c{width:276.366684px;}
._37{width:292.429087px;}
._4b{width:297.082582px;}
._39{width:305.694530px;}
._46{width:316.052995px;}
._36{width:350.397257px;}
._38{width:389.421283px;}
._44{width:402.142087px;}
._48{width:451.361503px;}
._3d{width:502.541503px;}
._34{width:563.189503px;}
._35{width:595.671667px;}
._15{width:916.694867px;}
._12{width:1133.545957px;}
._49{width:1343.007667px;}
._17{width:1795.072531px;}
._f{width:2002.602109px;}
._11{width:2223.416342px;}
._16{width:2351.314631px;}
.fc3{color:rgb(0,63,95);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(5,102,141);}
.fs2{font-size:0.000000px;}
.fs8{font-size:34.072200px;}
.fs7{font-size:43.527000px;}
.fsb{font-size:45.429600px;}
.fs9{font-size:51.108000px;}
.fs4{font-size:56.787000px;}
.fs0{font-size:62.181600px;}
.fs6{font-size:65.454600px;}
.fs3{font-size:68.144400px;}
.fsa{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:107.419500px;}
.y14{bottom:144.567000px;}
.y13a{bottom:148.867500px;}
.y5d{bottom:150.327000px;}
.y114{bottom:155.584500px;}
.y139{bottom:165.903000px;}
.ycb{bottom:167.886000px;}
.y13{bottom:168.955500px;}
.y5c{bottom:179.647500px;}
.y113{bottom:179.973000px;}
.yf7{bottom:181.156500px;}
.y97{bottom:185.446500px;}
.y138{bottom:188.050500px;}
.y12{bottom:193.344000px;}
.y5b{bottom:203.208000px;}
.y137{bottom:205.086000px;}
.yf6{bottom:205.545000px;}
.y7b{bottom:208.966500px;}
.y96{bottom:209.835000px;}
.yca{bottom:218.424000px;}
.yb0{bottom:224.763000px;}
.y5a{bottom:225.405000px;}
.y112{bottom:225.807000px;}
.y11{bottom:226.698000px;}
.y136{bottom:227.233500px;}
.yf5{bottom:229.933500px;}
.yea{bottom:231.033000px;}
.yc9{bottom:242.812500px;}
.y135{bottom:244.269000px;}
.yaf{bottom:249.151500px;}
.y7a{bottom:251.155500px;}
.y95{bottom:254.305500px;}
.y59{bottom:254.725500px;}
.ye9{bottom:255.421500px;}
.yf4{bottom:263.289000px;}
.y35{bottom:264.556500px;}
.y134{bottom:266.416500px;}
.yae{bottom:273.540000px;}
.y79{bottom:275.544000px;}
.y10{bottom:276.118500px;}
.yc8{bottom:276.168000px;}
.y133{bottom:283.452000px;}
.yf3{bottom:287.677500px;}
.y58{bottom:296.643000px;}
.y34{bottom:297.910500px;}
.yad{bottom:297.928500px;}
.y111{bottom:299.385000px;}
.y78{bottom:299.932500px;}
.yf{bottom:300.507000px;}
.yc7{bottom:300.556500px;}
.y132{bottom:305.599500px;}
.ye8{bottom:305.961000px;}
.yf2{bottom:312.066000px;}
.y94{bottom:312.537000px;}
.y110{bottom:316.420500px;}
.y57{bottom:321.031500px;}
.yac{bottom:322.317000px;}
.y131{bottom:322.635000px;}
.yc6{bottom:324.945000px;}
.ye7{bottom:330.349500px;}
.y33{bottom:331.266000px;}
.yf1{bottom:336.454500px;}
.y93{bottom:336.925500px;}
.y10f{bottom:338.568000px;}
.y130{bottom:344.782500px;}
.y56{bottom:345.420000px;}
.y77{bottom:345.766500px;}
.yab{bottom:346.705500px;}
.yc5{bottom:349.333500px;}
.ye{bottom:349.857000px;}
.ye6{bottom:354.738000px;}
.y10e{bottom:355.603500px;}
.y92{bottom:361.314000px;}
.y12f{bottom:361.818000px;}
.y32{bottom:364.620000px;}
.yf0{bottom:369.808500px;}
.y10d{bottom:372.639000px;}
.y55{bottom:378.775500px;}
.ye5{bottom:379.126500px;}
.yc4{bottom:382.687500px;}
.y91{bottom:393.306000px;}
.y12e{bottom:393.477000px;}
.yef{bottom:394.197000px;}
.y10c{bottom:394.786500px;}
.y31{bottom:397.975500px;}
.yaa{bottom:399.195000px;}
.y54{bottom:403.164000px;}
.ye4{bottom:403.515000px;}
.y76{bottom:406.876500px;}
.yc3{bottom:407.076000px;}
.y10b{bottom:411.822000px;}
.yd{bottom:414.303000px;}
.y90{bottom:417.694500px;}
.y53{bottom:427.552500px;}
.ye3{bottom:427.903500px;}
.y75{bottom:431.265000px;}
.y30{bottom:431.331000px;}
.yc2{bottom:431.464500px;}
.y10a{bottom:433.969500px;}
.y12d{bottom:438.550500px;}
.yc{bottom:438.691500px;}
.y8f{bottom:442.083000px;}
.y109{bottom:451.005000px;}
.y52{bottom:451.941000px;}
.ye2{bottom:452.292000px;}
.y74{bottom:455.653500px;}
.yc1{bottom:462.232500px;}
.y12c{bottom:462.939000px;}
.yb{bottom:463.080000px;}
.y2f{bottom:464.685000px;}
.y8e{bottom:466.471500px;}
.y108{bottom:468.042000px;}
.ya9{bottom:469.557000px;}
.y51{bottom:476.329500px;}
.ye1{bottom:476.680500px;}
.y73{bottom:480.042000px;}
.y107{bottom:485.077500px;}
.y12b{bottom:487.327500px;}
.y8d{bottom:490.860000px;}
.ya8{bottom:493.945500px;}
.ya{bottom:496.435500px;}
.y2e{bottom:498.040500px;}
.y50{bottom:500.718000px;}
.ye0{bottom:501.069000px;}
.y72{bottom:504.430500px;}
.y106{bottom:507.225000px;}
.y12a{bottom:511.716000px;}
.yc0{bottom:512.772000px;}
.y105{bottom:524.260500px;}
.y4f{bottom:525.106500px;}
.ya7{bottom:527.299500px;}
.y2d{bottom:531.394500px;}
.ydf{bottom:535.419000px;}
.y8c{bottom:535.731000px;}
.y129{bottom:536.104500px;}
.ybf{bottom:537.160500px;}
.y104{bottom:546.406500px;}
.y4e{bottom:549.495000px;}
.ya6{bottom:551.688000px;}
.y71{bottom:556.918500px;}
.y8b{bottom:560.119500px;}
.ybe{bottom:561.549000px;}
.y103{bottom:563.443500px;}
.y2c{bottom:564.750000px;}
.ya5{bottom:576.076500px;}
.yee{bottom:577.596000px;}
.y128{bottom:581.938500px;}
.y8a{bottom:584.508000px;}
.yde{bottom:585.958500px;}
.ybd{bottom:594.903000px;}
.y101{bottom:595.102500px;}
.y2b{bottom:598.104000px;}
.ya4{bottom:600.465000px;}
.y4d{bottom:601.984500px;}
.y89{bottom:608.896500px;}
.ydd{bottom:610.347000px;}
.y102{bottom:612.138000px;}
.ybc{bottom:619.291500px;}
.y70{bottom:627.282000px;}
.y2a{bottom:631.459500px;}
.ydc{bottom:634.735500px;}
.y88{bottom:641.886000px;}
.ybb{bottom:643.680000px;}
.y41{bottom:645.784500px;}
.ya3{bottom:646.299000px;}
.yed{bottom:647.958000px;}
.y100{bottom:650.338500px;}
.y6f{bottom:651.670500px;}
.y127{bottom:655.515000px;}
.ydb{bottom:659.124000px;}
.y29{bottom:664.815000px;}
.yba{bottom:668.068500px;}
.y40{bottom:670.173000px;}
.y4c{bottom:672.346500px;}
.y126{bottom:672.550500px;}
.yff{bottom:674.727000px;}
.y6e{bottom:676.059000px;}
.y87{bottom:686.757000px;}
.y125{bottom:689.587500px;}
.yb9{bottom:692.457000px;}
.yda{bottom:692.478000px;}
.y3f{bottom:694.561500px;}
.y4b{bottom:696.735000px;}
.y28{bottom:698.169000px;}
.yfe{bottom:699.115500px;}
.y6d{bottom:700.447500px;}
.y124{bottom:706.623000px;}
.ya2{bottom:707.409000px;}
.y86{bottom:711.145500px;}
.yd9{bottom:716.866500px;}
.y3e{bottom:718.950000px;}
.y4a{bottom:721.123500px;}
.yfd{bottom:723.504000px;}
.y6c{bottom:724.836000px;}
.yb8{bottom:725.812500px;}
.y123{bottom:728.770500px;}
.y27{bottom:731.524500px;}
.ya1{bottom:731.797500px;}
.y85{bottom:735.534000px;}
.yd8{bottom:741.255000px;}
.y49{bottom:745.512000px;}
.y122{bottom:745.806000px;}
.y6b{bottom:749.224500px;}
.yb7{bottom:750.201000px;}
.yec{bottom:754.479000px;}
.ya0{bottom:756.186000px;}
.y3d{bottom:758.883000px;}
.y84{bottom:759.922500px;}
.y121{bottom:762.843000px;}
.y26{bottom:764.878500px;}
.yd7{bottom:765.643500px;}
.yfc{bottom:769.336500px;}
.y48{bottom:769.900500px;}
.y6a{bottom:773.613000px;}
.yb6{bottom:774.589500px;}
.y9{bottom:778.294500px;}
.yeb{bottom:778.867500px;}
.y9f{bottom:780.574500px;}
.y120{bottom:784.989000px;}
.yd6{bottom:790.032000px;}
.y83{bottom:792.910500px;}
.y69{bottom:798.001500px;}
.y25{bottom:798.234000px;}
.y3c{bottom:798.817500px;}
.yb5{bottom:798.978000px;}
.y11f{bottom:802.024500px;}
.y47{bottom:803.254500px;}
.y9e{bottom:804.963000px;}
.y8{bottom:811.650000px;}
.y11e{bottom:819.061500px;}
.yd5{bottom:824.382000px;}
.y46{bottom:827.643000px;}
.yfb{bottom:830.446500px;}
.y68{bottom:831.355500px;}
.y24{bottom:831.589500px;}
.yb4{bottom:833.328000px;}
.y11d{bottom:836.097000px;}
.y82{bottom:837.781500px;}
.y9d{bottom:838.318500px;}
.y3b{bottom:838.750500px;}
.y7{bottom:851.101500px;}
.y45{bottom:852.031500px;}
.y11c{bottom:853.134000px;}
.yfa{bottom:854.835000px;}
.y67{bottom:855.744000px;}
.y1e{bottom:860.998500px;}
.y81{bottom:862.170000px;}
.y9c{bottom:862.705500px;}
.y23{bottom:864.943500px;}
.y11b{bottom:870.169500px;}
.yb3{bottom:871.167000px;}
.yd4{bottom:874.921500px;}
.y44{bottom:876.420000px;}
.y3a{bottom:878.685000px;}
.y66{bottom:880.132500px;}
.y1d{bottom:885.387000px;}
.y80{bottom:886.558500px;}
.y9b{bottom:887.094000px;}
.y11a{bottom:887.205000px;}
.y5{bottom:890.553000px;}
.yb2{bottom:895.555500px;}
.y22{bottom:898.299000px;}
.yd3{bottom:899.310000px;}
.y43{bottom:900.808500px;}
.y39{bottom:903.073500px;}
.y65{bottom:904.521000px;}
.y6{bottom:904.639500px;}
.yf9{bottom:907.324500px;}
.y119{bottom:909.352500px;}
.y1c{bottom:909.775500px;}
.y3{bottom:910.878000px;}
.y7f{bottom:910.947000px;}
.y9a{bottom:920.449500px;}
.yd2{bottom:923.698500px;}
.y4{bottom:924.963000px;}
.y42{bottom:925.197000px;}
.y118{bottom:926.388000px;}
.y38{bottom:927.462000px;}
.y64{bottom:928.909500px;}
.y21{bottom:931.653000px;}
.y1b{bottom:934.164000px;}
.y7e{bottom:943.935000px;}
.y99{bottom:944.838000px;}
.yd1{bottom:948.087000px;}
.y117{bottom:948.535500px;}
.y37{bottom:951.850500px;}
.y63{bottom:953.298000px;}
.y2{bottom:953.439000px;}
.y1a{bottom:958.552500px;}
.y20{bottom:965.008500px;}
.yd0{bottom:972.475500px;}
.yb1{bottom:977.686500px;}
.y7d{bottom:979.048500px;}
.y115{bottom:980.194500px;}
.y19{bottom:982.941000px;}
.y62{bottom:986.653500px;}
.y36{bottom:991.783500px;}
.y1{bottom:992.890500px;}
.y116{bottom:997.230000px;}
.y1f{bottom:998.362500px;}
.y98{bottom:998.481000px;}
.yf8{bottom:1002.075000px;}
.y7c{bottom:1003.437000px;}
.ycf{bottom:1005.831000px;}
.y18{bottom:1007.329500px;}
.y61{bottom:1011.042000px;}
.y13e{bottom:1011.508500px;}
.y13d{bottom:1028.544000px;}
.yce{bottom:1030.219500px;}
.y17{bottom:1031.718000px;}
.y60{bottom:1035.430500px;}
.y13c{bottom:1045.579500px;}
.ycd{bottom:1054.608000px;}
.y5f{bottom:1059.819000px;}
.y13b{bottom:1077.240000px;}
.ycc{bottom:1078.996500px;}
.y16{bottom:1084.207500px;}
.y15{bottom:1140.885000px;}
.h4{height:0.000000px;}
.ha{height:26.069891px;}
.hf{height:34.759855px;}
.hb{height:39.104607px;}
.h6{height:43.449819px;}
.h8{height:46.865494px;}
.h2{height:47.577425px;}
.he{height:47.583425px;}
.hc{height:51.359539px;}
.h5{height:52.139783px;}
.hd{height:61.330106px;}
.h9{height:61.336106px;}
.h7{height:61.631275px;}
.h3{height:88.766100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:106.299000px;}
.xe{left:118.735500px;}
.x10{left:126.001500px;}
.xd{left:129.618000px;}
.x12{left:133.182000px;}
.x11{left:166.635000px;}
.x1{left:170.079000px;}
.x6{left:261.592500px;}
.x5{left:264.582000px;}
.x19{left:281.416500px;}
.x2{left:284.863500px;}
.x17{left:294.207000px;}
.x14{left:309.369000px;}
.x8{left:387.705000px;}
.x7{left:390.693000px;}
.x18{left:404.421000px;}
.x1b{left:438.339000px;}
.xf{left:442.398000px;}
.x15{left:512.439000px;}
.xa{left:560.544000px;}
.x9{left:563.532000px;}
.x4{left:621.594000px;}
.x3{left:624.583500px;}
.x13{left:668.014500px;}
.x1a{left:671.320500px;}
.xb{left:687.139500px;}
.x16{left:689.505000px;}
@media print{
.v3{vertical-align:-20.480000pt;}
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.917333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.386908pt;}
.ls3{letter-spacing:2.647605pt;}
.lsc{letter-spacing:10.490443pt;}
.lsb{letter-spacing:10.495776pt;}
.ls6{letter-spacing:15.602272pt;}
.ls1{letter-spacing:16.658272pt;}
.ls8{letter-spacing:17.004939pt;}
.ls5{letter-spacing:25.202272pt;}
.ls7{letter-spacing:26.754272pt;}
.ls4{letter-spacing:26.894846pt;}
.ls2{letter-spacing:27.618272pt;}
.ls9{letter-spacing:29.089527pt;}
.wsac{word-spacing:-32.002797pt;}
.ws9{word-spacing:-31.892252pt;}
.ws3{word-spacing:-31.615889pt;}
.ws3a{word-spacing:-25.985579pt;}
.wsb6{word-spacing:-23.098428pt;}
.ws9f{word-spacing:-21.832651pt;}
.wsae{word-spacing:-21.556288pt;}
.ws19{word-spacing:-21.423659pt;}
.ws7b{word-spacing:-21.279925pt;}
.ws60{word-spacing:-20.671927pt;}
.ws9a{word-spacing:-20.616655pt;}
.ws80{word-spacing:-20.561382pt;}
.ws9e{word-spacing:-20.450837pt;}
.wsad{word-spacing:-20.340292pt;}
.ws98{word-spacing:-20.063930pt;}
.ws5c{word-spacing:-19.953385pt;}
.wsb3{word-spacing:-19.566477pt;}
.wsb2{word-spacing:-19.511204pt;}
.ws33{word-spacing:-19.069024pt;}
.ws50{word-spacing:-18.682116pt;}
.ws81{word-spacing:-18.571571pt;}
.wsbe{word-spacing:-18.461026pt;}
.wsbb{word-spacing:-18.405754pt;}
.ws5a{word-spacing:-17.797756pt;}
.ws22{word-spacing:-17.631938pt;}
.wsb4{word-spacing:-17.521393pt;}
.ws69{word-spacing:-17.483895pt;}
.wsbf{word-spacing:-17.410848pt;}
.ws2{word-spacing:-17.300303pt;}
.wsb{word-spacing:-17.276715pt;}
.ws5d{word-spacing:-17.248367pt;}
.ws0{word-spacing:-17.245030pt;}
.ws55{word-spacing:-17.189758pt;}
.ws4{word-spacing:-17.184442pt;}
.wsa4{word-spacing:-17.134485pt;}
.ws30{word-spacing:-16.747578pt;}
.ws3c{word-spacing:-16.692305pt;}
.ws1f{word-spacing:-16.637033pt;}
.wsab{word-spacing:-16.581760pt;}
.ws84{word-spacing:-16.526487pt;}
.ws6f{word-spacing:-16.471215pt;}
.ws9c{word-spacing:-16.305397pt;}
.wsa8{word-spacing:-16.250125pt;}
.ws86{word-spacing:-16.139580pt;}
.ws64{word-spacing:-16.084307pt;}
.ws6c{word-spacing:-16.029035pt;}
.ws91{word-spacing:-15.863217pt;}
.wse{word-spacing:-15.799405pt;}
.wsa0{word-spacing:-15.752672pt;}
.ws18{word-spacing:-15.748928pt;}
.ws31{word-spacing:-15.697399pt;}
.ws6e{word-spacing:-15.642127pt;}
.ws89{word-spacing:-15.586854pt;}
.ws83{word-spacing:-15.476309pt;}
.wsa2{word-spacing:-15.421037pt;}
.ws2d{word-spacing:-15.255219pt;}
.ws4b{word-spacing:-15.144674pt;}
.ws8f{word-spacing:-15.034129pt;}
.ws44{word-spacing:-14.978857pt;}
.ws16{word-spacing:-14.923584pt;}
.ws32{word-spacing:-14.868311pt;}
.ws90{word-spacing:-14.647221pt;}
.wsba{word-spacing:-14.591949pt;}
.ws7c{word-spacing:-14.536676pt;}
.ws9b{word-spacing:-14.481404pt;}
.ws96{word-spacing:-14.426131pt;}
.ws57{word-spacing:-14.370859pt;}
.ws38{word-spacing:-14.370667pt;}
.ws61{word-spacing:-14.315586pt;}
.ws35{word-spacing:-14.229963pt;}
.ws36{word-spacing:-14.219381pt;}
.ws34{word-spacing:-14.173952pt;}
.ws47{word-spacing:-14.039223pt;}
.ws2c{word-spacing:-13.983951pt;}
.ws5f{word-spacing:-13.873406pt;}
.ws99{word-spacing:-13.818133pt;}
.ws6b{word-spacing:-13.597043pt;}
.ws5b{word-spacing:-13.541771pt;}
.ws92{word-spacing:-13.486498pt;}
.ws3d{word-spacing:-13.375953pt;}
.wsaf{word-spacing:-13.154863pt;}
.ws73{word-spacing:-13.099590pt;}
.wsc0{word-spacing:-13.002961pt;}
.ws53{word-spacing:-12.933773pt;}
.ws74{word-spacing:-12.823228pt;}
.ws59{word-spacing:-12.712683pt;}
.ws8c{word-spacing:-12.657410pt;}
.wsb9{word-spacing:-12.639524pt;}
.wsb5{word-spacing:-12.599142pt;}
.wsa7{word-spacing:-12.499509pt;}
.ws72{word-spacing:-12.325775pt;}
.ws71{word-spacing:-12.049412pt;}
.ws82{word-spacing:-11.994140pt;}
.ws46{word-spacing:-11.883595pt;}
.ws37{word-spacing:-11.857056pt;}
.wsaa{word-spacing:-11.828322pt;}
.ws51{word-spacing:-11.773050pt;}
.ws4c{word-spacing:-11.551959pt;}
.ws48{word-spacing:-11.496687pt;}
.ws6{word-spacing:-11.441414pt;}
.ws52{word-spacing:-10.833417pt;}
.ws65{word-spacing:-10.722871pt;}
.ws2b{word-spacing:-10.667599pt;}
.ws17{word-spacing:-10.557054pt;}
.ws21{word-spacing:-10.335964pt;}
.ws39{word-spacing:-10.286016pt;}
.wsc{word-spacing:-10.225419pt;}
.ws28{word-spacing:-10.114874pt;}
.ws9d{word-spacing:-10.004329pt;}
.ws25{word-spacing:-9.949056pt;}
.ws3b{word-spacing:-9.838511pt;}
.ws8b{word-spacing:-9.783238pt;}
.ws88{word-spacing:-9.617421pt;}
.ws5e{word-spacing:-9.506876pt;}
.ws2a{word-spacing:-9.451603pt;}
.wsd{word-spacing:-9.396331pt;}
.ws23{word-spacing:-9.285786pt;}
.ws4e{word-spacing:-9.064695pt;}
.ws8e{word-spacing:-9.009423pt;}
.ws4a{word-spacing:-8.898878pt;}
.ws78{word-spacing:-8.843605pt;}
.wsa6{word-spacing:-8.677788pt;}
.wsa9{word-spacing:-8.180335pt;}
.ws2f{word-spacing:-8.014517pt;}
.wsa5{word-spacing:-7.959245pt;}
.ws6a{word-spacing:-7.793427pt;}
.ws77{word-spacing:-7.752796pt;}
.ws63{word-spacing:-7.517065pt;}
.ws12{word-spacing:-7.351247pt;}
.ws70{word-spacing:-7.295974pt;}
.ws68{word-spacing:-7.185429pt;}
.ws67{word-spacing:-6.909067pt;}
.ws97{word-spacing:-6.687977pt;}
.ws24{word-spacing:-6.632704pt;}
.ws8{word-spacing:-6.577431pt;}
.ws7a{word-spacing:-6.079979pt;}
.ws95{word-spacing:-5.969434pt;}
.wsa{word-spacing:-5.693071pt;}
.ws10{word-spacing:-5.637798pt;}
.ws3f{word-spacing:-5.306163pt;}
.ws93{word-spacing:-5.140346pt;}
.ws2e{word-spacing:-5.085073pt;}
.ws42{word-spacing:-5.029801pt;}
.ws66{word-spacing:-4.974528pt;}
.wsbc{word-spacing:-4.808710pt;}
.ws41{word-spacing:-4.753438pt;}
.ws94{word-spacing:-4.698165pt;}
.ws62{word-spacing:-4.532348pt;}
.ws6d{word-spacing:-3.902517pt;}
.ws4f{word-spacing:-3.813805pt;}
.ws13{word-spacing:-3.537442pt;}
.ws76{word-spacing:-3.426897pt;}
.ws56{word-spacing:-3.371625pt;}
.ws58{word-spacing:-3.205807pt;}
.ws75{word-spacing:-3.150534pt;}
.wsa1{word-spacing:-3.039989pt;}
.ws45{word-spacing:-2.984717pt;}
.ws54{word-spacing:-2.531605pt;}
.ws20{word-spacing:-2.376719pt;}
.ws11{word-spacing:-2.155629pt;}
.wsa3{word-spacing:-1.713449pt;}
.ws79{word-spacing:-1.658176pt;}
.ws14{word-spacing:-1.547631pt;}
.ws15{word-spacing:-1.492358pt;}
.ws3e{word-spacing:-0.552725pt;}
.ws49{word-spacing:-0.331635pt;}
.ws27{word-spacing:-0.110545pt;}
.ws5{word-spacing:0.000000pt;}
.ws40{word-spacing:0.055273pt;}
.ws43{word-spacing:0.110545pt;}
.ws26{word-spacing:0.442180pt;}
.ws7e{word-spacing:0.497453pt;}
.ws85{word-spacing:2.045084pt;}
.ws87{word-spacing:2.210901pt;}
.ws7d{word-spacing:2.266174pt;}
.ws1c{word-spacing:2.708354pt;}
.ws7f{word-spacing:3.316352pt;}
.ws8d{word-spacing:3.647987pt;}
.ws1e{word-spacing:5.003641pt;}
.ws1a{word-spacing:5.061822pt;}
.wsb1{word-spacing:5.483452pt;}
.ws4d{word-spacing:5.547213pt;}
.ws8a{word-spacing:6.577431pt;}
.wsb0{word-spacing:6.580124pt;}
.wsf{word-spacing:6.656637pt;}
.ws1{word-spacing:9.587400pt;}
.ws1b{word-spacing:16.814559pt;}
.ws29{word-spacing:16.832875pt;}
.ws7{word-spacing:20.450061pt;}
.wsb7{word-spacing:101.950714pt;}
.wsbd{word-spacing:168.835934pt;}
.wsb8{word-spacing:302.852047pt;}
.ws1d{word-spacing:2083.948354pt;}
._2b{margin-left:-5.660401pt;}
._0{margin-left:-3.416200pt;}
._8{margin-left:-2.295392pt;}
._2{margin-left:-1.356352pt;}
._10{width:1.803638pt;}
._1{width:3.306000pt;}
._7{width:5.040153pt;}
._5{width:9.175241pt;}
._31{width:10.170146pt;}
._32{width:11.717777pt;}
._22{width:13.443364pt;}
._13{width:14.481404pt;}
._23{width:15.735520pt;}
._21{width:18.061980pt;}
._4{width:19.084303pt;}
._26{width:20.616655pt;}
._3{width:21.611561pt;}
._d{width:22.827556pt;}
._6{width:24.111345pt;}
._c{width:26.088636pt;}
._29{width:27.802084pt;}
._27{width:28.726438pt;}
._20{width:29.847168pt;}
._18{width:31.118436pt;}
._30{width:32.113342pt;}
._e{width:33.105482pt;}
._b{width:34.064939pt;}
._1f{width:35.761329pt;}
._33{width:37.308960pt;}
._1b{width:38.256533pt;}
._2f{width:40.017314pt;}
._1e{width:41.012220pt;}
._1d{width:43.057303pt;}
._28{width:44.218027pt;}
._19{width:45.768619pt;}
._3b{width:46.964111pt;}
._2a{width:47.921286pt;}
._9{width:48.916192pt;}
._1a{width:50.356380pt;}
._25{width:56.433257pt;}
._a{width:60.247061pt;}
._2c{width:61.297239pt;}
._1c{width:63.839776pt;}
._2d{width:65.829587pt;}
._24{width:69.256484pt;}
._2e{width:72.462291pt;}
._4a{width:85.690321pt;}
._40{width:88.032469pt;}
._3c{width:91.787983pt;}
._3a{width:96.390406pt;}
._14{width:100.889186pt;}
._47{width:141.989009pt;}
._41{width:147.083889pt;}
._4d{width:163.441794pt;}
._42{width:172.954884pt;}
._3e{width:212.899567pt;}
._3f{width:226.985822pt;}
._45{width:229.011932pt;}
._43{width:239.551599pt;}
._4c{width:245.659275pt;}
._37{width:259.936966pt;}
._4b{width:264.073406pt;}
._39{width:271.728471pt;}
._46{width:280.935996pt;}
._36{width:311.464228pt;}
._38{width:346.152252pt;}
._44{width:357.459633pt;}
._48{width:401.210225pt;}
._3d{width:446.703558pt;}
._34{width:500.612892pt;}
._35{width:529.485926pt;}
._15{width:814.839882pt;}
._12{width:1007.596406pt;}
._49{width:1193.784593pt;}
._17{width:1595.620028pt;}
._f{width:1780.090763pt;}
._11{width:1976.370082pt;}
._16{width:2090.057450pt;}
.fs2{font-size:0.000000pt;}
.fs8{font-size:30.286400pt;}
.fs7{font-size:38.690667pt;}
.fsb{font-size:40.381867pt;}
.fs9{font-size:45.429333pt;}
.fs4{font-size:50.477333pt;}
.fs0{font-size:55.272533pt;}
.fs6{font-size:58.181867pt;}
.fs3{font-size:60.572800pt;}
.fsa{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:95.484000pt;}
.y14{bottom:128.504000pt;}
.y13a{bottom:132.326667pt;}
.y5d{bottom:133.624000pt;}
.y114{bottom:138.297333pt;}
.y139{bottom:147.469333pt;}
.ycb{bottom:149.232000pt;}
.y13{bottom:150.182667pt;}
.y5c{bottom:159.686667pt;}
.y113{bottom:159.976000pt;}
.yf7{bottom:161.028000pt;}
.y97{bottom:164.841333pt;}
.y138{bottom:167.156000pt;}
.y12{bottom:171.861333pt;}
.y5b{bottom:180.629333pt;}
.y137{bottom:182.298667pt;}
.yf6{bottom:182.706667pt;}
.y7b{bottom:185.748000pt;}
.y96{bottom:186.520000pt;}
.yca{bottom:194.154667pt;}
.yb0{bottom:199.789333pt;}
.y5a{bottom:200.360000pt;}
.y112{bottom:200.717333pt;}
.y11{bottom:201.509333pt;}
.y136{bottom:201.985333pt;}
.yf5{bottom:204.385333pt;}
.yea{bottom:205.362667pt;}
.yc9{bottom:215.833333pt;}
.y135{bottom:217.128000pt;}
.yaf{bottom:221.468000pt;}
.y7a{bottom:223.249333pt;}
.y95{bottom:226.049333pt;}
.y59{bottom:226.422667pt;}
.ye9{bottom:227.041333pt;}
.yf4{bottom:234.034667pt;}
.y35{bottom:235.161333pt;}
.y134{bottom:236.814667pt;}
.yae{bottom:243.146667pt;}
.y79{bottom:244.928000pt;}
.y10{bottom:245.438667pt;}
.yc8{bottom:245.482667pt;}
.y133{bottom:251.957333pt;}
.yf3{bottom:255.713333pt;}
.y58{bottom:263.682667pt;}
.y34{bottom:264.809333pt;}
.yad{bottom:264.825333pt;}
.y111{bottom:266.120000pt;}
.y78{bottom:266.606667pt;}
.yf{bottom:267.117333pt;}
.yc7{bottom:267.161333pt;}
.y132{bottom:271.644000pt;}
.ye8{bottom:271.965333pt;}
.yf2{bottom:277.392000pt;}
.y94{bottom:277.810667pt;}
.y110{bottom:281.262667pt;}
.y57{bottom:285.361333pt;}
.yac{bottom:286.504000pt;}
.y131{bottom:286.786667pt;}
.yc6{bottom:288.840000pt;}
.ye7{bottom:293.644000pt;}
.y33{bottom:294.458667pt;}
.yf1{bottom:299.070667pt;}
.y93{bottom:299.489333pt;}
.y10f{bottom:300.949333pt;}
.y130{bottom:306.473333pt;}
.y56{bottom:307.040000pt;}
.y77{bottom:307.348000pt;}
.yab{bottom:308.182667pt;}
.yc5{bottom:310.518667pt;}
.ye{bottom:310.984000pt;}
.ye6{bottom:315.322667pt;}
.y10e{bottom:316.092000pt;}
.y92{bottom:321.168000pt;}
.y12f{bottom:321.616000pt;}
.y32{bottom:324.106667pt;}
.yf0{bottom:328.718667pt;}
.y10d{bottom:331.234667pt;}
.y55{bottom:336.689333pt;}
.ye5{bottom:337.001333pt;}
.yc4{bottom:340.166667pt;}
.y91{bottom:349.605333pt;}
.y12e{bottom:349.757333pt;}
.yef{bottom:350.397333pt;}
.y10c{bottom:350.921333pt;}
.y31{bottom:353.756000pt;}
.yaa{bottom:354.840000pt;}
.y54{bottom:358.368000pt;}
.ye4{bottom:358.680000pt;}
.y76{bottom:361.668000pt;}
.yc3{bottom:361.845333pt;}
.y10b{bottom:366.064000pt;}
.yd{bottom:368.269333pt;}
.y90{bottom:371.284000pt;}
.y53{bottom:380.046667pt;}
.ye3{bottom:380.358667pt;}
.y75{bottom:383.346667pt;}
.y30{bottom:383.405333pt;}
.yc2{bottom:383.524000pt;}
.y10a{bottom:385.750667pt;}
.y12d{bottom:389.822667pt;}
.yc{bottom:389.948000pt;}
.y8f{bottom:392.962667pt;}
.y109{bottom:400.893333pt;}
.y52{bottom:401.725333pt;}
.ye2{bottom:402.037333pt;}
.y74{bottom:405.025333pt;}
.yc1{bottom:410.873333pt;}
.y12c{bottom:411.501333pt;}
.yb{bottom:411.626667pt;}
.y2f{bottom:413.053333pt;}
.y8e{bottom:414.641333pt;}
.y108{bottom:416.037333pt;}
.ya9{bottom:417.384000pt;}
.y51{bottom:423.404000pt;}
.ye1{bottom:423.716000pt;}
.y73{bottom:426.704000pt;}
.y107{bottom:431.180000pt;}
.y12b{bottom:433.180000pt;}
.y8d{bottom:436.320000pt;}
.ya8{bottom:439.062667pt;}
.ya{bottom:441.276000pt;}
.y2e{bottom:442.702667pt;}
.y50{bottom:445.082667pt;}
.ye0{bottom:445.394667pt;}
.y72{bottom:448.382667pt;}
.y106{bottom:450.866667pt;}
.y12a{bottom:454.858667pt;}
.yc0{bottom:455.797333pt;}
.y105{bottom:466.009333pt;}
.y4f{bottom:466.761333pt;}
.ya7{bottom:468.710667pt;}
.y2d{bottom:472.350667pt;}
.ydf{bottom:475.928000pt;}
.y8c{bottom:476.205333pt;}
.y129{bottom:476.537333pt;}
.ybf{bottom:477.476000pt;}
.y104{bottom:485.694667pt;}
.y4e{bottom:488.440000pt;}
.ya6{bottom:490.389333pt;}
.y71{bottom:495.038667pt;}
.y8b{bottom:497.884000pt;}
.ybe{bottom:499.154667pt;}
.y103{bottom:500.838667pt;}
.y2c{bottom:502.000000pt;}
.ya5{bottom:512.068000pt;}
.yee{bottom:513.418667pt;}
.y128{bottom:517.278667pt;}
.y8a{bottom:519.562667pt;}
.yde{bottom:520.852000pt;}
.ybd{bottom:528.802667pt;}
.y101{bottom:528.980000pt;}
.y2b{bottom:531.648000pt;}
.ya4{bottom:533.746667pt;}
.y4d{bottom:535.097333pt;}
.y89{bottom:541.241333pt;}
.ydd{bottom:542.530667pt;}
.y102{bottom:544.122667pt;}
.ybc{bottom:550.481333pt;}
.y70{bottom:557.584000pt;}
.y2a{bottom:561.297333pt;}
.ydc{bottom:564.209333pt;}
.y88{bottom:570.565333pt;}
.ybb{bottom:572.160000pt;}
.y41{bottom:574.030667pt;}
.ya3{bottom:574.488000pt;}
.yed{bottom:575.962667pt;}
.y100{bottom:578.078667pt;}
.y6f{bottom:579.262667pt;}
.y127{bottom:582.680000pt;}
.ydb{bottom:585.888000pt;}
.y29{bottom:590.946667pt;}
.yba{bottom:593.838667pt;}
.y40{bottom:595.709333pt;}
.y4c{bottom:597.641333pt;}
.y126{bottom:597.822667pt;}
.yff{bottom:599.757333pt;}
.y6e{bottom:600.941333pt;}
.y87{bottom:610.450667pt;}
.y125{bottom:612.966667pt;}
.yb9{bottom:615.517333pt;}
.yda{bottom:615.536000pt;}
.y3f{bottom:617.388000pt;}
.y4b{bottom:619.320000pt;}
.y28{bottom:620.594667pt;}
.yfe{bottom:621.436000pt;}
.y6d{bottom:622.620000pt;}
.y124{bottom:628.109333pt;}
.ya2{bottom:628.808000pt;}
.y86{bottom:632.129333pt;}
.yd9{bottom:637.214667pt;}
.y3e{bottom:639.066667pt;}
.y4a{bottom:640.998667pt;}
.yfd{bottom:643.114667pt;}
.y6c{bottom:644.298667pt;}
.yb8{bottom:645.166667pt;}
.y123{bottom:647.796000pt;}
.y27{bottom:650.244000pt;}
.ya1{bottom:650.486667pt;}
.y85{bottom:653.808000pt;}
.yd8{bottom:658.893333pt;}
.y49{bottom:662.677333pt;}
.y122{bottom:662.938667pt;}
.y6b{bottom:665.977333pt;}
.yb7{bottom:666.845333pt;}
.yec{bottom:670.648000pt;}
.ya0{bottom:672.165333pt;}
.y3d{bottom:674.562667pt;}
.y84{bottom:675.486667pt;}
.y121{bottom:678.082667pt;}
.y26{bottom:679.892000pt;}
.yd7{bottom:680.572000pt;}
.yfc{bottom:683.854667pt;}
.y48{bottom:684.356000pt;}
.y6a{bottom:687.656000pt;}
.yb6{bottom:688.524000pt;}
.y9{bottom:691.817333pt;}
.yeb{bottom:692.326667pt;}
.y9f{bottom:693.844000pt;}
.y120{bottom:697.768000pt;}
.yd6{bottom:702.250667pt;}
.y83{bottom:704.809333pt;}
.y69{bottom:709.334667pt;}
.y25{bottom:709.541333pt;}
.y3c{bottom:710.060000pt;}
.yb5{bottom:710.202667pt;}
.y11f{bottom:712.910667pt;}
.y47{bottom:714.004000pt;}
.y9e{bottom:715.522667pt;}
.y8{bottom:721.466667pt;}
.y11e{bottom:728.054667pt;}
.yd5{bottom:732.784000pt;}
.y46{bottom:735.682667pt;}
.yfb{bottom:738.174667pt;}
.y68{bottom:738.982667pt;}
.y24{bottom:739.190667pt;}
.yb4{bottom:740.736000pt;}
.y11d{bottom:743.197333pt;}
.y82{bottom:744.694667pt;}
.y9d{bottom:745.172000pt;}
.y3b{bottom:745.556000pt;}
.y7{bottom:756.534667pt;}
.y45{bottom:757.361333pt;}
.y11c{bottom:758.341333pt;}
.yfa{bottom:759.853333pt;}
.y67{bottom:760.661333pt;}
.y1e{bottom:765.332000pt;}
.y81{bottom:766.373333pt;}
.y9c{bottom:766.849333pt;}
.y23{bottom:768.838667pt;}
.y11b{bottom:773.484000pt;}
.yb3{bottom:774.370667pt;}
.yd4{bottom:777.708000pt;}
.y44{bottom:779.040000pt;}
.y3a{bottom:781.053333pt;}
.y66{bottom:782.340000pt;}
.y1d{bottom:787.010667pt;}
.y80{bottom:788.052000pt;}
.y9b{bottom:788.528000pt;}
.y11a{bottom:788.626667pt;}
.y5{bottom:791.602667pt;}
.yb2{bottom:796.049333pt;}
.y22{bottom:798.488000pt;}
.yd3{bottom:799.386667pt;}
.y43{bottom:800.718667pt;}
.y39{bottom:802.732000pt;}
.y65{bottom:804.018667pt;}
.y6{bottom:804.124000pt;}
.yf9{bottom:806.510667pt;}
.y119{bottom:808.313333pt;}
.y1c{bottom:808.689333pt;}
.y3{bottom:809.669333pt;}
.y7f{bottom:809.730667pt;}
.y9a{bottom:818.177333pt;}
.yd2{bottom:821.065333pt;}
.y4{bottom:822.189333pt;}
.y42{bottom:822.397333pt;}
.y118{bottom:823.456000pt;}
.y38{bottom:824.410667pt;}
.y64{bottom:825.697333pt;}
.y21{bottom:828.136000pt;}
.y1b{bottom:830.368000pt;}
.y7e{bottom:839.053333pt;}
.y99{bottom:839.856000pt;}
.yd1{bottom:842.744000pt;}
.y117{bottom:843.142667pt;}
.y37{bottom:846.089333pt;}
.y63{bottom:847.376000pt;}
.y2{bottom:847.501333pt;}
.y1a{bottom:852.046667pt;}
.y20{bottom:857.785333pt;}
.yd0{bottom:864.422667pt;}
.yb1{bottom:869.054667pt;}
.y7d{bottom:870.265333pt;}
.y115{bottom:871.284000pt;}
.y19{bottom:873.725333pt;}
.y62{bottom:877.025333pt;}
.y36{bottom:881.585333pt;}
.y1{bottom:882.569333pt;}
.y116{bottom:886.426667pt;}
.y1f{bottom:887.433333pt;}
.y98{bottom:887.538667pt;}
.yf8{bottom:890.733333pt;}
.y7c{bottom:891.944000pt;}
.ycf{bottom:894.072000pt;}
.y18{bottom:895.404000pt;}
.y61{bottom:898.704000pt;}
.y13e{bottom:899.118667pt;}
.y13d{bottom:914.261333pt;}
.yce{bottom:915.750667pt;}
.y17{bottom:917.082667pt;}
.y60{bottom:920.382667pt;}
.y13c{bottom:929.404000pt;}
.ycd{bottom:937.429333pt;}
.y5f{bottom:942.061333pt;}
.y13b{bottom:957.546667pt;}
.ycc{bottom:959.108000pt;}
.y16{bottom:963.740000pt;}
.y15{bottom:1014.120000pt;}
.h4{height:0.000000pt;}
.ha{height:23.173237pt;}
.hf{height:30.897649pt;}
.hb{height:34.759651pt;}
.h6{height:38.622061pt;}
.h8{height:41.658217pt;}
.h2{height:42.291045pt;}
.he{height:42.296378pt;}
.hc{height:45.652924pt;}
.h5{height:46.346473pt;}
.hd{height:54.515650pt;}
.h9{height:54.520983pt;}
.h7{height:54.783356pt;}
.h3{height:78.903200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:94.488000pt;}
.xe{left:105.542667pt;}
.x10{left:112.001333pt;}
.xd{left:115.216000pt;}
.x12{left:118.384000pt;}
.x11{left:148.120000pt;}
.x1{left:151.181333pt;}
.x6{left:232.526667pt;}
.x5{left:235.184000pt;}
.x19{left:250.148000pt;}
.x2{left:253.212000pt;}
.x17{left:261.517333pt;}
.x14{left:274.994667pt;}
.x8{left:344.626667pt;}
.x7{left:347.282667pt;}
.x18{left:359.485333pt;}
.x1b{left:389.634667pt;}
.xf{left:393.242667pt;}
.x15{left:455.501333pt;}
.xa{left:498.261333pt;}
.x9{left:500.917333pt;}
.x4{left:552.528000pt;}
.x3{left:555.185333pt;}
.x13{left:593.790667pt;}
.x1a{left:596.729333pt;}
.xb{left:610.790667pt;}
.x16{left:612.893333pt;}
}




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