
    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_c4ae0f65af48f11505573e63.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_562b49231168822bb740de83.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921000;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_276556d79b94ce05601ae5d4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2fd9eac1896a0fad91d48678.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_08206ac9fb7b6df77af52d9b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d58ae1bdb57e223efe557d0d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9d49f78e50b0d02bcdbcb123.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.870000;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_6b9370a2450aa2280de950e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_147b7f78c8825449b8975587.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2a82f242510bd8e87912e9eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.889000;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_89d79f4a459c62894a6f2bd0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9123c2b90134910c505729a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.427000;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_780133b9a7a5500d795b7c8e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e685f540f9a17db7fbb8655f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.704000;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_1b003f35d83201f406a1130a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b632aafb34669272ae4ece8a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.918000;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);}
.v3{vertical-align:-16.878000px;}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:40.440000px;}
.lsd{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.001689px;}
.ls18{letter-spacing:0.004200px;}
.ls4{letter-spacing:0.005023px;}
.ls1e{letter-spacing:2.984525px;}
.lsb{letter-spacing:2.986118px;}
.lsc{letter-spacing:2.988209px;}
.ls23{letter-spacing:2.988532px;}
.ls12{letter-spacing:6.517690px;}
.ls15{letter-spacing:16.602538px;}
.ls19{letter-spacing:18.751908px;}
.ls16{letter-spacing:19.604207px;}
.ls1a{letter-spacing:19.928481px;}
.lsf{letter-spacing:20.372525px;}
.lse{letter-spacing:22.214525px;}
.ls1b{letter-spacing:22.914042px;}
.ls20{letter-spacing:23.084525px;}
.ls14{letter-spacing:23.125690px;}
.ls1d{letter-spacing:24.014525px;}
.ls13{letter-spacing:24.475690px;}
.ls21{letter-spacing:28.633050px;}
.ls22{letter-spacing:29.994553px;}
.ls1c{letter-spacing:32.383860px;}
.ls11{letter-spacing:32.808538px;}
.ls1f{letter-spacing:33.494525px;}
.ls10{letter-spacing:35.804207px;}
.ls17{letter-spacing:48.222538px;}
.ls5{letter-spacing:80.700042px;}
.ls3{letter-spacing:96.451690px;}
.ls8{letter-spacing:107.181411px;}
.ls0{letter-spacing:109.100207px;}
.ls9{letter-spacing:113.625220px;}
.ls6{letter-spacing:116.064065px;}
.ls7{letter-spacing:124.366896px;}
.ls1{letter-spacing:126.608481px;}
.ls2{letter-spacing:128.162646px;}
.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;}
}
.ws3d{word-spacing:-38.937826px;}
.ws19{word-spacing:-16.605662px;}
.ws39{word-spacing:-6.623136px;}
.ws4a{word-spacing:-4.353113px;}
.ws2e{word-spacing:-3.156152px;}
.ws17{word-spacing:-3.036600px;}
.ws53{word-spacing:-2.677947px;}
.ws5f{word-spacing:-2.618171px;}
.ws90{word-spacing:-2.347991px;}
.ws29{word-spacing:-2.020415px;}
.ws12{word-spacing:-1.661762px;}
.wsb{word-spacing:-1.651611px;}
.ws65{word-spacing:-1.542210px;}
.ws6e{word-spacing:-1.362884px;}
.ws7e{word-spacing:-1.353323px;}
.wsa1{word-spacing:-1.343759px;}
.ws6{word-spacing:-1.167425px;}
.ws1c{word-spacing:-1.064006px;}
.ws66{word-spacing:-1.004230px;}
.ws82{word-spacing:-0.824903px;}
.ws7a{word-spacing:-0.765128px;}
.ws85{word-spacing:-0.387347px;}
.ws93{word-spacing:-0.148244px;}
.ws84{word-spacing:-0.071731px;}
.ws41{word-spacing:-0.041843px;}
.ws97{word-spacing:-0.035866px;}
.ws10{word-spacing:0.000000px;}
.ws42{word-spacing:0.011955px;}
.ws5d{word-spacing:0.071731px;}
.ws98{word-spacing:0.090859px;}
.ws52{word-spacing:0.191282px;}
.ws34{word-spacing:0.251058px;}
.ws21{word-spacing:0.729262px;}
.ws1f{word-spacing:0.789038px;}
.ws9f{word-spacing:0.808168px;}
.ws9c{word-spacing:0.903809px;}
.wsa2{word-spacing:0.999451px;}
.ws36{word-spacing:1.327018px;}
.ws22{word-spacing:1.386794px;}
.ws14{word-spacing:1.446570px;}
.ws60{word-spacing:1.745448px;}
.ws78{word-spacing:1.864999px;}
.ws56{word-spacing:1.924774px;}
.ws45{word-spacing:1.946298px;}
.ws76{word-spacing:2.104101px;}
.ws1d{word-spacing:2.462755px;}
.ws1e{word-spacing:2.522530px;}
.ws23{word-spacing:2.701857px;}
.wse{word-spacing:2.816633px;}
.ws68{word-spacing:2.821408px;}
.ws8f{word-spacing:2.825479px;}
.ws94{word-spacing:2.838565px;}
.ws9e{word-spacing:2.864454px;}
.ws7{word-spacing:3.028850px;}
.ws4c{word-spacing:3.237455px;}
.ws3{word-spacing:3.299613px;}
.ws40{word-spacing:3.316436px;}
.ws38{word-spacing:3.334820px;}
.ws6c{word-spacing:3.359389px;}
.ws8{word-spacing:3.405439px;}
.ws25{word-spacing:3.419164px;}
.ws79{word-spacing:3.478940px;}
.wsc{word-spacing:3.513036px;}
.ws46{word-spacing:3.524378px;}
.ws9d{word-spacing:3.533942px;}
.ws4e{word-spacing:3.598491px;}
.ws8a{word-spacing:3.677404px;}
.ws5e{word-spacing:3.718042px;}
.ws3b{word-spacing:3.777818px;}
.ws2d{word-spacing:3.801728px;}
.ws28{word-spacing:3.837594px;}
.wsa0{word-spacing:3.868687px;}
.ws13{word-spacing:3.897369px;}
.ws43{word-spacing:4.050405px;}
.ws54{word-spacing:4.076696px;}
.ws16{word-spacing:4.136472px;}
.ws5a{word-spacing:4.196247px;}
.ws35{word-spacing:4.315798px;}
.ws61{word-spacing:4.495125px;}
.wsa{word-spacing:4.535205px;}
.ws99{word-spacing:4.777278px;}
.ws71{word-spacing:4.863355px;}
.ws8e{word-spacing:4.872919px;}
.ws87{word-spacing:4.968560px;}
.ws95{word-spacing:5.064202px;}
.ws89{word-spacing:5.112022px;}
.ws69{word-spacing:5.331984px;}
.ws20{word-spacing:5.391759px;}
.ws75{word-spacing:5.451535px;}
.ws6f{word-spacing:5.511310px;}
.ws62{word-spacing:5.571086px;}
.ws37{word-spacing:5.630862px;}
.ws83{word-spacing:5.690637px;}
.ws77{word-spacing:5.810188px;}
.ws7d{word-spacing:5.819767px;}
.ws57{word-spacing:5.869964px;}
.ws32{word-spacing:5.929740px;}
.ws64{word-spacing:6.109066px;}
.ws5{word-spacing:6.149157px;}
.ws1a{word-spacing:6.150892px;}
.ws27{word-spacing:6.288393px;}
.ws8c{word-spacing:6.450999px;}
.ws4b{word-spacing:6.489255px;}
.ws70{word-spacing:6.584897px;}
.ws96{word-spacing:6.594461px;}
.ws50{word-spacing:6.647047px;}
.ws44{word-spacing:6.680538px;}
.ws3a{word-spacing:6.706822px;}
.ws81{word-spacing:6.728358px;}
.ws67{word-spacing:6.886149px;}
.ws18{word-spacing:7.005700px;}
.ws7c{word-spacing:7.065476px;}
.ws3c{word-spacing:7.125252px;}
.ws58{word-spacing:7.185027px;}
.ws31{word-spacing:7.304578px;}
.ws91{word-spacing:7.359590px;}
.ws6d{word-spacing:7.364354px;}
.ws8d{word-spacing:7.550873px;}
.ws1b{word-spacing:7.603456px;}
.ws4{word-spacing:7.763109px;}
.ws73{word-spacing:7.780412px;}
.ws63{word-spacing:7.782783px;}
.ws6b{word-spacing:8.081661px;}
.ws4f{word-spacing:8.141437px;}
.ws9b{word-spacing:8.363823px;}
.ws48{word-spacing:8.545541px;}
.ws80{word-spacing:8.593362px;}
.ws7f{word-spacing:8.641182px;}
.ws2c{word-spacing:8.739193px;}
.ws2b{word-spacing:8.798968px;}
.ws4d{word-spacing:8.978295px;}
.ws59{word-spacing:9.038071px;}
.ws86{word-spacing:9.081132px;}
.ws74{word-spacing:9.217398px;}
.ws30{word-spacing:9.635827px;}
.ws9a{word-spacing:9.894082px;}
.ws33{word-spacing:10.054256px;}
.ws9{word-spacing:10.076440px;}
.ws55{word-spacing:10.293358px;}
.ws5c{word-spacing:10.950890px;}
.ws15{word-spacing:11.429095px;}
.ws6a{word-spacing:11.787748px;}
.ws47{word-spacing:11.845163px;}
.ws49{word-spacing:12.371189px;}
.ws26{word-spacing:12.505056px;}
.ws72{word-spacing:12.801575px;}
.ws51{word-spacing:12.803934px;}
.ws2f{word-spacing:13.043036px;}
.wsa3{word-spacing:16.641569px;}
.ws88{word-spacing:18.315290px;}
.wsf{word-spacing:18.399053px;}
.ws8b{word-spacing:19.080419px;}
.ws3e{word-spacing:19.554241px;}
.ws2{word-spacing:21.280114px;}
.ws1{word-spacing:21.339889px;}
.ws5b{word-spacing:22.236523px;}
.ws24{word-spacing:22.357733px;}
.ws92{word-spacing:22.523503px;}
.ws7b{word-spacing:23.663208px;}
.ws3f{word-spacing:23.826554px;}
.ws2a{word-spacing:26.827469px;}
.ws0{word-spacing:38.631358px;}
.wsd{word-spacing:74.682241px;}
.ws11{word-spacing:80.625869px;}
._29{margin-left:-26.571157px;}
._28{margin-left:-24.699887px;}
._2c{margin-left:-23.307965px;}
._2a{margin-left:-19.665662px;}
._4{margin-left:-4.961375px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-2.109804px;}
._6{margin-left:-1.106434px;}
._3{width:1.673717px;}
._1{width:3.098772px;}
._26{width:4.253566px;}
._2d{width:7.970063px;}
._21{width:9.119849px;}
._16{width:10.464706px;}
._27{width:12.086644px;}
._2b{width:13.274923px;}
._15{width:14.501011px;}
._a{width:16.336397px;}
._f{width:18.084042px;}
._10{width:19.086074px;}
._1a{width:20.619303px;}
._18{width:21.972961px;}
._22{width:23.210591px;}
._12{width:24.346307px;}
._d{width:25.439946px;}
._9{width:26.958698px;}
._7{width:28.082765px;}
._c{width:29.086380px;}
._1f{width:30.341545px;}
._8{width:31.364467px;}
._25{width:33.312667px;}
._17{width:34.370970px;}
._1c{width:35.674168px;}
._1b{width:37.323725px;}
._e{width:38.530802px;}
._5{width:39.870325px;}
._1e{width:41.669606px;}
._1d{width:43.663441px;}
._24{width:44.999189px;}
._14{width:46.672672px;}
._20{width:49.691182px;}
._b{width:50.988587px;}
._23{width:52.829785px;}
._11{width:55.106366px;}
._13{width:81.247550px;}
._19{width:1138.530166px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:25.957500px;}
.y22{bottom:46.879500px;}
.y24{bottom:48.223500px;}
.y21{bottom:67.801500px;}
.y20{bottom:112.240500px;}
.y6e{bottom:118.804500px;}
.yae{bottom:119.635500px;}
.yd7{bottom:121.972500px;}
.y55{bottom:123.387000px;}
.y1f{bottom:126.945000px;}
.yd6{bottom:133.444500px;}
.y6d{bottom:136.738500px;}
.yad{bottom:137.569500px;}
.y1e{bottom:141.648000px;}
.y9e{bottom:150.763500px;}
.yd5{bottom:151.861500px;}
.y54{bottom:153.276000px;}
.y6c{bottom:154.671000px;}
.yac{bottom:155.502000px;}
.yd4{bottom:163.333500px;}
.y53{bottom:163.525500px;}
.y9d{bottom:168.696000px;}
.y6b{bottom:172.603500px;}
.yab{bottom:173.434500px;}
.yd3{bottom:181.749000px;}
.y9c{bottom:186.628500px;}
.y6a{bottom:190.536000px;}
.yaa{bottom:191.367000px;}
.yd2{bottom:193.221000px;}
.y52{bottom:199.413000px;}
.y9b{bottom:204.561000px;}
.y69{bottom:208.468500px;}
.ya9{bottom:209.299500px;}
.yd1{bottom:211.636500px;}
.y51{bottom:217.347000px;}
.y9a{bottom:222.493500px;}
.yd0{bottom:223.108500px;}
.y68{bottom:226.401000px;}
.ya8{bottom:227.233500px;}
.y50{bottom:235.279500px;}
.y99{bottom:240.426000px;}
.ycf{bottom:241.524000px;}
.y67{bottom:244.335000px;}
.ya7{bottom:245.166000px;}
.yce{bottom:252.996000px;}
.y4f{bottom:253.212000px;}
.y98{bottom:258.360000px;}
.y66{bottom:262.267500px;}
.ya6{bottom:263.098500px;}
.y4e{bottom:271.144500px;}
.ycd{bottom:271.413000px;}
.y97{bottom:276.292500px;}
.y65{bottom:280.200000px;}
.ya5{bottom:281.031000px;}
.ycc{bottom:282.885000px;}
.y4d{bottom:289.077000px;}
.y96{bottom:294.225000px;}
.ycb{bottom:297.081000px;}
.y64{bottom:298.132500px;}
.y4c{bottom:307.009500px;}
.y95{bottom:312.157500px;}
.ya4{bottom:313.762500px;}
.yca{bottom:315.498000px;}
.y63{bottom:316.065000px;}
.y4b{bottom:324.943500px;}
.yc9{bottom:326.968500px;}
.y94{bottom:330.090000px;}
.y62{bottom:333.997500px;}
.y4a{bottom:342.876000px;}
.yc8{bottom:345.385500px;}
.y93{bottom:348.022500px;}
.y61{bottom:351.931500px;}
.yc7{bottom:356.857500px;}
.y49{bottom:360.808500px;}
.y92{bottom:365.956500px;}
.ya3{bottom:369.055500px;}
.y60{bottom:369.864000px;}
.yc6{bottom:375.273000px;}
.y48{bottom:378.741000px;}
.y1d{bottom:379.192500px;}
.ya2{bottom:383.251500px;}
.y91{bottom:383.889000px;}
.yc5{bottom:386.745000px;}
.y5f{bottom:387.796500px;}
.y47{bottom:396.673500px;}
.ya1{bottom:397.449000px;}
.y1c{bottom:400.113000px;}
.y90{bottom:401.821500px;}
.yc4{bottom:405.160500px;}
.ya0{bottom:411.645000px;}
.y46{bottom:414.606000px;}
.yc3{bottom:416.632500px;}
.y8f{bottom:419.754000px;}
.y1b{bottom:421.035000px;}
.y9f{bottom:425.842500px;}
.yc2{bottom:430.830000px;}
.y45{bottom:432.540000px;}
.y8e{bottom:437.686500px;}
.y1a{bottom:441.957000px;}
.y5e{bottom:442.425000px;}
.yc1{bottom:449.245500px;}
.y44{bottom:450.472500px;}
.y8d{bottom:455.619000px;}
.y5d{bottom:456.622500px;}
.yc0{bottom:460.717500px;}
.y19{bottom:462.877500px;}
.y43{bottom:468.405000px;}
.y5c{bottom:470.818500px;}
.ybf{bottom:474.915000px;}
.y18{bottom:483.799500px;}
.y5b{bottom:485.016000px;}
.y8c{bottom:488.350500px;}
.ybe{bottom:489.111000px;}
.y42{bottom:495.988500px;}
.y5a{bottom:499.212000px;}
.y17{bottom:504.721500px;}
.ybd{bottom:507.526500px;}
.y59{bottom:513.409500px;}
.y16{bottom:525.643500px;}
.y58{bottom:527.605500px;}
.y8b{bottom:531.792000px;}
.ybc{bottom:532.303500px;}
.y41{bottom:534.832500px;}
.y57{bottom:541.803000px;}
.y15{bottom:546.564000px;}
.y8a{bottom:549.724500px;}
.y40{bottom:552.765000px;}
.y56{bottom:555.999000px;}
.y14{bottom:567.486000px;}
.y89{bottom:567.658500px;}
.ybb{bottom:575.745000px;}
.y3f{bottom:585.496500px;}
.y88{bottom:585.591000px;}
.y13{bottom:599.320500px;}
.y87{bottom:603.523500px;}
.yba{bottom:608.476500px;}
.y86{bottom:621.456000px;}
.y3e{bottom:628.938000px;}
.y85{bottom:639.388500px;}
.y12{bottom:642.762000px;}
.y3d{bottom:646.870500px;}
.yb9{bottom:651.916500px;}
.y84{bottom:657.321000px;}
.y11{bottom:659.200500px;}
.y3c{bottom:664.804500px;}
.yb8{bottom:669.850500px;}
.y83{bottom:675.255000px;}
.y10{bottom:675.639000px;}
.y3b{bottom:682.737000px;}
.yb7{bottom:687.783000px;}
.yf{bottom:692.077500px;}
.y82{bottom:693.187500px;}
.y3a{bottom:700.669500px;}
.yb6{bottom:705.715500px;}
.ye{bottom:708.514500px;}
.y81{bottom:711.120000px;}
.y39{bottom:718.602000px;}
.yb5{bottom:723.648000px;}
.yd{bottom:724.953000px;}
.y80{bottom:729.052500px;}
.y38{bottom:736.534500px;}
.yc{bottom:741.391500px;}
.yb4{bottom:741.580500px;}
.y7f{bottom:746.985000px;}
.y37{bottom:754.467000px;}
.yb{bottom:757.830000px;}
.y7e{bottom:764.917500px;}
.y36{bottom:772.401000px;}
.ya{bottom:774.268500px;}
.y7d{bottom:782.851500px;}
.y35{bottom:790.333500px;}
.y9{bottom:790.707000px;}
.yb3{bottom:796.209000px;}
.y7c{bottom:800.784000px;}
.y34{bottom:808.266000px;}
.yb2{bottom:810.406500px;}
.y7b{bottom:818.716500px;}
.yb1{bottom:824.602500px;}
.y33{bottom:826.198500px;}
.y7a{bottom:836.649000px;}
.yb0{bottom:838.800000px;}
.y8{bottom:840.483000px;}
.y32{bottom:844.131000px;}
.yaf{bottom:852.996000px;}
.y79{bottom:854.581500px;}
.y7{bottom:861.405000px;}
.y31{bottom:862.063500px;}
.y78{bottom:872.515500px;}
.y30{bottom:879.997500px;}
.y6{bottom:894.795000px;}
.y2f{bottom:897.930000px;}
.y77{bottom:900.099000px;}
.ye5{bottom:901.521000px;}
.y5{bottom:912.729000px;}
.ye4{bottom:915.717000px;}
.y2e{bottom:915.862500px;}
.y4{bottom:930.661500px;}
.y2d{bottom:933.795000px;}
.ye3{bottom:934.132500px;}
.y76{bottom:938.943000px;}
.ye2{bottom:945.604500px;}
.y2c{bottom:951.727500px;}
.y75{bottom:956.875500px;}
.ye1{bottom:959.802000px;}
.y3{bottom:963.538500px;}
.y2b{bottom:969.661500px;}
.y74{bottom:974.808000px;}
.ye0{bottom:978.217500px;}
.y2a{bottom:987.594000px;}
.ydf{bottom:989.689500px;}
.y73{bottom:992.740500px;}
.yde{bottom:1003.887000px;}
.y29{bottom:1005.526500px;}
.y72{bottom:1010.673000px;}
.y2{bottom:1011.358500px;}
.ydd{bottom:1022.302500px;}
.y28{bottom:1023.459000px;}
.y71{bottom:1028.607000px;}
.ydc{bottom:1033.774500px;}
.y27{bottom:1041.391500px;}
.y1{bottom:1044.235500px;}
.y70{bottom:1046.539500px;}
.ydb{bottom:1047.972000px;}
.y26{bottom:1059.324000px;}
.y6f{bottom:1064.472000px;}
.yda{bottom:1066.387500px;}
.yd9{bottom:1077.859500px;}
.y25{bottom:1092.055500px;}
.yd8{bottom:1096.275000px;}
.he{height:24.245146px;}
.h7{height:25.285248px;}
.hd{height:35.865450px;}
.h8{height:36.744307px;}
.h5{height:40.348800px;}
.hb{height:41.842920px;}
.h3{height:42.799330px;}
.h6{height:44.831700px;}
.h9{height:49.975733px;}
.ha{height:49.981733px;}
.h2{height:50.211840px;}
.h4{height:51.189174px;}
.h1{height:72.304680px;}
.hc{height:85.271700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:108.000000px;}
.x4{left:124.477500px;}
.x1{left:129.340500px;}
.x13{left:130.416000px;}
.x1c{left:136.851000px;}
.xc{left:145.360500px;}
.xb{left:166.095000px;}
.xe{left:169.695000px;}
.xf{left:193.080000px;}
.x11{left:202.792500px;}
.xa{left:210.507000px;}
.x2{left:218.785500px;}
.x7{left:243.163500px;}
.x15{left:253.257000px;}
.x10{left:297.190500px;}
.x19{left:314.854500px;}
.x1a{left:318.748500px;}
.x1b{left:379.917000px;}
.x6{left:387.298500px;}
.x8{left:388.908000px;}
.x3{left:392.416500px;}
.xd{left:397.018500px;}
.x5{left:405.501000px;}
.x16{left:411.726000px;}
.x17{left:454.119000px;}
.x18{left:475.095000px;}
.x9{left:533.118000px;}
.x12{left:769.486500px;}
@media print{
.v3{vertical-align:-15.002667pt;}
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:35.946667pt;}
.lsd{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001501pt;}
.ls18{letter-spacing:0.003733pt;}
.ls4{letter-spacing:0.004465pt;}
.ls1e{letter-spacing:2.652911pt;}
.lsb{letter-spacing:2.654327pt;}
.lsc{letter-spacing:2.656186pt;}
.ls23{letter-spacing:2.656473pt;}
.ls12{letter-spacing:5.793503pt;}
.ls15{letter-spacing:14.757812pt;}
.ls19{letter-spacing:16.668363pt;}
.ls16{letter-spacing:17.425962pt;}
.ls1a{letter-spacing:17.714205pt;}
.lsf{letter-spacing:18.108911pt;}
.lse{letter-spacing:19.746245pt;}
.ls1b{letter-spacing:20.368037pt;}
.ls20{letter-spacing:20.519578pt;}
.ls14{letter-spacing:20.556169pt;}
.ls1d{letter-spacing:21.346245pt;}
.ls13{letter-spacing:21.756169pt;}
.ls21{letter-spacing:25.451600pt;}
.ls22{letter-spacing:26.661825pt;}
.ls1c{letter-spacing:28.785653pt;}
.ls11{letter-spacing:29.163145pt;}
.ls1f{letter-spacing:29.772911pt;}
.ls10{letter-spacing:31.825962pt;}
.ls17{letter-spacing:42.864479pt;}
.ls5{letter-spacing:71.733371pt;}
.ls3{letter-spacing:85.734836pt;}
.ls8{letter-spacing:95.272365pt;}
.ls0{letter-spacing:96.977962pt;}
.ls9{letter-spacing:101.000196pt;}
.ls6{letter-spacing:103.168058pt;}
.ls7{letter-spacing:110.548352pt;}
.ls1{letter-spacing:112.540872pt;}
.ls2{letter-spacing:113.922352pt;}
.ws3d{word-spacing:-34.611401pt;}
.ws19{word-spacing:-14.760588pt;}
.ws39{word-spacing:-5.887232pt;}
.ws4a{word-spacing:-3.869434pt;}
.ws2e{word-spacing:-2.805468pt;}
.ws17{word-spacing:-2.699200pt;}
.ws53{word-spacing:-2.380397pt;}
.ws5f{word-spacing:-2.327263pt;}
.ws90{word-spacing:-2.087104pt;}
.ws29{word-spacing:-1.795925pt;}
.ws12{word-spacing:-1.477121pt;}
.wsb{word-spacing:-1.468099pt;}
.ws65{word-spacing:-1.370854pt;}
.ws6e{word-spacing:-1.211452pt;}
.ws7e{word-spacing:-1.202954pt;}
.wsa1{word-spacing:-1.194452pt;}
.ws6{word-spacing:-1.037711pt;}
.ws1c{word-spacing:-0.945783pt;}
.ws66{word-spacing:-0.892649pt;}
.ws82{word-spacing:-0.733247pt;}
.ws7a{word-spacing:-0.680113pt;}
.ws85{word-spacing:-0.344308pt;}
.ws93{word-spacing:-0.131772pt;}
.ws84{word-spacing:-0.063761pt;}
.ws41{word-spacing:-0.037194pt;}
.ws97{word-spacing:-0.031881pt;}
.ws10{word-spacing:0.000000pt;}
.ws42{word-spacing:0.010627pt;}
.ws5d{word-spacing:0.063761pt;}
.ws98{word-spacing:0.080764pt;}
.ws52{word-spacing:0.170028pt;}
.ws34{word-spacing:0.223162pt;}
.ws21{word-spacing:0.648233pt;}
.ws1f{word-spacing:0.701367pt;}
.ws9f{word-spacing:0.718372pt;}
.ws9c{word-spacing:0.803386pt;}
.wsa2{word-spacing:0.888400pt;}
.ws36{word-spacing:1.179572pt;}
.ws22{word-spacing:1.232706pt;}
.ws14{word-spacing:1.285840pt;}
.ws60{word-spacing:1.551509pt;}
.ws78{word-spacing:1.657777pt;}
.ws56{word-spacing:1.710911pt;}
.ws45{word-spacing:1.730043pt;}
.ws76{word-spacing:1.870312pt;}
.ws1d{word-spacing:2.189115pt;}
.ws1e{word-spacing:2.242249pt;}
.ws23{word-spacing:2.401651pt;}
.wse{word-spacing:2.503674pt;}
.ws68{word-spacing:2.507919pt;}
.ws8f{word-spacing:2.511537pt;}
.ws94{word-spacing:2.523168pt;}
.ws9e{word-spacing:2.546181pt;}
.ws7{word-spacing:2.692311pt;}
.ws4c{word-spacing:2.877737pt;}
.ws3{word-spacing:2.932989pt;}
.ws40{word-spacing:2.947943pt;}
.ws38{word-spacing:2.964285pt;}
.ws6c{word-spacing:2.986123pt;}
.ws8{word-spacing:3.027057pt;}
.ws25{word-spacing:3.039257pt;}
.ws79{word-spacing:3.092391pt;}
.wsc{word-spacing:3.122698pt;}
.ws46{word-spacing:3.132781pt;}
.ws9d{word-spacing:3.141282pt;}
.ws4e{word-spacing:3.198659pt;}
.ws8a{word-spacing:3.268804pt;}
.ws5e{word-spacing:3.304927pt;}
.ws3b{word-spacing:3.358060pt;}
.ws2d{word-spacing:3.379314pt;}
.ws28{word-spacing:3.411194pt;}
.wsa0{word-spacing:3.438832pt;}
.ws13{word-spacing:3.464328pt;}
.ws43{word-spacing:3.600360pt;}
.ws54{word-spacing:3.623730pt;}
.ws16{word-spacing:3.676864pt;}
.ws5a{word-spacing:3.729997pt;}
.ws35{word-spacing:3.836265pt;}
.ws61{word-spacing:3.995667pt;}
.wsa{word-spacing:4.031293pt;}
.ws99{word-spacing:4.246469pt;}
.ws71{word-spacing:4.322982pt;}
.ws8e{word-spacing:4.331484pt;}
.ws87{word-spacing:4.416498pt;}
.ws95{word-spacing:4.501512pt;}
.ws89{word-spacing:4.544020pt;}
.ws69{word-spacing:4.739541pt;}
.ws20{word-spacing:4.792675pt;}
.ws75{word-spacing:4.845809pt;}
.ws6f{word-spacing:4.898943pt;}
.ws62{word-spacing:4.952076pt;}
.ws37{word-spacing:5.005210pt;}
.ws83{word-spacing:5.058344pt;}
.ws77{word-spacing:5.164612pt;}
.ws7d{word-spacing:5.173126pt;}
.ws57{word-spacing:5.217746pt;}
.ws32{word-spacing:5.270880pt;}
.ws64{word-spacing:5.430281pt;}
.ws5{word-spacing:5.465917pt;}
.ws1a{word-spacing:5.467459pt;}
.ws27{word-spacing:5.589683pt;}
.ws8c{word-spacing:5.734221pt;}
.ws4b{word-spacing:5.768227pt;}
.ws70{word-spacing:5.853241pt;}
.ws96{word-spacing:5.861743pt;}
.ws50{word-spacing:5.908486pt;}
.ws44{word-spacing:5.938256pt;}
.ws3a{word-spacing:5.961620pt;}
.ws81{word-spacing:5.980763pt;}
.ws67{word-spacing:6.121021pt;}
.ws18{word-spacing:6.227289pt;}
.ws7c{word-spacing:6.280423pt;}
.ws3c{word-spacing:6.333557pt;}
.ws58{word-spacing:6.386691pt;}
.ws31{word-spacing:6.492959pt;}
.ws91{word-spacing:6.541858pt;}
.ws6d{word-spacing:6.546092pt;}
.ws8d{word-spacing:6.711887pt;}
.ws1b{word-spacing:6.758628pt;}
.ws4{word-spacing:6.900541pt;}
.ws73{word-spacing:6.915921pt;}
.ws63{word-spacing:6.918029pt;}
.ws6b{word-spacing:7.183699pt;}
.ws4f{word-spacing:7.236833pt;}
.ws9b{word-spacing:7.434509pt;}
.ws48{word-spacing:7.596037pt;}
.ws80{word-spacing:7.638544pt;}
.ws7f{word-spacing:7.681051pt;}
.ws2c{word-spacing:7.768171pt;}
.ws2b{word-spacing:7.821305pt;}
.ws4d{word-spacing:7.980707pt;}
.ws59{word-spacing:8.033841pt;}
.ws86{word-spacing:8.072117pt;}
.ws74{word-spacing:8.193242pt;}
.ws30{word-spacing:8.565179pt;}
.ws9a{word-spacing:8.794740pt;}
.ws33{word-spacing:8.937116pt;}
.ws9{word-spacing:8.956836pt;}
.ws55{word-spacing:9.149652pt;}
.ws5c{word-spacing:9.734124pt;}
.ws15{word-spacing:10.159195pt;}
.ws6a{word-spacing:10.477999pt;}
.ws47{word-spacing:10.529033pt;}
.ws49{word-spacing:10.996613pt;}
.ws26{word-spacing:11.115605pt;}
.ws72{word-spacing:11.379177pt;}
.ws51{word-spacing:11.381274pt;}
.ws2f{word-spacing:11.593810pt;}
.wsa3{word-spacing:14.792506pt;}
.ws88{word-spacing:16.280258pt;}
.wsf{word-spacing:16.354714pt;}
.ws8b{word-spacing:16.960373pt;}
.ws3e{word-spacing:17.381548pt;}
.ws2{word-spacing:18.915657pt;}
.ws1{word-spacing:18.968790pt;}
.ws5b{word-spacing:19.765798pt;}
.ws24{word-spacing:19.873541pt;}
.ws92{word-spacing:20.020891pt;}
.ws7b{word-spacing:21.033963pt;}
.ws3f{word-spacing:21.179159pt;}
.ws2a{word-spacing:23.846639pt;}
.ws0{word-spacing:34.338985pt;}
.wsd{word-spacing:66.384214pt;}
.ws11{word-spacing:71.667439pt;}
._29{margin-left:-23.618806pt;}
._28{margin-left:-21.955455pt;}
._2c{margin-left:-20.718191pt;}
._2a{margin-left:-17.480588pt;}
._4{margin-left:-4.410111pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.875381pt;}
._6{margin-left:-0.983497pt;}
._3{width:1.487748pt;}
._1{width:2.754464pt;}
._26{width:3.780947pt;}
._2d{width:7.084500pt;}
._21{width:8.106532pt;}
._16{width:9.301961pt;}
._27{width:10.743684pt;}
._2b{width:11.799932pt;}
._15{width:12.889788pt;}
._a{width:14.521242pt;}
._f{width:16.074704pt;}
._10{width:16.965399pt;}
._1a{width:18.328269pt;}
._18{width:19.531521pt;}
._22{width:20.631636pt;}
._12{width:21.641162pt;}
._d{width:22.613285pt;}
._9{width:23.963287pt;}
._7{width:24.962458pt;}
._c{width:25.854560pt;}
._1f{width:26.970262pt;}
._8{width:27.879526pt;}
._25{width:29.611260pt;}
._17{width:30.551973pt;}
._1c{width:31.710371pt;}
._1b{width:33.176644pt;}
._e{width:34.249602pt;}
._5{width:35.440289pt;}
._1e{width:37.039650pt;}
._1d{width:38.811948pt;}
._24{width:39.999279pt;}
._14{width:41.486820pt;}
._20{width:44.169939pt;}
._b{width:45.323188pt;}
._23{width:46.959809pt;}
._11{width:48.983437pt;}
._13{width:72.220045pt;}
._19{width:1012.026814pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:23.073333pt;}
.y22{bottom:41.670667pt;}
.y24{bottom:42.865333pt;}
.y21{bottom:60.268000pt;}
.y20{bottom:99.769333pt;}
.y6e{bottom:105.604000pt;}
.yae{bottom:106.342667pt;}
.yd7{bottom:108.420000pt;}
.y55{bottom:109.677333pt;}
.y1f{bottom:112.840000pt;}
.yd6{bottom:118.617333pt;}
.y6d{bottom:121.545333pt;}
.yad{bottom:122.284000pt;}
.y1e{bottom:125.909333pt;}
.y9e{bottom:134.012000pt;}
.yd5{bottom:134.988000pt;}
.y54{bottom:136.245333pt;}
.y6c{bottom:137.485333pt;}
.yac{bottom:138.224000pt;}
.yd4{bottom:145.185333pt;}
.y53{bottom:145.356000pt;}
.y9d{bottom:149.952000pt;}
.y6b{bottom:153.425333pt;}
.yab{bottom:154.164000pt;}
.yd3{bottom:161.554667pt;}
.y9c{bottom:165.892000pt;}
.y6a{bottom:169.365333pt;}
.yaa{bottom:170.104000pt;}
.yd2{bottom:171.752000pt;}
.y52{bottom:177.256000pt;}
.y9b{bottom:181.832000pt;}
.y69{bottom:185.305333pt;}
.ya9{bottom:186.044000pt;}
.yd1{bottom:188.121333pt;}
.y51{bottom:193.197333pt;}
.y9a{bottom:197.772000pt;}
.yd0{bottom:198.318667pt;}
.y68{bottom:201.245333pt;}
.ya8{bottom:201.985333pt;}
.y50{bottom:209.137333pt;}
.y99{bottom:213.712000pt;}
.ycf{bottom:214.688000pt;}
.y67{bottom:217.186667pt;}
.ya7{bottom:217.925333pt;}
.yce{bottom:224.885333pt;}
.y4f{bottom:225.077333pt;}
.y98{bottom:229.653333pt;}
.y66{bottom:233.126667pt;}
.ya6{bottom:233.865333pt;}
.y4e{bottom:241.017333pt;}
.ycd{bottom:241.256000pt;}
.y97{bottom:245.593333pt;}
.y65{bottom:249.066667pt;}
.ya5{bottom:249.805333pt;}
.ycc{bottom:251.453333pt;}
.y4d{bottom:256.957333pt;}
.y96{bottom:261.533333pt;}
.ycb{bottom:264.072000pt;}
.y64{bottom:265.006667pt;}
.y4c{bottom:272.897333pt;}
.y95{bottom:277.473333pt;}
.ya4{bottom:278.900000pt;}
.yca{bottom:280.442667pt;}
.y63{bottom:280.946667pt;}
.y4b{bottom:288.838667pt;}
.yc9{bottom:290.638667pt;}
.y94{bottom:293.413333pt;}
.y62{bottom:296.886667pt;}
.y4a{bottom:304.778667pt;}
.yc8{bottom:307.009333pt;}
.y93{bottom:309.353333pt;}
.y61{bottom:312.828000pt;}
.yc7{bottom:317.206667pt;}
.y49{bottom:320.718667pt;}
.y92{bottom:325.294667pt;}
.ya3{bottom:328.049333pt;}
.y60{bottom:328.768000pt;}
.yc6{bottom:333.576000pt;}
.y48{bottom:336.658667pt;}
.y1d{bottom:337.060000pt;}
.ya2{bottom:340.668000pt;}
.y91{bottom:341.234667pt;}
.yc5{bottom:343.773333pt;}
.y5f{bottom:344.708000pt;}
.y47{bottom:352.598667pt;}
.ya1{bottom:353.288000pt;}
.y1c{bottom:355.656000pt;}
.y90{bottom:357.174667pt;}
.yc4{bottom:360.142667pt;}
.ya0{bottom:365.906667pt;}
.y46{bottom:368.538667pt;}
.yc3{bottom:370.340000pt;}
.y8f{bottom:373.114667pt;}
.y1b{bottom:374.253333pt;}
.y9f{bottom:378.526667pt;}
.yc2{bottom:382.960000pt;}
.y45{bottom:384.480000pt;}
.y8e{bottom:389.054667pt;}
.y1a{bottom:392.850667pt;}
.y5e{bottom:393.266667pt;}
.yc1{bottom:399.329333pt;}
.y44{bottom:400.420000pt;}
.y8d{bottom:404.994667pt;}
.y5d{bottom:405.886667pt;}
.yc0{bottom:409.526667pt;}
.y19{bottom:411.446667pt;}
.y43{bottom:416.360000pt;}
.y5c{bottom:418.505333pt;}
.ybf{bottom:422.146667pt;}
.y18{bottom:430.044000pt;}
.y5b{bottom:431.125333pt;}
.y8c{bottom:434.089333pt;}
.ybe{bottom:434.765333pt;}
.y42{bottom:440.878667pt;}
.y5a{bottom:443.744000pt;}
.y17{bottom:448.641333pt;}
.ybd{bottom:451.134667pt;}
.y59{bottom:456.364000pt;}
.y16{bottom:467.238667pt;}
.y58{bottom:468.982667pt;}
.y8b{bottom:472.704000pt;}
.ybc{bottom:473.158667pt;}
.y41{bottom:475.406667pt;}
.y57{bottom:481.602667pt;}
.y15{bottom:485.834667pt;}
.y8a{bottom:488.644000pt;}
.y40{bottom:491.346667pt;}
.y56{bottom:494.221333pt;}
.y14{bottom:504.432000pt;}
.y89{bottom:504.585333pt;}
.ybb{bottom:511.773333pt;}
.y3f{bottom:520.441333pt;}
.y88{bottom:520.525333pt;}
.y13{bottom:532.729333pt;}
.y87{bottom:536.465333pt;}
.yba{bottom:540.868000pt;}
.y86{bottom:552.405333pt;}
.y3e{bottom:559.056000pt;}
.y85{bottom:568.345333pt;}
.y12{bottom:571.344000pt;}
.y3d{bottom:574.996000pt;}
.yb9{bottom:579.481333pt;}
.y84{bottom:584.285333pt;}
.y11{bottom:585.956000pt;}
.y3c{bottom:590.937333pt;}
.yb8{bottom:595.422667pt;}
.y83{bottom:600.226667pt;}
.y10{bottom:600.568000pt;}
.y3b{bottom:606.877333pt;}
.yb7{bottom:611.362667pt;}
.yf{bottom:615.180000pt;}
.y82{bottom:616.166667pt;}
.y3a{bottom:622.817333pt;}
.yb6{bottom:627.302667pt;}
.ye{bottom:629.790667pt;}
.y81{bottom:632.106667pt;}
.y39{bottom:638.757333pt;}
.yb5{bottom:643.242667pt;}
.yd{bottom:644.402667pt;}
.y80{bottom:648.046667pt;}
.y38{bottom:654.697333pt;}
.yc{bottom:659.014667pt;}
.yb4{bottom:659.182667pt;}
.y7f{bottom:663.986667pt;}
.y37{bottom:670.637333pt;}
.yb{bottom:673.626667pt;}
.y7e{bottom:679.926667pt;}
.y36{bottom:686.578667pt;}
.ya{bottom:688.238667pt;}
.y7d{bottom:695.868000pt;}
.y35{bottom:702.518667pt;}
.y9{bottom:702.850667pt;}
.yb3{bottom:707.741333pt;}
.y7c{bottom:711.808000pt;}
.y34{bottom:718.458667pt;}
.yb2{bottom:720.361333pt;}
.y7b{bottom:727.748000pt;}
.yb1{bottom:732.980000pt;}
.y33{bottom:734.398667pt;}
.y7a{bottom:743.688000pt;}
.yb0{bottom:745.600000pt;}
.y8{bottom:747.096000pt;}
.y32{bottom:750.338667pt;}
.yaf{bottom:758.218667pt;}
.y79{bottom:759.628000pt;}
.y7{bottom:765.693333pt;}
.y31{bottom:766.278667pt;}
.y78{bottom:775.569333pt;}
.y30{bottom:782.220000pt;}
.y6{bottom:795.373333pt;}
.y2f{bottom:798.160000pt;}
.y77{bottom:800.088000pt;}
.ye5{bottom:801.352000pt;}
.y5{bottom:811.314667pt;}
.ye4{bottom:813.970667pt;}
.y2e{bottom:814.100000pt;}
.y4{bottom:827.254667pt;}
.y2d{bottom:830.040000pt;}
.ye3{bottom:830.340000pt;}
.y76{bottom:834.616000pt;}
.ye2{bottom:840.537333pt;}
.y2c{bottom:845.980000pt;}
.y75{bottom:850.556000pt;}
.ye1{bottom:853.157333pt;}
.y3{bottom:856.478667pt;}
.y2b{bottom:861.921333pt;}
.y74{bottom:866.496000pt;}
.ye0{bottom:869.526667pt;}
.y2a{bottom:877.861333pt;}
.ydf{bottom:879.724000pt;}
.y73{bottom:882.436000pt;}
.yde{bottom:892.344000pt;}
.y29{bottom:893.801333pt;}
.y72{bottom:898.376000pt;}
.y2{bottom:898.985333pt;}
.ydd{bottom:908.713333pt;}
.y28{bottom:909.741333pt;}
.y71{bottom:914.317333pt;}
.ydc{bottom:918.910667pt;}
.y27{bottom:925.681333pt;}
.y1{bottom:928.209333pt;}
.y70{bottom:930.257333pt;}
.ydb{bottom:931.530667pt;}
.y26{bottom:941.621333pt;}
.y6f{bottom:946.197333pt;}
.yda{bottom:947.900000pt;}
.yd9{bottom:958.097333pt;}
.y25{bottom:970.716000pt;}
.yd8{bottom:974.466667pt;}
.he{height:21.551241pt;}
.h7{height:22.475776pt;}
.hd{height:31.880400pt;}
.h8{height:32.661606pt;}
.h5{height:35.865600pt;}
.hb{height:37.193707pt;}
.h3{height:38.043849pt;}
.h6{height:39.850400pt;}
.h9{height:44.422874pt;}
.ha{height:44.428207pt;}
.h2{height:44.632747pt;}
.h4{height:45.501488pt;}
.h1{height:64.270827pt;}
.hc{height:75.797067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:96.000000pt;}
.x4{left:110.646667pt;}
.x1{left:114.969333pt;}
.x13{left:115.925333pt;}
.x1c{left:121.645333pt;}
.xc{left:129.209333pt;}
.xb{left:147.640000pt;}
.xe{left:150.840000pt;}
.xf{left:171.626667pt;}
.x11{left:180.260000pt;}
.xa{left:187.117333pt;}
.x2{left:194.476000pt;}
.x7{left:216.145333pt;}
.x15{left:225.117333pt;}
.x10{left:264.169333pt;}
.x19{left:279.870667pt;}
.x1a{left:283.332000pt;}
.x1b{left:337.704000pt;}
.x6{left:344.265333pt;}
.x8{left:345.696000pt;}
.x3{left:348.814667pt;}
.xd{left:352.905333pt;}
.x5{left:360.445333pt;}
.x16{left:365.978667pt;}
.x17{left:403.661333pt;}
.x18{left:422.306667pt;}
.x9{left:473.882667pt;}
.x12{left:683.988000pt;}
}




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