
    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_438744c4489fd77e15ca6db0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_144adc5c637bb31a8d623720.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_d58ec13120a14997f8ee789f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_abbf67cce8784084b28f2b48.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_a0bd7ff5535984820f56f2e6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_fa6e6d12b1b9d67636ed6e6c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.020996;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:2.371909px;}
.ls5{letter-spacing:2.385746px;}
.ls8{letter-spacing:2.391487px;}
.ls9{letter-spacing:2.391527px;}
.ls6{letter-spacing:2.391746px;}
.ls0{letter-spacing:2.964877px;}
.ls4{letter-spacing:2.983492px;}
.ls2{letter-spacing:2.987675px;}
.ls3{letter-spacing:2.988780px;}
.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;}
}
.ws1{word-spacing:-16.438350px;}
.ws6{word-spacing:-14.943900px;}
.ws1b{word-spacing:-14.920027px;}
.ws8d{word-spacing:-11.955150px;}
.ws74{word-spacing:-9.564150px;}
.ws50{word-spacing:-6.211034px;}
.ws52{word-spacing:-6.057775px;}
.ws51{word-spacing:-6.049709px;}
.ws2f{word-spacing:-1.135736px;}
.ws33{word-spacing:-1.075961px;}
.ws92{word-spacing:-1.016185px;}
.wsa1{word-spacing:-0.956410px;}
.ws6b{word-spacing:-0.777083px;}
.wsb2{word-spacing:-0.657532px;}
.wsdd{word-spacing:-0.621668px;}
.wse1{word-spacing:-0.334744px;}
.wsb4{word-spacing:-0.239102px;}
.ws10{word-spacing:-0.215194px;}
.ws99{word-spacing:-0.179327px;}
.ws5d{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.053798px;}
.wsc7{word-spacing:-0.047821px;}
.ws4f{word-spacing:0.000000px;}
.ws73{word-spacing:0.015242px;}
.ws9a{word-spacing:0.059776px;}
.wsb3{word-spacing:0.119551px;}
.ws8a{word-spacing:0.239102px;}
.ws3e{word-spacing:0.358654px;}
.wsa0{word-spacing:0.657532px;}
.ws59{word-spacing:0.777083px;}
.ws7f{word-spacing:0.836858px;}
.wsc8{word-spacing:0.860771px;}
.wsac{word-spacing:0.896634px;}
.wsc9{word-spacing:0.956412px;}
.ws97{word-spacing:1.195512px;}
.wsb5{word-spacing:1.673717px;}
.ws16{word-spacing:1.721549px;}
.ws38{word-spacing:1.733492px;}
.ws8e{word-spacing:1.853044px;}
.ws22{word-spacing:1.912819px;}
.wse3{word-spacing:1.912824px;}
.ws7a{word-spacing:1.972595px;}
.ws3b{word-spacing:2.032370px;}
.ws94{word-spacing:2.151922px;}
.wsa4{word-spacing:2.211697px;}
.ws7b{word-spacing:2.271473px;}
.ws2d{word-spacing:2.450800px;}
.ws25{word-spacing:2.510575px;}
.ws17{word-spacing:2.851315px;}
.ws57{word-spacing:2.929004px;}
.ws5c{word-spacing:3.108331px;}
.wsa3{word-spacing:3.466985px;}
.wsab{word-spacing:3.526760px;}
.wsd0{word-spacing:3.538724px;}
.ws98{word-spacing:3.586536px;}
.wsc5{word-spacing:3.730007px;}
.wsa9{word-spacing:3.825638px;}
.ws2a{word-spacing:3.885414px;}
.wsae{word-spacing:4.184292px;}
.wscd{word-spacing:4.256033px;}
.ws24{word-spacing:4.303843px;}
.wsb6{word-spacing:4.363619px;}
.wscc{word-spacing:4.447316px;}
.ws45{word-spacing:4.483170px;}
.ws58{word-spacing:4.602721px;}
.ws77{word-spacing:4.731525px;}
.ws72{word-spacing:4.743818px;}
.wse2{word-spacing:4.780892px;}
.wsa7{word-spacing:4.782048px;}
.ws53{word-spacing:4.782060px;}
.wsb1{word-spacing:4.841824px;}
.wsba{word-spacing:5.021150px;}
.wsc2{word-spacing:5.068984px;}
.ws3f{word-spacing:5.200477px;}
.ws81{word-spacing:5.260253px;}
.ws3c{word-spacing:5.320028px;}
.ws34{word-spacing:5.559131px;}
.wsd{word-spacing:5.756429px;}
.ws6f{word-spacing:5.858009px;}
.ws23{word-spacing:5.917784px;}
.ws6a{word-spacing:5.931398px;}
.ws54{word-spacing:5.961520px;}
.ws5{word-spacing:5.977560px;}
.wsce{word-spacing:5.977575px;}
.wsf{word-spacing:6.025421px;}
.ws96{word-spacing:6.216662px;}
.wsa{word-spacing:6.240614px;}
.ws20{word-spacing:6.276438px;}
.wsd1{word-spacing:6.455781px;}
.ws2c{word-spacing:6.515540px;}
.ws5a{word-spacing:6.575316px;}
.ws3{word-spacing:6.575340px;}
.ws35{word-spacing:6.694867px;}
.ws18{word-spacing:6.724800px;}
.ws66{word-spacing:6.754643px;}
.ws67{word-spacing:6.874194px;}
.ws6c{word-spacing:6.933970px;}
.wsc1{word-spacing:6.993745px;}
.wsaa{word-spacing:7.113296px;}
.ws1e{word-spacing:7.292623px;}
.wscf{word-spacing:7.316552px;}
.ws8f{word-spacing:7.352399px;}
.ws4e{word-spacing:7.471950px;}
.ws5b{word-spacing:7.531726px;}
.ws14{word-spacing:7.531776px;}
.wsbf{word-spacing:7.591501px;}
.wse{word-spacing:7.693171px;}
.wsa8{word-spacing:7.711052px;}
.ws89{word-spacing:7.770828px;}
.ws1f{word-spacing:7.890379px;}
.ws80{word-spacing:7.950155px;}
.ws21{word-spacing:8.129482px;}
.wsa5{word-spacing:8.189257px;}
.ws9b{word-spacing:8.308808px;}
.wsd8{word-spacing:8.416426px;}
.ws7e{word-spacing:8.428360px;}
.ws44{word-spacing:8.488135px;}
.ws69{word-spacing:8.667462px;}
.ws6e{word-spacing:8.727238px;}
.ws30{word-spacing:8.906564px;}
.wsb8{word-spacing:8.966340px;}
.ws3a{word-spacing:9.026116px;}
.ws71{word-spacing:9.504320px;}
.wsc{word-spacing:9.576115px;}
.ws3d{word-spacing:9.683647px;}
.ws56{word-spacing:9.743423px;}
.ws70{word-spacing:9.803198px;}
.wsd7{word-spacing:9.803223px;}
.ws60{word-spacing:10.042301px;}
.wsc4{word-spacing:10.042326px;}
.wsc3{word-spacing:10.090147px;}
.ws1c{word-spacing:10.102076px;}
.ws8b{word-spacing:10.221628px;}
.ws6d{word-spacing:10.520506px;}
.ws85{word-spacing:10.580281px;}
.ws87{word-spacing:10.699832px;}
.ws39{word-spacing:10.759608px;}
.ws2e{word-spacing:10.903097px;}
.ws78{word-spacing:10.938935px;}
.ws64{word-spacing:10.998710px;}
.wsda{word-spacing:11.094379px;}
.ws31{word-spacing:11.656242px;}
.ws5e{word-spacing:11.716018px;}
.wsc6{word-spacing:11.763868px;}
.ws43{word-spacing:11.955120px;}
.ws40{word-spacing:12.014896px;}
.wsb{word-spacing:12.104640px;}
.ws46{word-spacing:12.194222px;}
.ws15{word-spacing:12.212237px;}
.ws62{word-spacing:12.253998px;}
.ws86{word-spacing:12.313774px;}
.ws4a{word-spacing:12.612652px;}
.ws68{word-spacing:12.732203px;}
.ws41{word-spacing:12.791978px;}
.wsca{word-spacing:12.863741px;}
.ws29{word-spacing:12.911530px;}
.ws26{word-spacing:12.971305px;}
.ws93{word-spacing:13.090856px;}
.ws55{word-spacing:13.150632px;}
.wsbd{word-spacing:13.210408px;}
.wsbb{word-spacing:13.270183px;}
.ws90{word-spacing:13.329959px;}
.ws7c{word-spacing:13.449510px;}
.ws82{word-spacing:13.628837px;}
.wsb9{word-spacing:13.688612px;}
.ws4b{word-spacing:13.987490px;}
.ws9f{word-spacing:14.107042px;}
.ws0{word-spacing:14.346180px;}
.ws11{word-spacing:14.417971px;}
.ws36{word-spacing:14.465695px;}
.ws2{word-spacing:14.493058px;}
.ws7{word-spacing:14.496000px;}
.ws8{word-spacing:14.496542px;}
.ws65{word-spacing:14.525471px;}
.ws12{word-spacing:14.633165px;}
.ws13{word-spacing:14.740762px;}
.ws4c{word-spacing:14.764573px;}
.ws7d{word-spacing:14.824349px;}
.ws9d{word-spacing:14.884124px;}
.ws42{word-spacing:15.003676px;}
.ws9c{word-spacing:15.242778px;}
.wsa2{word-spacing:15.302554px;}
.ws27{word-spacing:15.422105px;}
.wsd3{word-spacing:15.446054px;}
.wsaf{word-spacing:15.601432px;}
.wsad{word-spacing:15.661207px;}
.ws8c{word-spacing:15.720983px;}
.ws95{word-spacing:15.840534px;}
.ws2b{word-spacing:15.900310px;}
.wscb{word-spacing:16.354645px;}
.ws91{word-spacing:16.498066px;}
.wsdc{word-spacing:16.689389px;}
.wsa6{word-spacing:16.916495px;}
.wsb0{word-spacing:17.036046px;}
.ws79{word-spacing:17.095822px;}
.ws47{word-spacing:17.813129px;}
.ws32{word-spacing:17.872904px;}
.ws1a{word-spacing:17.932680px;}
.wsd2{word-spacing:18.363110px;}
.wse0{word-spacing:18.410931px;}
.wsde{word-spacing:18.650034px;}
.ws49{word-spacing:18.709763px;}
.ws83{word-spacing:18.829314px;}
.ws1d{word-spacing:18.889090px;}
.ws63{word-spacing:19.008641px;}
.wsbe{word-spacing:19.187968px;}
.wsc0{word-spacing:19.247743px;}
.ws88{word-spacing:19.367294px;}
.ws84{word-spacing:19.725948px;}
.ws19{word-spacing:20.120602px;}
.wsd9{word-spacing:20.323755px;}
.ws9e{word-spacing:20.383480px;}
.ws4{word-spacing:20.861684px;}
.ws48{word-spacing:20.921460px;}
.ws4d{word-spacing:21.041011px;}
.wsd4{word-spacing:21.136705px;}
.wsb7{word-spacing:21.339889px;}
.ws37{word-spacing:21.638767px;}
.ws28{word-spacing:21.818094px;}
.wsd5{word-spacing:21.949655px;}
.wsdb{word-spacing:22.953888px;}
.ws5f{word-spacing:23.073382px;}
.wsbc{word-spacing:23.730913px;}
.ws61{word-spacing:25.464406px;}
.wsd6{word-spacing:35.100320px;}
.ws76{word-spacing:59.775750px;}
.wsdf{word-spacing:78.951811px;}
.ws75{word-spacing:128.876517px;}
._2{margin-left:-13.198486px;}
._4{margin-left:-7.890408px;}
._5{margin-left:-6.395989px;}
._3{margin-left:-5.262981px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._6{margin-left:-1.075977px;}
._b{width:1.018417px;}
._9{width:2.988780px;}
._10{width:12.911530px;}
._11{width:14.286368px;}
._13{width:17.413945px;}
._a{width:21.854014px;}
._12{width:23.052319px;}
._8{width:24.639667px;}
._7{width:27.060595px;}
._f{width:29.887800px;}
._c{width:33.474420px;}
._14{width:70.439744px;}
._d{width:143.413979px;}
._e{width:175.310320px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.801520px;}
.fsa{font-size:29.841255px;}
.fs6{font-size:30.596227px;}
.fsb{font-size:38.256600px;}
.fs2{font-size:46.027200px;}
.fs7{font-size:46.291694px;}
.fs8{font-size:46.331430px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y73{bottom:12.218623px;}
.y72{bottom:21.159079px;}
.y75{bottom:21.963720px;}
.y71{bottom:30.099535px;}
.y74{bottom:35.871096px;}
.y70{bottom:39.039991px;}
.y6f{bottom:47.980447px;}
.y5d{bottom:49.292542px;}
.y6e{bottom:56.929181px;}
.y6d{bottom:65.869637px;}
.y6c{bottom:74.810093px;}
.y6b{bottom:83.750549px;}
.y5e{bottom:96.089207px;}
.y5b{bottom:99.479129px;}
.y56{bottom:99.557772px;}
.y6a{bottom:100.919536px;}
.y69{bottom:109.859992px;}
.y31{bottom:113.332500px;}
.y68{bottom:118.800448px;}
.y30{bottom:126.783000px;}
.y67{bottom:127.749182px;}
.y54{bottom:131.265000px;}
.y61{bottom:132.049707px;}
.y66{bottom:136.689638px;}
.y124{bottom:140.232000px;}
.y60{bottom:140.990163px;}
.y65{bottom:145.630094px;}
.y5c{bottom:146.147482px;}
.y53{bottom:149.197500px;}
.y98{bottom:149.199000px;}
.y5f{bottom:149.930619px;}
.y123{bottom:153.993000px;}
.y64{bottom:154.570550px;}
.y2f{bottom:156.687000px;}
.y5a{bottom:163.482033px;}
.y63{bottom:163.511006px;}
.y52{bottom:167.131500px;}
.y122{bottom:167.442000px;}
.y62{bottom:172.451462px;}
.y2e{bottom:174.619500px;}
.y59{bottom:177.389409px;}
.y121{bottom:181.201500px;}
.y58{bottom:184.115446px;}
.y51{bottom:185.064000px;}
.y2d{bottom:192.552000px;}
.y120{bottom:194.652000px;}
.y57{bottom:198.022822px;}
.y50{bottom:202.996500px;}
.y11f{bottom:208.101000px;}
.y2c{bottom:210.486000px;}
.y97{bottom:220.768500px;}
.y4f{bottom:220.929000px;}
.y11e{bottom:221.550000px;}
.y2b{bottom:228.418500px;}
.y11d{bottom:235.311000px;}
.y96{bottom:238.701000px;}
.y4e{bottom:238.861500px;}
.y2a{bottom:246.351000px;}
.y11c{bottom:248.760000px;}
.y95{bottom:256.633500px;}
.y4d{bottom:256.794000px;}
.yc3{bottom:256.843500px;}
.yd9{bottom:258.145500px;}
.y11b{bottom:262.209000px;}
.y29{bottom:264.283500px;}
.y4c{bottom:274.728000px;}
.yc2{bottom:274.776000px;}
.y11a{bottom:275.659500px;}
.yd8{bottom:276.078000px;}
.y94{bottom:279.114000px;}
.ye8{bottom:279.387000px;}
.y28{bottom:282.216000px;}
.y119{bottom:289.419000px;}
.y4b{bottom:292.660500px;}
.yc1{bottom:292.708500px;}
.yd7{bottom:294.010500px;}
.y27{bottom:300.148500px;}
.y118{bottom:302.868000px;}
.y93{bottom:306.168000px;}
.ye7{bottom:307.120500px;}
.y4a{bottom:310.593000px;}
.yd6{bottom:311.943000px;}
.yc0{bottom:315.517500px;}
.y117{bottom:316.318500px;}
.y26{bottom:318.082500px;}
.y92{bottom:324.100500px;}
.ye6{bottom:325.053000px;}
.y49{bottom:328.525500px;}
.y116{bottom:329.767500px;}
.yd5{bottom:329.875500px;}
.y25{bottom:336.223500px;}
.ybf{bottom:338.446500px;}
.y91{bottom:342.034500px;}
.ye5{bottom:342.987000px;}
.y115{bottom:343.527000px;}
.y48{bottom:346.458000px;}
.yd4{bottom:347.809500px;}
.y24{bottom:354.156000px;}
.y114{bottom:356.977500px;}
.y90{bottom:359.967000px;}
.ye4{bottom:360.919500px;}
.y47{bottom:364.390500px;}
.yd3{bottom:365.742000px;}
.ybe{bottom:366.877500px;}
.y113{bottom:370.737000px;}
.y23{bottom:372.090000px;}
.y8f{bottom:377.899500px;}
.ye3{bottom:378.852000px;}
.y46{bottom:382.324500px;}
.yd2{bottom:383.674500px;}
.y112{bottom:384.186000px;}
.ybd{bottom:384.810000px;}
.y22{bottom:390.022500px;}
.y8e{bottom:395.671500px;}
.ye2{bottom:396.784500px;}
.y111{bottom:397.947000px;}
.y45{bottom:400.257000px;}
.yd1{bottom:401.607000px;}
.ybc{bottom:402.742500px;}
.y21{bottom:407.955000px;}
.y110{bottom:411.396000px;}
.y8d{bottom:413.604000px;}
.ye1{bottom:414.717000px;}
.y44{bottom:418.189500px;}
.yd0{bottom:419.539500px;}
.ybb{bottom:420.675000px;}
.y10f{bottom:424.845000px;}
.y20{bottom:425.887500px;}
.y8c{bottom:431.536500px;}
.ye0{bottom:432.651000px;}
.y43{bottom:436.122000px;}
.ycf{bottom:437.472000px;}
.y10e{bottom:438.606000px;}
.yba{bottom:438.609000px;}
.y1f{bottom:443.820000px;}
.y8b{bottom:449.469000px;}
.ydf{bottom:450.583500px;}
.y10d{bottom:452.055000px;}
.y42{bottom:454.054500px;}
.yb9{bottom:456.541500px;}
.y1e{bottom:461.752500px;}
.yce{bottom:464.838000px;}
.y10c{bottom:465.505500px;}
.y8a{bottom:467.403000px;}
.yde{bottom:468.516000px;}
.y41{bottom:471.987000px;}
.yb8{bottom:474.474000px;}
.y10b{bottom:478.954500px;}
.y1d{bottom:479.686500px;}
.y89{bottom:485.335500px;}
.ydd{bottom:486.448500px;}
.y40{bottom:489.921000px;}
.yb7{bottom:492.406500px;}
.y10a{bottom:492.714000px;}
.y88{bottom:503.268000px;}
.y1c{bottom:503.580000px;}
.ycd{bottom:504.334500px;}
.ydc{bottom:504.381000px;}
.y109{bottom:506.164500px;}
.y3f{bottom:507.853500px;}
.yb6{bottom:510.339000px;}
.y108{bottom:519.613500px;}
.y87{bottom:521.200500px;}
.ycc{bottom:522.267000px;}
.ydb{bottom:522.313500px;}
.y3e{bottom:525.786000px;}
.yb5{bottom:528.271500px;}
.y107{bottom:533.062500px;}
.y1b{bottom:537.532500px;}
.y86{bottom:539.133000px;}
.ycb{bottom:540.199500px;}
.y3d{bottom:543.718500px;}
.yb4{bottom:546.205500px;}
.y106{bottom:546.513000px;}
.y1a{bottom:552.685500px;}
.y85{bottom:557.065500px;}
.yca{bottom:558.132000px;}
.y105{bottom:560.272500px;}
.y3c{bottom:561.651000px;}
.yb3{bottom:564.186000px;}
.y19{bottom:567.630000px;}
.y104{bottom:574.032000px;}
.y84{bottom:574.837500px;}
.yc9{bottom:576.064500px;}
.y3b{bottom:579.585000px;}
.yb2{bottom:582.118500px;}
.y18{bottom:582.573000px;}
.y103{bottom:587.482500px;}
.y83{bottom:592.771500px;}
.yc8{bottom:593.997000px;}
.y17{bottom:597.517500px;}
.yb1{bottom:600.051000px;}
.y82{bottom:610.704000px;}
.yda{bottom:611.929500px;}
.yc7{bottom:611.931000px;}
.y16{bottom:612.460500px;}
.y102{bottom:613.026000px;}
.y3a{bottom:615.450000px;}
.yb0{bottom:617.983500px;}
.y15{bottom:627.405000px;}
.y81{bottom:628.636500px;}
.yc6{bottom:629.863500px;}
.y39{bottom:633.382500px;}
.yaf{bottom:635.917500px;}
.y14{bottom:642.349500px;}
.y101{bottom:645.795000px;}
.y80{bottom:646.569000px;}
.yc5{bottom:647.796000px;}
.y38{bottom:651.315000px;}
.yae{bottom:653.850000px;}
.y13{bottom:657.292500px;}
.y100{bottom:663.727500px;}
.y7f{bottom:664.501500px;}
.y37{bottom:669.247500px;}
.yad{bottom:671.782500px;}
.y12{bottom:672.237000px;}
.yff{bottom:681.660000px;}
.y7e{bottom:682.434000px;}
.y11{bottom:687.181500px;}
.yac{bottom:689.763000px;}
.yc4{bottom:696.112500px;}
.yfe{bottom:699.592500px;}
.y7d{bottom:700.368000px;}
.y10{bottom:702.124500px;}
.y36{bottom:705.114000px;}
.yab{bottom:707.695500px;}
.yf{bottom:717.069000px;}
.yfd{bottom:718.084500px;}
.y7c{bottom:718.300500px;}
.y35{bottom:723.046500px;}
.yaa{bottom:725.629500px;}
.ye{bottom:732.013500px;}
.yfc{bottom:736.017000px;}
.y7b{bottom:736.233000px;}
.y34{bottom:740.979000px;}
.ya9{bottom:743.562000px;}
.yd{bottom:746.956500px;}
.yfb{bottom:753.949500px;}
.y7a{bottom:754.165500px;}
.y33{bottom:758.911500px;}
.ya8{bottom:761.494500px;}
.yc{bottom:761.901000px;}
.yfa{bottom:771.882000px;}
.y79{bottom:772.098000px;}
.y32{bottom:776.844000px;}
.yb{bottom:776.845500px;}
.ya7{bottom:779.427000px;}
.yf9{bottom:789.814500px;}
.y78{bottom:794.578500px;}
.ya6{bottom:797.359500px;}
.yf8{bottom:807.748500px;}
.ya5{bottom:815.293500px;}
.y77{bottom:821.632500px;}
.yf7{bottom:825.681000px;}
.ya4{bottom:833.226000px;}
.ya{bottom:843.006000px;}
.yf6{bottom:843.613500px;}
.y9{bottom:861.499500px;}
.y76{bottom:868.234500px;}
.yf5{bottom:869.605500px;}
.y8{bottom:879.993000px;}
.ya3{bottom:887.002500px;}
.y55{bottom:895.134000px;}
.y7{bottom:898.707000px;}
.ya2{bottom:900.453000px;}
.yf4{bottom:902.374500px;}
.ya1{bottom:913.902000px;}
.yf3{bottom:920.307000px;}
.ya0{bottom:935.160000px;}
.y6{bottom:936.534000px;}
.yf2{bottom:938.239500px;}
.y5{bottom:955.027500px;}
.yf1{bottom:956.172000px;}
.y9f{bottom:965.982000px;}
.y4{bottom:973.521000px;}
.yf0{bottom:974.104500px;}
.y9e{bottom:979.431000px;}
.yef{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.yee{bottom:1009.971000px;}
.y9d{bottom:1020.655500px;}
.yed{bottom:1027.903500px;}
.y9c{bottom:1034.106000px;}
.y2{bottom:1039.309500px;}
.yec{bottom:1045.836000px;}
.y9b{bottom:1055.362500px;}
.y126{bottom:1059.286500px;}
.yeb{bottom:1063.768500px;}
.y125{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.yea{bottom:1081.701000px;}
.y9a{bottom:1086.184500px;}
.y99{bottom:1099.633500px;}
.ye9{bottom:1099.635000px;}
.hc{height:25.872609px;}
.hf{height:25.907105px;}
.hd{height:26.963973px;}
.he{height:26.999925px;}
.h9{height:27.683012px;}
.h11{height:32.804932px;}
.h7{height:32.900573px;}
.h10{height:33.187496px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.ha{height:40.188785px;}
.hb{height:40.223282px;}
.h3{height:41.006062px;}
.h4{height:41.125613px;}
.h2{height:55.420714px;}
.h1{height:98.701718px;}
.h8{height:217.054404px;}
.h0{height:1188.000000px;}
.w1{width:376.591869px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:2.940411px;}
.x18{left:19.549792px;}
.x21{left:31.112781px;}
.x15{left:34.639294px;}
.x19{left:47.463054px;}
.x10{left:73.446000px;}
.x2c{left:79.423500px;}
.x1c{left:81.805167px;}
.x12{left:85.401000px;}
.xf{left:88.389000px;}
.x1{left:92.026500px;}
.x2d{left:100.834500px;}
.x1a{left:136.958674px;}
.x16{left:159.893427px;}
.x4{left:161.616000px;}
.x2{left:178.875000px;}
.x22{left:183.232500px;}
.x6{left:192.744000px;}
.x11{left:203.428500px;}
.x17{left:205.253824px;}
.x3{left:208.930500px;}
.x5{left:212.313000px;}
.x2b{left:219.897000px;}
.x1b{left:268.255065px;}
.x1d{left:308.685794px;}
.x1f{left:311.417600px;}
.x1e{left:320.606402px;}
.xc{left:334.966500px;}
.x2a{left:350.472000px;}
.xd{left:385.663500px;}
.xb{left:402.300000px;}
.xe{left:409.776000px;}
.x13{left:467.967000px;}
.x25{left:478.960500px;}
.x14{left:482.910000px;}
.x28{left:486.516000px;}
.x2e{left:495.355500px;}
.x8{left:503.085000px;}
.x24{left:540.076500px;}
.x27{left:543.046500px;}
.x7{left:550.603500px;}
.x9{left:553.782000px;}
.xa{left:564.804000px;}
.x29{left:601.252500px;}
.x26{left:631.483500px;}
.x23{left:633.474000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:2.108364pt;}
.ls5{letter-spacing:2.120663pt;}
.ls8{letter-spacing:2.125766pt;}
.ls9{letter-spacing:2.125802pt;}
.ls6{letter-spacing:2.125997pt;}
.ls0{letter-spacing:2.635446pt;}
.ls4{letter-spacing:2.651993pt;}
.ls2{letter-spacing:2.655711pt;}
.ls3{letter-spacing:2.656693pt;}
.ws1{word-spacing:-14.611867pt;}
.ws6{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-13.262246pt;}
.ws8d{word-spacing:-10.626800pt;}
.ws74{word-spacing:-8.501467pt;}
.ws50{word-spacing:-5.520919pt;}
.ws52{word-spacing:-5.384689pt;}
.ws51{word-spacing:-5.377519pt;}
.ws2f{word-spacing:-1.009543pt;}
.ws33{word-spacing:-0.956410pt;}
.ws92{word-spacing:-0.903276pt;}
.wsa1{word-spacing:-0.850142pt;}
.ws6b{word-spacing:-0.690740pt;}
.wsb2{word-spacing:-0.584473pt;}
.wsdd{word-spacing:-0.552594pt;}
.wse1{word-spacing:-0.297550pt;}
.wsb4{word-spacing:-0.212535pt;}
.ws10{word-spacing:-0.191283pt;}
.ws99{word-spacing:-0.159402pt;}
.ws5d{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.047821pt;}
.wsc7{word-spacing:-0.042507pt;}
.ws4f{word-spacing:0.000000pt;}
.ws73{word-spacing:0.013548pt;}
.ws9a{word-spacing:0.053134pt;}
.wsb3{word-spacing:0.106268pt;}
.ws8a{word-spacing:0.212535pt;}
.ws3e{word-spacing:0.318803pt;}
.wsa0{word-spacing:0.584473pt;}
.ws59{word-spacing:0.690740pt;}
.ws7f{word-spacing:0.743874pt;}
.wsc8{word-spacing:0.765130pt;}
.wsac{word-spacing:0.797008pt;}
.wsc9{word-spacing:0.850144pt;}
.ws97{word-spacing:1.062677pt;}
.wsb5{word-spacing:1.487748pt;}
.ws16{word-spacing:1.530266pt;}
.ws38{word-spacing:1.540882pt;}
.ws8e{word-spacing:1.647150pt;}
.ws22{word-spacing:1.700284pt;}
.wse3{word-spacing:1.700288pt;}
.ws7a{word-spacing:1.753418pt;}
.ws3b{word-spacing:1.806551pt;}
.ws94{word-spacing:1.912819pt;}
.wsa4{word-spacing:1.965953pt;}
.ws7b{word-spacing:2.019087pt;}
.ws2d{word-spacing:2.178489pt;}
.ws25{word-spacing:2.231622pt;}
.ws17{word-spacing:2.534502pt;}
.ws57{word-spacing:2.603559pt;}
.ws5c{word-spacing:2.762961pt;}
.wsa3{word-spacing:3.081764pt;}
.wsab{word-spacing:3.134898pt;}
.wsd0{word-spacing:3.145533pt;}
.ws98{word-spacing:3.188032pt;}
.wsc5{word-spacing:3.315562pt;}
.wsa9{word-spacing:3.400567pt;}
.ws2a{word-spacing:3.453701pt;}
.wsae{word-spacing:3.719371pt;}
.wscd{word-spacing:3.783141pt;}
.ws24{word-spacing:3.825638pt;}
.wsb6{word-spacing:3.878772pt;}
.wscc{word-spacing:3.953170pt;}
.ws45{word-spacing:3.985040pt;}
.ws58{word-spacing:4.091308pt;}
.ws77{word-spacing:4.205800pt;}
.ws72{word-spacing:4.216727pt;}
.wse2{word-spacing:4.249682pt;}
.wsa7{word-spacing:4.250709pt;}
.ws53{word-spacing:4.250720pt;}
.wsb1{word-spacing:4.303843pt;}
.wsba{word-spacing:4.463245pt;}
.wsc2{word-spacing:4.505763pt;}
.ws3f{word-spacing:4.622646pt;}
.ws81{word-spacing:4.675780pt;}
.ws3c{word-spacing:4.728914pt;}
.ws34{word-spacing:4.941450pt;}
.wsd{word-spacing:5.116826pt;}
.ws6f{word-spacing:5.207119pt;}
.ws23{word-spacing:5.260253pt;}
.ws6a{word-spacing:5.272354pt;}
.ws54{word-spacing:5.299129pt;}
.ws5{word-spacing:5.313387pt;}
.wsce{word-spacing:5.313400pt;}
.wsf{word-spacing:5.355930pt;}
.ws96{word-spacing:5.525922pt;}
.wsa{word-spacing:5.547213pt;}
.ws20{word-spacing:5.579056pt;}
.wsd1{word-spacing:5.738472pt;}
.ws2c{word-spacing:5.791591pt;}
.ws5a{word-spacing:5.844725pt;}
.ws3{word-spacing:5.844747pt;}
.ws35{word-spacing:5.950993pt;}
.ws18{word-spacing:5.977600pt;}
.ws66{word-spacing:6.004127pt;}
.ws67{word-spacing:6.110395pt;}
.ws6c{word-spacing:6.163529pt;}
.wsc1{word-spacing:6.216662pt;}
.wsaa{word-spacing:6.322930pt;}
.ws1e{word-spacing:6.482332pt;}
.wscf{word-spacing:6.503602pt;}
.ws8f{word-spacing:6.535466pt;}
.ws4e{word-spacing:6.641733pt;}
.ws5b{word-spacing:6.694867pt;}
.ws14{word-spacing:6.694912pt;}
.wsbf{word-spacing:6.748001pt;}
.wse{word-spacing:6.838374pt;}
.wsa8{word-spacing:6.854269pt;}
.ws89{word-spacing:6.907403pt;}
.ws1f{word-spacing:7.013670pt;}
.ws80{word-spacing:7.066804pt;}
.ws21{word-spacing:7.226206pt;}
.wsa5{word-spacing:7.279340pt;}
.ws9b{word-spacing:7.385607pt;}
.wsd8{word-spacing:7.481267pt;}
.ws7e{word-spacing:7.491875pt;}
.ws44{word-spacing:7.545009pt;}
.ws69{word-spacing:7.704411pt;}
.ws6e{word-spacing:7.757545pt;}
.ws30{word-spacing:7.916946pt;}
.wsb8{word-spacing:7.970080pt;}
.ws3a{word-spacing:8.023214pt;}
.ws71{word-spacing:8.448285pt;}
.wsc{word-spacing:8.512102pt;}
.ws3d{word-spacing:8.607686pt;}
.ws56{word-spacing:8.660820pt;}
.ws70{word-spacing:8.713954pt;}
.wsd7{word-spacing:8.713976pt;}
.ws60{word-spacing:8.926490pt;}
.wsc4{word-spacing:8.926512pt;}
.wsc3{word-spacing:8.969019pt;}
.ws1c{word-spacing:8.979623pt;}
.ws8b{word-spacing:9.085891pt;}
.ws6d{word-spacing:9.351561pt;}
.ws85{word-spacing:9.404694pt;}
.ws87{word-spacing:9.510962pt;}
.ws39{word-spacing:9.564096pt;}
.ws2e{word-spacing:9.691642pt;}
.ws78{word-spacing:9.723498pt;}
.ws64{word-spacing:9.776631pt;}
.wsda{word-spacing:9.861670pt;}
.ws31{word-spacing:10.361104pt;}
.ws5e{word-spacing:10.414238pt;}
.wsc6{word-spacing:10.456771pt;}
.ws43{word-spacing:10.626773pt;}
.ws40{word-spacing:10.679907pt;}
.wsb{word-spacing:10.759680pt;}
.ws46{word-spacing:10.839309pt;}
.ws15{word-spacing:10.855322pt;}
.ws62{word-spacing:10.892443pt;}
.ws86{word-spacing:10.945577pt;}
.ws4a{word-spacing:11.211246pt;}
.ws68{word-spacing:11.317514pt;}
.ws41{word-spacing:11.370647pt;}
.wsca{word-spacing:11.434437pt;}
.ws29{word-spacing:11.476915pt;}
.ws26{word-spacing:11.530049pt;}
.ws93{word-spacing:11.636317pt;}
.ws55{word-spacing:11.689451pt;}
.wsbd{word-spacing:11.742585pt;}
.wsbb{word-spacing:11.795718pt;}
.ws90{word-spacing:11.848852pt;}
.ws7c{word-spacing:11.955120pt;}
.ws82{word-spacing:12.114522pt;}
.wsb9{word-spacing:12.167655pt;}
.ws4b{word-spacing:12.433325pt;}
.ws9f{word-spacing:12.539593pt;}
.ws0{word-spacing:12.752160pt;}
.ws11{word-spacing:12.815974pt;}
.ws36{word-spacing:12.858396pt;}
.ws2{word-spacing:12.882718pt;}
.ws7{word-spacing:12.885333pt;}
.ws8{word-spacing:12.885815pt;}
.ws65{word-spacing:12.911530pt;}
.ws12{word-spacing:13.007258pt;}
.ws13{word-spacing:13.102899pt;}
.ws4c{word-spacing:13.124065pt;}
.ws7d{word-spacing:13.177199pt;}
.ws9d{word-spacing:13.230333pt;}
.ws42{word-spacing:13.336601pt;}
.ws9c{word-spacing:13.549136pt;}
.wsa2{word-spacing:13.602270pt;}
.ws27{word-spacing:13.708538pt;}
.wsd3{word-spacing:13.729826pt;}
.wsaf{word-spacing:13.867939pt;}
.wsad{word-spacing:13.921073pt;}
.ws8c{word-spacing:13.974207pt;}
.ws95{word-spacing:14.080475pt;}
.ws2b{word-spacing:14.133609pt;}
.wscb{word-spacing:14.537462pt;}
.ws91{word-spacing:14.664947pt;}
.wsdc{word-spacing:14.835013pt;}
.wsa6{word-spacing:15.036884pt;}
.wsb0{word-spacing:15.143152pt;}
.ws79{word-spacing:15.196286pt;}
.ws47{word-spacing:15.833892pt;}
.ws32{word-spacing:15.887026pt;}
.ws1a{word-spacing:15.940160pt;}
.wsd2{word-spacing:16.322765pt;}
.wse0{word-spacing:16.365272pt;}
.wsde{word-spacing:16.577808pt;}
.ws49{word-spacing:16.630900pt;}
.ws83{word-spacing:16.737168pt;}
.ws1d{word-spacing:16.790302pt;}
.ws63{word-spacing:16.896570pt;}
.wsbe{word-spacing:17.055971pt;}
.wsc0{word-spacing:17.109105pt;}
.ws88{word-spacing:17.215373pt;}
.ws84{word-spacing:17.534176pt;}
.ws19{word-spacing:17.884979pt;}
.wsd9{word-spacing:18.065560pt;}
.ws9e{word-spacing:18.118649pt;}
.ws4{word-spacing:18.543719pt;}
.ws48{word-spacing:18.596853pt;}
.ws4d{word-spacing:18.703121pt;}
.wsd4{word-spacing:18.788182pt;}
.wsb7{word-spacing:18.968790pt;}
.ws37{word-spacing:19.234460pt;}
.ws28{word-spacing:19.393861pt;}
.wsd5{word-spacing:19.510805pt;}
.wsdb{word-spacing:20.403456pt;}
.ws5f{word-spacing:20.509673pt;}
.wsbc{word-spacing:21.094145pt;}
.ws61{word-spacing:22.635027pt;}
.wsd6{word-spacing:31.200285pt;}
.ws76{word-spacing:53.134000pt;}
.wsdf{word-spacing:70.179387pt;}
.ws75{word-spacing:114.556904pt;}
._2{margin-left:-11.731987pt;}
._4{margin-left:-7.013696pt;}
._5{margin-left:-5.685324pt;}
._3{margin-left:-4.678205pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._6{margin-left:-0.956424pt;}
._b{width:0.905260pt;}
._9{width:2.656693pt;}
._10{width:11.476915pt;}
._11{width:12.698994pt;}
._13{width:15.479062pt;}
._a{width:19.425790pt;}
._12{width:20.490950pt;}
._8{width:21.901926pt;}
._7{width:24.053862pt;}
._f{width:26.566933pt;}
._c{width:29.755040pt;}
._14{width:62.613106pt;}
._d{width:127.479093pt;}
._e{width:155.831395pt;}
.fs9{font-size:26.490240pt;}
.fsa{font-size:26.525560pt;}
.fs6{font-size:27.196646pt;}
.fsb{font-size:34.005867pt;}
.fs2{font-size:40.913067pt;}
.fs7{font-size:41.148173pt;}
.fs8{font-size:41.183493pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:10.860998pt;}
.y72{bottom:18.808070pt;}
.y75{bottom:19.523307pt;}
.y71{bottom:26.755142pt;}
.y74{bottom:31.885419pt;}
.y70{bottom:34.702214pt;}
.y6f{bottom:42.649286pt;}
.y5d{bottom:43.815593pt;}
.y6e{bottom:50.603717pt;}
.y6d{bottom:58.550789pt;}
.y6c{bottom:66.497861pt;}
.y6b{bottom:74.444933pt;}
.y5e{bottom:85.412628pt;}
.y5b{bottom:88.425893pt;}
.y56{bottom:88.495798pt;}
.y6a{bottom:89.706254pt;}
.y69{bottom:97.653326pt;}
.y31{bottom:100.740000pt;}
.y68{bottom:105.600398pt;}
.y30{bottom:112.696000pt;}
.y67{bottom:113.554829pt;}
.y54{bottom:116.680000pt;}
.y61{bottom:117.377518pt;}
.y66{bottom:121.501901pt;}
.y124{bottom:124.650667pt;}
.y60{bottom:125.324590pt;}
.y65{bottom:129.448973pt;}
.y5c{bottom:129.908873pt;}
.y53{bottom:132.620000pt;}
.y98{bottom:132.621333pt;}
.y5f{bottom:133.271662pt;}
.y123{bottom:136.882667pt;}
.y64{bottom:137.396045pt;}
.y2f{bottom:139.277333pt;}
.y5a{bottom:145.317362pt;}
.y63{bottom:145.343117pt;}
.y52{bottom:148.561333pt;}
.y122{bottom:148.837333pt;}
.y62{bottom:153.290189pt;}
.y2e{bottom:155.217333pt;}
.y59{bottom:157.679474pt;}
.y121{bottom:161.068000pt;}
.y58{bottom:163.658174pt;}
.y51{bottom:164.501333pt;}
.y2d{bottom:171.157333pt;}
.y120{bottom:173.024000pt;}
.y57{bottom:176.020286pt;}
.y50{bottom:180.441333pt;}
.y11f{bottom:184.978667pt;}
.y2c{bottom:187.098667pt;}
.y97{bottom:196.238667pt;}
.y4f{bottom:196.381333pt;}
.y11e{bottom:196.933333pt;}
.y2b{bottom:203.038667pt;}
.y11d{bottom:209.165333pt;}
.y96{bottom:212.178667pt;}
.y4e{bottom:212.321333pt;}
.y2a{bottom:218.978667pt;}
.y11c{bottom:221.120000pt;}
.y95{bottom:228.118667pt;}
.y4d{bottom:228.261333pt;}
.yc3{bottom:228.305333pt;}
.yd9{bottom:229.462667pt;}
.y11b{bottom:233.074667pt;}
.y29{bottom:234.918667pt;}
.y4c{bottom:244.202667pt;}
.yc2{bottom:244.245333pt;}
.y11a{bottom:245.030667pt;}
.yd8{bottom:245.402667pt;}
.y94{bottom:248.101333pt;}
.ye8{bottom:248.344000pt;}
.y28{bottom:250.858667pt;}
.y119{bottom:257.261333pt;}
.y4b{bottom:260.142667pt;}
.yc1{bottom:260.185333pt;}
.yd7{bottom:261.342667pt;}
.y27{bottom:266.798667pt;}
.y118{bottom:269.216000pt;}
.y93{bottom:272.149333pt;}
.ye7{bottom:272.996000pt;}
.y4a{bottom:276.082667pt;}
.yd6{bottom:277.282667pt;}
.yc0{bottom:280.460000pt;}
.y117{bottom:281.172000pt;}
.y26{bottom:282.740000pt;}
.y92{bottom:288.089333pt;}
.ye6{bottom:288.936000pt;}
.y49{bottom:292.022667pt;}
.y116{bottom:293.126667pt;}
.yd5{bottom:293.222667pt;}
.y25{bottom:298.865333pt;}
.ybf{bottom:300.841333pt;}
.y91{bottom:304.030667pt;}
.ye5{bottom:304.877333pt;}
.y115{bottom:305.357333pt;}
.y48{bottom:307.962667pt;}
.yd4{bottom:309.164000pt;}
.y24{bottom:314.805333pt;}
.y114{bottom:317.313333pt;}
.y90{bottom:319.970667pt;}
.ye4{bottom:320.817333pt;}
.y47{bottom:323.902667pt;}
.yd3{bottom:325.104000pt;}
.ybe{bottom:326.113333pt;}
.y113{bottom:329.544000pt;}
.y23{bottom:330.746667pt;}
.y8f{bottom:335.910667pt;}
.ye3{bottom:336.757333pt;}
.y46{bottom:339.844000pt;}
.yd2{bottom:341.044000pt;}
.y112{bottom:341.498667pt;}
.ybd{bottom:342.053333pt;}
.y22{bottom:346.686667pt;}
.y8e{bottom:351.708000pt;}
.ye2{bottom:352.697333pt;}
.y111{bottom:353.730667pt;}
.y45{bottom:355.784000pt;}
.yd1{bottom:356.984000pt;}
.ybc{bottom:357.993333pt;}
.y21{bottom:362.626667pt;}
.y110{bottom:365.685333pt;}
.y8d{bottom:367.648000pt;}
.ye1{bottom:368.637333pt;}
.y44{bottom:371.724000pt;}
.yd0{bottom:372.924000pt;}
.ybb{bottom:373.933333pt;}
.y10f{bottom:377.640000pt;}
.y20{bottom:378.566667pt;}
.y8c{bottom:383.588000pt;}
.ye0{bottom:384.578667pt;}
.y43{bottom:387.664000pt;}
.ycf{bottom:388.864000pt;}
.y10e{bottom:389.872000pt;}
.yba{bottom:389.874667pt;}
.y1f{bottom:394.506667pt;}
.y8b{bottom:399.528000pt;}
.ydf{bottom:400.518667pt;}
.y10d{bottom:401.826667pt;}
.y42{bottom:403.604000pt;}
.yb9{bottom:405.814667pt;}
.y1e{bottom:410.446667pt;}
.yce{bottom:413.189333pt;}
.y10c{bottom:413.782667pt;}
.y8a{bottom:415.469333pt;}
.yde{bottom:416.458667pt;}
.y41{bottom:419.544000pt;}
.yb8{bottom:421.754667pt;}
.y10b{bottom:425.737333pt;}
.y1d{bottom:426.388000pt;}
.y89{bottom:431.409333pt;}
.ydd{bottom:432.398667pt;}
.y40{bottom:435.485333pt;}
.yb7{bottom:437.694667pt;}
.y10a{bottom:437.968000pt;}
.y88{bottom:447.349333pt;}
.y1c{bottom:447.626667pt;}
.ycd{bottom:448.297333pt;}
.ydc{bottom:448.338667pt;}
.y109{bottom:449.924000pt;}
.y3f{bottom:451.425333pt;}
.yb6{bottom:453.634667pt;}
.y108{bottom:461.878667pt;}
.y87{bottom:463.289333pt;}
.ycc{bottom:464.237333pt;}
.ydb{bottom:464.278667pt;}
.y3e{bottom:467.365333pt;}
.yb5{bottom:469.574667pt;}
.y107{bottom:473.833333pt;}
.y1b{bottom:477.806667pt;}
.y86{bottom:479.229333pt;}
.ycb{bottom:480.177333pt;}
.y3d{bottom:483.305333pt;}
.yb4{bottom:485.516000pt;}
.y106{bottom:485.789333pt;}
.y1a{bottom:491.276000pt;}
.y85{bottom:495.169333pt;}
.yca{bottom:496.117333pt;}
.y105{bottom:498.020000pt;}
.y3c{bottom:499.245333pt;}
.yb3{bottom:501.498667pt;}
.y19{bottom:504.560000pt;}
.y104{bottom:510.250667pt;}
.y84{bottom:510.966667pt;}
.yc9{bottom:512.057333pt;}
.y3b{bottom:515.186667pt;}
.yb2{bottom:517.438667pt;}
.y18{bottom:517.842667pt;}
.y103{bottom:522.206667pt;}
.y83{bottom:526.908000pt;}
.yc8{bottom:527.997333pt;}
.y17{bottom:531.126667pt;}
.yb1{bottom:533.378667pt;}
.y82{bottom:542.848000pt;}
.yda{bottom:543.937333pt;}
.yc7{bottom:543.938667pt;}
.y16{bottom:544.409333pt;}
.y102{bottom:544.912000pt;}
.y3a{bottom:547.066667pt;}
.yb0{bottom:549.318667pt;}
.y15{bottom:557.693333pt;}
.y81{bottom:558.788000pt;}
.yc6{bottom:559.878667pt;}
.y39{bottom:563.006667pt;}
.yaf{bottom:565.260000pt;}
.y14{bottom:570.977333pt;}
.y101{bottom:574.040000pt;}
.y80{bottom:574.728000pt;}
.yc5{bottom:575.818667pt;}
.y38{bottom:578.946667pt;}
.yae{bottom:581.200000pt;}
.y13{bottom:584.260000pt;}
.y100{bottom:589.980000pt;}
.y7f{bottom:590.668000pt;}
.y37{bottom:594.886667pt;}
.yad{bottom:597.140000pt;}
.y12{bottom:597.544000pt;}
.yff{bottom:605.920000pt;}
.y7e{bottom:606.608000pt;}
.y11{bottom:610.828000pt;}
.yac{bottom:613.122667pt;}
.yc4{bottom:618.766667pt;}
.yfe{bottom:621.860000pt;}
.y7d{bottom:622.549333pt;}
.y10{bottom:624.110667pt;}
.y36{bottom:626.768000pt;}
.yab{bottom:629.062667pt;}
.yf{bottom:637.394667pt;}
.yfd{bottom:638.297333pt;}
.y7c{bottom:638.489333pt;}
.y35{bottom:642.708000pt;}
.yaa{bottom:645.004000pt;}
.ye{bottom:650.678667pt;}
.yfc{bottom:654.237333pt;}
.y7b{bottom:654.429333pt;}
.y34{bottom:658.648000pt;}
.ya9{bottom:660.944000pt;}
.yd{bottom:663.961333pt;}
.yfb{bottom:670.177333pt;}
.y7a{bottom:670.369333pt;}
.y33{bottom:674.588000pt;}
.ya8{bottom:676.884000pt;}
.yc{bottom:677.245333pt;}
.yfa{bottom:686.117333pt;}
.y79{bottom:686.309333pt;}
.y32{bottom:690.528000pt;}
.yb{bottom:690.529333pt;}
.ya7{bottom:692.824000pt;}
.yf9{bottom:702.057333pt;}
.y78{bottom:706.292000pt;}
.ya6{bottom:708.764000pt;}
.yf8{bottom:717.998667pt;}
.ya5{bottom:724.705333pt;}
.y77{bottom:730.340000pt;}
.yf7{bottom:733.938667pt;}
.ya4{bottom:740.645333pt;}
.ya{bottom:749.338667pt;}
.yf6{bottom:749.878667pt;}
.y9{bottom:765.777333pt;}
.y76{bottom:771.764000pt;}
.yf5{bottom:772.982667pt;}
.y8{bottom:782.216000pt;}
.ya3{bottom:788.446667pt;}
.y55{bottom:795.674667pt;}
.y7{bottom:798.850667pt;}
.ya2{bottom:800.402667pt;}
.yf4{bottom:802.110667pt;}
.ya1{bottom:812.357333pt;}
.yf3{bottom:818.050667pt;}
.ya0{bottom:831.253333pt;}
.y6{bottom:832.474667pt;}
.yf2{bottom:833.990667pt;}
.y5{bottom:848.913333pt;}
.yf1{bottom:849.930667pt;}
.y9f{bottom:858.650667pt;}
.y4{bottom:865.352000pt;}
.yf0{bottom:865.870667pt;}
.y9e{bottom:870.605333pt;}
.yef{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.yee{bottom:897.752000pt;}
.y9d{bottom:907.249333pt;}
.yed{bottom:913.692000pt;}
.y9c{bottom:919.205333pt;}
.y2{bottom:923.830667pt;}
.yec{bottom:929.632000pt;}
.y9b{bottom:938.100000pt;}
.y126{bottom:941.588000pt;}
.yeb{bottom:945.572000pt;}
.y125{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.yea{bottom:961.512000pt;}
.y9a{bottom:965.497333pt;}
.y99{bottom:977.452000pt;}
.ye9{bottom:977.453333pt;}
.hc{height:22.997874pt;}
.hf{height:23.028538pt;}
.hd{height:23.967976pt;}
.he{height:23.999933pt;}
.h9{height:24.607122pt;}
.h11{height:29.159939pt;}
.h7{height:29.244954pt;}
.h10{height:29.499997pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.ha{height:35.723365pt;}
.hb{height:35.754029pt;}
.h3{height:36.449833pt;}
.h4{height:36.556100pt;}
.h2{height:49.262857pt;}
.h1{height:87.734861pt;}
.h8{height:192.937248pt;}
.h0{height:1056.000000pt;}
.w1{width:334.748328pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:2.613699pt;}
.x18{left:17.377592pt;}
.x21{left:27.655806pt;}
.x15{left:30.790484pt;}
.x19{left:42.189381pt;}
.x10{left:65.285333pt;}
.x2c{left:70.598667pt;}
.x1c{left:72.715704pt;}
.x12{left:75.912000pt;}
.xf{left:78.568000pt;}
.x1{left:81.801333pt;}
.x2d{left:89.630667pt;}
.x1a{left:121.741044pt;}
.x16{left:142.127491pt;}
.x4{left:143.658667pt;}
.x2{left:159.000000pt;}
.x22{left:162.873333pt;}
.x6{left:171.328000pt;}
.x11{left:180.825333pt;}
.x17{left:182.447844pt;}
.x3{left:185.716000pt;}
.x5{left:188.722667pt;}
.x2b{left:195.464000pt;}
.x1b{left:238.448947pt;}
.x1d{left:274.387373pt;}
.x1f{left:276.815645pt;}
.x1e{left:284.983469pt;}
.xc{left:297.748000pt;}
.x2a{left:311.530667pt;}
.xd{left:342.812000pt;}
.xb{left:357.600000pt;}
.xe{left:364.245333pt;}
.x13{left:415.970667pt;}
.x25{left:425.742667pt;}
.x14{left:429.253333pt;}
.x28{left:432.458667pt;}
.x2e{left:440.316000pt;}
.x8{left:447.186667pt;}
.x24{left:480.068000pt;}
.x27{left:482.708000pt;}
.x7{left:489.425333pt;}
.x9{left:492.250667pt;}
.xa{left:502.048000pt;}
.x29{left:534.446667pt;}
.x26{left:561.318667pt;}
.x23{left:563.088000pt;}
}




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