
    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_b52e2cdcf6f324b0e1e47677.woff')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_b008d206fb6810876649166f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.503000;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_b36af0f4ac54a1c470885802.woff')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_233110b54d0b1274af8f6967.woff')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_780cfd8b58fa81303167ca08.woff')format("woff");}.ff5{font-family:ff5;line-height:0.621000;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_1eedc7a443faafdbd67b7e8a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_889b27bc5fc211e3da395c7e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9eb08b84622cfa4582a9a688.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4dedb48980c463d0cfe11a7e.woff')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_4822c000744f9042a36c1160.woff')format("woff");}.ffa{font-family:ffa;line-height:0.482000;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_ab3031153b76a5faad986175.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_fac1b2965e12097c49fe5ebc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.236000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:14.822316px;}
.ls1{letter-spacing:19.922316px;}
.ls2{letter-spacing:21.413468px;}
.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;}
}
.ws41{word-spacing:-29.881822px;}
.ws3d{word-spacing:-16.551864px;}
.ws44{word-spacing:-15.894332px;}
.ws43{word-spacing:-15.655230px;}
.wsb2{word-spacing:-15.416127px;}
.ws33{word-spacing:-15.356352px;}
.wsa8{word-spacing:-15.296576px;}
.ws17{word-spacing:-15.087372px;}
.ws18{word-spacing:-15.072361px;}
.ws19{word-spacing:-15.057474px;}
.ws25{word-spacing:-14.818371px;}
.ws9a{word-spacing:-14.698820px;}
.ws2f{word-spacing:-14.579269px;}
.ws84{word-spacing:-14.519493px;}
.ws78{word-spacing:-14.459718px;}
.wsbc{word-spacing:-14.399942px;}
.ws7f{word-spacing:-14.340166px;}
.ws37{word-spacing:-14.280391px;}
.ws4c{word-spacing:-14.160840px;}
.wsac{word-spacing:-14.084421px;}
.wsc4{word-spacing:-14.030623px;}
.wsa5{word-spacing:-13.802186px;}
.wsb4{word-spacing:-13.622859px;}
.ws8c{word-spacing:-13.385042px;}
.ws64{word-spacing:-13.383757px;}
.ws77{word-spacing:-13.264206px;}
.ws9b{word-spacing:-13.084879px;}
.wsb{word-spacing:-13.008453px;}
.ws9{word-spacing:-12.954655px;}
.wsae{word-spacing:-12.905552px;}
.ws23{word-spacing:-12.793260px;}
.ws2b{word-spacing:-12.786001px;}
.wsa0{word-spacing:-12.606674px;}
.wsb1{word-spacing:-12.427347px;}
.wsb3{word-spacing:-12.367572px;}
.ws61{word-spacing:-12.307796px;}
.wsb0{word-spacing:-12.248020px;}
.ws7b{word-spacing:-11.949142px;}
.wsc3{word-spacing:-11.932485px;}
.ws62{word-spacing:-11.889367px;}
.wsc5{word-spacing:-11.824888px;}
.ws4b{word-spacing:-11.769816px;}
.ws4f{word-spacing:-11.710040px;}
.wsad{word-spacing:-11.530713px;}
.ws83{word-spacing:-11.470938px;}
.wsb5{word-spacing:-11.411162px;}
.ws6{word-spacing:-11.394501px;}
.ws1e{word-spacing:-11.351386px;}
.ws8b{word-spacing:-11.286904px;}
.wsb7{word-spacing:-11.231835px;}
.wsbb{word-spacing:-11.179308px;}
.ws8d{word-spacing:-11.125509px;}
.wsa3{word-spacing:-11.112284px;}
.ws8{word-spacing:-11.071711px;}
.ws90{word-spacing:-11.052508px;}
.ws26{word-spacing:-10.992733px;}
.ws92{word-spacing:-10.932957px;}
.ws56{word-spacing:-10.873182px;}
.ws28{word-spacing:-10.753630px;}
.wsc1{word-spacing:-10.748920px;}
.wsa2{word-spacing:-10.514528px;}
.ws2e{word-spacing:-10.454752px;}
.ws30{word-spacing:-10.335201px;}
.wsc0{word-spacing:-10.210936px;}
.ws7e{word-spacing:-10.155874px;}
.ws39{word-spacing:-10.096099px;}
.ws60{word-spacing:-10.036323px;}
.ws2{word-spacing:-9.976548px;}
.ws1a{word-spacing:-9.962282px;}
.ws1b{word-spacing:-9.916772px;}
.ws10{word-spacing:-9.888146px;}
.ws74{word-spacing:-9.856996px;}
.ws72{word-spacing:-9.831291px;}
.wsa6{word-spacing:-9.737445px;}
.ws35{word-spacing:-9.438567px;}
.ws94{word-spacing:-9.378792px;}
.ws38{word-spacing:-9.259240px;}
.ws3{word-spacing:-9.242565px;}
.wsc{word-spacing:-9.188767px;}
.ws2c{word-spacing:-9.079914px;}
.ws2a{word-spacing:-9.020138px;}
.ws88{word-spacing:-8.704581px;}
.ws1d{word-spacing:-8.661484px;}
.ws95{word-spacing:-8.601709px;}
.ws4d{word-spacing:-8.422382px;}
.ws32{word-spacing:-8.362606px;}
.ws14{word-spacing:-8.327992px;}
.ws9e{word-spacing:-8.302831px;}
.ws54{word-spacing:-8.243055px;}
.ws63{word-spacing:-8.183280px;}
.ws4a{word-spacing:-8.003953px;}
.ws8f{word-spacing:-7.884402px;}
.ws52{word-spacing:-7.824626px;}
.wse{word-spacing:-7.736210px;}
.ws1f{word-spacing:-7.705075px;}
.ws21{word-spacing:-7.645299px;}
.ws29{word-spacing:-7.585524px;}
.ws9f{word-spacing:-7.525748px;}
.wsb8{word-spacing:-7.465972px;}
.ws3b{word-spacing:-7.406197px;}
.ws7a{word-spacing:-7.346421px;}
.ws70{word-spacing:-7.286646px;}
.ws50{word-spacing:-7.226870px;}
.ws82{word-spacing:-7.107319px;}
.ws3e{word-spacing:-6.927992px;}
.ws49{word-spacing:-6.868216px;}
.wsa9{word-spacing:-6.808441px;}
.ws11{word-spacing:-6.767839px;}
.wsa{word-spacing:-6.714040px;}
.ws4e{word-spacing:-6.629114px;}
.ws99{word-spacing:-6.569338px;}
.ws13{word-spacing:-6.391250px;}
.wsb9{word-spacing:-6.210685px;}
.wsc7{word-spacing:-6.176056px;}
.ws7{word-spacing:-6.122258px;}
.ws34{word-spacing:-6.031358px;}
.ws51{word-spacing:-5.911807px;}
.ws97{word-spacing:-5.852031px;}
.ws76{word-spacing:-5.732480px;}
.ws8a{word-spacing:-5.691871px;}
.wsa7{word-spacing:-5.672704px;}
.ws2d{word-spacing:-5.553153px;}
.ws3a{word-spacing:-5.493378px;}
.wsaa{word-spacing:-4.835846px;}
.ws91{word-spacing:-4.716295px;}
.ws31{word-spacing:-4.656519px;}
.wsb6{word-spacing:-4.536968px;}
.ws53{word-spacing:-4.357641px;}
.wsd{word-spacing:-4.346911px;}
.ws45{word-spacing:-4.238090px;}
.wsa1{word-spacing:-4.178314px;}
.wsbd{word-spacing:-4.131717px;}
.ws93{word-spacing:-3.879436px;}
.wsab{word-spacing:-3.819661px;}
.ws9c{word-spacing:-3.759885px;}
.ws36{word-spacing:-3.700110px;}
.ws71{word-spacing:-3.580558px;}
.wsc2{word-spacing:-3.486136px;}
.ws7d{word-spacing:-3.221905px;}
.wsf{word-spacing:-3.001951px;}
.wsaf{word-spacing:-2.982802px;}
.wsba{word-spacing:-2.863251px;}
.ws3c{word-spacing:-2.803476px;}
.ws3f{word-spacing:-2.743700px;}
.ws7c{word-spacing:-2.624149px;}
.ws40{word-spacing:-2.504598px;}
.wsc8{word-spacing:-2.356370px;}
.ws96{word-spacing:-2.026393px;}
.ws22{word-spacing:-1.979781px;}
.ws89{word-spacing:-1.872184px;}
.ws80{word-spacing:-1.548188px;}
.ws15{word-spacing:-1.387999px;}
.ws20{word-spacing:-1.129759px;}
.ws55{word-spacing:-1.069983px;}
.ws12{word-spacing:-1.065208px;}
.ws85{word-spacing:-0.950432px;}
.ws86{word-spacing:-0.890656px;}
.ws46{word-spacing:-0.651554px;}
.ws48{word-spacing:-0.591778px;}
.ws47{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws24{word-spacing:0.000000px;}
.ws9d{word-spacing:0.065753px;}
.ws27{word-spacing:1.022163px;}
.ws87{word-spacing:10.544486px;}
.wsc6{word-spacing:15.224947px;}
.ws5f{word-spacing:18.371570px;}
.wsbf{word-spacing:19.690214px;}
.ws79{word-spacing:19.936362px;}
.ws42{word-spacing:22.834279px;}
.ws81{word-spacing:22.894055px;}
.ws8e{word-spacing:24.358362px;}
.wsbe{word-spacing:24.370675px;}
.ws75{word-spacing:24.562362px;}
.ws73{word-spacing:26.155107px;}
.wsa4{word-spacing:26.827469px;}
.ws98{word-spacing:27.190362px;}
.ws16{word-spacing:29.814063px;}
.ws5{word-spacing:29.834008px;}
.ws1{word-spacing:31.418178px;}
.ws0{word-spacing:31.504255px;}
.ws1c{word-spacing:80.625869px;}
.ws6f{word-spacing:124.282614px;}
.ws5a{word-spacing:124.296334px;}
.ws66{word-spacing:214.357275px;}
.ws59{word-spacing:227.965851px;}
.ws69{word-spacing:275.832707px;}
.ws5c{word-spacing:297.199012px;}
.ws5d{word-spacing:302.874743px;}
.ws5b{word-spacing:309.965372px;}
.ws6d{word-spacing:315.379910px;}
.ws68{word-spacing:316.224545px;}
.ws5e{word-spacing:322.790911px;}
.ws6c{word-spacing:336.129953px;}
.ws67{word-spacing:339.287919px;}
.ws58{word-spacing:437.058712px;}
.ws6a{word-spacing:455.557021px;}
.ws6b{word-spacing:468.382560px;}
.ws6e{word-spacing:474.203547px;}
.ws57{word-spacing:625.567795px;}
.ws65{word-spacing:626.267174px;}
._1{margin-left:-8.005180px;}
._c{margin-left:-6.091141px;}
._2{margin-left:-4.961375px;}
._9{margin-left:-3.951138px;}
._0{margin-left:-2.668393px;}
._4{margin-left:-1.064046px;}
._6{width:1.667750px;}
._7{width:2.668393px;}
._b{width:4.579385px;}
._5{width:15.568087px;}
._11{width:17.313415px;}
._e{width:19.046908px;}
._3{width:20.959727px;}
._d{width:22.015468px;}
._8{width:23.191828px;}
._13{width:25.420912px;}
._f{width:29.887800px;}
._12{width:39.673531px;}
._14{width:42.634612px;}
._15{width:45.748990px;}
._a{width:68.741940px;}
._10{width:80.697600px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y24{bottom:193.617000px;}
.y23{bottom:210.055500px;}
.y4a{bottom:211.549500px;}
.y6a{bottom:229.482000px;}
.y49{bottom:230.299500px;}
.ya8{bottom:231.201000px;}
.y22{bottom:232.206000px;}
.y69{bottom:247.414500px;}
.y8e{bottom:247.720500px;}
.y48{bottom:248.232000px;}
.ya7{bottom:249.133500px;}
.y21{bottom:256.689000px;}
.y68{bottom:265.347000px;}
.y8d{bottom:265.654500px;}
.y47{bottom:266.166000px;}
.ya6{bottom:267.066000px;}
.y20{bottom:274.623000px;}
.ycb{bottom:283.279500px;}
.y67{bottom:283.281000px;}
.y8c{bottom:283.587000px;}
.y1f{bottom:292.932000px;}
.ydc{bottom:297.990000px;}
.y46{bottom:300.144000px;}
.yca{bottom:301.213500px;}
.y8b{bottom:301.519500px;}
.ya5{bottom:308.536500px;}
.y1e{bottom:310.864500px;}
.y107{bottom:316.200000px;}
.yc9{bottom:319.146000px;}
.ya4{bottom:326.469000px;}
.y1d{bottom:328.797000px;}
.y106{bottom:332.638500px;}
.y8a{bottom:332.940000px;}
.yec{bottom:333.459000px;}
.yc8{bottom:337.078500px;}
.ya3{bottom:344.401500px;}
.ydb{bottom:345.577500px;}
.y1c{bottom:346.729500px;}
.y45{bottom:349.066500px;}
.y105{bottom:349.077000px;}
.y66{bottom:354.265500px;}
.yc7{bottom:355.011000px;}
.yda{bottom:363.510000px;}
.ya2{bottom:364.053000px;}
.y104{bottom:365.515500px;}
.y44{bottom:366.999000px;}
.yc6{bottom:372.943500px;}
.y65{bottom:374.728500px;}
.yeb{bottom:377.659500px;}
.y89{bottom:379.305000px;}
.yd9{bottom:381.442500px;}
.y103{bottom:381.954000px;}
.ya1{bottom:381.985500px;}
.y1b{bottom:384.475500px;}
.y43{bottom:384.931500px;}
.yc5{bottom:390.876000px;}
.y64{bottom:394.453500px;}
.yea{bottom:395.593500px;}
.y88{bottom:397.237500px;}
.y102{bottom:398.392500px;}
.yd8{bottom:399.376500px;}
.ya0{bottom:399.918000px;}
.yc4{bottom:408.810000px;}
.ye9{bottom:413.526000px;}
.y63{bottom:414.180000px;}
.y101{bottom:414.829500px;}
.y87{bottom:415.170000px;}
.y9f{bottom:417.852000px;}
.yd7{bottom:417.859500px;}
.y42{bottom:424.887000px;}
.yc3{bottom:426.742500px;}
.y100{bottom:431.268000px;}
.ye8{bottom:431.458500px;}
.y86{bottom:433.104000px;}
.y62{bottom:433.906500px;}
.y1a{bottom:434.178000px;}
.y9e{bottom:435.784500px;}
.yd6{bottom:435.792000px;}
.yc2{bottom:444.675000px;}
.yff{bottom:447.706500px;}
.ye7{bottom:449.391000px;}
.y85{bottom:451.036500px;}
.y19{bottom:452.110500px;}
.y61{bottom:453.631500px;}
.y9d{bottom:453.717000px;}
.yd5{bottom:453.724500px;}
.yfe{bottom:464.145000px;}
.ye6{bottom:467.323500px;}
.y84{bottom:468.969000px;}
.y9c{bottom:471.649500px;}
.yd4{bottom:471.658500px;}
.y60{bottom:473.358000px;}
.yc1{bottom:475.119000px;}
.y41{bottom:476.799000px;}
.yfd{bottom:480.583500px;}
.ye5{bottom:485.256000px;}
.y83{bottom:486.901500px;}
.y9b{bottom:489.582000px;}
.yd3{bottom:489.591000px;}
.y5f{bottom:493.083000px;}
.y40{bottom:494.731500px;}
.yfc{bottom:497.022000px;}
.y18{bottom:501.375000px;}
.ye4{bottom:503.190000px;}
.y82{bottom:505.141500px;}
.y9a{bottom:507.514500px;}
.yd2{bottom:507.523500px;}
.y3f{bottom:512.664000px;}
.yfb{bottom:513.460500px;}
.yc0{bottom:517.518000px;}
.y17{bottom:517.812000px;}
.y5e{bottom:520.311000px;}
.ye3{bottom:521.122500px;}
.y81{bottom:523.074000px;}
.y99{bottom:525.448500px;}
.yd1{bottom:525.456000px;}
.yfa{bottom:529.899000px;}
.y3e{bottom:530.596500px;}
.y16{bottom:534.250500px;}
.ybf{bottom:535.450500px;}
.ye2{bottom:539.055000px;}
.y80{bottom:541.006500px;}
.y98{bottom:543.381000px;}
.yd0{bottom:543.388500px;}
.yf9{bottom:546.337500px;}
.y3d{bottom:548.529000px;}
.y15{bottom:550.689000px;}
.ybe{bottom:553.383000px;}
.ye1{bottom:556.987500px;}
.y7f{bottom:558.939000px;}
.yf8{bottom:562.776000px;}
.y97{bottom:563.032500px;}
.y3c{bottom:566.461500px;}
.y14{bottom:567.127500px;}
.ybd{bottom:571.315500px;}
.ye0{bottom:574.920000px;}
.y5d{bottom:574.989000px;}
.ycf{bottom:576.031500px;}
.y7e{bottom:576.871500px;}
.yf7{bottom:579.213000px;}
.y96{bottom:580.965000px;}
.y13{bottom:583.566000px;}
.y3b{bottom:584.395500px;}
.ybc{bottom:589.248000px;}
.ydf{bottom:592.852500px;}
.y5c{bottom:592.921500px;}
.y7d{bottom:594.804000px;}
.y12{bottom:600.004500px;}
.y3a{bottom:602.328000px;}
.yde{bottom:610.786500px;}
.y5b{bottom:610.855500px;}
.y7c{bottom:612.738000px;}
.yf6{bottom:613.585500px;}
.ybb{bottom:613.714500px;}
.y11{bottom:616.443000px;}
.y39{bottom:620.260500px;}
.yce{bottom:628.708500px;}
.y5a{bottom:628.788000px;}
.y7b{bottom:630.670500px;}
.y10{bottom:632.881500px;}
.y95{bottom:635.976000px;}
.y38{bottom:638.193000px;}
.ycd{bottom:645.147000px;}
.y59{bottom:646.720500px;}
.y7a{bottom:648.909000px;}
.yf{bottom:649.320000px;}
.y94{bottom:652.414500px;}
.yba{bottom:653.124000px;}
.y37{bottom:656.125500px;}
.ydd{bottom:658.740000px;}
.yf5{bottom:661.405500px;}
.ycc{bottom:661.585500px;}
.y58{bottom:665.392500px;}
.ye{bottom:666.133500px;}
.y79{bottom:666.843000px;}
.y93{bottom:668.853000px;}
.yb9{bottom:671.056500px;}
.y36{bottom:674.877000px;}
.yf4{bottom:679.338000px;}
.yd{bottom:682.572000px;}
.y57{bottom:683.325000px;}
.y78{bottom:684.775500px;}
.y92{bottom:685.291500px;}
.yb8{bottom:688.990500px;}
.y35{bottom:692.809500px;}
.yf3{bottom:697.270500px;}
.yc{bottom:699.010500px;}
.y56{bottom:701.257500px;}
.y91{bottom:701.730000px;}
.y77{bottom:702.708000px;}
.yb7{bottom:706.923000px;}
.y34{bottom:710.742000px;}
.yf2{bottom:715.203000px;}
.yb{bottom:715.449000px;}
.y90{bottom:718.168500px;}
.y55{bottom:719.190000px;}
.yb6{bottom:724.855500px;}
.y33{bottom:728.674500px;}
.ya{bottom:731.887500px;}
.yf1{bottom:733.137000px;}
.y8f{bottom:734.607000px;}
.y54{bottom:737.124000px;}
.yb5{bottom:742.788000px;}
.y32{bottom:746.608500px;}
.y9{bottom:748.326000px;}
.yb4{bottom:760.720500px;}
.y31{bottom:764.541000px;}
.y8{bottom:764.764500px;}
.y76{bottom:769.839000px;}
.y53{bottom:770.707500px;}
.yb3{bottom:778.654500px;}
.y7{bottom:781.203000px;}
.y30{bottom:782.473500px;}
.yf0{bottom:784.710000px;}
.y75{bottom:790.302000px;}
.yb2{bottom:796.587000px;}
.y2f{bottom:800.406000px;}
.yef{bottom:801.148500px;}
.y74{bottom:810.027000px;}
.yb1{bottom:814.519500px;}
.yee{bottom:817.587000px;}
.y2e{bottom:818.338500px;}
.y52{bottom:819.235500px;}
.y73{bottom:829.753500px;}
.yb0{bottom:832.452000px;}
.yed{bottom:834.025500px;}
.y2d{bottom:836.271000px;}
.y51{bottom:837.168000px;}
.y6{bottom:845.421000px;}
.y72{bottom:849.478500px;}
.yaf{bottom:850.384500px;}
.y2c{bottom:854.205000px;}
.y50{bottom:855.102000px;}
.y5{bottom:861.859500px;}
.yae{bottom:868.317000px;}
.y71{bottom:869.205000px;}
.y2b{bottom:872.955000px;}
.y4f{bottom:873.034500px;}
.yad{bottom:886.251000px;}
.y70{bottom:888.931500px;}
.y2a{bottom:890.887500px;}
.y4e{bottom:890.967000px;}
.y4{bottom:893.179500px;}
.y6f{bottom:908.656500px;}
.y29{bottom:908.821500px;}
.y4d{bottom:908.899500px;}
.yac{bottom:912.349500px;}
.y28{bottom:926.754000px;}
.y4c{bottom:927.571500px;}
.y6e{bottom:928.383000px;}
.yab{bottom:930.282000px;}
.y27{bottom:944.686500px;}
.y3{bottom:945.504000px;}
.yaa{bottom:946.860000px;}
.y6d{bottom:948.109500px;}
.y26{bottom:962.619000px;}
.y4b{bottom:963.436500px;}
.ya9{bottom:964.792500px;}
.y6c{bottom:967.834500px;}
.y2{bottom:972.403500px;}
.y25{bottom:981.370500px;}
.y6b{bottom:995.062500px;}
.y1{bottom:999.303000px;}
.h7{height:17.645875px;}
.h5{height:33.193613px;}
.h9{height:37.712678px;}
.h4{height:40.402598px;}
.h8{height:41.902696px;}
.h3{height:44.891476px;}
.h6{height:50.283571px;}
.h1{height:60.340117px;}
.h2{height:61.303127px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:202.147500px;}
.xa{left:206.008500px;}
.xf{left:208.459500px;}
.xb{left:217.090500px;}
.x11{left:220.368000px;}
.x9{left:224.562000px;}
.x2{left:226.707000px;}
.x1{left:235.438500px;}
.x7{left:244.666500px;}
.xc{left:252.864000px;}
.x10{left:260.782500px;}
.xd{left:262.984500px;}
.x3{left:269.298000px;}
.x5{left:296.107500px;}
.x4{left:313.774500px;}
.xe{left:337.771500px;}
.x6{left:383.865000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.765333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:13.175392pt;}
.ls1{letter-spacing:17.708725pt;}
.ls2{letter-spacing:19.034194pt;}
.ws41{word-spacing:-26.561620pt;}
.ws3d{word-spacing:-14.712768pt;}
.ws44{word-spacing:-14.128295pt;}
.ws43{word-spacing:-13.915760pt;}
.wsb2{word-spacing:-13.703224pt;}
.ws33{word-spacing:-13.650090pt;}
.wsa8{word-spacing:-13.596956pt;}
.ws17{word-spacing:-13.410997pt;}
.ws18{word-spacing:-13.397654pt;}
.ws19{word-spacing:-13.384421pt;}
.ws25{word-spacing:-13.171886pt;}
.ws9a{word-spacing:-13.065618pt;}
.ws2f{word-spacing:-12.959350pt;}
.ws84{word-spacing:-12.906216pt;}
.ws78{word-spacing:-12.853082pt;}
.wsbc{word-spacing:-12.799948pt;}
.ws7f{word-spacing:-12.746815pt;}
.ws37{word-spacing:-12.693681pt;}
.ws4c{word-spacing:-12.587413pt;}
.wsac{word-spacing:-12.519485pt;}
.wsc4{word-spacing:-12.471665pt;}
.wsa5{word-spacing:-12.268610pt;}
.wsb4{word-spacing:-12.109208pt;}
.ws8c{word-spacing:-11.897815pt;}
.ws64{word-spacing:-11.896673pt;}
.ws77{word-spacing:-11.790405pt;}
.ws9b{word-spacing:-11.631003pt;}
.wsb{word-spacing:-11.563069pt;}
.ws9{word-spacing:-11.515249pt;}
.wsae{word-spacing:-11.471602pt;}
.ws23{word-spacing:-11.371786pt;}
.ws2b{word-spacing:-11.365334pt;}
.wsa0{word-spacing:-11.205932pt;}
.wsb1{word-spacing:-11.046531pt;}
.wsb3{word-spacing:-10.993397pt;}
.ws61{word-spacing:-10.940263pt;}
.wsb0{word-spacing:-10.887129pt;}
.ws7b{word-spacing:-10.621460pt;}
.wsc3{word-spacing:-10.606653pt;}
.ws62{word-spacing:-10.568326pt;}
.wsc5{word-spacing:-10.511012pt;}
.ws4b{word-spacing:-10.462058pt;}
.ws4f{word-spacing:-10.408924pt;}
.wsad{word-spacing:-10.249523pt;}
.ws83{word-spacing:-10.196389pt;}
.wsb5{word-spacing:-10.143255pt;}
.ws6{word-spacing:-10.128445pt;}
.ws1e{word-spacing:-10.090121pt;}
.ws8b{word-spacing:-10.032804pt;}
.wsb7{word-spacing:-9.983854pt;}
.wsbb{word-spacing:-9.937162pt;}
.ws8d{word-spacing:-9.889341pt;}
.wsa3{word-spacing:-9.877586pt;}
.ws8{word-spacing:-9.841521pt;}
.ws90{word-spacing:-9.824452pt;}
.ws26{word-spacing:-9.771318pt;}
.ws92{word-spacing:-9.718184pt;}
.ws56{word-spacing:-9.665050pt;}
.ws28{word-spacing:-9.558783pt;}
.wsc1{word-spacing:-9.554596pt;}
.wsa2{word-spacing:-9.346247pt;}
.ws2e{word-spacing:-9.293113pt;}
.ws30{word-spacing:-9.186846pt;}
.wsc0{word-spacing:-9.076388pt;}
.ws7e{word-spacing:-9.027444pt;}
.ws39{word-spacing:-8.974310pt;}
.ws60{word-spacing:-8.921176pt;}
.ws2{word-spacing:-8.868042pt;}
.ws1a{word-spacing:-8.855362pt;}
.ws1b{word-spacing:-8.814908pt;}
.ws10{word-spacing:-8.789463pt;}
.ws74{word-spacing:-8.761775pt;}
.ws72{word-spacing:-8.738925pt;}
.wsa6{word-spacing:-8.655507pt;}
.ws35{word-spacing:-8.389838pt;}
.ws94{word-spacing:-8.336704pt;}
.ws38{word-spacing:-8.230436pt;}
.ws3{word-spacing:-8.215613pt;}
.wsc{word-spacing:-8.167793pt;}
.ws2c{word-spacing:-8.071034pt;}
.ws2a{word-spacing:-8.017900pt;}
.ws88{word-spacing:-7.737405pt;}
.ws1d{word-spacing:-7.699097pt;}
.ws95{word-spacing:-7.645963pt;}
.ws4d{word-spacing:-7.486562pt;}
.ws32{word-spacing:-7.433428pt;}
.ws14{word-spacing:-7.402660pt;}
.ws9e{word-spacing:-7.380294pt;}
.ws54{word-spacing:-7.327160pt;}
.ws63{word-spacing:-7.274026pt;}
.ws4a{word-spacing:-7.114625pt;}
.ws8f{word-spacing:-7.008357pt;}
.ws52{word-spacing:-6.955223pt;}
.wse{word-spacing:-6.876631pt;}
.ws1f{word-spacing:-6.848955pt;}
.ws21{word-spacing:-6.795822pt;}
.ws29{word-spacing:-6.742688pt;}
.ws9f{word-spacing:-6.689554pt;}
.wsb8{word-spacing:-6.636420pt;}
.ws3b{word-spacing:-6.583286pt;}
.ws7a{word-spacing:-6.530152pt;}
.ws70{word-spacing:-6.477018pt;}
.ws50{word-spacing:-6.423884pt;}
.ws82{word-spacing:-6.317617pt;}
.ws3e{word-spacing:-6.158215pt;}
.ws49{word-spacing:-6.105081pt;}
.wsa9{word-spacing:-6.051947pt;}
.ws11{word-spacing:-6.015857pt;}
.wsa{word-spacing:-5.968036pt;}
.ws4e{word-spacing:-5.892546pt;}
.ws99{word-spacing:-5.839412pt;}
.ws13{word-spacing:-5.681111pt;}
.wsb9{word-spacing:-5.520609pt;}
.wsc7{word-spacing:-5.489828pt;}
.ws7{word-spacing:-5.442007pt;}
.ws34{word-spacing:-5.361207pt;}
.ws51{word-spacing:-5.254939pt;}
.ws97{word-spacing:-5.201806pt;}
.ws76{word-spacing:-5.095538pt;}
.ws8a{word-spacing:-5.059441pt;}
.wsa7{word-spacing:-5.042404pt;}
.ws2d{word-spacing:-4.936136pt;}
.ws3a{word-spacing:-4.883002pt;}
.wsaa{word-spacing:-4.298530pt;}
.ws91{word-spacing:-4.192262pt;}
.ws31{word-spacing:-4.139128pt;}
.wsb6{word-spacing:-4.032860pt;}
.ws53{word-spacing:-3.873459pt;}
.wsd{word-spacing:-3.863921pt;}
.ws45{word-spacing:-3.767191pt;}
.wsa1{word-spacing:-3.714057pt;}
.wsbd{word-spacing:-3.672637pt;}
.ws93{word-spacing:-3.448388pt;}
.wsab{word-spacing:-3.395254pt;}
.ws9c{word-spacing:-3.342120pt;}
.ws36{word-spacing:-3.288986pt;}
.ws71{word-spacing:-3.182719pt;}
.wsc2{word-spacing:-3.098788pt;}
.ws7d{word-spacing:-2.863915pt;}
.wsf{word-spacing:-2.668401pt;}
.wsaf{word-spacing:-2.651380pt;}
.wsba{word-spacing:-2.545112pt;}
.ws3c{word-spacing:-2.491978pt;}
.ws3f{word-spacing:-2.438844pt;}
.ws7c{word-spacing:-2.332577pt;}
.ws40{word-spacing:-2.226309pt;}
.wsc8{word-spacing:-2.094551pt;}
.ws96{word-spacing:-1.801238pt;}
.ws22{word-spacing:-1.759805pt;}
.ws89{word-spacing:-1.664164pt;}
.ws80{word-spacing:-1.376167pt;}
.ws15{word-spacing:-1.233777pt;}
.ws20{word-spacing:-1.004230pt;}
.ws55{word-spacing:-0.951096pt;}
.ws12{word-spacing:-0.946852pt;}
.ws85{word-spacing:-0.844828pt;}
.ws86{word-spacing:-0.791695pt;}
.ws46{word-spacing:-0.579159pt;}
.ws48{word-spacing:-0.526025pt;}
.ws47{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws24{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.058447pt;}
.ws27{word-spacing:0.908589pt;}
.ws87{word-spacing:9.372877pt;}
.wsc6{word-spacing:13.533286pt;}
.ws5f{word-spacing:16.330284pt;}
.wsbf{word-spacing:17.502413pt;}
.ws79{word-spacing:17.721211pt;}
.ws42{word-spacing:20.297137pt;}
.ws81{word-spacing:20.350271pt;}
.ws8e{word-spacing:21.651878pt;}
.wsbe{word-spacing:21.662822pt;}
.ws75{word-spacing:21.833211pt;}
.ws73{word-spacing:23.248984pt;}
.wsa4{word-spacing:23.846639pt;}
.ws98{word-spacing:24.169211pt;}
.ws16{word-spacing:26.501390pt;}
.ws5{word-spacing:26.519119pt;}
.ws1{word-spacing:27.927269pt;}
.ws0{word-spacing:28.003782pt;}
.ws1c{word-spacing:71.667439pt;}
.ws6f{word-spacing:110.473434pt;}
.ws5a{word-spacing:110.485630pt;}
.ws66{word-spacing:190.539800pt;}
.ws59{word-spacing:202.636312pt;}
.ws69{word-spacing:245.184628pt;}
.ws5c{word-spacing:264.176899pt;}
.ws5d{word-spacing:269.221994pt;}
.ws5b{word-spacing:275.524775pt;}
.ws6d{word-spacing:280.337698pt;}
.ws68{word-spacing:281.088485pt;}
.ws5e{word-spacing:286.925254pt;}
.ws6c{word-spacing:298.782181pt;}
.ws67{word-spacing:301.589262pt;}
.ws58{word-spacing:388.496633pt;}
.ws6a{word-spacing:404.939575pt;}
.ws6b{word-spacing:416.340053pt;}
.ws6e{word-spacing:421.514264pt;}
.ws57{word-spacing:556.060262pt;}
.ws65{word-spacing:556.681933pt;}
._1{margin-left:-7.115715pt;}
._c{margin-left:-5.414348pt;}
._2{margin-left:-4.410111pt;}
._9{margin-left:-3.512123pt;}
._0{margin-left:-2.371905pt;}
._4{margin-left:-0.945819pt;}
._6{width:1.482445pt;}
._7{width:2.371905pt;}
._b{width:4.070564pt;}
._5{width:13.838300pt;}
._11{width:15.389702pt;}
._e{width:16.930585pt;}
._3{width:18.630868pt;}
._d{width:19.569305pt;}
._8{width:20.614958pt;}
._13{width:22.596366pt;}
._f{width:26.566933pt;}
._12{width:35.265361pt;}
._14{width:37.897433pt;}
._15{width:40.665769pt;}
._a{width:61.103947pt;}
._10{width:71.731200pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:172.104000pt;}
.y23{bottom:186.716000pt;}
.y4a{bottom:188.044000pt;}
.y6a{bottom:203.984000pt;}
.y49{bottom:204.710667pt;}
.ya8{bottom:205.512000pt;}
.y22{bottom:206.405333pt;}
.y69{bottom:219.924000pt;}
.y8e{bottom:220.196000pt;}
.y48{bottom:220.650667pt;}
.ya7{bottom:221.452000pt;}
.y21{bottom:228.168000pt;}
.y68{bottom:235.864000pt;}
.y8d{bottom:236.137333pt;}
.y47{bottom:236.592000pt;}
.ya6{bottom:237.392000pt;}
.y20{bottom:244.109333pt;}
.ycb{bottom:251.804000pt;}
.y67{bottom:251.805333pt;}
.y8c{bottom:252.077333pt;}
.y1f{bottom:260.384000pt;}
.ydc{bottom:264.880000pt;}
.y46{bottom:266.794667pt;}
.yca{bottom:267.745333pt;}
.y8b{bottom:268.017333pt;}
.ya5{bottom:274.254667pt;}
.y1e{bottom:276.324000pt;}
.y107{bottom:281.066667pt;}
.yc9{bottom:283.685333pt;}
.ya4{bottom:290.194667pt;}
.y1d{bottom:292.264000pt;}
.y106{bottom:295.678667pt;}
.y8a{bottom:295.946667pt;}
.yec{bottom:296.408000pt;}
.yc8{bottom:299.625333pt;}
.ya3{bottom:306.134667pt;}
.ydb{bottom:307.180000pt;}
.y1c{bottom:308.204000pt;}
.y45{bottom:310.281333pt;}
.y105{bottom:310.290667pt;}
.y66{bottom:314.902667pt;}
.yc7{bottom:315.565333pt;}
.yda{bottom:323.120000pt;}
.ya2{bottom:323.602667pt;}
.y104{bottom:324.902667pt;}
.y44{bottom:326.221333pt;}
.yc6{bottom:331.505333pt;}
.y65{bottom:333.092000pt;}
.yeb{bottom:335.697333pt;}
.y89{bottom:337.160000pt;}
.yd9{bottom:339.060000pt;}
.y103{bottom:339.514667pt;}
.ya1{bottom:339.542667pt;}
.y1b{bottom:341.756000pt;}
.y43{bottom:342.161333pt;}
.yc5{bottom:347.445333pt;}
.y64{bottom:350.625333pt;}
.yea{bottom:351.638667pt;}
.y88{bottom:353.100000pt;}
.y102{bottom:354.126667pt;}
.yd8{bottom:355.001333pt;}
.ya0{bottom:355.482667pt;}
.yc4{bottom:363.386667pt;}
.ye9{bottom:367.578667pt;}
.y63{bottom:368.160000pt;}
.y101{bottom:368.737333pt;}
.y87{bottom:369.040000pt;}
.y9f{bottom:371.424000pt;}
.yd7{bottom:371.430667pt;}
.y42{bottom:377.677333pt;}
.yc3{bottom:379.326667pt;}
.y100{bottom:383.349333pt;}
.ye8{bottom:383.518667pt;}
.y86{bottom:384.981333pt;}
.y62{bottom:385.694667pt;}
.y1a{bottom:385.936000pt;}
.y9e{bottom:387.364000pt;}
.yd6{bottom:387.370667pt;}
.yc2{bottom:395.266667pt;}
.yff{bottom:397.961333pt;}
.ye7{bottom:399.458667pt;}
.y85{bottom:400.921333pt;}
.y19{bottom:401.876000pt;}
.y61{bottom:403.228000pt;}
.y9d{bottom:403.304000pt;}
.yd5{bottom:403.310667pt;}
.yfe{bottom:412.573333pt;}
.ye6{bottom:415.398667pt;}
.y84{bottom:416.861333pt;}
.y9c{bottom:419.244000pt;}
.yd4{bottom:419.252000pt;}
.y60{bottom:420.762667pt;}
.yc1{bottom:422.328000pt;}
.y41{bottom:423.821333pt;}
.yfd{bottom:427.185333pt;}
.ye5{bottom:431.338667pt;}
.y83{bottom:432.801333pt;}
.y9b{bottom:435.184000pt;}
.yd3{bottom:435.192000pt;}
.y5f{bottom:438.296000pt;}
.y40{bottom:439.761333pt;}
.yfc{bottom:441.797333pt;}
.y18{bottom:445.666667pt;}
.ye4{bottom:447.280000pt;}
.y82{bottom:449.014667pt;}
.y9a{bottom:451.124000pt;}
.yd2{bottom:451.132000pt;}
.y3f{bottom:455.701333pt;}
.yfb{bottom:456.409333pt;}
.yc0{bottom:460.016000pt;}
.y17{bottom:460.277333pt;}
.y5e{bottom:462.498667pt;}
.ye3{bottom:463.220000pt;}
.y81{bottom:464.954667pt;}
.y99{bottom:467.065333pt;}
.yd1{bottom:467.072000pt;}
.yfa{bottom:471.021333pt;}
.y3e{bottom:471.641333pt;}
.y16{bottom:474.889333pt;}
.ybf{bottom:475.956000pt;}
.ye2{bottom:479.160000pt;}
.y80{bottom:480.894667pt;}
.y98{bottom:483.005333pt;}
.yd0{bottom:483.012000pt;}
.yf9{bottom:485.633333pt;}
.y3d{bottom:487.581333pt;}
.y15{bottom:489.501333pt;}
.ybe{bottom:491.896000pt;}
.ye1{bottom:495.100000pt;}
.y7f{bottom:496.834667pt;}
.yf8{bottom:500.245333pt;}
.y97{bottom:500.473333pt;}
.y3c{bottom:503.521333pt;}
.y14{bottom:504.113333pt;}
.ybd{bottom:507.836000pt;}
.ye0{bottom:511.040000pt;}
.y5d{bottom:511.101333pt;}
.ycf{bottom:512.028000pt;}
.y7e{bottom:512.774667pt;}
.yf7{bottom:514.856000pt;}
.y96{bottom:516.413333pt;}
.y13{bottom:518.725333pt;}
.y3b{bottom:519.462667pt;}
.ybc{bottom:523.776000pt;}
.ydf{bottom:526.980000pt;}
.y5c{bottom:527.041333pt;}
.y7d{bottom:528.714667pt;}
.y12{bottom:533.337333pt;}
.y3a{bottom:535.402667pt;}
.yde{bottom:542.921333pt;}
.y5b{bottom:542.982667pt;}
.y7c{bottom:544.656000pt;}
.yf6{bottom:545.409333pt;}
.ybb{bottom:545.524000pt;}
.y11{bottom:547.949333pt;}
.y39{bottom:551.342667pt;}
.yce{bottom:558.852000pt;}
.y5a{bottom:558.922667pt;}
.y7b{bottom:560.596000pt;}
.y10{bottom:562.561333pt;}
.y95{bottom:565.312000pt;}
.y38{bottom:567.282667pt;}
.ycd{bottom:573.464000pt;}
.y59{bottom:574.862667pt;}
.y7a{bottom:576.808000pt;}
.yf{bottom:577.173333pt;}
.y94{bottom:579.924000pt;}
.yba{bottom:580.554667pt;}
.y37{bottom:583.222667pt;}
.ydd{bottom:585.546667pt;}
.yf5{bottom:587.916000pt;}
.ycc{bottom:588.076000pt;}
.y58{bottom:591.460000pt;}
.ye{bottom:592.118667pt;}
.y79{bottom:592.749333pt;}
.y93{bottom:594.536000pt;}
.yb9{bottom:596.494667pt;}
.y36{bottom:599.890667pt;}
.yf4{bottom:603.856000pt;}
.yd{bottom:606.730667pt;}
.y57{bottom:607.400000pt;}
.y78{bottom:608.689333pt;}
.y92{bottom:609.148000pt;}
.yb8{bottom:612.436000pt;}
.y35{bottom:615.830667pt;}
.yf3{bottom:619.796000pt;}
.yc{bottom:621.342667pt;}
.y56{bottom:623.340000pt;}
.y91{bottom:623.760000pt;}
.y77{bottom:624.629333pt;}
.yb7{bottom:628.376000pt;}
.y34{bottom:631.770667pt;}
.yf2{bottom:635.736000pt;}
.yb{bottom:635.954667pt;}
.y90{bottom:638.372000pt;}
.y55{bottom:639.280000pt;}
.yb6{bottom:644.316000pt;}
.y33{bottom:647.710667pt;}
.ya{bottom:650.566667pt;}
.yf1{bottom:651.677333pt;}
.y8f{bottom:652.984000pt;}
.y54{bottom:655.221333pt;}
.yb5{bottom:660.256000pt;}
.y32{bottom:663.652000pt;}
.y9{bottom:665.178667pt;}
.yb4{bottom:676.196000pt;}
.y31{bottom:679.592000pt;}
.y8{bottom:679.790667pt;}
.y76{bottom:684.301333pt;}
.y53{bottom:685.073333pt;}
.yb3{bottom:692.137333pt;}
.y7{bottom:694.402667pt;}
.y30{bottom:695.532000pt;}
.yf0{bottom:697.520000pt;}
.y75{bottom:702.490667pt;}
.yb2{bottom:708.077333pt;}
.y2f{bottom:711.472000pt;}
.yef{bottom:712.132000pt;}
.y74{bottom:720.024000pt;}
.yb1{bottom:724.017333pt;}
.yee{bottom:726.744000pt;}
.y2e{bottom:727.412000pt;}
.y52{bottom:728.209333pt;}
.y73{bottom:737.558667pt;}
.yb0{bottom:739.957333pt;}
.yed{bottom:741.356000pt;}
.y2d{bottom:743.352000pt;}
.y51{bottom:744.149333pt;}
.y6{bottom:751.485333pt;}
.y72{bottom:755.092000pt;}
.yaf{bottom:755.897333pt;}
.y2c{bottom:759.293333pt;}
.y50{bottom:760.090667pt;}
.y5{bottom:766.097333pt;}
.yae{bottom:771.837333pt;}
.y71{bottom:772.626667pt;}
.y2b{bottom:775.960000pt;}
.y4f{bottom:776.030667pt;}
.yad{bottom:787.778667pt;}
.y70{bottom:790.161333pt;}
.y2a{bottom:791.900000pt;}
.y4e{bottom:791.970667pt;}
.y4{bottom:793.937333pt;}
.y6f{bottom:807.694667pt;}
.y29{bottom:807.841333pt;}
.y4d{bottom:807.910667pt;}
.yac{bottom:810.977333pt;}
.y28{bottom:823.781333pt;}
.y4c{bottom:824.508000pt;}
.y6e{bottom:825.229333pt;}
.yab{bottom:826.917333pt;}
.y27{bottom:839.721333pt;}
.y3{bottom:840.448000pt;}
.yaa{bottom:841.653333pt;}
.y6d{bottom:842.764000pt;}
.y26{bottom:855.661333pt;}
.y4b{bottom:856.388000pt;}
.ya9{bottom:857.593333pt;}
.y6c{bottom:860.297333pt;}
.y2{bottom:864.358667pt;}
.y25{bottom:872.329333pt;}
.y6b{bottom:884.500000pt;}
.y1{bottom:888.269333pt;}
.h7{height:15.685222pt;}
.h5{height:29.505434pt;}
.h9{height:33.522381pt;}
.h4{height:35.913421pt;}
.h8{height:37.246841pt;}
.h3{height:39.903534pt;}
.h6{height:44.696508pt;}
.h1{height:53.635660pt;}
.h2{height:54.491668pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:179.686667pt;}
.xa{left:183.118667pt;}
.xf{left:185.297333pt;}
.xb{left:192.969333pt;}
.x11{left:195.882667pt;}
.x9{left:199.610667pt;}
.x2{left:201.517333pt;}
.x1{left:209.278667pt;}
.x7{left:217.481333pt;}
.xc{left:224.768000pt;}
.x10{left:231.806667pt;}
.xd{left:233.764000pt;}
.x3{left:239.376000pt;}
.x5{left:263.206667pt;}
.x4{left:278.910667pt;}
.xe{left:300.241333pt;}
.x6{left:341.213333pt;}
}




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