
    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_317cd77f3eba00d6883f222a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_47872647b511c2afb9dd676c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cc73bad42ab28de4d1f6d990.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27874d129102d3694afc1e38.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_f24c2a3a45bbbdb5a1aef51e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_691f2812bd28c834e485c995.woff')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_d621a2aa989e3d3859533e2b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6d95cf1fec38863f95446add.woff')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_20ca1a09f89e441e5890402e.woff')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_b777f1da10bd74ccc7fdcb1c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899000;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_f33ad28ee8c526a7124c1844.woff')format("woff");}.ffb{font-family:ffb;line-height:0.449000;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_01d1d683e084bda9db6b4103.woff')format("woff");}.ffc{font-family:ffc;line-height:0.686000;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_ad7dfe548079e76b776fa93a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899000;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_f694503f92898885dcf26c5a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.703450;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_71c20455cdd818bc0a2f7047.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;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_b97bd39252d46e95cd728e73.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_360d6ac2fc6f783d2f25111b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.923000;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:-16.458000px;}
.v1{vertical-align:-10.662000px;}
.v3{vertical-align:-8.436000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.132000px;}
.v7{vertical-align:27.030000px;}
.v4{vertical-align:31.848000px;}
.v6{vertical-align:52.980000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.001289px;}
.lsb{letter-spacing:0.001982px;}
.lse{letter-spacing:0.002147px;}
.ls18{letter-spacing:0.002149px;}
.ls13{letter-spacing:0.002696px;}
.ls15{letter-spacing:0.002706px;}
.ls17{letter-spacing:0.004059px;}
.ls7{letter-spacing:0.004332px;}
.ls5{letter-spacing:0.005962px;}
.ls10{letter-spacing:1.816884px;}
.lsf{letter-spacing:2.348156px;}
.lsc{letter-spacing:5.976532px;}
.ls12{letter-spacing:9.092147px;}
.ls1a{letter-spacing:14.540706px;}
.ls6{letter-spacing:14.543412px;}
.ls14{letter-spacing:14.546706px;}
.lsd{letter-spacing:16.096332px;}
.ls9{letter-spacing:16.636349px;}
.lsa{letter-spacing:16.642349px;}
.ls4{letter-spacing:18.179412px;}
.ls8{letter-spacing:18.184332px;}
.ls3{letter-spacing:18.185962px;}
.ls19{letter-spacing:18.388349px;}
.ls1{letter-spacing:18.589106px;}
.ls0{letter-spacing:20.814563px;}
.ls1c{letter-spacing:25.324884px;}
.ls16{letter-spacing:834.140712px;}
.ls1b{letter-spacing:902.828712px;}
.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;}
}
.ws33{word-spacing:-65.454600px;}
.ws36{word-spacing:-42.637126px;}
.ws57{word-spacing:-32.544027px;}
.ws40{word-spacing:-18.183288px;}
.ws74{word-spacing:-17.947651px;}
.ws3b{word-spacing:-17.162196px;}
.ws3d{word-spacing:-16.442196px;}
.ws77{word-spacing:-16.311286px;}
.ws6a{word-spacing:-15.787650px;}
.ws42{word-spacing:-15.656740px;}
.ws3e{word-spacing:-15.329467px;}
.ws25{word-spacing:-15.264013px;}
.ws4d{word-spacing:-15.002194px;}
.ws4e{word-spacing:-14.994690px;}
.ws5c{word-spacing:-14.805831px;}
.ws55{word-spacing:-14.741117px;}
.ws54{word-spacing:-14.740376px;}
.ws5e{word-spacing:-14.478558px;}
.ws6b{word-spacing:-14.413103px;}
.ws2e{word-spacing:-14.216739px;}
.ws1f{word-spacing:-13.954921px;}
.ws53{word-spacing:-13.627648px;}
.ws67{word-spacing:-13.365829px;}
.ws20{word-spacing:-13.300375px;}
.ws62{word-spacing:-12.580374px;}
.ws32{word-spacing:-12.514920px;}
.ws22{word-spacing:-12.253101px;}
.ws35{word-spacing:-12.187647px;}
.ws6d{word-spacing:-12.056737px;}
.ws29{word-spacing:-11.991283px;}
.ws19{word-spacing:-11.794919px;}
.ws17{word-spacing:-11.729464px;}
.ws2{word-spacing:-11.728051px;}
.ws6f{word-spacing:-11.664010px;}
.ws1c{word-spacing:-11.598555px;}
.ws1a{word-spacing:-11.533101px;}
.ws71{word-spacing:-11.009464px;}
.wsd{word-spacing:-10.878555px;}
.ws43{word-spacing:-10.860211px;}
.wse{word-spacing:-10.813100px;}
.ws2c{word-spacing:-10.354918px;}
.ws2d{word-spacing:-10.158554px;}
.ws6{word-spacing:-10.093099px;}
.ws26{word-spacing:-9.765826px;}
.ws21{word-spacing:-9.700372px;}
.ws5d{word-spacing:-9.438553px;}
.ws24{word-spacing:-9.373099px;}
.ws52{word-spacing:-9.045826px;}
.ws51{word-spacing:-9.041042px;}
.ws23{word-spacing:-8.980371px;}
.ws5f{word-spacing:-8.914917px;}
.ws7f{word-spacing:-8.653098px;}
.ws2a{word-spacing:-8.587644px;}
.ws30{word-spacing:-8.129461px;}
.ws16{word-spacing:-8.064007px;}
.ws7c{word-spacing:-7.933098px;}
.ws5b{word-spacing:-7.802188px;}
.ws41{word-spacing:-7.736734px;}
.ws14{word-spacing:-7.671279px;}
.ws60{word-spacing:-7.409461px;}
.ws3f{word-spacing:-7.278552px;}
.wsb{word-spacing:-7.213097px;}
.wsc{word-spacing:-7.147642px;}
.ws28{word-spacing:-7.082188px;}
.ws8{word-spacing:-6.624006px;}
.ws1e{word-spacing:-6.427642px;}
.ws2b{word-spacing:-6.165823px;}
.ws15{word-spacing:-5.904005px;}
.ws31{word-spacing:-5.642187px;}
.ws1b{word-spacing:-5.576732px;}
.ws76{word-spacing:-5.314914px;}
.ws75{word-spacing:-5.249459px;}
.ws61{word-spacing:-4.987641px;}
.ws13{word-spacing:-4.922186px;}
.ws1d{word-spacing:-4.594913px;}
.ws7d{word-spacing:-4.464004px;}
.ws12{word-spacing:-4.398549px;}
.ws9{word-spacing:-4.005822px;}
.ws5a{word-spacing:-3.874912px;}
.ws79{word-spacing:-3.717093px;}
.ws72{word-spacing:-3.547639px;}
.ws63{word-spacing:-3.024003px;}
.ws7{word-spacing:-2.893093px;}
.wsf{word-spacing:-2.042184px;}
.wsa{word-spacing:-1.976729px;}
.ws66{word-spacing:-1.845820px;}
.ws70{word-spacing:-1.453092px;}
.ws73{word-spacing:-0.994910px;}
.ws18{word-spacing:-0.065455px;}
.ws34{word-spacing:-0.047821px;}
.ws2f{word-spacing:-0.013091px;}
.ws27{word-spacing:0.000000px;}
.ws3c{word-spacing:0.013091px;}
.ws64{word-spacing:0.178294px;}
.ws11{word-spacing:0.183273px;}
.ws59{word-spacing:0.379637px;}
.ws78{word-spacing:0.903273px;}
.ws39{word-spacing:17.485770px;}
.ws38{word-spacing:18.055804px;}
.ws37{word-spacing:19.199338px;}
.ws69{word-spacing:19.243652px;}
.ws7e{word-spacing:19.309107px;}
.ws4f{word-spacing:20.504711px;}
.ws47{word-spacing:21.121770px;}
.ws4a{word-spacing:21.122711px;}
.ws56{word-spacing:21.320914px;}
.ws44{word-spacing:21.691804px;}
.ws68{word-spacing:21.992746px;}
.ws50{word-spacing:22.528565px;}
.ws7a{word-spacing:23.170928px;}
.ws7b{word-spacing:23.236383px;}
.ws6e{word-spacing:23.890929px;}
.ws1{word-spacing:26.827469px;}
.ws6c{word-spacing:28.996388px;}
.ws3{word-spacing:31.136897px;}
.ws4{word-spacing:31.138226px;}
.ws10{word-spacing:31.287299px;}
.ws58{word-spacing:31.418178px;}
.ws5{word-spacing:31.504255px;}
.ws65{word-spacing:35.214575px;}
.ws0{word-spacing:37.081972px;}
.ws4c{word-spacing:60.202141px;}
.ws49{word-spacing:64.611200px;}
.ws46{word-spacing:75.863387px;}
.ws4b{word-spacing:150.532141px;}
.ws48{word-spacing:154.941200px;}
.ws45{word-spacing:166.193387px;}
.ws3a{word-spacing:813.104711px;}
._14{margin-left:-7.316582px;}
._4{margin-left:-5.810227px;}
._1a{margin-left:-4.462576px;}
._0{margin-left:-3.098772px;}
._3{margin-left:-1.936742px;}
._5{width:1.936742px;}
._17{width:3.402121px;}
._1{width:4.447334px;}
._1d{width:16.036377px;}
._18{width:18.350615px;}
._13{width:19.523387px;}
._10{width:21.869931px;}
._12{width:24.457615px;}
._19{width:26.405099px;}
._d{width:27.694469px;}
._f{width:29.313699px;}
._2{width:31.231021px;}
._11{width:32.630460px;}
._1b{width:34.298210px;}
._b{width:35.865600px;}
._e{width:37.216772px;}
._c{width:38.487305px;}
._a{width:40.058215px;}
._6{width:42.091751px;}
._16{width:44.233164px;}
._1e{width:45.556402px;}
._1c{width:46.885579px;}
._8{width:48.741925px;}
._7{width:52.794967px;}
._9{width:55.166564px;}
._15{width:61.880581px;}
._1f{width:63.936464px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,173,239);}
.fc1{color:rgb(0,255,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y29{bottom:11.368500px;}
.y74{bottom:56.200500px;}
.y73{bottom:76.524000px;}
.y28{bottom:85.681500px;}
.y72{bottom:96.847500px;}
.y27{bottom:106.005000px;}
.y26{bottom:126.330000px;}
.y71{bottom:130.057500px;}
.y41{bottom:137.715000px;}
.y25{bottom:146.653500px;}
.y70{bottom:150.382500px;}
.y40{bottom:158.038500px;}
.y24{bottom:166.977000px;}
.y3f{bottom:178.362000px;}
.y6f{bottom:183.592500px;}
.y23{bottom:187.300500px;}
.y3e{bottom:198.687000px;}
.y6e{bottom:203.916000px;}
.y22{bottom:207.624000px;}
.y3d{bottom:219.010500px;}
.y6d{bottom:224.239500px;}
.y21{bottom:227.947500px;}
.y3c{bottom:239.334000px;}
.y20{bottom:248.272500px;}
.y6c{bottom:256.605000px;}
.y95{bottom:256.720500px;}
.y1f{bottom:268.596000px;}
.y3b{bottom:276.096000px;}
.y6b{bottom:276.928500px;}
.y3a{bottom:280.231500px;}
.y1e{bottom:288.919500px;}
.y94{bottom:290.493000px;}
.y6a{bottom:297.252000px;}
.y1d{bottom:309.243000px;}
.y93{bottom:310.816500px;}
.y39{bottom:312.858000px;}
.y69{bottom:317.575500px;}
.y1c{bottom:329.566500px;}
.y38{bottom:333.181500px;}
.y68{bottom:337.899000px;}
.y92{bottom:344.590500px;}
.y1b{bottom:349.891500px;}
.y37{bottom:353.505000px;}
.y67{bottom:358.224000px;}
.y91{bottom:364.914000px;}
.y1a{bottom:370.215000px;}
.y36{bottom:373.828500px;}
.y66{bottom:378.547500px;}
.y90{bottom:385.237500px;}
.y19{bottom:390.538500px;}
.y35{bottom:394.153500px;}
.y65{bottom:398.871000px;}
.y8f{bottom:405.562500px;}
.y18{bottom:410.862000px;}
.y34{bottom:414.477000px;}
.y64{bottom:419.194500px;}
.y17{bottom:431.185500px;}
.y8e{bottom:439.335000px;}
.y63{bottom:439.518000px;}
.y33{bottom:445.366500px;}
.y16{bottom:451.510500px;}
.y8d{bottom:459.658500px;}
.y62{bottom:459.843000px;}
.y15{bottom:471.834000px;}
.y8c{bottom:479.983500px;}
.y61{bottom:490.731000px;}
.y14{bottom:492.157500px;}
.y32{bottom:508.021500px;}
.y13{bottom:512.481000px;}
.y8b{bottom:513.756000px;}
.y31{bottom:528.345000px;}
.y12{bottom:532.804500px;}
.y60{bottom:534.279000px;}
.y8a{bottom:547.530000px;}
.y30{bottom:548.668500px;}
.y11{bottom:553.129500px;}
.y5f{bottom:554.604000px;}
.y89{bottom:567.853500px;}
.y2f{bottom:568.992000px;}
.y5e{bottom:574.927500px;}
.y10{bottom:584.017500px;}
.y88{bottom:588.177000px;}
.y5d{bottom:595.251000px;}
.y5c{bottom:615.574500px;}
.yf{bottom:621.141000px;}
.y87{bottom:624.702000px;}
.y5b{bottom:635.898000px;}
.y5a{bottom:656.223000px;}
.ye{bottom:672.693000px;}
.y86{bottom:676.254000px;}
.y59{bottom:692.746500px;}
.yd{bottom:693.016500px;}
.y85{bottom:696.577500px;}
.yc{bottom:713.340000px;}
.y84{bottom:716.901000px;}
.yb{bottom:733.663500px;}
.y83{bottom:737.224500px;}
.y58{bottom:744.033000px;}
.ya{bottom:753.987000px;}
.y82{bottom:757.548000px;}
.y57{bottom:764.356500px;}
.y9{bottom:774.312000px;}
.y81{bottom:777.873000px;}
.y56{bottom:784.681500px;}
.y8{bottom:794.635500px;}
.y80{bottom:798.196500px;}
.y55{bottom:805.005000px;}
.y7f{bottom:818.520000px;}
.y7{bottom:831.159000px;}
.y7e{bottom:838.843500px;}
.y54{bottom:840.076500px;}
.y7d{bottom:859.167000px;}
.y53{bottom:875.149500px;}
.y7c{bottom:879.492000px;}
.y52{bottom:895.473000px;}
.y6{bottom:896.367000px;}
.y7b{bottom:899.815500px;}
.y5{bottom:917.287500px;}
.y7a{bottom:920.139000px;}
.y50{bottom:924.622500px;}
.y4{bottom:938.209500px;}
.y51{bottom:938.968500px;}
.y4d{bottom:944.253000px;}
.y79{bottom:953.911500px;}
.y3{bottom:959.131500px;}
.y4f{bottom:959.799000px;}
.y4e{bottom:965.362500px;}
.y78{bottom:974.236500px;}
.y4b{bottom:979.759500px;}
.y4c{bottom:994.107000px;}
.y48{bottom:999.390000px;}
.y2{bottom:1004.458500px;}
.y77{bottom:1008.009000px;}
.y4a{bottom:1014.936000px;}
.y49{bottom:1020.499500px;}
.y2e{bottom:1021.459500px;}
.y76{bottom:1028.332500px;}
.y45{bottom:1034.896500px;}
.y1{bottom:1037.335500px;}
.y2d{bottom:1041.783000px;}
.y75{bottom:1048.657500px;}
.y47{bottom:1049.244000px;}
.y46{bottom:1054.527000px;}
.y42{bottom:1054.528500px;}
.y2c{bottom:1062.106500px;}
.y44{bottom:1070.073000px;}
.y43{bottom:1075.636500px;}
.y2b{bottom:1082.430000px;}
.y2a{bottom:1102.753500px;}
.h9{height:0.000000px;}
.h8{height:33.187496px;}
.h7{height:49.090950px;}
.h5{height:49.156405px;}
.h6{height:50.283571px;}
.h3{height:53.870131px;}
.hf{height:60.217496px;}
.h4{height:64.643977px;}
.hd{height:65.029496px;}
.ha{height:65.035496px;}
.hc{height:70.288405px;}
.he{height:70.294405px;}
.h2{height:72.511265px;}
.hb{height:86.167496px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:85.039500px;}
.x16{left:105.109500px;}
.x8{left:110.443500px;}
.x17{left:125.949000px;}
.x3{left:130.926000px;}
.x1{left:160.597500px;}
.x6{left:243.046500px;}
.x5{left:259.581000px;}
.xb{left:308.373000px;}
.xa{left:312.198000px;}
.x14{left:314.367000px;}
.x13{left:315.469500px;}
.xc{left:318.283500px;}
.x15{left:331.540500px;}
.x4{left:344.107500px;}
.x2{left:349.134000px;}
.xe{left:362.943000px;}
.xf{left:364.483500px;}
.xd{left:366.277500px;}
.x10{left:389.307000px;}
.x11{left:404.358000px;}
.x9{left:442.389000px;}
.x12{left:515.722500px;}
@media print{
.v2{vertical-align:-14.629333pt;}
.v1{vertical-align:-9.477333pt;}
.v3{vertical-align:-7.498667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.784000pt;}
.v7{vertical-align:24.026667pt;}
.v4{vertical-align:28.309333pt;}
.v6{vertical-align:47.093333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.001146pt;}
.lsb{letter-spacing:0.001762pt;}
.lse{letter-spacing:0.001908pt;}
.ls18{letter-spacing:0.001910pt;}
.ls13{letter-spacing:0.002397pt;}
.ls15{letter-spacing:0.002405pt;}
.ls17{letter-spacing:0.003608pt;}
.ls7{letter-spacing:0.003851pt;}
.ls5{letter-spacing:0.005300pt;}
.ls10{letter-spacing:1.615008pt;}
.lsf{letter-spacing:2.087250pt;}
.lsc{letter-spacing:5.312473pt;}
.ls12{letter-spacing:8.081908pt;}
.ls1a{letter-spacing:12.925072pt;}
.ls6{letter-spacing:12.927477pt;}
.ls14{letter-spacing:12.930405pt;}
.lsd{letter-spacing:14.307851pt;}
.ls9{letter-spacing:14.787865pt;}
.lsa{letter-spacing:14.793199pt;}
.ls4{letter-spacing:16.159477pt;}
.ls8{letter-spacing:16.163851pt;}
.ls3{letter-spacing:16.165300pt;}
.ls19{letter-spacing:16.345199pt;}
.ls1{letter-spacing:16.523650pt;}
.ls0{letter-spacing:18.501834pt;}
.ls1c{letter-spacing:22.511008pt;}
.ls16{letter-spacing:741.458411pt;}
.ls1b{letter-spacing:802.514411pt;}
.ws33{word-spacing:-58.181867pt;}
.ws36{word-spacing:-37.899668pt;}
.ws57{word-spacing:-28.928024pt;}
.ws40{word-spacing:-16.162923pt;}
.ws74{word-spacing:-15.953468pt;}
.ws3b{word-spacing:-15.255285pt;}
.ws3d{word-spacing:-14.615285pt;}
.ws77{word-spacing:-14.498921pt;}
.ws6a{word-spacing:-14.033466pt;}
.ws42{word-spacing:-13.917103pt;}
.ws3e{word-spacing:-13.626193pt;}
.ws25{word-spacing:-13.568011pt;}
.ws4d{word-spacing:-13.335284pt;}
.ws4e{word-spacing:-13.328614pt;}
.ws5c{word-spacing:-13.160738pt;}
.ws55{word-spacing:-13.103215pt;}
.ws54{word-spacing:-13.102556pt;}
.ws5e{word-spacing:-12.869829pt;}
.ws6b{word-spacing:-12.811647pt;}
.ws2e{word-spacing:-12.637101pt;}
.ws1f{word-spacing:-12.404374pt;}
.ws53{word-spacing:-12.113465pt;}
.ws67{word-spacing:-11.880737pt;}
.ws20{word-spacing:-11.822555pt;}
.ws62{word-spacing:-11.182555pt;}
.ws32{word-spacing:-11.124373pt;}
.ws22{word-spacing:-10.891645pt;}
.ws35{word-spacing:-10.833464pt;}
.ws6d{word-spacing:-10.717100pt;}
.ws29{word-spacing:-10.658918pt;}
.ws19{word-spacing:-10.484372pt;}
.ws17{word-spacing:-10.426191pt;}
.ws2{word-spacing:-10.424934pt;}
.ws6f{word-spacing:-10.368009pt;}
.ws1c{word-spacing:-10.309827pt;}
.ws1a{word-spacing:-10.251645pt;}
.ws71{word-spacing:-9.786190pt;}
.wsd{word-spacing:-9.669826pt;}
.ws43{word-spacing:-9.653521pt;}
.wse{word-spacing:-9.611644pt;}
.ws2c{word-spacing:-9.204371pt;}
.ws2d{word-spacing:-9.029826pt;}
.ws6{word-spacing:-8.971644pt;}
.ws26{word-spacing:-8.680735pt;}
.ws21{word-spacing:-8.622553pt;}
.ws5d{word-spacing:-8.389825pt;}
.ws24{word-spacing:-8.331643pt;}
.ws52{word-spacing:-8.040734pt;}
.ws51{word-spacing:-8.036481pt;}
.ws23{word-spacing:-7.982552pt;}
.ws5f{word-spacing:-7.924370pt;}
.ws7f{word-spacing:-7.691643pt;}
.ws2a{word-spacing:-7.633461pt;}
.ws30{word-spacing:-7.226188pt;}
.ws16{word-spacing:-7.168006pt;}
.ws7c{word-spacing:-7.051642pt;}
.ws5b{word-spacing:-6.935279pt;}
.ws41{word-spacing:-6.877097pt;}
.ws14{word-spacing:-6.818915pt;}
.ws60{word-spacing:-6.586187pt;}
.ws3f{word-spacing:-6.469824pt;}
.wsb{word-spacing:-6.411642pt;}
.wsc{word-spacing:-6.353460pt;}
.ws28{word-spacing:-6.295278pt;}
.ws8{word-spacing:-5.888005pt;}
.ws1e{word-spacing:-5.713459pt;}
.ws2b{word-spacing:-5.480732pt;}
.ws15{word-spacing:-5.248004pt;}
.ws31{word-spacing:-5.015277pt;}
.ws1b{word-spacing:-4.957095pt;}
.ws76{word-spacing:-4.724368pt;}
.ws75{word-spacing:-4.666186pt;}
.ws61{word-spacing:-4.433458pt;}
.ws13{word-spacing:-4.375276pt;}
.ws1d{word-spacing:-4.084367pt;}
.ws7d{word-spacing:-3.968003pt;}
.ws12{word-spacing:-3.909821pt;}
.ws9{word-spacing:-3.560730pt;}
.ws5a{word-spacing:-3.444367pt;}
.ws79{word-spacing:-3.304082pt;}
.ws72{word-spacing:-3.153457pt;}
.ws63{word-spacing:-2.688002pt;}
.ws7{word-spacing:-2.571639pt;}
.wsf{word-spacing:-1.815274pt;}
.wsa{word-spacing:-1.757092pt;}
.ws66{word-spacing:-1.640729pt;}
.ws70{word-spacing:-1.291637pt;}
.ws73{word-spacing:-0.884364pt;}
.ws18{word-spacing:-0.058182pt;}
.ws34{word-spacing:-0.042507pt;}
.ws2f{word-spacing:-0.011636pt;}
.ws27{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.011636pt;}
.ws64{word-spacing:0.158484pt;}
.ws11{word-spacing:0.162909pt;}
.ws59{word-spacing:0.337455pt;}
.ws78{word-spacing:0.802910pt;}
.ws39{word-spacing:15.542907pt;}
.ws38{word-spacing:16.049604pt;}
.ws37{word-spacing:17.066078pt;}
.ws69{word-spacing:17.105469pt;}
.ws7e{word-spacing:17.163651pt;}
.ws4f{word-spacing:18.226410pt;}
.ws47{word-spacing:18.774907pt;}
.ws4a{word-spacing:18.775743pt;}
.ws56{word-spacing:18.951924pt;}
.ws44{word-spacing:19.281604pt;}
.ws68{word-spacing:19.549107pt;}
.ws50{word-spacing:20.025391pt;}
.ws7a{word-spacing:20.596381pt;}
.ws7b{word-spacing:20.654563pt;}
.ws6e{word-spacing:21.236381pt;}
.ws1{word-spacing:23.846639pt;}
.ws6c{word-spacing:25.774567pt;}
.ws3{word-spacing:27.677242pt;}
.ws4{word-spacing:27.678423pt;}
.ws10{word-spacing:27.810932pt;}
.ws58{word-spacing:27.927269pt;}
.ws5{word-spacing:28.003782pt;}
.ws65{word-spacing:31.301844pt;}
.ws0{word-spacing:32.961753pt;}
.ws4c{word-spacing:53.513014pt;}
.ws49{word-spacing:57.432178pt;}
.ws46{word-spacing:67.434122pt;}
.ws4b{word-spacing:133.806347pt;}
.ws48{word-spacing:137.725511pt;}
.ws45{word-spacing:147.727455pt;}
.ws3a{word-spacing:722.759743pt;}
._14{margin-left:-6.503629pt;}
._4{margin-left:-5.164646pt;}
._1a{margin-left:-3.966734pt;}
._0{margin-left:-2.754464pt;}
._3{margin-left:-1.721549pt;}
._5{width:1.721549pt;}
._17{width:3.024107pt;}
._1{width:3.953186pt;}
._1d{width:14.254557pt;}
._18{width:16.311658pt;}
._13{width:17.354122pt;}
._10{width:19.439939pt;}
._12{width:21.740102pt;}
._19{width:23.471199pt;}
._d{width:24.617306pt;}
._f{width:26.056621pt;}
._2{width:27.760908pt;}
._11{width:29.004853pt;}
._1b{width:30.487298pt;}
._b{width:31.880533pt;}
._e{width:33.081575pt;}
._c{width:34.210938pt;}
._a{width:35.607302pt;}
._6{width:37.414890pt;}
._16{width:39.318368pt;}
._1e{width:40.494579pt;}
._1c{width:41.676070pt;}
._8{width:43.326156pt;}
._7{width:46.928859pt;}
._9{width:49.036946pt;}
._15{width:55.004961pt;}
._1f{width:56.832412pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:10.105333pt;}
.y74{bottom:49.956000pt;}
.y73{bottom:68.021333pt;}
.y28{bottom:76.161333pt;}
.y72{bottom:86.086667pt;}
.y27{bottom:94.226667pt;}
.y26{bottom:112.293333pt;}
.y71{bottom:115.606667pt;}
.y41{bottom:122.413333pt;}
.y25{bottom:130.358667pt;}
.y70{bottom:133.673333pt;}
.y40{bottom:140.478667pt;}
.y24{bottom:148.424000pt;}
.y3f{bottom:158.544000pt;}
.y6f{bottom:163.193333pt;}
.y23{bottom:166.489333pt;}
.y3e{bottom:176.610667pt;}
.y6e{bottom:181.258667pt;}
.y22{bottom:184.554667pt;}
.y3d{bottom:194.676000pt;}
.y6d{bottom:199.324000pt;}
.y21{bottom:202.620000pt;}
.y3c{bottom:212.741333pt;}
.y20{bottom:220.686667pt;}
.y6c{bottom:228.093333pt;}
.y95{bottom:228.196000pt;}
.y1f{bottom:238.752000pt;}
.y3b{bottom:245.418667pt;}
.y6b{bottom:246.158667pt;}
.y3a{bottom:249.094667pt;}
.y1e{bottom:256.817333pt;}
.y94{bottom:258.216000pt;}
.y6a{bottom:264.224000pt;}
.y1d{bottom:274.882667pt;}
.y93{bottom:276.281333pt;}
.y39{bottom:278.096000pt;}
.y69{bottom:282.289333pt;}
.y1c{bottom:292.948000pt;}
.y38{bottom:296.161333pt;}
.y68{bottom:300.354667pt;}
.y92{bottom:306.302667pt;}
.y1b{bottom:311.014667pt;}
.y37{bottom:314.226667pt;}
.y67{bottom:318.421333pt;}
.y91{bottom:324.368000pt;}
.y1a{bottom:329.080000pt;}
.y36{bottom:332.292000pt;}
.y66{bottom:336.486667pt;}
.y90{bottom:342.433333pt;}
.y19{bottom:347.145333pt;}
.y35{bottom:350.358667pt;}
.y65{bottom:354.552000pt;}
.y8f{bottom:360.500000pt;}
.y18{bottom:365.210667pt;}
.y34{bottom:368.424000pt;}
.y64{bottom:372.617333pt;}
.y17{bottom:383.276000pt;}
.y8e{bottom:390.520000pt;}
.y63{bottom:390.682667pt;}
.y33{bottom:395.881333pt;}
.y16{bottom:401.342667pt;}
.y8d{bottom:408.585333pt;}
.y62{bottom:408.749333pt;}
.y15{bottom:419.408000pt;}
.y8c{bottom:426.652000pt;}
.y61{bottom:436.205333pt;}
.y14{bottom:437.473333pt;}
.y32{bottom:451.574667pt;}
.y13{bottom:455.538667pt;}
.y8b{bottom:456.672000pt;}
.y31{bottom:469.640000pt;}
.y12{bottom:473.604000pt;}
.y60{bottom:474.914667pt;}
.y8a{bottom:486.693333pt;}
.y30{bottom:487.705333pt;}
.y11{bottom:491.670667pt;}
.y5f{bottom:492.981333pt;}
.y89{bottom:504.758667pt;}
.y2f{bottom:505.770667pt;}
.y5e{bottom:511.046667pt;}
.y10{bottom:519.126667pt;}
.y88{bottom:522.824000pt;}
.y5d{bottom:529.112000pt;}
.y5c{bottom:547.177333pt;}
.yf{bottom:552.125333pt;}
.y87{bottom:555.290667pt;}
.y5b{bottom:565.242667pt;}
.y5a{bottom:583.309333pt;}
.ye{bottom:597.949333pt;}
.y86{bottom:601.114667pt;}
.y59{bottom:615.774667pt;}
.yd{bottom:616.014667pt;}
.y85{bottom:619.180000pt;}
.yc{bottom:634.080000pt;}
.y84{bottom:637.245333pt;}
.yb{bottom:652.145333pt;}
.y83{bottom:655.310667pt;}
.y58{bottom:661.362667pt;}
.ya{bottom:670.210667pt;}
.y82{bottom:673.376000pt;}
.y57{bottom:679.428000pt;}
.y9{bottom:688.277333pt;}
.y81{bottom:691.442667pt;}
.y56{bottom:697.494667pt;}
.y8{bottom:706.342667pt;}
.y80{bottom:709.508000pt;}
.y55{bottom:715.560000pt;}
.y7f{bottom:727.573333pt;}
.y7{bottom:738.808000pt;}
.y7e{bottom:745.638667pt;}
.y54{bottom:746.734667pt;}
.y7d{bottom:763.704000pt;}
.y53{bottom:777.910667pt;}
.y7c{bottom:781.770667pt;}
.y52{bottom:795.976000pt;}
.y6{bottom:796.770667pt;}
.y7b{bottom:799.836000pt;}
.y5{bottom:815.366667pt;}
.y7a{bottom:817.901333pt;}
.y50{bottom:821.886667pt;}
.y4{bottom:833.964000pt;}
.y51{bottom:834.638667pt;}
.y4d{bottom:839.336000pt;}
.y79{bottom:847.921333pt;}
.y3{bottom:852.561333pt;}
.y4f{bottom:853.154667pt;}
.y4e{bottom:858.100000pt;}
.y78{bottom:865.988000pt;}
.y4b{bottom:870.897333pt;}
.y4c{bottom:883.650667pt;}
.y48{bottom:888.346667pt;}
.y2{bottom:892.852000pt;}
.y77{bottom:896.008000pt;}
.y4a{bottom:902.165333pt;}
.y49{bottom:907.110667pt;}
.y2e{bottom:907.964000pt;}
.y76{bottom:914.073333pt;}
.y45{bottom:919.908000pt;}
.y1{bottom:922.076000pt;}
.y2d{bottom:926.029333pt;}
.y75{bottom:932.140000pt;}
.y47{bottom:932.661333pt;}
.y46{bottom:937.357333pt;}
.y42{bottom:937.358667pt;}
.y2c{bottom:944.094667pt;}
.y44{bottom:951.176000pt;}
.y43{bottom:956.121333pt;}
.y2b{bottom:962.160000pt;}
.y2a{bottom:980.225333pt;}
.h9{height:0.000000pt;}
.h8{height:29.499997pt;}
.h7{height:43.636400pt;}
.h5{height:43.694582pt;}
.h6{height:44.696508pt;}
.h3{height:47.884561pt;}
.hf{height:53.526663pt;}
.h4{height:57.461313pt;}
.hd{height:57.803997pt;}
.ha{height:57.809330pt;}
.hc{height:62.478582pt;}
.he{height:62.483915pt;}
.h2{height:64.454458pt;}
.hb{height:76.593330pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:75.590667pt;}
.x16{left:93.430667pt;}
.x8{left:98.172000pt;}
.x17{left:111.954667pt;}
.x3{left:116.378667pt;}
.x1{left:142.753333pt;}
.x6{left:216.041333pt;}
.x5{left:230.738667pt;}
.xb{left:274.109333pt;}
.xa{left:277.509333pt;}
.x14{left:279.437333pt;}
.x13{left:280.417333pt;}
.xc{left:282.918667pt;}
.x15{left:294.702667pt;}
.x4{left:305.873333pt;}
.x2{left:310.341333pt;}
.xe{left:322.616000pt;}
.xf{left:323.985333pt;}
.xd{left:325.580000pt;}
.x10{left:346.050667pt;}
.x11{left:359.429333pt;}
.x9{left:393.234667pt;}
.x12{left:458.420000pt;}
}




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