
    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_a119e383824323a2745cf729.woff2')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_832520f89e209f613ccb9918.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5e0abaed463f9ed3e772484e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0abef4d6c8bf53155a48ef48.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.514000;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(0.271360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271360,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.276109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276109,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.371909px;}
.ls6{letter-spacing:2.389613px;}
.ls7{letter-spacing:2.391746px;}
.ls4{letter-spacing:2.393660px;}
.ls0{letter-spacing:2.964877px;}
.ls3{letter-spacing:2.986766px;}
.ls9{letter-spacing:2.987675px;}
.ls2{letter-spacing:2.988780px;}
.ls8{letter-spacing:15.178167px;}
.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;}
}
.ws3{word-spacing:-14.943900px;}
.ws1f{word-spacing:-14.920027px;}
.ws1b{word-spacing:-13.449600px;}
.ws92{word-spacing:-11.955150px;}
.ws9e{word-spacing:-11.936059px;}
.ws93{word-spacing:-9.564150px;}
.ws40{word-spacing:-1.195512px;}
.ws18{word-spacing:-1.075968px;}
.wsab{word-spacing:-1.016185px;}
.ws7d{word-spacing:-0.836858px;}
.ws1d{word-spacing:-0.753178px;}
.ws38{word-spacing:-0.597756px;}
.wsd0{word-spacing:-0.537980px;}
.wsf{word-spacing:-0.376589px;}
.wsbf{word-spacing:-0.358654px;}
.wsdd{word-spacing:-0.334744px;}
.ws63{word-spacing:-0.298878px;}
.wsd1{word-spacing:-0.179327px;}
.ws8{word-spacing:-0.161395px;}
.wsa7{word-spacing:-0.119551px;}
.wse0{word-spacing:-0.095641px;}
.ws2d{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws91{word-spacing:0.000000px;}
.ws90{word-spacing:0.003767px;}
.ws69{word-spacing:0.047821px;}
.ws6f{word-spacing:0.059776px;}
.wsa8{word-spacing:0.239102px;}
.ws74{word-spacing:0.298878px;}
.ws25{word-spacing:0.418429px;}
.ws77{word-spacing:0.537980px;}
.ws75{word-spacing:0.597756px;}
.wsbe{word-spacing:0.657532px;}
.ws34{word-spacing:0.777083px;}
.ws1a{word-spacing:0.914573px;}
.ws68{word-spacing:1.016185px;}
.wsd8{word-spacing:1.075961px;}
.wsc3{word-spacing:1.135736px;}
.wsfb{word-spacing:1.147694px;}
.wsd7{word-spacing:1.255288px;}
.wsf2{word-spacing:1.291156px;}
.ws8e{word-spacing:1.315063px;}
.ws8f{word-spacing:1.434614px;}
.wse8{word-spacing:1.482439px;}
.ws73{word-spacing:1.554166px;}
.ws9a{word-spacing:1.673717px;}
.wsf9{word-spacing:1.721542px;}
.ws7c{word-spacing:1.793268px;}
.ws108{word-spacing:1.865003px;}
.ws5e{word-spacing:1.912819px;}
.ws62{word-spacing:1.972595px;}
.ws28{word-spacing:2.032370px;}
.ws4a{word-spacing:2.211697px;}
.ws86{word-spacing:2.271473px;}
.ws9b{word-spacing:2.391030px;}
.wsf5{word-spacing:2.534492px;}
.ws71{word-spacing:2.570351px;}
.ws24{word-spacing:2.630126px;}
.ws53{word-spacing:2.869229px;}
.wsb4{word-spacing:2.929004px;}
.ws96{word-spacing:3.168107px;}
.ws47{word-spacing:3.227882px;}
.ws8d{word-spacing:3.287658px;}
.ws11{word-spacing:3.335501px;}
.ws104{word-spacing:3.347442px;}
.wsa1{word-spacing:3.407209px;}
.wsfc{word-spacing:3.443083px;}
.ws76{word-spacing:3.466985px;}
.ws7{word-spacing:3.496896px;}
.wsce{word-spacing:3.526760px;}
.wsb6{word-spacing:3.586536px;}
.ws8c{word-spacing:3.706087px;}
.wsfd{word-spacing:3.873469px;}
.wsf7{word-spacing:3.969110px;}
.wsf8{word-spacing:4.016930px;}
.ws50{word-spacing:4.064741px;}
.wsde{word-spacing:4.064751px;}
.wsdf{word-spacing:4.112572px;}
.wsc8{word-spacing:4.124516px;}
.ws7a{word-spacing:4.184292px;}
.ws30{word-spacing:4.244068px;}
.ws81{word-spacing:4.303843px;}
.ws100{word-spacing:4.303854px;}
.wsa0{word-spacing:4.336659px;}
.ws95{word-spacing:4.573753px;}
.ws5a{word-spacing:4.662497px;}
.ws6b{word-spacing:4.722272px;}
.ws9c{word-spacing:4.749809px;}
.ws9d{word-spacing:4.781109px;}
.ws59{word-spacing:4.782060px;}
.wsf4{word-spacing:4.877701px;}
.ws6d{word-spacing:4.961375px;}
.ws41{word-spacing:5.021150px;}
.ws3c{word-spacing:5.140702px;}
.ws39{word-spacing:5.379804px;}
.ws2f{word-spacing:5.439580px;}
.wse9{word-spacing:5.451548px;}
.wsbd{word-spacing:5.618906px;}
.wsda{word-spacing:5.690651px;}
.ws42{word-spacing:5.798233px;}
.ws105{word-spacing:5.881934px;}
.ws26{word-spacing:5.917784px;}
.ws89{word-spacing:5.976969px;}
.ws2{word-spacing:5.977560px;}
.ws107{word-spacing:6.073216px;}
.wsc1{word-spacing:6.097111px;}
.ws52{word-spacing:6.156887px;}
.wsc9{word-spacing:6.216662px;}
.wsac{word-spacing:6.276438px;}
.ws65{word-spacing:6.395989px;}
.ws99{word-spacing:6.455765px;}
.wse4{word-spacing:6.551422px;}
.ws4b{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wsa2{word-spacing:6.694867px;}
.ws19{word-spacing:6.724800px;}
.wse6{word-spacing:6.886166px;}
.ws37{word-spacing:6.933970px;}
.ws64{word-spacing:6.993745px;}
.ws2c{word-spacing:7.053521px;}
.wse2{word-spacing:7.364372px;}
.ws35{word-spacing:7.412174px;}
.ws9{word-spacing:7.424179px;}
.ws72{word-spacing:7.471950px;}
.wsf0{word-spacing:7.507834px;}
.wsb5{word-spacing:7.531726px;}
.wse7{word-spacing:7.651296px;}
.ws70{word-spacing:7.711052px;}
.wsd9{word-spacing:7.746937px;}
.wsd3{word-spacing:7.830604px;}
.ws48{word-spacing:7.950155px;}
.ws82{word-spacing:8.009930px;}
.ws2e{word-spacing:8.069706px;}
.ws83{word-spacing:8.249033px;}
.ws45{word-spacing:8.368584px;}
.wsfe{word-spacing:8.464246px;}
.ws56{word-spacing:8.488135px;}
.ws5b{word-spacing:8.547911px;}
.ws3d{word-spacing:8.727238px;}
.ws4c{word-spacing:8.787013px;}
.wsc{word-spacing:8.876736px;}
.wsf3{word-spacing:8.942452px;}
.ws85{word-spacing:8.966340px;}
.ws101{word-spacing:9.133735px;}
.ws102{word-spacing:9.181555px;}
.wsb2{word-spacing:9.205442px;}
.ws67{word-spacing:9.265218px;}
.wsa5{word-spacing:9.324994px;}
.wscf{word-spacing:9.504320px;}
.wsd5{word-spacing:9.564096px;}
.wsb1{word-spacing:9.623872px;}
.wsa9{word-spacing:9.683647px;}
.wsf1{word-spacing:9.755402px;}
.ws4d{word-spacing:9.803198px;}
.ws23{word-spacing:9.862974px;}
.wsf6{word-spacing:9.898864px;}
.wsad{word-spacing:9.922750px;}
.ws44{word-spacing:10.042301px;}
.wsba{word-spacing:10.102076px;}
.wsc6{word-spacing:10.161852px;}
.ws103{word-spacing:10.233608px;}
.ws6a{word-spacing:10.281403px;}
.wsb3{word-spacing:10.400954px;}
.wsff{word-spacing:10.424891px;}
.wsc0{word-spacing:10.520506px;}
.wsa3{word-spacing:10.580281px;}
.wsa6{word-spacing:10.640057px;}
.ws4f{word-spacing:10.759608px;}
.wsd2{word-spacing:10.879159px;}
.wse1{word-spacing:10.950917px;}
.ws5f{word-spacing:10.998710px;}
.ws106{word-spacing:10.998738px;}
.wsb0{word-spacing:11.058486px;}
.wse5{word-spacing:11.142200px;}
.ws80{word-spacing:11.178037px;}
.ws43{word-spacing:11.476915px;}
.ws5{word-spacing:11.512858px;}
.wsb9{word-spacing:11.596466px;}
.ws22{word-spacing:11.895344px;}
.ws88{word-spacing:11.955120px;}
.ws29{word-spacing:12.194222px;}
.ws55{word-spacing:12.253998px;}
.ws31{word-spacing:12.313774px;}
.wsca{word-spacing:12.373549px;}
.ws46{word-spacing:12.433325px;}
.wsdb{word-spacing:12.528997px;}
.ws1c{word-spacing:12.642624px;}
.wsc7{word-spacing:12.672427px;}
.wsc4{word-spacing:12.732203px;}
.ws3f{word-spacing:12.791978px;}
.ws7b{word-spacing:12.851754px;}
.ws8a{word-spacing:12.911530px;}
.ws27{word-spacing:12.971305px;}
.wsbb{word-spacing:13.031081px;}
.ws87{word-spacing:13.090856px;}
.ws109{word-spacing:13.102844px;}
.ws7e{word-spacing:13.210408px;}
.ws8b{word-spacing:13.329959px;}
.ws17{word-spacing:13.342003px;}
.wsaa{word-spacing:13.389734px;}
.ws6e{word-spacing:13.569061px;}
.wsea{word-spacing:13.724512px;}
.ws10a{word-spacing:13.963615px;}
.ws54{word-spacing:13.987490px;}
.wsb{word-spacing:14.041382px;}
.ws36{word-spacing:14.166817px;}
.ws0{word-spacing:14.346180px;}
.wsd{word-spacing:14.364173px;}
.ws51{word-spacing:14.465695px;}
.wsd6{word-spacing:14.585246px;}
.ws6{word-spacing:14.686963px;}
.ws84{word-spacing:14.764573px;}
.wsdc{word-spacing:14.872207px;}
.ws57{word-spacing:14.884124px;}
.wsc2{word-spacing:15.063451px;}
.wsaf{word-spacing:15.242778px;}
.ws66{word-spacing:15.362329px;}
.wsb7{word-spacing:15.422105px;}
.ws21{word-spacing:15.601432px;}
.wsed{word-spacing:15.685157px;}
.ws97{word-spacing:15.720983px;}
.wsa4{word-spacing:15.780758px;}
.ws10{word-spacing:16.031923px;}
.ws33{word-spacing:16.199188px;}
.wsfa{word-spacing:16.259004px;}
.ws3a{word-spacing:16.318739px;}
.wse3{word-spacing:16.354645px;}
.wse{word-spacing:16.408512px;}
.ws3b{word-spacing:16.498066px;}
.wsa{word-spacing:16.785101px;}
.wscc{word-spacing:16.856719px;}
.ws61{word-spacing:16.916495px;}
.wsb8{word-spacing:16.976270px;}
.ws2b{word-spacing:17.095822px;}
.wsbc{word-spacing:17.155597px;}
.ws12{word-spacing:17.323085px;}
.ws13{word-spacing:17.430682px;}
.ws7f{word-spacing:17.753353px;}
.ws1e{word-spacing:17.932680px;}
.ws10b{word-spacing:17.932725px;}
.ws16{word-spacing:18.076262px;}
.ws20{word-spacing:18.590212px;}
.ws14{word-spacing:18.775642px;}
.ws4e{word-spacing:18.948865px;}
.wscd{word-spacing:19.068416px;}
.ws98{word-spacing:19.367294px;}
.ws3e{word-spacing:19.486846px;}
.ws49{word-spacing:19.606397px;}
.wsc5{word-spacing:19.666172px;}
.ws32{word-spacing:19.725948px;}
.ws2a{word-spacing:20.084602px;}
.ws15{word-spacing:20.228198px;}
.wsd4{word-spacing:20.443255px;}
.ws5d{word-spacing:20.562806px;}
.ws58{word-spacing:20.861684px;}
.wsae{word-spacing:20.981236px;}
.wseb{word-spacing:20.993243px;}
.ws6c{word-spacing:21.937645px;}
.ws60{word-spacing:22.057196px;}
.wscb{word-spacing:22.894055px;}
.ws5c{word-spacing:23.013606px;}
.wsec{word-spacing:23.719018px;}
.wsee{word-spacing:25.010174px;}
.ws79{word-spacing:25.344854px;}
.ws78{word-spacing:43.277534px;}
.ws9f{word-spacing:54.206604px;}
.wsef{word-spacing:55.041511px;}
.ws94{word-spacing:57.170197px;}
._1e{margin-left:-7.711052px;}
._d{margin-left:-5.549818px;}
._1{margin-left:-4.273971px;}
._c{margin-left:-3.202583px;}
._0{margin-left:-2.151927px;}
._2{margin-left:-1.135731px;}
._e{width:1.882787px;}
._8{width:2.988780px;}
._4{width:12.050842px;}
._3{width:15.924326px;}
._b{width:18.859217px;}
._a{width:23.730913px;}
._9{width:28.154313px;}
._5{width:29.750515px;}
._6{width:31.203072px;}
._7{width:32.655629px;}
._1d{width:65.050731px;}
._15{width:68.605726px;}
._1a{width:86.731818px;}
._10{width:114.342115px;}
._1b{width:161.411292px;}
._12{width:164.016487px;}
._13{width:180.342524px;}
._1c{width:221.604118px;}
._14{width:256.586994px;}
._17{width:279.778187px;}
._19{width:290.643728px;}
._f{width:297.933725px;}
._16{width:328.031286px;}
._18{width:336.033092px;}
._11{width:353.138930px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.256600px;}
.fs7{font-size:43.366589px;}
.fs6{font-size:45.737535px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y33{bottom:113.332500px;}
.yce{bottom:117.744000px;}
.y108{bottom:126.783000px;}
.y32{bottom:131.265000px;}
.y93{bottom:131.266500px;}
.yb1{bottom:134.559000px;}
.y107{bottom:140.232000px;}
.y4c{bottom:149.197500px;}
.y31{bottom:149.199000px;}
.yaf{bottom:149.562000px;}
.y106{bottom:153.681000px;}
.ycb{bottom:153.727500px;}
.y4b{bottom:167.130000px;}
.y30{bottom:167.131500px;}
.yae{bottom:167.494500px;}
.yca{bottom:171.660000px;}
.y105{bottom:175.269000px;}
.ye3{bottom:180.487500px;}
.y2f{bottom:185.064000px;}
.yad{bottom:185.427000px;}
.yc9{bottom:189.594000px;}
.y13f{bottom:198.514500px;}
.y104{bottom:201.477000px;}
.y2e{bottom:202.996500px;}
.yac{bottom:203.359500px;}
.yc8{bottom:207.526500px;}
.y13e{bottom:211.963500px;}
.y103{bottom:219.409500px;}
.y2d{bottom:220.929000px;}
.yab{bottom:221.292000px;}
.y92{bottom:221.379000px;}
.y13d{bottom:225.412500px;}
.yc7{bottom:225.459000px;}
.y102{bottom:237.342000px;}
.y2c{bottom:238.861500px;}
.yd4{bottom:238.863000px;}
.y91{bottom:239.311500px;}
.yaa{bottom:239.589000px;}
.yc6{bottom:243.391500px;}
.y13c{bottom:252.312000px;}
.y101{bottom:255.274500px;}
.y4a{bottom:256.794000px;}
.y2b{bottom:256.795500px;}
.y90{bottom:257.245500px;}
.ya9{bottom:257.521500px;}
.yc5{bottom:261.324000px;}
.y13b{bottom:265.761000px;}
.y2a{bottom:274.728000px;}
.y8f{bottom:275.178000px;}
.ya8{bottom:275.454000px;}
.y100{bottom:277.612500px;}
.y13a{bottom:279.211500px;}
.yc4{bottom:279.256500px;}
.y29{bottom:292.660500px;}
.ya7{bottom:293.386500px;}
.yc3{bottom:297.190500px;}
.yff{bottom:303.820500px;}
.y139{bottom:306.111000px;}
.y28{bottom:310.593000px;}
.y8e{bottom:310.748404px;}
.ya6{bottom:311.319000px;}
.yc2{bottom:315.123000px;}
.y138{bottom:319.560000px;}
.yfe{bottom:321.753000px;}
.y8d{bottom:323.611565px;}
.y27{bottom:328.525500px;}
.ya5{bottom:329.251500px;}
.y137{bottom:333.009000px;}
.yc1{bottom:333.055500px;}
.y8c{bottom:336.476161px;}
.yfd{bottom:339.687000px;}
.y26{bottom:346.458000px;}
.yd3{bottom:346.459500px;}
.ya4{bottom:347.185500px;}
.y8b{bottom:349.339323px;}
.yc0{bottom:350.988000px;}
.yfc{bottom:357.619500px;}
.y136{bottom:359.908500px;}
.y8a{bottom:362.202485px;}
.y49{bottom:364.390500px;}
.y25{bottom:364.392000px;}
.ya3{bottom:365.118000px;}
.ybf{bottom:368.920500px;}
.y135{bottom:373.357500px;}
.y89{bottom:375.067081px;}
.yfb{bottom:375.552000px;}
.y24{bottom:382.324500px;}
.ya2{bottom:383.050500px;}
.y134{bottom:386.808000px;}
.ybe{bottom:386.854500px;}
.y88{bottom:387.930242px;}
.yfa{bottom:393.484500px;}
.y23{bottom:400.257000px;}
.y87{bottom:400.794839px;}
.ya1{bottom:400.983000px;}
.ybd{bottom:404.787000px;}
.yd2{bottom:405.753000px;}
.yb0{bottom:407.464500px;}
.yf9{bottom:411.417000px;}
.y86{bottom:413.658000px;}
.y133{bottom:413.706000px;}
.y22{bottom:418.189500px;}
.ya0{bottom:418.915500px;}
.ybc{bottom:422.719500px;}
.y85{bottom:427.093591px;}
.y132{bottom:427.156500px;}
.yf8{bottom:429.349500px;}
.y21{bottom:436.122000px;}
.y9f{bottom:436.849500px;}
.y131{bottom:440.605500px;}
.ybb{bottom:440.652000px;}
.yf7{bottom:446.980500px;}
.y84{bottom:452.509500px;}
.yd1{bottom:452.769000px;}
.y48{bottom:454.054500px;}
.y20{bottom:454.056000px;}
.y9e{bottom:454.782000px;}
.yba{bottom:458.584500px;}
.yf6{bottom:464.913000px;}
.y83{bottom:465.958500px;}
.y130{bottom:467.505000px;}
.y47{bottom:471.987000px;}
.y64{bottom:471.988500px;}
.y9d{bottom:472.714500px;}
.yb9{bottom:476.517000px;}
.y1f{bottom:476.568000px;}
.y12f{bottom:480.954000px;}
.yf5{bottom:482.847000px;}
.ycd{bottom:483.087000px;}
.y46{bottom:489.921000px;}
.y9c{bottom:490.647000px;}
.ye2{bottom:492.246000px;}
.y12e{bottom:494.404500px;}
.yb8{bottom:494.451000px;}
.y63{bottom:498.016500px;}
.yf4{bottom:500.779500px;}
.y82{bottom:503.569500px;}
.y45{bottom:507.853500px;}
.y1e{bottom:507.981000px;}
.ye1{bottom:510.180000px;}
.yf3{bottom:518.712000px;}
.y12d{bottom:521.302500px;}
.y81{bottom:521.502000px;}
.y1d{bottom:522.924000px;}
.y44{bottom:525.786000px;}
.yb7{bottom:526.978500px;}
.ye0{bottom:528.112500px;}
.y62{bottom:530.836500px;}
.y12c{bottom:534.753000px;}
.yf2{bottom:536.644500px;}
.y1c{bottom:537.741000px;}
.y80{bottom:539.434500px;}
.y9b{bottom:541.545419px;}
.y43{bottom:543.718500px;}
.ydf{bottom:546.045000px;}
.y12b{bottom:548.202000px;}
.y61{bottom:548.769000px;}
.y1b{bottom:552.685500px;}
.y9a{bottom:553.741780px;}
.yf1{bottom:554.577000px;}
.y7f{bottom:557.367000px;}
.y42{bottom:561.651000px;}
.y12a{bottom:561.652500px;}
.yde{bottom:563.977500px;}
.y99{bottom:565.939500px;}
.y60{bottom:566.701500px;}
.y1a{bottom:567.630000px;}
.yf0{bottom:572.509500px;}
.y129{bottom:575.101500px;}
.y7e{bottom:575.301000px;}
.y98{bottom:578.135860px;}
.y41{bottom:579.583500px;}
.ydd{bottom:581.910000px;}
.y19{bottom:582.573000px;}
.y5f{bottom:584.634000px;}
.y128{bottom:588.550500px;}
.yef{bottom:590.140500px;}
.y97{bottom:590.874976px;}
.y7d{bottom:593.233500px;}
.y18{bottom:597.517500px;}
.ydc{bottom:599.842500px;}
.y127{bottom:602.001000px;}
.y5e{bottom:602.566500px;}
.yee{bottom:608.073000px;}
.y7c{bottom:611.166000px;}
.y17{bottom:612.462000px;}
.y40{bottom:615.450000px;}
.y96{bottom:615.795000px;}
.ydb{bottom:617.776500px;}
.y5d{bottom:620.499000px;}
.yed{bottom:626.007000px;}
.y16{bottom:627.405000px;}
.y126{bottom:628.899000px;}
.y7b{bottom:629.098500px;}
.y95{bottom:629.244000px;}
.y3f{bottom:633.382500px;}
.yda{bottom:635.709000px;}
.y5c{bottom:638.433000px;}
.y15{bottom:642.349500px;}
.yec{bottom:643.939500px;}
.y7a{bottom:647.031000px;}
.y3e{bottom:651.315000px;}
.yd9{bottom:653.641500px;}
.y125{bottom:655.798500px;}
.y5b{bottom:656.365500px;}
.y14{bottom:657.292500px;}
.yeb{bottom:661.872000px;}
.y79{bottom:664.963500px;}
.y3d{bottom:669.247500px;}
.y124{bottom:669.249000px;}
.yd8{bottom:671.574000px;}
.y13{bottom:672.237000px;}
.y5a{bottom:674.298000px;}
.y94{bottom:677.562000px;}
.yea{bottom:679.804500px;}
.y123{bottom:682.698000px;}
.yd0{bottom:684.664500px;}
.y12{bottom:687.181500px;}
.yd7{bottom:689.506500px;}
.y78{bottom:690.303000px;}
.y59{bottom:692.230500px;}
.y122{bottom:696.147000px;}
.ye9{bottom:697.737000px;}
.y11{bottom:702.124500px;}
.y3c{bottom:705.114000px;}
.yd6{bottom:707.439000px;}
.y121{bottom:709.597500px;}
.y58{bottom:710.163000px;}
.ye8{bottom:715.669500px;}
.y10{bottom:717.069000px;}
.y77{bottom:722.146500px;}
.y3b{bottom:723.046500px;}
.y57{bottom:728.097000px;}
.yf{bottom:732.013500px;}
.ye7{bottom:733.603500px;}
.y120{bottom:736.495500px;}
.yd5{bottom:739.968000px;}
.y76{bottom:740.079000px;}
.y3a{bottom:740.979000px;}
.y56{bottom:746.029500px;}
.ye{bottom:746.956500px;}
.y11f{bottom:749.946000px;}
.ye6{bottom:751.536000px;}
.y75{bottom:758.011500px;}
.y39{bottom:758.911500px;}
.yb6{bottom:759.264000px;}
.yd{bottom:761.901000px;}
.y11e{bottom:763.395000px;}
.y55{bottom:763.962000px;}
.ye5{bottom:773.874000px;}
.y74{bottom:775.945500px;}
.y38{bottom:776.844000px;}
.yc{bottom:776.845500px;}
.yb5{bottom:777.196500px;}
.y54{bottom:781.894500px;}
.y11d{bottom:790.294500px;}
.yb{bottom:791.788500px;}
.y73{bottom:794.328000px;}
.y37{bottom:794.778000px;}
.yb4{bottom:795.129000px;}
.y53{bottom:799.827000px;}
.y11c{bottom:803.743500px;}
.ya{bottom:806.733000px;}
.ycc{bottom:809.257500px;}
.y72{bottom:812.260500px;}
.y36{bottom:812.710500px;}
.yb3{bottom:813.063000px;}
.y11b{bottom:817.194000px;}
.y52{bottom:817.759500px;}
.ye4{bottom:818.968500px;}
.y9{bottom:821.677500px;}
.y71{bottom:830.193000px;}
.y35{bottom:830.643000px;}
.y8{bottom:836.620500px;}
.y11a{bottom:844.092000px;}
.yb2{bottom:845.590500px;}
.y70{bottom:848.125500px;}
.y34{bottom:848.575500px;}
.y7{bottom:851.565000px;}
.y51{bottom:851.794500px;}
.y119{bottom:857.542500px;}
.y6f{bottom:866.058000px;}
.y6{bottom:866.508000px;}
.y118{bottom:870.991500px;}
.y6e{bottom:883.990500px;}
.y117{bottom:884.440500px;}
.y116{bottom:897.891000px;}
.y6d{bottom:901.924500px;}
.ycf{bottom:910.206000px;}
.y115{bottom:911.340000px;}
.y5{bottom:914.758500px;}
.y6c{bottom:919.857000px;}
.y114{bottom:924.790500px;}
.y4{bottom:933.250500px;}
.y6b{bottom:937.789500px;}
.y113{bottom:938.239500px;}
.y3{bottom:950.392500px;}
.y112{bottom:951.688500px;}
.y6a{bottom:955.722000px;}
.y111{bottom:965.139000px;}
.y69{bottom:973.654500px;}
.y110{bottom:978.588000px;}
.y68{bottom:991.588500px;}
.y10f{bottom:992.037000px;}
.y10e{bottom:1005.487500px;}
.y67{bottom:1009.971000px;}
.y10d{bottom:1018.936500px;}
.y66{bottom:1027.903500px;}
.y10c{bottom:1032.387000px;}
.y2{bottom:1039.309500px;}
.y50{bottom:1045.836000px;}
.y10b{bottom:1059.285000px;}
.y4f{bottom:1063.768500px;}
.y10a{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y4e{bottom:1081.701000px;}
.y109{bottom:1086.184500px;}
.y65{bottom:1099.633500px;}
.y4d{bottom:1099.635000px;}
.ha{height:29.836213px;}
.h9{height:30.096413px;}
.h8{height:31.467424px;}
.h7{height:31.741849px;}
.h6{height:32.900573px;}
.hb{height:33.140573px;}
.h5{height:37.336090px;}
.h4{height:37.605082px;}
.h3{height:41.125613px;}
.h2{height:45.238339px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:73.446000px;}
.x20{left:79.423500px;}
.x13{left:86.617146px;}
.x6{left:88.390500px;}
.x14{left:92.604031px;}
.x1{left:94.914000px;}
.x21{left:100.834500px;}
.x18{left:113.305500px;}
.x19{left:116.790000px;}
.x2{left:124.251000px;}
.x1d{left:151.299000px;}
.x12{left:162.757500px;}
.x10{left:168.474000px;}
.xc{left:171.994500px;}
.xb{left:181.383000px;}
.x4{left:195.159000px;}
.x1a{left:197.413500px;}
.x8{left:203.428500px;}
.x1e{left:208.122000px;}
.x3{left:215.085000px;}
.x1f{left:219.897000px;}
.x11{left:236.962500px;}
.x5{left:350.097000px;}
.x9{left:467.967000px;}
.x22{left:473.944500px;}
.xf{left:481.619323px;}
.xa{left:482.910000px;}
.x23{left:495.355500px;}
.x1b{left:517.957500px;}
.x1c{left:527.419500px;}
.x24{left:534.550500px;}
.x17{left:536.991000px;}
.x15{left:553.548000px;}
.x16{left:556.531500px;}
.xd{left:572.523000px;}
.xe{left:633.474000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.108364pt;}
.ls6{letter-spacing:2.124101pt;}
.ls7{letter-spacing:2.125997pt;}
.ls4{letter-spacing:2.127698pt;}
.ls0{letter-spacing:2.635446pt;}
.ls3{letter-spacing:2.654903pt;}
.ls9{letter-spacing:2.655711pt;}
.ls2{letter-spacing:2.656693pt;}
.ls8{letter-spacing:13.491704pt;}
.ws3{word-spacing:-13.283467pt;}
.ws1f{word-spacing:-13.262246pt;}
.ws1b{word-spacing:-11.955200pt;}
.ws92{word-spacing:-10.626800pt;}
.ws9e{word-spacing:-10.609830pt;}
.ws93{word-spacing:-8.501467pt;}
.ws40{word-spacing:-1.062677pt;}
.ws18{word-spacing:-0.956416pt;}
.wsab{word-spacing:-0.903276pt;}
.ws7d{word-spacing:-0.743874pt;}
.ws1d{word-spacing:-0.669491pt;}
.ws38{word-spacing:-0.531339pt;}
.wsd0{word-spacing:-0.478205pt;}
.wsf{word-spacing:-0.334746pt;}
.wsbf{word-spacing:-0.318803pt;}
.wsdd{word-spacing:-0.297550pt;}
.ws63{word-spacing:-0.265669pt;}
.wsd1{word-spacing:-0.159402pt;}
.ws8{word-spacing:-0.143462pt;}
.wsa7{word-spacing:-0.106268pt;}
.wse0{word-spacing:-0.085014pt;}
.ws2d{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws91{word-spacing:0.000000pt;}
.ws90{word-spacing:0.003349pt;}
.ws69{word-spacing:0.042507pt;}
.ws6f{word-spacing:0.053134pt;}
.wsa8{word-spacing:0.212535pt;}
.ws74{word-spacing:0.265669pt;}
.ws25{word-spacing:0.371937pt;}
.ws77{word-spacing:0.478205pt;}
.ws75{word-spacing:0.531339pt;}
.wsbe{word-spacing:0.584473pt;}
.ws34{word-spacing:0.690740pt;}
.ws1a{word-spacing:0.812954pt;}
.ws68{word-spacing:0.903276pt;}
.wsd8{word-spacing:0.956410pt;}
.wsc3{word-spacing:1.009543pt;}
.wsfb{word-spacing:1.020173pt;}
.wsd7{word-spacing:1.115811pt;}
.wsf2{word-spacing:1.147694pt;}
.ws8e{word-spacing:1.168945pt;}
.ws8f{word-spacing:1.275213pt;}
.wse8{word-spacing:1.317723pt;}
.ws73{word-spacing:1.381481pt;}
.ws9a{word-spacing:1.487748pt;}
.wsf9{word-spacing:1.530259pt;}
.ws7c{word-spacing:1.594016pt;}
.ws108{word-spacing:1.657781pt;}
.ws5e{word-spacing:1.700284pt;}
.ws62{word-spacing:1.753418pt;}
.ws28{word-spacing:1.806551pt;}
.ws4a{word-spacing:1.965953pt;}
.ws86{word-spacing:2.019087pt;}
.ws9b{word-spacing:2.125360pt;}
.wsf5{word-spacing:2.252882pt;}
.ws71{word-spacing:2.284756pt;}
.ws24{word-spacing:2.337890pt;}
.ws53{word-spacing:2.550426pt;}
.wsb4{word-spacing:2.603559pt;}
.ws96{word-spacing:2.816095pt;}
.ws47{word-spacing:2.869229pt;}
.ws8d{word-spacing:2.922363pt;}
.ws11{word-spacing:2.964890pt;}
.ws104{word-spacing:2.975504pt;}
.wsa1{word-spacing:3.028630pt;}
.wsfc{word-spacing:3.060518pt;}
.ws76{word-spacing:3.081764pt;}
.ws7{word-spacing:3.108352pt;}
.wsce{word-spacing:3.134898pt;}
.wsb6{word-spacing:3.188032pt;}
.ws8c{word-spacing:3.294300pt;}
.wsfd{word-spacing:3.443083pt;}
.wsf7{word-spacing:3.528098pt;}
.wsf8{word-spacing:3.570605pt;}
.ws50{word-spacing:3.613103pt;}
.wsde{word-spacing:3.613112pt;}
.wsdf{word-spacing:3.655619pt;}
.wsc8{word-spacing:3.666237pt;}
.ws7a{word-spacing:3.719371pt;}
.ws30{word-spacing:3.772505pt;}
.ws81{word-spacing:3.825638pt;}
.ws100{word-spacing:3.825648pt;}
.wsa0{word-spacing:3.854808pt;}
.ws95{word-spacing:4.065559pt;}
.ws5a{word-spacing:4.144442pt;}
.ws6b{word-spacing:4.197575pt;}
.ws9c{word-spacing:4.222052pt;}
.ws9d{word-spacing:4.249875pt;}
.ws59{word-spacing:4.250720pt;}
.wsf4{word-spacing:4.335734pt;}
.ws6d{word-spacing:4.410111pt;}
.ws41{word-spacing:4.463245pt;}
.ws3c{word-spacing:4.569513pt;}
.ws39{word-spacing:4.782048pt;}
.ws2f{word-spacing:4.835182pt;}
.wse9{word-spacing:4.845821pt;}
.wsbd{word-spacing:4.994583pt;}
.wsda{word-spacing:5.058357pt;}
.ws42{word-spacing:5.153985pt;}
.ws105{word-spacing:5.228386pt;}
.ws26{word-spacing:5.260253pt;}
.ws89{word-spacing:5.312861pt;}
.ws2{word-spacing:5.313387pt;}
.ws107{word-spacing:5.398414pt;}
.wsc1{word-spacing:5.419654pt;}
.ws52{word-spacing:5.472788pt;}
.wsc9{word-spacing:5.525922pt;}
.wsac{word-spacing:5.579056pt;}
.ws65{word-spacing:5.685324pt;}
.ws99{word-spacing:5.738458pt;}
.wse4{word-spacing:5.823486pt;}
.ws4b{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wsa2{word-spacing:5.950993pt;}
.ws19{word-spacing:5.977600pt;}
.wse6{word-spacing:6.121037pt;}
.ws37{word-spacing:6.163529pt;}
.ws64{word-spacing:6.216662pt;}
.ws2c{word-spacing:6.269796pt;}
.wse2{word-spacing:6.546109pt;}
.ws35{word-spacing:6.588599pt;}
.ws9{word-spacing:6.599270pt;}
.ws72{word-spacing:6.641733pt;}
.wsf0{word-spacing:6.673630pt;}
.wsb5{word-spacing:6.694867pt;}
.wse7{word-spacing:6.801152pt;}
.ws70{word-spacing:6.854269pt;}
.wsd9{word-spacing:6.886166pt;}
.wsd3{word-spacing:6.960537pt;}
.ws48{word-spacing:7.066804pt;}
.ws82{word-spacing:7.119938pt;}
.ws2e{word-spacing:7.173072pt;}
.ws83{word-spacing:7.332474pt;}
.ws45{word-spacing:7.438741pt;}
.wsfe{word-spacing:7.523774pt;}
.ws56{word-spacing:7.545009pt;}
.ws5b{word-spacing:7.598143pt;}
.ws3d{word-spacing:7.757545pt;}
.ws4c{word-spacing:7.810678pt;}
.wsc{word-spacing:7.890432pt;}
.wsf3{word-spacing:7.948846pt;}
.ws85{word-spacing:7.970080pt;}
.ws101{word-spacing:8.118875pt;}
.ws102{word-spacing:8.161382pt;}
.wsb2{word-spacing:8.182615pt;}
.ws67{word-spacing:8.235749pt;}
.wsa5{word-spacing:8.288883pt;}
.wscf{word-spacing:8.448285pt;}
.wsd5{word-spacing:8.501419pt;}
.wsb1{word-spacing:8.554553pt;}
.wsa9{word-spacing:8.607686pt;}
.wsf1{word-spacing:8.671469pt;}
.ws4d{word-spacing:8.713954pt;}
.ws23{word-spacing:8.767088pt;}
.wsf6{word-spacing:8.798990pt;}
.wsad{word-spacing:8.820222pt;}
.ws44{word-spacing:8.926490pt;}
.wsba{word-spacing:8.979623pt;}
.wsc6{word-spacing:9.032757pt;}
.ws103{word-spacing:9.096541pt;}
.ws6a{word-spacing:9.139025pt;}
.wsb3{word-spacing:9.245293pt;}
.wsff{word-spacing:9.266570pt;}
.wsc0{word-spacing:9.351561pt;}
.wsa3{word-spacing:9.404694pt;}
.wsa6{word-spacing:9.457828pt;}
.ws4f{word-spacing:9.564096pt;}
.wsd2{word-spacing:9.670364pt;}
.wse1{word-spacing:9.734149pt;}
.ws5f{word-spacing:9.776631pt;}
.ws106{word-spacing:9.776656pt;}
.wsb0{word-spacing:9.829765pt;}
.wse5{word-spacing:9.904178pt;}
.ws80{word-spacing:9.936033pt;}
.ws43{word-spacing:10.201702pt;}
.ws5{word-spacing:10.233651pt;}
.wsb9{word-spacing:10.307970pt;}
.ws22{word-spacing:10.573639pt;}
.ws88{word-spacing:10.626773pt;}
.ws29{word-spacing:10.839309pt;}
.ws55{word-spacing:10.892443pt;}
.ws31{word-spacing:10.945577pt;}
.wsca{word-spacing:10.998710pt;}
.ws46{word-spacing:11.051844pt;}
.wsdb{word-spacing:11.136886pt;}
.ws1c{word-spacing:11.237888pt;}
.wsc7{word-spacing:11.264380pt;}
.wsc4{word-spacing:11.317514pt;}
.ws3f{word-spacing:11.370647pt;}
.ws7b{word-spacing:11.423781pt;}
.ws8a{word-spacing:11.476915pt;}
.ws27{word-spacing:11.530049pt;}
.wsbb{word-spacing:11.583183pt;}
.ws87{word-spacing:11.636317pt;}
.ws109{word-spacing:11.646973pt;}
.ws7e{word-spacing:11.742585pt;}
.ws8b{word-spacing:11.848852pt;}
.ws17{word-spacing:11.859558pt;}
.wsaa{word-spacing:11.901986pt;}
.ws6e{word-spacing:12.061388pt;}
.wsea{word-spacing:12.199566pt;}
.ws10a{word-spacing:12.412102pt;}
.ws54{word-spacing:12.433325pt;}
.wsb{word-spacing:12.481229pt;}
.ws36{word-spacing:12.592726pt;}
.ws0{word-spacing:12.752160pt;}
.wsd{word-spacing:12.768154pt;}
.ws51{word-spacing:12.858396pt;}
.wsd6{word-spacing:12.964663pt;}
.ws6{word-spacing:13.055078pt;}
.ws84{word-spacing:13.124065pt;}
.wsdc{word-spacing:13.219739pt;}
.ws57{word-spacing:13.230333pt;}
.wsc2{word-spacing:13.389734pt;}
.wsaf{word-spacing:13.549136pt;}
.ws66{word-spacing:13.655404pt;}
.wsb7{word-spacing:13.708538pt;}
.ws21{word-spacing:13.867939pt;}
.wsed{word-spacing:13.942362pt;}
.ws97{word-spacing:13.974207pt;}
.wsa4{word-spacing:14.027341pt;}
.ws10{word-spacing:14.250598pt;}
.ws33{word-spacing:14.399278pt;}
.wsfa{word-spacing:14.452448pt;}
.ws3a{word-spacing:14.505546pt;}
.wse3{word-spacing:14.537462pt;}
.wse{word-spacing:14.585344pt;}
.ws3b{word-spacing:14.664947pt;}
.wsa{word-spacing:14.920090pt;}
.wscc{word-spacing:14.983750pt;}
.ws61{word-spacing:15.036884pt;}
.wsb8{word-spacing:15.090018pt;}
.ws2b{word-spacing:15.196286pt;}
.wsbc{word-spacing:15.249420pt;}
.ws12{word-spacing:15.398298pt;}
.ws13{word-spacing:15.493939pt;}
.ws7f{word-spacing:15.780758pt;}
.ws1e{word-spacing:15.940160pt;}
.ws10b{word-spacing:15.940200pt;}
.ws16{word-spacing:16.067789pt;}
.ws20{word-spacing:16.524633pt;}
.ws14{word-spacing:16.689459pt;}
.ws4e{word-spacing:16.843436pt;}
.wscd{word-spacing:16.949703pt;}
.ws98{word-spacing:17.215373pt;}
.ws3e{word-spacing:17.321641pt;}
.ws49{word-spacing:17.427908pt;}
.wsc5{word-spacing:17.481042pt;}
.ws32{word-spacing:17.534176pt;}
.ws2a{word-spacing:17.852979pt;}
.ws15{word-spacing:17.980621pt;}
.wsd4{word-spacing:18.171782pt;}
.ws5d{word-spacing:18.278050pt;}
.ws58{word-spacing:18.543719pt;}
.wsae{word-spacing:18.649987pt;}
.wseb{word-spacing:18.660661pt;}
.ws6c{word-spacing:19.500129pt;}
.ws60{word-spacing:19.606397pt;}
.wscb{word-spacing:20.350271pt;}
.ws5c{word-spacing:20.456539pt;}
.wsec{word-spacing:21.083571pt;}
.wsee{word-spacing:22.231266pt;}
.ws79{word-spacing:22.528759pt;}
.ws78{word-spacing:38.468919pt;}
.ws9f{word-spacing:48.183648pt;}
.wsef{word-spacing:48.925787pt;}
.ws94{word-spacing:50.817953pt;}
._1e{margin-left:-6.854269pt;}
._d{margin-left:-4.933171pt;}
._1{margin-left:-3.799085pt;}
._c{margin-left:-2.846741pt;}
._0{margin-left:-1.912824pt;}
._2{margin-left:-1.009539pt;}
._e{width:1.673588pt;}
._8{width:2.656693pt;}
._4{width:10.711859pt;}
._3{width:14.154957pt;}
._b{width:16.763749pt;}
._a{width:21.094145pt;}
._9{width:25.026056pt;}
._5{width:26.444902pt;}
._6{width:27.736064pt;}
._7{width:29.027226pt;}
._1d{width:57.822872pt;}
._15{width:60.982868pt;}
._1a{width:77.094950pt;}
._10{width:101.637436pt;}
._1b{width:143.476704pt;}
._12{width:145.792433pt;}
._13{width:160.304465pt;}
._1c{width:196.981438pt;}
._14{width:228.077328pt;}
._17{width:248.691722pt;}
._19{width:258.349981pt;}
._f{width:264.829978pt;}
._16{width:291.583365pt;}
._18{width:298.696081pt;}
._11{width:313.901271pt;}
.fs5{font-size:34.005867pt;}
.fs7{font-size:38.548079pt;}
.fs6{font-size:40.655586pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:100.740000pt;}
.yce{bottom:104.661333pt;}
.y108{bottom:112.696000pt;}
.y32{bottom:116.680000pt;}
.y93{bottom:116.681333pt;}
.yb1{bottom:119.608000pt;}
.y107{bottom:124.650667pt;}
.y4c{bottom:132.620000pt;}
.y31{bottom:132.621333pt;}
.yaf{bottom:132.944000pt;}
.y106{bottom:136.605333pt;}
.ycb{bottom:136.646667pt;}
.y4b{bottom:148.560000pt;}
.y30{bottom:148.561333pt;}
.yae{bottom:148.884000pt;}
.yca{bottom:152.586667pt;}
.y105{bottom:155.794667pt;}
.ye3{bottom:160.433333pt;}
.y2f{bottom:164.501333pt;}
.yad{bottom:164.824000pt;}
.yc9{bottom:168.528000pt;}
.y13f{bottom:176.457333pt;}
.y104{bottom:179.090667pt;}
.y2e{bottom:180.441333pt;}
.yac{bottom:180.764000pt;}
.yc8{bottom:184.468000pt;}
.y13e{bottom:188.412000pt;}
.y103{bottom:195.030667pt;}
.y2d{bottom:196.381333pt;}
.yab{bottom:196.704000pt;}
.y92{bottom:196.781333pt;}
.y13d{bottom:200.366667pt;}
.yc7{bottom:200.408000pt;}
.y102{bottom:210.970667pt;}
.y2c{bottom:212.321333pt;}
.yd4{bottom:212.322667pt;}
.y91{bottom:212.721333pt;}
.yaa{bottom:212.968000pt;}
.yc6{bottom:216.348000pt;}
.y13c{bottom:224.277333pt;}
.y101{bottom:226.910667pt;}
.y4a{bottom:228.261333pt;}
.y2b{bottom:228.262667pt;}
.y90{bottom:228.662667pt;}
.ya9{bottom:228.908000pt;}
.yc5{bottom:232.288000pt;}
.y13b{bottom:236.232000pt;}
.y2a{bottom:244.202667pt;}
.y8f{bottom:244.602667pt;}
.ya8{bottom:244.848000pt;}
.y100{bottom:246.766667pt;}
.y13a{bottom:248.188000pt;}
.yc4{bottom:248.228000pt;}
.y29{bottom:260.142667pt;}
.ya7{bottom:260.788000pt;}
.yc3{bottom:264.169333pt;}
.yff{bottom:270.062667pt;}
.y139{bottom:272.098667pt;}
.y28{bottom:276.082667pt;}
.y8e{bottom:276.220803pt;}
.ya6{bottom:276.728000pt;}
.yc2{bottom:280.109333pt;}
.y138{bottom:284.053333pt;}
.yfe{bottom:286.002667pt;}
.y8d{bottom:287.654725pt;}
.y27{bottom:292.022667pt;}
.ya5{bottom:292.668000pt;}
.y137{bottom:296.008000pt;}
.yc1{bottom:296.049333pt;}
.y8c{bottom:299.089921pt;}
.yfd{bottom:301.944000pt;}
.y26{bottom:307.962667pt;}
.yd3{bottom:307.964000pt;}
.ya4{bottom:308.609333pt;}
.y8b{bottom:310.523843pt;}
.yc0{bottom:311.989333pt;}
.yfc{bottom:317.884000pt;}
.y136{bottom:319.918667pt;}
.y8a{bottom:321.957764pt;}
.y49{bottom:323.902667pt;}
.y25{bottom:323.904000pt;}
.ya3{bottom:324.549333pt;}
.ybf{bottom:327.929333pt;}
.y135{bottom:331.873333pt;}
.y89{bottom:333.392961pt;}
.yfb{bottom:333.824000pt;}
.y24{bottom:339.844000pt;}
.ya2{bottom:340.489333pt;}
.y134{bottom:343.829333pt;}
.ybe{bottom:343.870667pt;}
.y88{bottom:344.826882pt;}
.yfa{bottom:349.764000pt;}
.y23{bottom:355.784000pt;}
.y87{bottom:356.262079pt;}
.ya1{bottom:356.429333pt;}
.ybd{bottom:359.810667pt;}
.yd2{bottom:360.669333pt;}
.yb0{bottom:362.190667pt;}
.yf9{bottom:365.704000pt;}
.y86{bottom:367.696000pt;}
.y133{bottom:367.738667pt;}
.y22{bottom:371.724000pt;}
.ya0{bottom:372.369333pt;}
.ybc{bottom:375.750667pt;}
.y85{bottom:379.638748pt;}
.y132{bottom:379.694667pt;}
.yf8{bottom:381.644000pt;}
.y21{bottom:387.664000pt;}
.y9f{bottom:388.310667pt;}
.y131{bottom:391.649333pt;}
.ybb{bottom:391.690667pt;}
.yf7{bottom:397.316000pt;}
.y84{bottom:402.230667pt;}
.yd1{bottom:402.461333pt;}
.y48{bottom:403.604000pt;}
.y20{bottom:403.605333pt;}
.y9e{bottom:404.250667pt;}
.yba{bottom:407.630667pt;}
.yf6{bottom:413.256000pt;}
.y83{bottom:414.185333pt;}
.y130{bottom:415.560000pt;}
.y47{bottom:419.544000pt;}
.y64{bottom:419.545333pt;}
.y9d{bottom:420.190667pt;}
.yb9{bottom:423.570667pt;}
.y1f{bottom:423.616000pt;}
.y12f{bottom:427.514667pt;}
.yf5{bottom:429.197333pt;}
.ycd{bottom:429.410667pt;}
.y46{bottom:435.485333pt;}
.y9c{bottom:436.130667pt;}
.ye2{bottom:437.552000pt;}
.y12e{bottom:439.470667pt;}
.yb8{bottom:439.512000pt;}
.y63{bottom:442.681333pt;}
.yf4{bottom:445.137333pt;}
.y82{bottom:447.617333pt;}
.y45{bottom:451.425333pt;}
.y1e{bottom:451.538667pt;}
.ye1{bottom:453.493333pt;}
.yf3{bottom:461.077333pt;}
.y12d{bottom:463.380000pt;}
.y81{bottom:463.557333pt;}
.y1d{bottom:464.821333pt;}
.y44{bottom:467.365333pt;}
.yb7{bottom:468.425333pt;}
.ye0{bottom:469.433333pt;}
.y62{bottom:471.854667pt;}
.y12c{bottom:475.336000pt;}
.yf2{bottom:477.017333pt;}
.y1c{bottom:477.992000pt;}
.y80{bottom:479.497333pt;}
.y9b{bottom:481.373706pt;}
.y43{bottom:483.305333pt;}
.ydf{bottom:485.373333pt;}
.y12b{bottom:487.290667pt;}
.y61{bottom:487.794667pt;}
.y1b{bottom:491.276000pt;}
.y9a{bottom:492.214915pt;}
.yf1{bottom:492.957333pt;}
.y7f{bottom:495.437333pt;}
.y42{bottom:499.245333pt;}
.y12a{bottom:499.246667pt;}
.yde{bottom:501.313333pt;}
.y99{bottom:503.057333pt;}
.y60{bottom:503.734667pt;}
.y1a{bottom:504.560000pt;}
.yf0{bottom:508.897333pt;}
.y129{bottom:511.201333pt;}
.y7e{bottom:511.378667pt;}
.y98{bottom:513.898542pt;}
.y41{bottom:515.185333pt;}
.ydd{bottom:517.253333pt;}
.y19{bottom:517.842667pt;}
.y5f{bottom:519.674667pt;}
.y128{bottom:523.156000pt;}
.yef{bottom:524.569333pt;}
.y97{bottom:525.222201pt;}
.y7d{bottom:527.318667pt;}
.y18{bottom:531.126667pt;}
.ydc{bottom:533.193333pt;}
.y127{bottom:535.112000pt;}
.y5e{bottom:535.614667pt;}
.yee{bottom:540.509333pt;}
.y7c{bottom:543.258667pt;}
.y17{bottom:544.410667pt;}
.y40{bottom:547.066667pt;}
.y96{bottom:547.373333pt;}
.ydb{bottom:549.134667pt;}
.y5d{bottom:551.554667pt;}
.yed{bottom:556.450667pt;}
.y16{bottom:557.693333pt;}
.y126{bottom:559.021333pt;}
.y7b{bottom:559.198667pt;}
.y95{bottom:559.328000pt;}
.y3f{bottom:563.006667pt;}
.yda{bottom:565.074667pt;}
.y5c{bottom:567.496000pt;}
.y15{bottom:570.977333pt;}
.yec{bottom:572.390667pt;}
.y7a{bottom:575.138667pt;}
.y3e{bottom:578.946667pt;}
.yd9{bottom:581.014667pt;}
.y125{bottom:582.932000pt;}
.y5b{bottom:583.436000pt;}
.y14{bottom:584.260000pt;}
.yeb{bottom:588.330667pt;}
.y79{bottom:591.078667pt;}
.y3d{bottom:594.886667pt;}
.y124{bottom:594.888000pt;}
.yd8{bottom:596.954667pt;}
.y13{bottom:597.544000pt;}
.y5a{bottom:599.376000pt;}
.y94{bottom:602.277333pt;}
.yea{bottom:604.270667pt;}
.y123{bottom:606.842667pt;}
.yd0{bottom:608.590667pt;}
.y12{bottom:610.828000pt;}
.yd7{bottom:612.894667pt;}
.y78{bottom:613.602667pt;}
.y59{bottom:615.316000pt;}
.y122{bottom:618.797333pt;}
.ye9{bottom:620.210667pt;}
.y11{bottom:624.110667pt;}
.y3c{bottom:626.768000pt;}
.yd6{bottom:628.834667pt;}
.y121{bottom:630.753333pt;}
.y58{bottom:631.256000pt;}
.ye8{bottom:636.150667pt;}
.y10{bottom:637.394667pt;}
.y77{bottom:641.908000pt;}
.y3b{bottom:642.708000pt;}
.y57{bottom:647.197333pt;}
.yf{bottom:650.678667pt;}
.ye7{bottom:652.092000pt;}
.y120{bottom:654.662667pt;}
.yd5{bottom:657.749333pt;}
.y76{bottom:657.848000pt;}
.y3a{bottom:658.648000pt;}
.y56{bottom:663.137333pt;}
.ye{bottom:663.961333pt;}
.y11f{bottom:666.618667pt;}
.ye6{bottom:668.032000pt;}
.y75{bottom:673.788000pt;}
.y39{bottom:674.588000pt;}
.yb6{bottom:674.901333pt;}
.yd{bottom:677.245333pt;}
.y11e{bottom:678.573333pt;}
.y55{bottom:679.077333pt;}
.ye5{bottom:687.888000pt;}
.y74{bottom:689.729333pt;}
.y38{bottom:690.528000pt;}
.yc{bottom:690.529333pt;}
.yb5{bottom:690.841333pt;}
.y54{bottom:695.017333pt;}
.y11d{bottom:702.484000pt;}
.yb{bottom:703.812000pt;}
.y73{bottom:706.069333pt;}
.y37{bottom:706.469333pt;}
.yb4{bottom:706.781333pt;}
.y53{bottom:710.957333pt;}
.y11c{bottom:714.438667pt;}
.ya{bottom:717.096000pt;}
.ycc{bottom:719.340000pt;}
.y72{bottom:722.009333pt;}
.y36{bottom:722.409333pt;}
.yb3{bottom:722.722667pt;}
.y11b{bottom:726.394667pt;}
.y52{bottom:726.897333pt;}
.ye4{bottom:727.972000pt;}
.y9{bottom:730.380000pt;}
.y71{bottom:737.949333pt;}
.y35{bottom:738.349333pt;}
.y8{bottom:743.662667pt;}
.y11a{bottom:750.304000pt;}
.yb2{bottom:751.636000pt;}
.y70{bottom:753.889333pt;}
.y34{bottom:754.289333pt;}
.y7{bottom:756.946667pt;}
.y51{bottom:757.150667pt;}
.y119{bottom:762.260000pt;}
.y6f{bottom:769.829333pt;}
.y6{bottom:770.229333pt;}
.y118{bottom:774.214667pt;}
.y6e{bottom:785.769333pt;}
.y117{bottom:786.169333pt;}
.y116{bottom:798.125333pt;}
.y6d{bottom:801.710667pt;}
.ycf{bottom:809.072000pt;}
.y115{bottom:810.080000pt;}
.y5{bottom:813.118667pt;}
.y6c{bottom:817.650667pt;}
.y114{bottom:822.036000pt;}
.y4{bottom:829.556000pt;}
.y6b{bottom:833.590667pt;}
.y113{bottom:833.990667pt;}
.y3{bottom:844.793333pt;}
.y112{bottom:845.945333pt;}
.y6a{bottom:849.530667pt;}
.y111{bottom:857.901333pt;}
.y69{bottom:865.470667pt;}
.y110{bottom:869.856000pt;}
.y68{bottom:881.412000pt;}
.y10f{bottom:881.810667pt;}
.y10e{bottom:893.766667pt;}
.y67{bottom:897.752000pt;}
.y10d{bottom:905.721333pt;}
.y66{bottom:913.692000pt;}
.y10c{bottom:917.677333pt;}
.y2{bottom:923.830667pt;}
.y50{bottom:929.632000pt;}
.y10b{bottom:941.586667pt;}
.y4f{bottom:945.572000pt;}
.y10a{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y4e{bottom:961.512000pt;}
.y109{bottom:965.497333pt;}
.y65{bottom:977.452000pt;}
.y4d{bottom:977.453333pt;}
.ha{height:26.521079pt;}
.h9{height:26.752367pt;}
.h8{height:27.971043pt;}
.h7{height:28.214977pt;}
.h6{height:29.244954pt;}
.hb{height:29.458287pt;}
.h5{height:33.187635pt;}
.h4{height:33.426739pt;}
.h3{height:36.556100pt;}
.h2{height:40.211857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:65.285333pt;}
.x20{left:70.598667pt;}
.x13{left:76.993019pt;}
.x6{left:78.569333pt;}
.x14{left:82.314694pt;}
.x1{left:84.368000pt;}
.x21{left:89.630667pt;}
.x18{left:100.716000pt;}
.x19{left:103.813333pt;}
.x2{left:110.445333pt;}
.x1d{left:134.488000pt;}
.x12{left:144.673333pt;}
.x10{left:149.754667pt;}
.xc{left:152.884000pt;}
.xb{left:161.229333pt;}
.x4{left:173.474667pt;}
.x1a{left:175.478667pt;}
.x8{left:180.825333pt;}
.x1e{left:184.997333pt;}
.x3{left:191.186667pt;}
.x1f{left:195.464000pt;}
.x11{left:210.633333pt;}
.x5{left:311.197333pt;}
.x9{left:415.970667pt;}
.x22{left:421.284000pt;}
.xf{left:428.106065pt;}
.xa{left:429.253333pt;}
.x23{left:440.316000pt;}
.x1b{left:460.406667pt;}
.x1c{left:468.817333pt;}
.x24{left:475.156000pt;}
.x17{left:477.325333pt;}
.x15{left:492.042667pt;}
.x16{left:494.694667pt;}
.xd{left:508.909333pt;}
.xe{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; }
  