
    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_10f84ca5b9fc14d3f3dfd38f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0c6ecabfdd8f8cdd04e8347c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a347bcf718e05164fa47a2d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_742331d6e711669429844925.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_76414c1acbe37a2e00b1ef33.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01877488d2c8439a4fc31a88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3d5fb00dcbb1b22f848ca959.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_901f22c8db74cab33eaba83f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bb18f9aaad8202c1c34bb1f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_529de8d6094a46c701cdeb67.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4d76e94f48c161f9cdd0e9cc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3db4baf405d9c9150dd47fb0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ad1eb2564e41635fc70b85c8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.390000;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:ffe;src:url('chunks/assets/font_63184dca78dae58d4f1cc151.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fc1f40f4f16a19c4038b1fae.woff2')format("woff");}.fff{font-family:fff;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.114000px;}
.v1{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.984915px;}
.ls3{letter-spacing:2.990525px;}
.ls2{letter-spacing:2.990915px;}
.ls4{letter-spacing:21.758318px;}
.ls5{letter-spacing:29.890178px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-54.000000px;}
.ws4{word-spacing:-20.906199px;}
.wsba{word-spacing:-16.606328px;}
.ws8{word-spacing:-16.605662px;}
.wsb8{word-spacing:-15.279257px;}
.ws2e{word-spacing:-3.335478px;}
.ws6e{word-spacing:-3.275703px;}
.wsc1{word-spacing:-3.036782px;}
.ws2f{word-spacing:-3.036600px;}
.wsa8{word-spacing:-2.797498px;}
.ws16{word-spacing:-2.737722px;}
.ws50{word-spacing:-2.558396px;}
.wsc4{word-spacing:-2.259728px;}
.ws82{word-spacing:-2.020415px;}
.ws3f{word-spacing:-1.781313px;}
.ws2d{word-spacing:-1.661762px;}
.wsca{word-spacing:-1.482734px;}
.ws65{word-spacing:-1.362884px;}
.ws83{word-spacing:-1.183557px;}
.wsd0{word-spacing:-1.123886px;}
.ws5d{word-spacing:-0.884679px;}
.wsb2{word-spacing:-0.884475px;}
.ws34{word-spacing:-0.705352px;}
.ws58{word-spacing:-0.585801px;}
.ws78{word-spacing:-0.406474px;}
.wsb0{word-spacing:-0.406251px;}
.ws33{word-spacing:-0.346698px;}
.wsc7{word-spacing:-0.286875px;}
.ws59{word-spacing:-0.227147px;}
.wsa0{word-spacing:-0.167372px;}
.wsc3{word-spacing:-0.059778px;}
.ws5{word-spacing:-0.047821px;}
.ws9{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws4a{word-spacing:0.011955px;}
.ws30{word-spacing:0.071731px;}
.ws85{word-spacing:0.131506px;}
.ws54{word-spacing:0.370609px;}
.ws55{word-spacing:0.430384px;}
.ws44{word-spacing:0.549936px;}
.wsd1{word-spacing:0.609556px;}
.ws11{word-spacing:0.669487px;}
.ws1d{word-spacing:0.789038px;}
.wsc{word-spacing:0.848814px;}
.ws24{word-spacing:0.968365px;}
.ws43{word-spacing:1.028140px;}
.wsd3{word-spacing:1.147797px;}
.ws69{word-spacing:1.207467px;}
.ws81{word-spacing:1.219422px;}
.ws77{word-spacing:1.267243px;}
.ws89{word-spacing:1.327018px;}
.ws41{word-spacing:1.446570px;}
.ws49{word-spacing:1.506345px;}
.ws42{word-spacing:1.566121px;}
.ws6d{word-spacing:1.625896px;}
.ws12{word-spacing:1.685672px;}
.wsb1{word-spacing:1.745398px;}
.ws2c{word-spacing:1.745448px;}
.ws9c{word-spacing:1.757403px;}
.ws73{word-spacing:1.805223px;}
.ws90{word-spacing:1.864999px;}
.ws8f{word-spacing:2.104101px;}
.ws5a{word-spacing:2.163877px;}
.ws48{word-spacing:2.223652px;}
.ws3b{word-spacing:2.283428px;}
.ws74{word-spacing:2.462755px;}
.ws2a{word-spacing:2.522530px;}
.ws45{word-spacing:2.582306px;}
.wsc2{word-spacing:2.582469px;}
.ws9e{word-spacing:2.589892px;}
.ws46{word-spacing:2.642082px;}
.ws60{word-spacing:2.761633px;}
.wsd{word-spacing:2.821408px;}
.ws15{word-spacing:2.881184px;}
.ws10{word-spacing:2.940960px;}
.ws36{word-spacing:3.180062px;}
.wsae{word-spacing:3.299447px;}
.ws6{word-spacing:3.299613px;}
.wsbc{word-spacing:3.300044px;}
.ws64{word-spacing:3.309892px;}
.ws7{word-spacing:3.359389px;}
.ws35{word-spacing:3.419164px;}
.ws7e{word-spacing:3.478940px;}
.ws2b{word-spacing:3.538716px;}
.wsac{word-spacing:3.538858px;}
.ws27{word-spacing:3.598491px;}
.wsd2{word-spacing:3.610711px;}
.wsb{word-spacing:3.658267px;}
.ws4f{word-spacing:3.718042px;}
.wsa9{word-spacing:3.777818px;}
.ws38{word-spacing:3.801728px;}
.ws7d{word-spacing:3.837594px;}
.wsbd{word-spacing:3.957124px;}
.ws8e{word-spacing:3.957145px;}
.ws92{word-spacing:4.016920px;}
.ws66{word-spacing:4.076696px;}
.ws3e{word-spacing:4.136472px;}
.ws3{word-spacing:4.162913px;}
.ws5c{word-spacing:4.256023px;}
.ws79{word-spacing:4.276190px;}
.ws61{word-spacing:4.315798px;}
.wsc8{word-spacing:4.315912px;}
.ws25{word-spacing:4.375574px;}
.wscf{word-spacing:4.435288px;}
.wsa4{word-spacing:4.495125px;}
.ws13{word-spacing:4.554901px;}
.ws6c{word-spacing:4.566856px;}
.ws17{word-spacing:4.734228px;}
.wsa2{word-spacing:4.794003px;}
.ws56{word-spacing:4.853779px;}
.wsb6{word-spacing:4.973530px;}
.ws52{word-spacing:5.152657px;}
.ws39{word-spacing:5.212432px;}
.ws62{word-spacing:5.272208px;}
.ws6a{word-spacing:5.331984px;}
.ws71{word-spacing:5.451535px;}
.wsc0{word-spacing:5.451754px;}
.ws9d{word-spacing:5.463490px;}
.ws7f{word-spacing:5.511310px;}
.wsad{word-spacing:5.631147px;}
.ws7a{word-spacing:5.690637px;}
.wsa1{word-spacing:5.750413px;}
.ws80{word-spacing:5.929740px;}
.ws1b{word-spacing:5.989515px;}
.wsc6{word-spacing:6.061788px;}
.ws67{word-spacing:6.109066px;}
.ws5b{word-spacing:6.121021px;}
.wsbf{word-spacing:6.121207px;}
.ws68{word-spacing:6.168842px;}
.ws9b{word-spacing:6.288393px;}
.ws9f{word-spacing:6.348169px;}
.ws40{word-spacing:6.407944px;}
.ws47{word-spacing:6.647047px;}
.wsb3{word-spacing:6.647612px;}
.ws4b{word-spacing:6.706822px;}
.ws29{word-spacing:6.886149px;}
.ws7b{word-spacing:6.945925px;}
.ws53{word-spacing:7.065476px;}
.ws31{word-spacing:7.185027px;}
.ws1a{word-spacing:7.244803px;}
.ws51{word-spacing:7.304578px;}
.ws98{word-spacing:7.376309px;}
.ws88{word-spacing:7.424130px;}
.ws18{word-spacing:7.543681px;}
.wsc9{word-spacing:7.544043px;}
.ws28{word-spacing:7.603456px;}
.ws32{word-spacing:7.723008px;}
.wscd{word-spacing:7.723437px;}
.ws57{word-spacing:7.842559px;}
.ws63{word-spacing:7.914289px;}
.ws1f{word-spacing:8.021886px;}
.ws5e{word-spacing:8.141437px;}
.ws94{word-spacing:8.201212px;}
.ws37{word-spacing:8.260988px;}
.ws76{word-spacing:8.320764px;}
.wsb5{word-spacing:8.500491px;}
.ws9a{word-spacing:8.559866px;}
.ws21{word-spacing:8.619642px;}
.ws7c{word-spacing:8.631597px;}
.ws5f{word-spacing:8.679417px;}
.ws4d{word-spacing:8.739193px;}
.ws96{word-spacing:8.798968px;}
.ws19{word-spacing:8.858744px;}
.ws6f{word-spacing:8.918520px;}
.ws72{word-spacing:8.930475px;}
.wsa5{word-spacing:8.978295px;}
.ws6b{word-spacing:8.990250px;}
.ws8d{word-spacing:9.217398px;}
.ws22{word-spacing:9.277173px;}
.ws97{word-spacing:9.336949px;}
.ws20{word-spacing:9.456500px;}
.ws84{word-spacing:9.695602px;}
.wsbe{word-spacing:9.695752px;}
.ws14{word-spacing:9.874929px;}
.wsf{word-spacing:9.934705px;}
.ws95{word-spacing:9.994480px;}
.ws99{word-spacing:10.066211px;}
.ws93{word-spacing:10.114032px;}
.ws75{word-spacing:10.173807px;}
.wsab{word-spacing:10.173917px;}
.wsce{word-spacing:10.186351px;}
.ws87{word-spacing:10.472685px;}
.wsa3{word-spacing:10.532461px;}
.ws70{word-spacing:10.831339px;}
.wsbb{word-spacing:10.891552px;}
.wsa7{word-spacing:11.010666px;}
.ws1e{word-spacing:11.309544px;}
.wsb7{word-spacing:11.310416px;}
.ws4e{word-spacing:11.369319px;}
.wscc{word-spacing:11.429793px;}
.ws23{word-spacing:11.608422px;}
.ws4c{word-spacing:11.727973px;}
.ws3d{word-spacing:12.086626px;}
.wsb4{word-spacing:12.146830px;}
.ws3c{word-spacing:12.206178px;}
.wsc5{word-spacing:12.206847px;}
.ws8c{word-spacing:12.325729px;}
.ws8a{word-spacing:12.385504px;}
.ws26{word-spacing:12.564831px;}
.wsa6{word-spacing:12.624607px;}
.wscb{word-spacing:12.625054px;}
.wse{word-spacing:12.684382px;}
.ws86{word-spacing:12.696337px;}
.ws3a{word-spacing:12.744158px;}
.wsaf{word-spacing:12.923884px;}
.wsb9{word-spacing:13.342091px;}
.ws91{word-spacing:14.071176px;}
.ws8b{word-spacing:14.429830px;}
.ws2{word-spacing:37.805018px;}
.ws1c{word-spacing:49.649613px;}
.wsaa{word-spacing:49.651667px;}
.wsa{word-spacing:49.658707px;}
._a{margin-left:-30.425777px;}
._c{margin-left:-28.804006px;}
._d{margin-left:-26.894221px;}
._b{margin-left:-24.104391px;}
._25{margin-left:-7.546533px;}
._6{margin-left:-5.962736px;}
._8{margin-left:-4.123640px;}
._7{margin-left:-2.993579px;}
._1{margin-left:-1.195515px;}
._4{width:1.980000px;}
._5{width:3.098772px;}
._1b{width:4.189094px;}
._0{width:7.476098px;}
._3{width:8.796000px;}
._12{width:12.856556px;}
._1c{width:14.630218px;}
._2{width:16.561579px;}
._21{width:17.631202px;}
._17{width:18.826714px;}
._19{width:20.133128px;}
._e{width:21.155998px;}
._1a{width:23.252708px;}
._1d{width:24.811676px;}
._9{width:26.070808px;}
._24{width:27.262476px;}
._f{width:28.876417px;}
._11{width:30.003875px;}
._10{width:31.018334px;}
._20{width:32.457277px;}
._15{width:34.423343px;}
._27{width:36.661994px;}
._26{width:38.196611px;}
._13{width:39.212794px;}
._1e{width:40.759557px;}
._23{width:41.877999px;}
._14{width:43.575539px;}
._29{width:44.884070px;}
._28{width:47.117574px;}
._2b{width:48.207357px;}
._16{width:49.606346px;}
._2c{width:51.030988px;}
._2a{width:53.210689px;}
._18{width:54.276245px;}
._22{width:61.090663px;}
._1f{width:68.741940px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.842800px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:47.820600px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:49.072383px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:59.775600px;}
.fsb{font-size:59.778000px;}
.fs8{font-size:65.454600px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs7{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1c{bottom:4.289325px;}
.y1b{bottom:19.233262px;}
.y1a{bottom:34.177200px;}
.y18{bottom:58.200000px;}
.y19{bottom:61.708950px;}
.y1f{bottom:64.500000px;}
.y110{bottom:114.802500px;}
.y88{bottom:114.804000px;}
.yb9{bottom:121.429500px;}
.y13b{bottom:127.386000px;}
.yd3{bottom:129.213000px;}
.y10f{bottom:131.241000px;}
.y6e{bottom:133.405500px;}
.yf4{bottom:136.374000px;}
.yb8{bottom:137.868000px;}
.y87{bottom:141.502500px;}
.y13a{bottom:143.824500px;}
.yd2{bottom:145.650000px;}
.y10e{bottom:147.679500px;}
.yf3{bottom:152.812500px;}
.y86{bottom:157.941000px;}
.y139{bottom:160.263000px;}
.yd1{bottom:162.088500px;}
.y10d{bottom:164.118000px;}
.yb7{bottom:166.261500px;}
.yf2{bottom:169.251000px;}
.y85{bottom:174.379500px;}
.yd0{bottom:178.527000px;}
.y10c{bottom:180.556500px;}
.yb6{bottom:182.700000px;}
.yf1{bottom:185.689500px;}
.y138{bottom:188.656500px;}
.y84{bottom:190.816500px;}
.ycf{bottom:194.965500px;}
.y10b{bottom:196.995000px;}
.yb5{bottom:199.138500px;}
.y47{bottom:201.168000px;}
.yf0{bottom:202.126500px;}
.y137{bottom:205.095000px;}
.y83{bottom:207.255000px;}
.yce{bottom:211.404000px;}
.y10a{bottom:213.433500px;}
.yb4{bottom:215.577000px;}
.y46{bottom:217.606500px;}
.yef{bottom:218.565000px;}
.y82{bottom:223.693500px;}
.ycd{bottom:227.842500px;}
.y109{bottom:229.872000px;}
.yb3{bottom:232.015500px;}
.y136{bottom:233.488500px;}
.y45{bottom:234.045000px;}
.y81{bottom:240.132000px;}
.ycc{bottom:244.281000px;}
.y108{bottom:246.310500px;}
.yee{bottom:246.958500px;}
.yb2{bottom:248.454000px;}
.y135{bottom:249.927000px;}
.y44{bottom:250.483500px;}
.y80{bottom:256.570500px;}
.yed{bottom:263.397000px;}
.yb1{bottom:264.891000px;}
.y43{bottom:266.920500px;}
.ycb{bottom:272.674500px;}
.y7f{bottom:273.009000px;}
.y134{bottom:278.320500px;}
.yec{bottom:279.835500px;}
.yb0{bottom:281.329500px;}
.y42{bottom:283.359000px;}
.yca{bottom:289.113000px;}
.y7e{bottom:289.447500px;}
.y133{bottom:294.759000px;}
.yaf{bottom:297.768000px;}
.y41{bottom:299.797500px;}
.yc9{bottom:305.551500px;}
.y7d{bottom:305.886000px;}
.y107{bottom:307.258500px;}
.y132{bottom:311.197500px;}
.yae{bottom:314.206500px;}
.y40{bottom:316.236000px;}
.yeb{bottom:318.679500px;}
.yc8{bottom:321.990000px;}
.yad{bottom:330.645000px;}
.y3f{bottom:332.674500px;}
.yea{bottom:335.118000px;}
.yc7{bottom:338.427000px;}
.y131{bottom:339.591000px;}
.y3e{bottom:349.113000px;}
.ye9{bottom:351.556500px;}
.yc6{bottom:354.865500px;}
.y130{bottom:356.029500px;}
.yac{bottom:359.038500px;}
.y3d{bottom:365.551500px;}
.y7c{bottom:366.580500px;}
.yc5{bottom:371.304000px;}
.y12f{bottom:372.468000px;}
.yab{bottom:375.477000px;}
.ye8{bottom:379.950000px;}
.y3c{bottom:381.990000px;}
.y12e{bottom:388.906500px;}
.ye7{bottom:396.388500px;}
.y3b{bottom:398.428500px;}
.yc4{bottom:399.697500px;}
.yaa{bottom:414.321000px;}
.y3a{bottom:414.867000px;}
.yc3{bottom:416.136000px;}
.y12d{bottom:417.300000px;}
.ye6{bottom:424.782000px;}
.ya9{bottom:430.759500px;}
.y39{bottom:431.304000px;}
.yc2{bottom:432.574500px;}
.y12c{bottom:433.737000px;}
.ye5{bottom:441.220500px;}
.y6d{bottom:447.187500px;}
.ya8{bottom:447.198000px;}
.y38{bottom:447.742500px;}
.yc1{bottom:449.013000px;}
.y12b{bottom:450.175500px;}
.ye4{bottom:457.659000px;}
.y6c{bottom:463.626000px;}
.ya7{bottom:463.636500px;}
.y37{bottom:464.181000px;}
.yc0{bottom:465.451500px;}
.ye3{bottom:474.097500px;}
.y12a{bottom:478.569000px;}
.y6b{bottom:480.064500px;}
.ya6{bottom:480.075000px;}
.y36{bottom:480.619500px;}
.ybf{bottom:481.890000px;}
.ye2{bottom:490.534500px;}
.y129{bottom:495.007500px;}
.y6a{bottom:496.503000px;}
.ya5{bottom:496.512000px;}
.y35{bottom:497.058000px;}
.ybe{bottom:498.328500px;}
.y7b{bottom:502.870500px;}
.ye1{bottom:506.973000px;}
.y128{bottom:511.446000px;}
.y69{bottom:512.941500px;}
.ya4{bottom:512.950500px;}
.ybd{bottom:514.767000px;}
.y7a{bottom:519.309000px;}
.ya3{bottom:529.389000px;}
.ybc{bottom:531.205500px;}
.y79{bottom:535.747500px;}
.y34{bottom:537.406500px;}
.y127{bottom:539.839500px;}
.ye0{bottom:545.817000px;}
.ya2{bottom:545.827500px;}
.ybb{bottom:547.642500px;}
.y68{bottom:551.784000px;}
.y78{bottom:552.186000px;}
.y126{bottom:556.278000px;}
.ydf{bottom:562.255500px;}
.ya1{bottom:562.266000px;}
.y67{bottom:568.222500px;}
.y33{bottom:571.777500px;}
.y125{bottom:572.716500px;}
.y32{bottom:577.201500px;}
.yde{bottom:578.694000px;}
.ya0{bottom:578.704500px;}
.y77{bottom:579.732000px;}
.y66{bottom:584.661000px;}
.y31{bottom:593.640000px;}
.yba{bottom:593.970000px;}
.ydd{bottom:595.132500px;}
.y9f{bottom:595.143000px;}
.y76{bottom:596.170500px;}
.y65{bottom:601.099500px;}
.y124{bottom:601.110000px;}
.y30{bottom:610.078500px;}
.ydc{bottom:611.571000px;}
.y9e{bottom:611.581500px;}
.y75{bottom:612.607500px;}
.y64{bottom:617.538000px;}
.y123{bottom:617.548500px;}
.y2f{bottom:626.515500px;}
.ydb{bottom:628.009500px;}
.y9d{bottom:628.020000px;}
.y74{bottom:629.046000px;}
.y63{bottom:633.976500px;}
.y122{bottom:633.987000px;}
.y2e{bottom:642.954000px;}
.yda{bottom:644.448000px;}
.y9c{bottom:644.458500px;}
.y62{bottom:650.415000px;}
.y73{bottom:656.592000px;}
.y2d{bottom:659.392500px;}
.yd9{bottom:660.886500px;}
.y9b{bottom:660.895500px;}
.y121{bottom:662.380500px;}
.y61{bottom:666.853500px;}
.y72{bottom:673.030500px;}
.y2c{bottom:675.831000px;}
.yd8{bottom:677.325000px;}
.y9a{bottom:677.334000px;}
.y120{bottom:678.819000px;}
.y60{bottom:683.292000px;}
.y71{bottom:689.469000px;}
.y2b{bottom:692.269500px;}
.yd7{bottom:693.762000px;}
.y99{bottom:693.772500px;}
.y106{bottom:698.970000px;}
.y5f{bottom:699.730500px;}
.y2a{bottom:703.285500px;}
.y70{bottom:705.907500px;}
.y11f{bottom:707.212500px;}
.yd6{bottom:710.200500px;}
.y98{bottom:710.211000px;}
.y105{bottom:715.408500px;}
.y5e{bottom:716.167500px;}
.y11e{bottom:723.651000px;}
.y29{bottom:725.146500px;}
.yd5{bottom:726.639000px;}
.y104{bottom:731.847000px;}
.y5d{bottom:732.606000px;}
.y28{bottom:736.161000px;}
.yd4{bottom:743.077500px;}
.y103{bottom:748.285500px;}
.y5c{bottom:749.044500px;}
.y97{bottom:749.055000px;}
.y11d{bottom:752.044500px;}
.y27{bottom:758.023500px;}
.y102{bottom:764.724000px;}
.y5b{bottom:765.483000px;}
.y96{bottom:765.493500px;}
.y11c{bottom:768.483000px;}
.y26{bottom:774.462000px;}
.y101{bottom:781.162500px;}
.y5a{bottom:781.921500px;}
.y95{bottom:781.932000px;}
.y11b{bottom:784.921500px;}
.y25{bottom:790.899000px;}
.y100{bottom:797.601000px;}
.y59{bottom:798.360000px;}
.y94{bottom:798.370500px;}
.y11a{bottom:813.315000px;}
.y58{bottom:814.798500px;}
.y93{bottom:814.809000px;}
.y24{bottom:818.353500px;}
.yff{bottom:825.250500px;}
.y119{bottom:829.752000px;}
.y57{bottom:831.237000px;}
.y92{bottom:831.247500px;}
.y23{bottom:836.286000px;}
.yfe{bottom:841.689000px;}
.y118{bottom:846.190500px;}
.y56{bottom:847.675500px;}
.y91{bottom:847.686000px;}
.y22{bottom:854.218500px;}
.yfd{bottom:858.127500px;}
.y117{bottom:862.629000px;}
.y55{bottom:864.114000px;}
.y90{bottom:864.123000px;}
.y21{bottom:872.151000px;}
.yfc{bottom:874.566000px;}
.y116{bottom:879.067500px;}
.y54{bottom:880.551000px;}
.y8f{bottom:880.561500px;}
.yfb{bottom:891.004500px;}
.y53{bottom:896.989500px;}
.y17{bottom:898.260000px;}
.ya{bottom:903.150000px;}
.yfa{bottom:907.443000px;}
.y115{bottom:907.461000px;}
.y16{bottom:910.260000px;}
.y52{bottom:913.428000px;}
.y8e{bottom:919.405500px;}
.y15{bottom:922.260000px;}
.y114{bottom:923.899500px;}
.y51{bottom:929.866500px;}
.y9{bottom:932.250000px;}
.y14{bottom:934.260000px;}
.yf9{bottom:935.092500px;}
.y20{bottom:935.647500px;}
.y8d{bottom:935.844000px;}
.y113{bottom:940.338000px;}
.y50{bottom:946.305000px;}
.yf8{bottom:951.531000px;}
.y112{bottom:956.776500px;}
.y13{bottom:957.510000px;}
.y4f{bottom:962.743500px;}
.y8c{bottom:964.237500px;}
.yf7{bottom:967.969500px;}
.y12{bottom:969.510000px;}
.y8{bottom:972.630000px;}
.y111{bottom:973.215000px;}
.y4e{bottom:979.182000px;}
.y11{bottom:981.510000px;}
.yf6{bottom:984.408000px;}
.y8b{bottom:992.631000px;}
.y10{bottom:993.510000px;}
.y4d{bottom:995.620500px;}
.yf5{bottom:1000.846500px;}
.yf{bottom:1005.510000px;}
.y7{bottom:1011.165000px;}
.y4c{bottom:1012.059000px;}
.y8a{bottom:1021.024500px;}
.y4b{bottom:1028.497500px;}
.ye{bottom:1028.760000px;}
.y6{bottom:1039.965000px;}
.yd{bottom:1040.760000px;}
.y4a{bottom:1044.934500px;}
.y6f{bottom:1044.936000px;}
.y89{bottom:1049.418000px;}
.yc{bottom:1052.760000px;}
.y49{bottom:1061.373000px;}
.y48{bottom:1077.811500px;}
.yb{bottom:1078.260000px;}
.y5{bottom:1081.485000px;}
.y1e{bottom:1144.500000px;}
.y3{bottom:1148.370000px;}
.y1d{bottom:1165.500000px;}
.y2{bottom:1169.970000px;}
.y4{bottom:1176.375000px;}
.y1{bottom:1191.570000px;}
.he{height:28.285733px;}
.ha{height:33.226911px;}
.h5{height:36.000000px;}
.h6{height:36.804287px;}
.hb{height:37.494141px;}
.h10{height:38.249700px;}
.h11{height:41.842920px;}
.h12{height:41.844600px;}
.h7{height:43.804688px;}
.hf{height:44.831700px;}
.h13{height:44.833500px;}
.h9{height:46.538700px;}
.h2{height:50.062500px;}
.hd{height:56.080726px;}
.h3{height:56.320312px;}
.h4{height:72.000000px;}
.hc{height:72.924434px;}
.h1{height:75.093750px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w3{width:683.273100px;}
.w0{width:892.500000px;}
.w1{width:892.914000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.337034px;}
.x1{left:58.500000px;}
.xb{left:76.052700px;}
.xa{left:103.466400px;}
.xd{left:105.000000px;}
.x11{left:106.299000px;}
.x1a{left:113.770500px;}
.x14{left:128.715000px;}
.x1b{left:137.017500px;}
.x16{left:143.659500px;}
.x12{left:212.598000px;}
.x3{left:229.755000px;}
.x19{left:238.632000px;}
.x4{left:252.405000px;}
.x18{left:279.934500px;}
.x5{left:285.750000px;}
.x17{left:287.821500px;}
.x15{left:331.222500px;}
.x13{left:367.185000px;}
.x10{left:446.670000px;}
.x6{left:469.590000px;}
.xf{left:574.950000px;}
.x7{left:605.490000px;}
.x9{left:627.990000px;}
.x8{left:634.410000px;}
.x2{left:695.730000px;}
.xe{left:704.355000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.434667pt;}
.v1{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.653258pt;}
.ls3{letter-spacing:2.658245pt;}
.ls2{letter-spacing:2.658591pt;}
.ls4{letter-spacing:19.340727pt;}
.ls5{letter-spacing:26.569047pt;}
.ws1{word-spacing:-48.000000pt;}
.ws4{word-spacing:-18.583288pt;}
.wsba{word-spacing:-14.761181pt;}
.ws8{word-spacing:-14.760588pt;}
.wsb8{word-spacing:-13.581562pt;}
.ws2e{word-spacing:-2.964870pt;}
.ws6e{word-spacing:-2.911736pt;}
.wsc1{word-spacing:-2.699362pt;}
.ws2f{word-spacing:-2.699200pt;}
.wsa8{word-spacing:-2.486665pt;}
.ws16{word-spacing:-2.433531pt;}
.ws50{word-spacing:-2.274129pt;}
.wsc4{word-spacing:-2.008647pt;}
.ws82{word-spacing:-1.795925pt;}
.ws3f{word-spacing:-1.583389pt;}
.ws2d{word-spacing:-1.477121pt;}
.wsca{word-spacing:-1.317985pt;}
.ws65{word-spacing:-1.211452pt;}
.ws83{word-spacing:-1.052051pt;}
.wsd0{word-spacing:-0.999010pt;}
.ws5d{word-spacing:-0.786381pt;}
.wsb2{word-spacing:-0.786200pt;}
.ws34{word-spacing:-0.626980pt;}
.ws58{word-spacing:-0.520712pt;}
.ws78{word-spacing:-0.361310pt;}
.wsb0{word-spacing:-0.361112pt;}
.ws33{word-spacing:-0.308176pt;}
.wsc7{word-spacing:-0.255000pt;}
.ws59{word-spacing:-0.201909pt;}
.wsa0{word-spacing:-0.148775pt;}
.wsc3{word-spacing:-0.053136pt;}
.ws5{word-spacing:-0.042507pt;}
.ws9{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.010627pt;}
.ws30{word-spacing:0.063761pt;}
.ws85{word-spacing:0.116895pt;}
.ws54{word-spacing:0.329430pt;}
.ws55{word-spacing:0.382564pt;}
.ws44{word-spacing:0.488832pt;}
.wsd1{word-spacing:0.541828pt;}
.ws11{word-spacing:0.595099pt;}
.ws1d{word-spacing:0.701367pt;}
.wsc{word-spacing:0.754501pt;}
.ws24{word-spacing:0.860769pt;}
.ws43{word-spacing:0.913903pt;}
.wsd3{word-spacing:1.020264pt;}
.ws69{word-spacing:1.073304pt;}
.ws81{word-spacing:1.083931pt;}
.ws77{word-spacing:1.126438pt;}
.ws89{word-spacing:1.179572pt;}
.ws41{word-spacing:1.285840pt;}
.ws49{word-spacing:1.338973pt;}
.ws42{word-spacing:1.392107pt;}
.ws6d{word-spacing:1.445241pt;}
.ws12{word-spacing:1.498375pt;}
.wsb1{word-spacing:1.551465pt;}
.ws2c{word-spacing:1.551509pt;}
.ws9c{word-spacing:1.562136pt;}
.ws73{word-spacing:1.604643pt;}
.ws90{word-spacing:1.657777pt;}
.ws8f{word-spacing:1.870312pt;}
.ws5a{word-spacing:1.923446pt;}
.ws48{word-spacing:1.976580pt;}
.ws3b{word-spacing:2.029714pt;}
.ws74{word-spacing:2.189115pt;}
.ws2a{word-spacing:2.242249pt;}
.ws45{word-spacing:2.295383pt;}
.wsc2{word-spacing:2.295528pt;}
.ws9e{word-spacing:2.302126pt;}
.ws46{word-spacing:2.348517pt;}
.ws60{word-spacing:2.454785pt;}
.wsd{word-spacing:2.507919pt;}
.ws15{word-spacing:2.561052pt;}
.ws10{word-spacing:2.614186pt;}
.ws36{word-spacing:2.826722pt;}
.wsae{word-spacing:2.932842pt;}
.ws6{word-spacing:2.932989pt;}
.wsbc{word-spacing:2.933373pt;}
.ws64{word-spacing:2.942126pt;}
.ws7{word-spacing:2.986123pt;}
.ws35{word-spacing:3.039257pt;}
.ws7e{word-spacing:3.092391pt;}
.ws2b{word-spacing:3.145525pt;}
.wsac{word-spacing:3.145651pt;}
.ws27{word-spacing:3.198659pt;}
.wsd2{word-spacing:3.209521pt;}
.wsb{word-spacing:3.251793pt;}
.ws4f{word-spacing:3.304927pt;}
.wsa9{word-spacing:3.358060pt;}
.ws38{word-spacing:3.379314pt;}
.ws7d{word-spacing:3.411194pt;}
.wsbd{word-spacing:3.517444pt;}
.ws8e{word-spacing:3.517462pt;}
.ws92{word-spacing:3.570596pt;}
.ws66{word-spacing:3.623730pt;}
.ws3e{word-spacing:3.676864pt;}
.ws3{word-spacing:3.700367pt;}
.ws5c{word-spacing:3.783131pt;}
.ws79{word-spacing:3.801058pt;}
.ws61{word-spacing:3.836265pt;}
.wsc8{word-spacing:3.836366pt;}
.ws25{word-spacing:3.889399pt;}
.wscf{word-spacing:3.942479pt;}
.wsa4{word-spacing:3.995667pt;}
.ws13{word-spacing:4.048801pt;}
.ws6c{word-spacing:4.059427pt;}
.ws17{word-spacing:4.208202pt;}
.wsa2{word-spacing:4.261336pt;}
.ws56{word-spacing:4.314470pt;}
.wsb6{word-spacing:4.420915pt;}
.ws52{word-spacing:4.580139pt;}
.ws39{word-spacing:4.633273pt;}
.ws62{word-spacing:4.686407pt;}
.ws6a{word-spacing:4.739541pt;}
.ws71{word-spacing:4.845809pt;}
.wsc0{word-spacing:4.846003pt;}
.ws9d{word-spacing:4.856435pt;}
.ws7f{word-spacing:4.898943pt;}
.wsad{word-spacing:5.005464pt;}
.ws7a{word-spacing:5.058344pt;}
.wsa1{word-spacing:5.111478pt;}
.ws80{word-spacing:5.270880pt;}
.ws1b{word-spacing:5.324013pt;}
.wsc6{word-spacing:5.388256pt;}
.ws67{word-spacing:5.430281pt;}
.ws5b{word-spacing:5.440908pt;}
.wsbf{word-spacing:5.441073pt;}
.ws68{word-spacing:5.483415pt;}
.ws9b{word-spacing:5.589683pt;}
.ws9f{word-spacing:5.642817pt;}
.ws40{word-spacing:5.695951pt;}
.ws47{word-spacing:5.908486pt;}
.wsb3{word-spacing:5.908989pt;}
.ws4b{word-spacing:5.961620pt;}
.ws29{word-spacing:6.121021pt;}
.ws7b{word-spacing:6.174155pt;}
.ws53{word-spacing:6.280423pt;}
.ws31{word-spacing:6.386691pt;}
.ws1a{word-spacing:6.439825pt;}
.ws51{word-spacing:6.492959pt;}
.ws98{word-spacing:6.556719pt;}
.ws88{word-spacing:6.599226pt;}
.ws18{word-spacing:6.705494pt;}
.wsc9{word-spacing:6.705816pt;}
.ws28{word-spacing:6.758628pt;}
.ws32{word-spacing:6.864896pt;}
.wscd{word-spacing:6.865277pt;}
.ws57{word-spacing:6.971163pt;}
.ws63{word-spacing:7.034924pt;}
.ws1f{word-spacing:7.130565pt;}
.ws5e{word-spacing:7.236833pt;}
.ws94{word-spacing:7.289967pt;}
.ws37{word-spacing:7.343100pt;}
.ws76{word-spacing:7.396234pt;}
.wsb5{word-spacing:7.555992pt;}
.ws9a{word-spacing:7.608770pt;}
.ws21{word-spacing:7.661904pt;}
.ws7c{word-spacing:7.672530pt;}
.ws5f{word-spacing:7.715037pt;}
.ws4d{word-spacing:7.768171pt;}
.ws96{word-spacing:7.821305pt;}
.ws19{word-spacing:7.874439pt;}
.ws6f{word-spacing:7.927573pt;}
.ws72{word-spacing:7.938200pt;}
.wsa5{word-spacing:7.980707pt;}
.ws6b{word-spacing:7.991334pt;}
.ws8d{word-spacing:8.193242pt;}
.ws22{word-spacing:8.246376pt;}
.ws97{word-spacing:8.299510pt;}
.ws20{word-spacing:8.405778pt;}
.ws84{word-spacing:8.618313pt;}
.wsbe{word-spacing:8.618447pt;}
.ws14{word-spacing:8.777715pt;}
.wsf{word-spacing:8.830849pt;}
.ws95{word-spacing:8.883983pt;}
.ws99{word-spacing:8.947743pt;}
.ws93{word-spacing:8.990250pt;}
.ws75{word-spacing:9.043384pt;}
.wsab{word-spacing:9.043482pt;}
.wsce{word-spacing:9.054534pt;}
.ws87{word-spacing:9.309053pt;}
.wsa3{word-spacing:9.362187pt;}
.ws70{word-spacing:9.627857pt;}
.wsbb{word-spacing:9.681379pt;}
.wsa7{word-spacing:9.787258pt;}
.ws1e{word-spacing:10.052928pt;}
.wsb7{word-spacing:10.053703pt;}
.ws4e{word-spacing:10.106061pt;}
.wscc{word-spacing:10.159816pt;}
.ws23{word-spacing:10.318597pt;}
.ws4c{word-spacing:10.424865pt;}
.ws3d{word-spacing:10.743668pt;}
.wsb4{word-spacing:10.797182pt;}
.ws3c{word-spacing:10.849936pt;}
.wsc5{word-spacing:10.850531pt;}
.ws8c{word-spacing:10.956203pt;}
.ws8a{word-spacing:11.009337pt;}
.ws26{word-spacing:11.168739pt;}
.wsa6{word-spacing:11.221873pt;}
.wscb{word-spacing:11.222270pt;}
.wse{word-spacing:11.275007pt;}
.ws86{word-spacing:11.285633pt;}
.ws3a{word-spacing:11.328140pt;}
.wsaf{word-spacing:11.487897pt;}
.wsb9{word-spacing:11.859636pt;}
.ws91{word-spacing:12.507712pt;}
.ws8b{word-spacing:12.826515pt;}
.ws2{word-spacing:33.604461pt;}
.ws1c{word-spacing:44.132990pt;}
.wsaa{word-spacing:44.134815pt;}
.wsa{word-spacing:44.141073pt;}
._a{margin-left:-27.045135pt;}
._c{margin-left:-25.603561pt;}
._d{margin-left:-23.905974pt;}
._b{margin-left:-21.426125pt;}
._25{margin-left:-6.708029pt;}
._6{margin-left:-5.300210pt;}
._8{margin-left:-3.665458pt;}
._7{margin-left:-2.660959pt;}
._1{margin-left:-1.062680pt;}
._4{width:1.760000pt;}
._5{width:2.754464pt;}
._1b{width:3.723639pt;}
._0{width:6.645421pt;}
._3{width:7.818667pt;}
._12{width:11.428050pt;}
._1c{width:13.004638pt;}
._2{width:14.721403pt;}
._21{width:15.672180pt;}
._17{width:16.734857pt;}
._19{width:17.896114pt;}
._e{width:18.805331pt;}
._1a{width:20.669074pt;}
._1d{width:22.054823pt;}
._9{width:23.174051pt;}
._24{width:24.233312pt;}
._f{width:25.667926pt;}
._11{width:26.670111pt;}
._10{width:27.571852pt;}
._20{width:28.850913pt;}
._15{width:30.598527pt;}
._27{width:32.588439pt;}
._26{width:33.952543pt;}
._13{width:34.855817pt;}
._1e{width:36.230717pt;}
._23{width:37.224888pt;}
._14{width:38.733812pt;}
._29{width:39.896951pt;}
._28{width:41.882288pt;}
._2b{width:42.850984pt;}
._16{width:44.094530pt;}
._2c{width:45.360878pt;}
._2a{width:47.298390pt;}
._18{width:48.245551pt;}
._22{width:54.302812pt;}
._1f{width:61.103947pt;}
.fs9{font-size:37.193600pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.507200pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:43.619896pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:53.133867pt;}
.fsb{font-size:53.136000pt;}
.fs8{font-size:58.181867pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs7{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:3.812733pt;}
.y1b{bottom:17.096233pt;}
.y1a{bottom:30.379733pt;}
.y18{bottom:51.733333pt;}
.y19{bottom:54.852400pt;}
.y1f{bottom:57.333333pt;}
.y110{bottom:102.046667pt;}
.y88{bottom:102.048000pt;}
.yb9{bottom:107.937333pt;}
.y13b{bottom:113.232000pt;}
.yd3{bottom:114.856000pt;}
.y10f{bottom:116.658667pt;}
.y6e{bottom:118.582667pt;}
.yf4{bottom:121.221333pt;}
.yb8{bottom:122.549333pt;}
.y87{bottom:125.780000pt;}
.y13a{bottom:127.844000pt;}
.yd2{bottom:129.466667pt;}
.y10e{bottom:131.270667pt;}
.yf3{bottom:135.833333pt;}
.y86{bottom:140.392000pt;}
.y139{bottom:142.456000pt;}
.yd1{bottom:144.078667pt;}
.y10d{bottom:145.882667pt;}
.yb7{bottom:147.788000pt;}
.yf2{bottom:150.445333pt;}
.y85{bottom:155.004000pt;}
.yd0{bottom:158.690667pt;}
.y10c{bottom:160.494667pt;}
.yb6{bottom:162.400000pt;}
.yf1{bottom:165.057333pt;}
.y138{bottom:167.694667pt;}
.y84{bottom:169.614667pt;}
.ycf{bottom:173.302667pt;}
.y10b{bottom:175.106667pt;}
.yb5{bottom:177.012000pt;}
.y47{bottom:178.816000pt;}
.yf0{bottom:179.668000pt;}
.y137{bottom:182.306667pt;}
.y83{bottom:184.226667pt;}
.yce{bottom:187.914667pt;}
.y10a{bottom:189.718667pt;}
.yb4{bottom:191.624000pt;}
.y46{bottom:193.428000pt;}
.yef{bottom:194.280000pt;}
.y82{bottom:198.838667pt;}
.ycd{bottom:202.526667pt;}
.y109{bottom:204.330667pt;}
.yb3{bottom:206.236000pt;}
.y136{bottom:207.545333pt;}
.y45{bottom:208.040000pt;}
.y81{bottom:213.450667pt;}
.ycc{bottom:217.138667pt;}
.y108{bottom:218.942667pt;}
.yee{bottom:219.518667pt;}
.yb2{bottom:220.848000pt;}
.y135{bottom:222.157333pt;}
.y44{bottom:222.652000pt;}
.y80{bottom:228.062667pt;}
.yed{bottom:234.130667pt;}
.yb1{bottom:235.458667pt;}
.y43{bottom:237.262667pt;}
.ycb{bottom:242.377333pt;}
.y7f{bottom:242.674667pt;}
.y134{bottom:247.396000pt;}
.yec{bottom:248.742667pt;}
.yb0{bottom:250.070667pt;}
.y42{bottom:251.874667pt;}
.yca{bottom:256.989333pt;}
.y7e{bottom:257.286667pt;}
.y133{bottom:262.008000pt;}
.yaf{bottom:264.682667pt;}
.y41{bottom:266.486667pt;}
.yc9{bottom:271.601333pt;}
.y7d{bottom:271.898667pt;}
.y107{bottom:273.118667pt;}
.y132{bottom:276.620000pt;}
.yae{bottom:279.294667pt;}
.y40{bottom:281.098667pt;}
.yeb{bottom:283.270667pt;}
.yc8{bottom:286.213333pt;}
.yad{bottom:293.906667pt;}
.y3f{bottom:295.710667pt;}
.yea{bottom:297.882667pt;}
.yc7{bottom:300.824000pt;}
.y131{bottom:301.858667pt;}
.y3e{bottom:310.322667pt;}
.ye9{bottom:312.494667pt;}
.yc6{bottom:315.436000pt;}
.y130{bottom:316.470667pt;}
.yac{bottom:319.145333pt;}
.y3d{bottom:324.934667pt;}
.y7c{bottom:325.849333pt;}
.yc5{bottom:330.048000pt;}
.y12f{bottom:331.082667pt;}
.yab{bottom:333.757333pt;}
.ye8{bottom:337.733333pt;}
.y3c{bottom:339.546667pt;}
.y12e{bottom:345.694667pt;}
.ye7{bottom:352.345333pt;}
.y3b{bottom:354.158667pt;}
.yc4{bottom:355.286667pt;}
.yaa{bottom:368.285333pt;}
.y3a{bottom:368.770667pt;}
.yc3{bottom:369.898667pt;}
.y12d{bottom:370.933333pt;}
.ye6{bottom:377.584000pt;}
.ya9{bottom:382.897333pt;}
.y39{bottom:383.381333pt;}
.yc2{bottom:384.510667pt;}
.y12c{bottom:385.544000pt;}
.ye5{bottom:392.196000pt;}
.y6d{bottom:397.500000pt;}
.ya8{bottom:397.509333pt;}
.y38{bottom:397.993333pt;}
.yc1{bottom:399.122667pt;}
.y12b{bottom:400.156000pt;}
.ye4{bottom:406.808000pt;}
.y6c{bottom:412.112000pt;}
.ya7{bottom:412.121333pt;}
.y37{bottom:412.605333pt;}
.yc0{bottom:413.734667pt;}
.ye3{bottom:421.420000pt;}
.y12a{bottom:425.394667pt;}
.y6b{bottom:426.724000pt;}
.ya6{bottom:426.733333pt;}
.y36{bottom:427.217333pt;}
.ybf{bottom:428.346667pt;}
.ye2{bottom:436.030667pt;}
.y129{bottom:440.006667pt;}
.y6a{bottom:441.336000pt;}
.ya5{bottom:441.344000pt;}
.y35{bottom:441.829333pt;}
.ybe{bottom:442.958667pt;}
.y7b{bottom:446.996000pt;}
.ye1{bottom:450.642667pt;}
.y128{bottom:454.618667pt;}
.y69{bottom:455.948000pt;}
.ya4{bottom:455.956000pt;}
.ybd{bottom:457.570667pt;}
.y7a{bottom:461.608000pt;}
.ya3{bottom:470.568000pt;}
.ybc{bottom:472.182667pt;}
.y79{bottom:476.220000pt;}
.y34{bottom:477.694667pt;}
.y127{bottom:479.857333pt;}
.ye0{bottom:485.170667pt;}
.ya2{bottom:485.180000pt;}
.ybb{bottom:486.793333pt;}
.y68{bottom:490.474667pt;}
.y78{bottom:490.832000pt;}
.y126{bottom:494.469333pt;}
.ydf{bottom:499.782667pt;}
.ya1{bottom:499.792000pt;}
.y67{bottom:505.086667pt;}
.y33{bottom:508.246667pt;}
.y125{bottom:509.081333pt;}
.y32{bottom:513.068000pt;}
.yde{bottom:514.394667pt;}
.ya0{bottom:514.404000pt;}
.y77{bottom:515.317333pt;}
.y66{bottom:519.698667pt;}
.y31{bottom:527.680000pt;}
.yba{bottom:527.973333pt;}
.ydd{bottom:529.006667pt;}
.y9f{bottom:529.016000pt;}
.y76{bottom:529.929333pt;}
.y65{bottom:534.310667pt;}
.y124{bottom:534.320000pt;}
.y30{bottom:542.292000pt;}
.ydc{bottom:543.618667pt;}
.y9e{bottom:543.628000pt;}
.y75{bottom:544.540000pt;}
.y64{bottom:548.922667pt;}
.y123{bottom:548.932000pt;}
.y2f{bottom:556.902667pt;}
.ydb{bottom:558.230667pt;}
.y9d{bottom:558.240000pt;}
.y74{bottom:559.152000pt;}
.y63{bottom:563.534667pt;}
.y122{bottom:563.544000pt;}
.y2e{bottom:571.514667pt;}
.yda{bottom:572.842667pt;}
.y9c{bottom:572.852000pt;}
.y62{bottom:578.146667pt;}
.y73{bottom:583.637333pt;}
.y2d{bottom:586.126667pt;}
.yd9{bottom:587.454667pt;}
.y9b{bottom:587.462667pt;}
.y121{bottom:588.782667pt;}
.y61{bottom:592.758667pt;}
.y72{bottom:598.249333pt;}
.y2c{bottom:600.738667pt;}
.yd8{bottom:602.066667pt;}
.y9a{bottom:602.074667pt;}
.y120{bottom:603.394667pt;}
.y60{bottom:607.370667pt;}
.y71{bottom:612.861333pt;}
.y2b{bottom:615.350667pt;}
.yd7{bottom:616.677333pt;}
.y99{bottom:616.686667pt;}
.y106{bottom:621.306667pt;}
.y5f{bottom:621.982667pt;}
.y2a{bottom:625.142667pt;}
.y70{bottom:627.473333pt;}
.y11f{bottom:628.633333pt;}
.yd6{bottom:631.289333pt;}
.y98{bottom:631.298667pt;}
.y105{bottom:635.918667pt;}
.y5e{bottom:636.593333pt;}
.y11e{bottom:643.245333pt;}
.y29{bottom:644.574667pt;}
.yd5{bottom:645.901333pt;}
.y104{bottom:650.530667pt;}
.y5d{bottom:651.205333pt;}
.y28{bottom:654.365333pt;}
.yd4{bottom:660.513333pt;}
.y103{bottom:665.142667pt;}
.y5c{bottom:665.817333pt;}
.y97{bottom:665.826667pt;}
.y11d{bottom:668.484000pt;}
.y27{bottom:673.798667pt;}
.y102{bottom:679.754667pt;}
.y5b{bottom:680.429333pt;}
.y96{bottom:680.438667pt;}
.y11c{bottom:683.096000pt;}
.y26{bottom:688.410667pt;}
.y101{bottom:694.366667pt;}
.y5a{bottom:695.041333pt;}
.y95{bottom:695.050667pt;}
.y11b{bottom:697.708000pt;}
.y25{bottom:703.021333pt;}
.y100{bottom:708.978667pt;}
.y59{bottom:709.653333pt;}
.y94{bottom:709.662667pt;}
.y11a{bottom:722.946667pt;}
.y58{bottom:724.265333pt;}
.y93{bottom:724.274667pt;}
.y24{bottom:727.425333pt;}
.yff{bottom:733.556000pt;}
.y119{bottom:737.557333pt;}
.y57{bottom:738.877333pt;}
.y92{bottom:738.886667pt;}
.y23{bottom:743.365333pt;}
.yfe{bottom:748.168000pt;}
.y118{bottom:752.169333pt;}
.y56{bottom:753.489333pt;}
.y91{bottom:753.498667pt;}
.y22{bottom:759.305333pt;}
.yfd{bottom:762.780000pt;}
.y117{bottom:766.781333pt;}
.y55{bottom:768.101333pt;}
.y90{bottom:768.109333pt;}
.y21{bottom:775.245333pt;}
.yfc{bottom:777.392000pt;}
.y116{bottom:781.393333pt;}
.y54{bottom:782.712000pt;}
.y8f{bottom:782.721333pt;}
.yfb{bottom:792.004000pt;}
.y53{bottom:797.324000pt;}
.y17{bottom:798.453333pt;}
.ya{bottom:802.800000pt;}
.yfa{bottom:806.616000pt;}
.y115{bottom:806.632000pt;}
.y16{bottom:809.120000pt;}
.y52{bottom:811.936000pt;}
.y8e{bottom:817.249333pt;}
.y15{bottom:819.786667pt;}
.y114{bottom:821.244000pt;}
.y51{bottom:826.548000pt;}
.y9{bottom:828.666667pt;}
.y14{bottom:830.453333pt;}
.yf9{bottom:831.193333pt;}
.y20{bottom:831.686667pt;}
.y8d{bottom:831.861333pt;}
.y113{bottom:835.856000pt;}
.y50{bottom:841.160000pt;}
.yf8{bottom:845.805333pt;}
.y112{bottom:850.468000pt;}
.y13{bottom:851.120000pt;}
.y4f{bottom:855.772000pt;}
.y8c{bottom:857.100000pt;}
.yf7{bottom:860.417333pt;}
.y12{bottom:861.786667pt;}
.y8{bottom:864.560000pt;}
.y111{bottom:865.080000pt;}
.y4e{bottom:870.384000pt;}
.y11{bottom:872.453333pt;}
.yf6{bottom:875.029333pt;}
.y8b{bottom:882.338667pt;}
.y10{bottom:883.120000pt;}
.y4d{bottom:884.996000pt;}
.yf5{bottom:889.641333pt;}
.yf{bottom:893.786667pt;}
.y7{bottom:898.813333pt;}
.y4c{bottom:899.608000pt;}
.y8a{bottom:907.577333pt;}
.y4b{bottom:914.220000pt;}
.ye{bottom:914.453333pt;}
.y6{bottom:924.413333pt;}
.yd{bottom:925.120000pt;}
.y4a{bottom:928.830667pt;}
.y6f{bottom:928.832000pt;}
.y89{bottom:932.816000pt;}
.yc{bottom:935.786667pt;}
.y49{bottom:943.442667pt;}
.y48{bottom:958.054667pt;}
.yb{bottom:958.453333pt;}
.y5{bottom:961.320000pt;}
.y1e{bottom:1017.333333pt;}
.y3{bottom:1020.773333pt;}
.y1d{bottom:1036.000000pt;}
.y2{bottom:1039.973333pt;}
.y4{bottom:1045.666667pt;}
.y1{bottom:1059.173333pt;}
.he{height:25.142874pt;}
.ha{height:29.535032pt;}
.h5{height:32.000000pt;}
.h6{height:32.714922pt;}
.hb{height:33.328125pt;}
.h10{height:33.999733pt;}
.h11{height:37.193707pt;}
.h12{height:37.195200pt;}
.h7{height:38.937500pt;}
.hf{height:39.850400pt;}
.h13{height:39.852000pt;}
.h9{height:41.367733pt;}
.h2{height:44.500000pt;}
.hd{height:49.849534pt;}
.h3{height:50.062500pt;}
.h4{height:64.000000pt;}
.hc{height:64.821719pt;}
.h1{height:66.750000pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w3{width:607.353867pt;}
.w0{width:793.333333pt;}
.w1{width:793.701333pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.188474pt;}
.x1{left:52.000000pt;}
.xb{left:67.602400pt;}
.xa{left:91.970133pt;}
.xd{left:93.333333pt;}
.x11{left:94.488000pt;}
.x1a{left:101.129333pt;}
.x14{left:114.413333pt;}
.x1b{left:121.793333pt;}
.x16{left:127.697333pt;}
.x12{left:188.976000pt;}
.x3{left:204.226667pt;}
.x19{left:212.117333pt;}
.x4{left:224.360000pt;}
.x18{left:248.830667pt;}
.x5{left:254.000000pt;}
.x17{left:255.841333pt;}
.x15{left:294.420000pt;}
.x13{left:326.386667pt;}
.x10{left:397.040000pt;}
.x6{left:417.413333pt;}
.xf{left:511.066667pt;}
.x7{left:538.213333pt;}
.x9{left:558.213333pt;}
.x8{left:563.920000pt;}
.x2{left:618.426667pt;}
.xe{left:626.093333pt;}
}




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