
    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_10250ccf40e51da0b67069be.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.037000;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_7c60053e910fa083b1c6f842.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_26d64f809c3506c691f37149.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.143000;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_14394be2701832412e2b3410.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734000;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_5801b94dd654269958ec1285.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731000;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_76d58675239f1d4cf80f33d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.135000;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_dfdd925a53fb8ff66d5b0ea3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.731000;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_a43c8e7db5ed01e5a6cd8016.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;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_d4982abf06de5bbed1400b56.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.967000;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_b6e8409ce18814249540c9e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_6b88abfb74a30b91575c9553.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.472000;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;}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.108000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.171000px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.960000px;}
.ls7{letter-spacing:1.966500px;}
.ls0{letter-spacing:2757.745714px;}
.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;}
}
.ws74{word-spacing:-18.838500px;}
.ws20{word-spacing:-16.872000px;}
.ws0{word-spacing:-14.400000px;}
.ws75{word-spacing:-14.256000px;}
.ws2{word-spacing:-11.400000px;}
.ws1{word-spacing:-10.800000px;}
.ws1f{word-spacing:-9.600000px;}
.ws8a{word-spacing:-9.000000px;}
.ws29{word-spacing:-5.985000px;}
.ws32{word-spacing:-5.472000px;}
.ws48{word-spacing:-3.762000px;}
.ws2e{word-spacing:-3.249000px;}
.ws36{word-spacing:-3.135000px;}
.ws47{word-spacing:-3.078000px;}
.ws44{word-spacing:-2.964000px;}
.ws4c{word-spacing:-2.907000px;}
.ws7d{word-spacing:-2.793000px;}
.ws63{word-spacing:-2.679000px;}
.ws11{word-spacing:-2.451000px;}
.ws31{word-spacing:-2.394000px;}
.ws15{word-spacing:-2.337000px;}
.ws5a{word-spacing:-2.280000px;}
.ws71{word-spacing:-2.223000px;}
.ws35{word-spacing:-1.938000px;}
.ws39{word-spacing:-1.881000px;}
.ws37{word-spacing:-1.824000px;}
.ws8d{word-spacing:-1.710000px;}
.ws3f{word-spacing:-1.653000px;}
.ws99{word-spacing:-1.530000px;}
.ws6f{word-spacing:-1.482000px;}
.ws65{word-spacing:-1.368000px;}
.ws40{word-spacing:-1.197000px;}
.ws73{word-spacing:-1.083000px;}
.ws49{word-spacing:-1.026000px;}
.ws9f{word-spacing:-0.990000px;}
.ws21{word-spacing:-0.960000px;}
.ws5d{word-spacing:-0.912000px;}
.ws6e{word-spacing:-0.798000px;}
.ws3a{word-spacing:-0.741000px;}
.ws38{word-spacing:-0.684000px;}
.wsab{word-spacing:-0.675000px;}
.wsa4{word-spacing:-0.630000px;}
.ws58{word-spacing:-0.627000px;}
.ws9c{word-spacing:-0.585000px;}
.ws67{word-spacing:-0.570000px;}
.wsad{word-spacing:-0.495000px;}
.ws79{word-spacing:-0.399000px;}
.ws1c{word-spacing:-0.285000px;}
.ws4b{word-spacing:-0.228000px;}
.wsa8{word-spacing:-0.090000px;}
.ws8b{word-spacing:-0.044400px;}
.ws3{word-spacing:0.000000px;}
.ws4e{word-spacing:0.114000px;}
.ws4f{word-spacing:0.171000px;}
.ws22{word-spacing:0.228000px;}
.ws56{word-spacing:0.342000px;}
.ws77{word-spacing:0.399000px;}
.ws43{word-spacing:0.456000px;}
.ws69{word-spacing:0.513000px;}
.ws2c{word-spacing:0.855000px;}
.wsa0{word-spacing:1.215000px;}
.ws78{word-spacing:1.254000px;}
.ws55{word-spacing:1.368000px;}
.wsa1{word-spacing:1.395000px;}
.ws6c{word-spacing:1.425000px;}
.ws50{word-spacing:1.482000px;}
.ws8c{word-spacing:1.575000px;}
.ws57{word-spacing:1.596000px;}
.ws6d{word-spacing:1.653000px;}
.ws93{word-spacing:1.710000px;}
.wsaa{word-spacing:1.890000px;}
.ws2d{word-spacing:1.995000px;}
.ws27{word-spacing:2.052000px;}
.ws9b{word-spacing:2.070000px;}
.ws3c{word-spacing:2.166000px;}
.ws70{word-spacing:2.223000px;}
.ws1e{word-spacing:2.280000px;}
.ws81{word-spacing:2.337000px;}
.ws3b{word-spacing:2.394000px;}
.ws23{word-spacing:2.508000px;}
.ws92{word-spacing:2.565000px;}
.ws64{word-spacing:2.622000px;}
.ws24{word-spacing:2.736000px;}
.ws33{word-spacing:2.793000px;}
.wsa2{word-spacing:2.835000px;}
.ws84{word-spacing:2.850000px;}
.ws34{word-spacing:2.907000px;}
.ws95{word-spacing:3.060000px;}
.ws94{word-spacing:3.105000px;}
.ws7a{word-spacing:3.135000px;}
.ws4d{word-spacing:3.306000px;}
.ws72{word-spacing:3.363000px;}
.ws98{word-spacing:3.375000px;}
.ws17{word-spacing:3.420000px;}
.ws1b{word-spacing:3.477000px;}
.ws96{word-spacing:3.645000px;}
.ws9e{word-spacing:3.825000px;}
.ws59{word-spacing:3.876000px;}
.ws19{word-spacing:3.933000px;}
.ws5e{word-spacing:4.047000px;}
.ws9{word-spacing:4.158000px;}
.ws5f{word-spacing:4.161000px;}
.wsa{word-spacing:4.266000px;}
.ws2b{word-spacing:4.275000px;}
.ws6{word-spacing:4.320000px;}
.ws42{word-spacing:4.332000px;}
.ws18{word-spacing:4.389000px;}
.ws52{word-spacing:4.590000px;}
.ws2a{word-spacing:4.617000px;}
.wsf{word-spacing:4.731000px;}
.ws1d{word-spacing:4.959000px;}
.ws9d{word-spacing:5.040000px;}
.ws62{word-spacing:5.130000px;}
.wsac{word-spacing:5.175000px;}
.ws3e{word-spacing:5.187000px;}
.ws10{word-spacing:5.358000px;}
.ws7c{word-spacing:5.415000px;}
.ws82{word-spacing:5.529000px;}
.ws6b{word-spacing:5.643000px;}
.ws53{word-spacing:5.700000px;}
.ws91{word-spacing:5.760000px;}
.wsa7{word-spacing:5.940000px;}
.ws8{word-spacing:6.102000px;}
.ws14{word-spacing:6.669000px;}
.ws6a{word-spacing:6.840000px;}
.ws46{word-spacing:7.068000px;}
.ws45{word-spacing:7.182000px;}
.ws76{word-spacing:7.581000px;}
.ws97{word-spacing:7.650000px;}
.ws7e{word-spacing:7.695000px;}
.wsa9{word-spacing:7.875000px;}
.ws41{word-spacing:7.980000px;}
.ws83{word-spacing:8.037000px;}
.ws3d{word-spacing:8.151000px;}
.ws90{word-spacing:8.280000px;}
.wsa3{word-spacing:8.325000px;}
.ws8e{word-spacing:8.415000px;}
.ws13{word-spacing:8.493000px;}
.ws51{word-spacing:8.640000px;}
.ws5c{word-spacing:8.835000px;}
.ws4a{word-spacing:8.892000px;}
.ws68{word-spacing:8.949000px;}
.ws7f{word-spacing:9.006000px;}
.ws60{word-spacing:9.063000px;}
.ws7{word-spacing:9.180000px;}
.ws1a{word-spacing:9.405000px;}
.wse{word-spacing:9.576000px;}
.ws88{word-spacing:9.666000px;}
.ws61{word-spacing:9.975000px;}
.ws28{word-spacing:10.488000px;}
.ws16{word-spacing:10.602000px;}
.ws54{word-spacing:11.001000px;}
.wsb{word-spacing:11.058000px;}
.ws26{word-spacing:11.115000px;}
.ws9a{word-spacing:11.835000px;}
.ws80{word-spacing:11.970000px;}
.ws8f{word-spacing:12.195000px;}
.ws66{word-spacing:12.312000px;}
.ws85{word-spacing:12.654000px;}
.ws5b{word-spacing:12.882000px;}
.ws5{word-spacing:12.906000px;}
.ws25{word-spacing:12.939000px;}
.ws89{word-spacing:13.392000px;}
.wsd{word-spacing:13.452000px;}
.ws87{word-spacing:14.418000px;}
.wsa6{word-spacing:14.985000px;}
.wsc{word-spacing:16.416000px;}
.ws86{word-spacing:16.578000px;}
.ws7b{word-spacing:16.644000px;}
.wsa5{word-spacing:17.100000px;}
.ws2f{word-spacing:17.157000px;}
.ws12{word-spacing:21.546000px;}
.ws30{word-spacing:24.795000px;}
.ws4{word-spacing:47.736000px;}
._e{margin-left:-10.186500px;}
._0{margin-left:-6.552000px;}
._a{margin-left:-4.949700px;}
._1{margin-left:-3.887755px;}
._5{margin-left:-2.503800px;}
._7{margin-left:-1.269000px;}
._4{width:1.080000px;}
._2{width:2.224800px;}
._6{width:3.771000px;}
._f{width:29.070000px;}
._9{width:47.735876px;}
._8{width:49.399812px;}
._10{width:559.317551px;}
._d{width:567.716327px;}
._3{width:946.555200px;}
._11{width:1590.924367px;}
._b{width:1602.451102px;}
._c{width:1920.957551px;}
.fc1{color:rgb(0,84,152);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs7{font-size:44.400000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.787450px;}
.y26{bottom:127.353450px;}
.ya2{bottom:146.805450px;}
.y31{bottom:146.829450px;}
.y25{bottom:146.847450px;}
.ya1{bottom:166.299450px;}
.y30{bottom:166.323450px;}
.y24{bottom:166.341450px;}
.ya0{bottom:185.793450px;}
.y2f{bottom:185.817450px;}
.y23{bottom:185.835450px;}
.y75{bottom:185.991450px;}
.y9f{bottom:205.287450px;}
.y2e{bottom:205.311450px;}
.y22{bottom:205.329450px;}
.y74{bottom:205.485450px;}
.y9e{bottom:224.787450px;}
.y2d{bottom:224.805450px;}
.yc3{bottom:224.811450px;}
.y21{bottom:224.823450px;}
.y73{bottom:224.979450px;}
.yb5{bottom:244.287450px;}
.y2c{bottom:244.299450px;}
.yc2{bottom:244.305450px;}
.y20{bottom:244.317450px;}
.y72{bottom:244.473450px;}
.yf6{bottom:263.787450px;}
.y2b{bottom:263.793450px;}
.yc1{bottom:263.799450px;}
.y1f{bottom:263.811450px;}
.y4b{bottom:263.925300px;}
.y71{bottom:263.967450px;}
.y9d{bottom:263.968200px;}
.y2a{bottom:283.287450px;}
.yc0{bottom:283.293450px;}
.y1e{bottom:283.305450px;}
.y4a{bottom:283.419300px;}
.y70{bottom:283.461450px;}
.y9c{bottom:283.462200px;}
.ybf{bottom:302.787450px;}
.y1d{bottom:302.799450px;}
.y29{bottom:302.870700px;}
.yb4{bottom:302.895450px;}
.y49{bottom:302.913300px;}
.y6f{bottom:302.955450px;}
.y9b{bottom:302.956200px;}
.yf5{bottom:309.335400px;}
.ybe{bottom:322.287450px;}
.y1c{bottom:322.293450px;}
.y28{bottom:322.364700px;}
.yb3{bottom:322.389450px;}
.y48{bottom:322.407300px;}
.y6e{bottom:322.449450px;}
.y9a{bottom:322.450200px;}
.yf4{bottom:323.589150px;}
.yf3{bottom:337.842900px;}
.y1b{bottom:341.787450px;}
.y27{bottom:341.858700px;}
.yb2{bottom:341.883450px;}
.y47{bottom:341.901300px;}
.y6d{bottom:341.943450px;}
.y99{bottom:341.944200px;}
.yf2{bottom:356.349150px;}
.ybd{bottom:361.287450px;}
.y88{bottom:361.359450px;}
.yb1{bottom:361.377450px;}
.y46{bottom:361.395300px;}
.y6c{bottom:361.437450px;}
.y98{bottom:361.438200px;}
.yf1{bottom:370.602900px;}
.y1a{bottom:380.787450px;}
.y87{bottom:380.853450px;}
.yb0{bottom:380.871450px;}
.y45{bottom:380.889300px;}
.y6b{bottom:380.931450px;}
.y97{bottom:380.932200px;}
.yf0{bottom:384.856650px;}
.yef{bottom:399.110400px;}
.y86{bottom:400.347450px;}
.yaf{bottom:400.365450px;}
.y44{bottom:400.383300px;}
.y6a{bottom:400.425450px;}
.y96{bottom:400.426200px;}
.yee{bottom:413.364150px;}
.y85{bottom:419.841450px;}
.yae{bottom:419.859450px;}
.y43{bottom:419.877300px;}
.y69{bottom:419.919450px;}
.y95{bottom:419.920200px;}
.yed{bottom:431.870400px;}
.y19{bottom:439.305450px;}
.y84{bottom:439.335450px;}
.yad{bottom:439.353450px;}
.y42{bottom:439.371300px;}
.y68{bottom:439.413450px;}
.y94{bottom:439.414200px;}
.yec{bottom:446.124150px;}
.ybc{bottom:458.793450px;}
.y18{bottom:458.799450px;}
.y83{bottom:458.829450px;}
.yac{bottom:458.847450px;}
.y41{bottom:458.865300px;}
.y67{bottom:458.907450px;}
.y93{bottom:458.908200px;}
.yeb{bottom:460.377900px;}
.ybb{bottom:478.287450px;}
.y17{bottom:478.293450px;}
.y82{bottom:478.323450px;}
.yab{bottom:478.341450px;}
.y40{bottom:478.359300px;}
.y66{bottom:478.401450px;}
.y92{bottom:478.402200px;}
.yea{bottom:478.884150px;}
.ye9{bottom:493.137900px;}
.y16{bottom:497.787450px;}
.y81{bottom:497.817450px;}
.yaa{bottom:497.835450px;}
.y3f{bottom:497.853300px;}
.y65{bottom:497.895450px;}
.y91{bottom:497.896200px;}
.ye8{bottom:511.644150px;}
.y15{bottom:517.287450px;}
.y80{bottom:517.311450px;}
.ya9{bottom:517.329450px;}
.y3e{bottom:517.347300px;}
.y64{bottom:517.389450px;}
.y90{bottom:517.390200px;}
.ye7{bottom:525.897900px;}
.y7f{bottom:536.805450px;}
.ya8{bottom:536.823450px;}
.y3d{bottom:536.841300px;}
.y63{bottom:536.883450px;}
.y8f{bottom:536.884200px;}
.ye6{bottom:540.151650px;}
.y7e{bottom:556.299450px;}
.y14{bottom:556.305450px;}
.ya7{bottom:556.317450px;}
.y3c{bottom:556.335300px;}
.y62{bottom:556.377450px;}
.y8e{bottom:556.378200px;}
.ye5{bottom:558.657900px;}
.ye4{bottom:572.911650px;}
.y7d{bottom:575.793450px;}
.y13{bottom:575.799450px;}
.ya6{bottom:575.811450px;}
.y3b{bottom:575.829300px;}
.yba{bottom:575.830200px;}
.y61{bottom:575.871450px;}
.y8d{bottom:575.872200px;}
.ye3{bottom:587.165400px;}
.y7c{bottom:595.287450px;}
.y12{bottom:595.293450px;}
.ya5{bottom:595.305450px;}
.y3a{bottom:595.323300px;}
.yb9{bottom:595.324200px;}
.y60{bottom:595.365450px;}
.y8c{bottom:595.366200px;}
.ye2{bottom:605.671650px;}
.y11{bottom:614.787450px;}
.ya4{bottom:614.799450px;}
.y39{bottom:614.817300px;}
.yb8{bottom:614.818200px;}
.y5f{bottom:614.859450px;}
.y8b{bottom:614.860200px;}
.ye1{bottom:619.925400px;}
.ye0{bottom:634.179150px;}
.y10{bottom:634.287450px;}
.ya3{bottom:634.293450px;}
.y38{bottom:634.311300px;}
.yb7{bottom:634.312200px;}
.y5e{bottom:634.353450px;}
.y8a{bottom:634.354200px;}
.ydf{bottom:648.432900px;}
.y7b{bottom:653.787450px;}
.y37{bottom:653.805300px;}
.yb6{bottom:653.806200px;}
.y5d{bottom:653.847450px;}
.y89{bottom:653.848200px;}
.yde{bottom:662.686650px;}
.y36{bottom:673.299300px;}
.y5c{bottom:673.341450px;}
.ydd{bottom:681.192900px;}
.y35{bottom:692.793300px;}
.y5b{bottom:692.835450px;}
.ydc{bottom:695.446650px;}
.y34{bottom:712.287300px;}
.y5a{bottom:712.329450px;}
.yc4{bottom:712.676250px;}
.ydb{bottom:713.952900px;}
.y7a{bottom:719.682300px;}
.yda{bottom:728.206650px;}
.yf{bottom:731.787450px;}
.y59{bottom:731.823450px;}
.y79{bottom:733.936050px;}
.yd9{bottom:742.460400px;}
.ye{bottom:751.287450px;}
.y58{bottom:751.317450px;}
.yd8{bottom:760.966650px;}
.yd{bottom:770.787450px;}
.y57{bottom:770.811450px;}
.yd7{bottom:775.220400px;}
.yd6{bottom:789.474150px;}
.yc{bottom:790.287450px;}
.y56{bottom:790.305450px;}
.yd5{bottom:807.980400px;}
.yb{bottom:809.787450px;}
.y55{bottom:809.799450px;}
.y77{bottom:811.099800px;}
.yd4{bottom:822.234150px;}
.y76{bottom:825.353550px;}
.ya{bottom:829.287450px;}
.y54{bottom:829.293450px;}
.yd3{bottom:840.740400px;}
.y53{bottom:848.787450px;}
.yd2{bottom:854.994150px;}
.y9{bottom:868.293450px;}
.yd1{bottom:873.500400px;}
.yd0{bottom:887.754150px;}
.y8{bottom:887.787450px;}
.ycf{bottom:902.007900px;}
.yce{bottom:920.514150px;}
.y100{bottom:929.010600px;}
.ycd{bottom:934.767900px;}
.yff{bottom:943.264350px;}
.y52{bottom:946.317450px;}
.ycc{bottom:949.021650px;}
.yfe{bottom:957.518100px;}
.y7{bottom:958.279950px;}
.y51{bottom:965.811450px;}
.ycb{bottom:967.516050px;}
.yfd{bottom:971.771850px;}
.yca{bottom:981.769800px;}
.y6{bottom:985.279950px;}
.y50{bottom:985.305450px;}
.yfb{bottom:986.021850px;}
.yfc{bottom:986.025600px;}
.yc8{bottom:996.011850px;}
.yc9{bottom:996.023550px;}
.yf9{bottom:1000.271850px;}
.yfa{bottom:1000.275600px;}
.y4f{bottom:1004.799450px;}
.yc7{bottom:1010.265600px;}
.yf8{bottom:1014.525600px;}
.y4e{bottom:1024.293450px;}
.yc6{bottom:1028.771850px;}
.yf7{bottom:1028.775600px;}
.y5{bottom:1036.287450px;}
.yc5{bottom:1043.025600px;}
.y4d{bottom:1043.787450px;}
.y4{bottom:1063.287450px;}
.y4c{bottom:1082.787450px;}
.y3{bottom:1137.565500px;}
.y78{bottom:1143.375450px;}
.y33{bottom:1143.975450px;}
.y2{bottom:1158.565500px;}
.y32{bottom:1164.975450px;}
.hc{height:30.408000px;}
.h2{height:33.894000px;}
.h4{height:38.736000px;}
.h10{height:40.004400px;}
.he{height:40.545000px;}
.hd{height:40.860000px;}
.ha{height:41.895000px;}
.hb{height:43.584000px;}
.h8{height:48.654000px;}
.h7{height:49.032000px;}
.hf{height:50.400000px;}
.h9{height:51.756000px;}
.h3{height:65.376000px;}
.h6{height:72.630000px;}
.h5{height:81.720000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:100.098450px;}
.x3{left:102.047250px;}
.x2{left:110.551200px;}
.xd{left:114.799688px;}
.xe{left:134.194050px;}
.xb{left:154.213500px;}
.x9{left:174.806400px;}
.x4{left:189.251700px;}
.x5{left:317.480400px;}
.xc{left:319.613400px;}
.x8{left:329.126100px;}
.x6{left:457.090703px;}
.xf{left:474.094500px;}
.x10{left:526.374150px;}
.x7{left:629.552100px;}
.xa{left:636.546300px;}
.x12{left:719.099700px;}
.x11{left:737.204550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.152000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.853333pt;}
.ls7{letter-spacing:1.748000pt;}
.ls0{letter-spacing:2451.329524pt;}
.ws74{word-spacing:-16.745333pt;}
.ws20{word-spacing:-14.997333pt;}
.ws0{word-spacing:-12.800000pt;}
.ws75{word-spacing:-12.672000pt;}
.ws2{word-spacing:-10.133333pt;}
.ws1{word-spacing:-9.600000pt;}
.ws1f{word-spacing:-8.533333pt;}
.ws8a{word-spacing:-8.000000pt;}
.ws29{word-spacing:-5.320000pt;}
.ws32{word-spacing:-4.864000pt;}
.ws48{word-spacing:-3.344000pt;}
.ws2e{word-spacing:-2.888000pt;}
.ws36{word-spacing:-2.786667pt;}
.ws47{word-spacing:-2.736000pt;}
.ws44{word-spacing:-2.634667pt;}
.ws4c{word-spacing:-2.584000pt;}
.ws7d{word-spacing:-2.482667pt;}
.ws63{word-spacing:-2.381333pt;}
.ws11{word-spacing:-2.178667pt;}
.ws31{word-spacing:-2.128000pt;}
.ws15{word-spacing:-2.077333pt;}
.ws5a{word-spacing:-2.026667pt;}
.ws71{word-spacing:-1.976000pt;}
.ws35{word-spacing:-1.722667pt;}
.ws39{word-spacing:-1.672000pt;}
.ws37{word-spacing:-1.621333pt;}
.ws8d{word-spacing:-1.520000pt;}
.ws3f{word-spacing:-1.469333pt;}
.ws99{word-spacing:-1.360000pt;}
.ws6f{word-spacing:-1.317333pt;}
.ws65{word-spacing:-1.216000pt;}
.ws40{word-spacing:-1.064000pt;}
.ws73{word-spacing:-0.962667pt;}
.ws49{word-spacing:-0.912000pt;}
.ws9f{word-spacing:-0.880000pt;}
.ws21{word-spacing:-0.853333pt;}
.ws5d{word-spacing:-0.810667pt;}
.ws6e{word-spacing:-0.709333pt;}
.ws3a{word-spacing:-0.658667pt;}
.ws38{word-spacing:-0.608000pt;}
.wsab{word-spacing:-0.600000pt;}
.wsa4{word-spacing:-0.560000pt;}
.ws58{word-spacing:-0.557333pt;}
.ws9c{word-spacing:-0.520000pt;}
.ws67{word-spacing:-0.506667pt;}
.wsad{word-spacing:-0.440000pt;}
.ws79{word-spacing:-0.354667pt;}
.ws1c{word-spacing:-0.253333pt;}
.ws4b{word-spacing:-0.202667pt;}
.wsa8{word-spacing:-0.080000pt;}
.ws8b{word-spacing:-0.039467pt;}
.ws3{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.101333pt;}
.ws4f{word-spacing:0.152000pt;}
.ws22{word-spacing:0.202667pt;}
.ws56{word-spacing:0.304000pt;}
.ws77{word-spacing:0.354667pt;}
.ws43{word-spacing:0.405333pt;}
.ws69{word-spacing:0.456000pt;}
.ws2c{word-spacing:0.760000pt;}
.wsa0{word-spacing:1.080000pt;}
.ws78{word-spacing:1.114667pt;}
.ws55{word-spacing:1.216000pt;}
.wsa1{word-spacing:1.240000pt;}
.ws6c{word-spacing:1.266667pt;}
.ws50{word-spacing:1.317333pt;}
.ws8c{word-spacing:1.400000pt;}
.ws57{word-spacing:1.418667pt;}
.ws6d{word-spacing:1.469333pt;}
.ws93{word-spacing:1.520000pt;}
.wsaa{word-spacing:1.680000pt;}
.ws2d{word-spacing:1.773333pt;}
.ws27{word-spacing:1.824000pt;}
.ws9b{word-spacing:1.840000pt;}
.ws3c{word-spacing:1.925333pt;}
.ws70{word-spacing:1.976000pt;}
.ws1e{word-spacing:2.026667pt;}
.ws81{word-spacing:2.077333pt;}
.ws3b{word-spacing:2.128000pt;}
.ws23{word-spacing:2.229333pt;}
.ws92{word-spacing:2.280000pt;}
.ws64{word-spacing:2.330667pt;}
.ws24{word-spacing:2.432000pt;}
.ws33{word-spacing:2.482667pt;}
.wsa2{word-spacing:2.520000pt;}
.ws84{word-spacing:2.533333pt;}
.ws34{word-spacing:2.584000pt;}
.ws95{word-spacing:2.720000pt;}
.ws94{word-spacing:2.760000pt;}
.ws7a{word-spacing:2.786667pt;}
.ws4d{word-spacing:2.938667pt;}
.ws72{word-spacing:2.989333pt;}
.ws98{word-spacing:3.000000pt;}
.ws17{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.090667pt;}
.ws96{word-spacing:3.240000pt;}
.ws9e{word-spacing:3.400000pt;}
.ws59{word-spacing:3.445333pt;}
.ws19{word-spacing:3.496000pt;}
.ws5e{word-spacing:3.597333pt;}
.ws9{word-spacing:3.696000pt;}
.ws5f{word-spacing:3.698667pt;}
.wsa{word-spacing:3.792000pt;}
.ws2b{word-spacing:3.800000pt;}
.ws6{word-spacing:3.840000pt;}
.ws42{word-spacing:3.850667pt;}
.ws18{word-spacing:3.901333pt;}
.ws52{word-spacing:4.080000pt;}
.ws2a{word-spacing:4.104000pt;}
.wsf{word-spacing:4.205333pt;}
.ws1d{word-spacing:4.408000pt;}
.ws9d{word-spacing:4.480000pt;}
.ws62{word-spacing:4.560000pt;}
.wsac{word-spacing:4.600000pt;}
.ws3e{word-spacing:4.610667pt;}
.ws10{word-spacing:4.762667pt;}
.ws7c{word-spacing:4.813333pt;}
.ws82{word-spacing:4.914667pt;}
.ws6b{word-spacing:5.016000pt;}
.ws53{word-spacing:5.066667pt;}
.ws91{word-spacing:5.120000pt;}
.wsa7{word-spacing:5.280000pt;}
.ws8{word-spacing:5.424000pt;}
.ws14{word-spacing:5.928000pt;}
.ws6a{word-spacing:6.080000pt;}
.ws46{word-spacing:6.282667pt;}
.ws45{word-spacing:6.384000pt;}
.ws76{word-spacing:6.738667pt;}
.ws97{word-spacing:6.800000pt;}
.ws7e{word-spacing:6.840000pt;}
.wsa9{word-spacing:7.000000pt;}
.ws41{word-spacing:7.093333pt;}
.ws83{word-spacing:7.144000pt;}
.ws3d{word-spacing:7.245333pt;}
.ws90{word-spacing:7.360000pt;}
.wsa3{word-spacing:7.400000pt;}
.ws8e{word-spacing:7.480000pt;}
.ws13{word-spacing:7.549333pt;}
.ws51{word-spacing:7.680000pt;}
.ws5c{word-spacing:7.853333pt;}
.ws4a{word-spacing:7.904000pt;}
.ws68{word-spacing:7.954667pt;}
.ws7f{word-spacing:8.005333pt;}
.ws60{word-spacing:8.056000pt;}
.ws7{word-spacing:8.160000pt;}
.ws1a{word-spacing:8.360000pt;}
.wse{word-spacing:8.512000pt;}
.ws88{word-spacing:8.592000pt;}
.ws61{word-spacing:8.866667pt;}
.ws28{word-spacing:9.322667pt;}
.ws16{word-spacing:9.424000pt;}
.ws54{word-spacing:9.778667pt;}
.wsb{word-spacing:9.829333pt;}
.ws26{word-spacing:9.880000pt;}
.ws9a{word-spacing:10.520000pt;}
.ws80{word-spacing:10.640000pt;}
.ws8f{word-spacing:10.840000pt;}
.ws66{word-spacing:10.944000pt;}
.ws85{word-spacing:11.248000pt;}
.ws5b{word-spacing:11.450667pt;}
.ws5{word-spacing:11.472000pt;}
.ws25{word-spacing:11.501333pt;}
.ws89{word-spacing:11.904000pt;}
.wsd{word-spacing:11.957333pt;}
.ws87{word-spacing:12.816000pt;}
.wsa6{word-spacing:13.320000pt;}
.wsc{word-spacing:14.592000pt;}
.ws86{word-spacing:14.736000pt;}
.ws7b{word-spacing:14.794667pt;}
.wsa5{word-spacing:15.200000pt;}
.ws2f{word-spacing:15.250667pt;}
.ws12{word-spacing:19.152000pt;}
.ws30{word-spacing:22.040000pt;}
.ws4{word-spacing:42.432000pt;}
._e{margin-left:-9.054667pt;}
._0{margin-left:-5.824000pt;}
._a{margin-left:-4.399733pt;}
._1{margin-left:-3.455782pt;}
._5{margin-left:-2.225600pt;}
._7{margin-left:-1.128000pt;}
._4{width:0.960000pt;}
._2{width:1.977600pt;}
._6{width:3.352000pt;}
._f{width:25.840000pt;}
._9{width:42.431890pt;}
._8{width:43.910944pt;}
._10{width:497.171156pt;}
._d{width:504.636735pt;}
._3{width:841.382400pt;}
._11{width:1414.154993pt;}
._b{width:1424.400980pt;}
._c{width:1707.517823pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:39.466667pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.144400pt;}
.y26{bottom:113.203067pt;}
.ya2{bottom:130.493733pt;}
.y31{bottom:130.515067pt;}
.y25{bottom:130.531067pt;}
.ya1{bottom:147.821733pt;}
.y30{bottom:147.843067pt;}
.y24{bottom:147.859067pt;}
.ya0{bottom:165.149733pt;}
.y2f{bottom:165.171067pt;}
.y23{bottom:165.187067pt;}
.y75{bottom:165.325733pt;}
.y9f{bottom:182.477733pt;}
.y2e{bottom:182.499067pt;}
.y22{bottom:182.515067pt;}
.y74{bottom:182.653733pt;}
.y9e{bottom:199.811067pt;}
.y2d{bottom:199.827067pt;}
.yc3{bottom:199.832400pt;}
.y21{bottom:199.843067pt;}
.y73{bottom:199.981733pt;}
.yb5{bottom:217.144400pt;}
.y2c{bottom:217.155067pt;}
.yc2{bottom:217.160400pt;}
.y20{bottom:217.171067pt;}
.y72{bottom:217.309733pt;}
.yf6{bottom:234.477733pt;}
.y2b{bottom:234.483067pt;}
.yc1{bottom:234.488400pt;}
.y1f{bottom:234.499067pt;}
.y4b{bottom:234.600267pt;}
.y71{bottom:234.637733pt;}
.y9d{bottom:234.638400pt;}
.y2a{bottom:251.811067pt;}
.yc0{bottom:251.816400pt;}
.y1e{bottom:251.827067pt;}
.y4a{bottom:251.928267pt;}
.y70{bottom:251.965733pt;}
.y9c{bottom:251.966400pt;}
.ybf{bottom:269.144400pt;}
.y1d{bottom:269.155067pt;}
.y29{bottom:269.218400pt;}
.yb4{bottom:269.240400pt;}
.y49{bottom:269.256267pt;}
.y6f{bottom:269.293733pt;}
.y9b{bottom:269.294400pt;}
.yf5{bottom:274.964800pt;}
.ybe{bottom:286.477733pt;}
.y1c{bottom:286.483067pt;}
.y28{bottom:286.546400pt;}
.yb3{bottom:286.568400pt;}
.y48{bottom:286.584267pt;}
.y6e{bottom:286.621733pt;}
.y9a{bottom:286.622400pt;}
.yf4{bottom:287.634800pt;}
.yf3{bottom:300.304800pt;}
.y1b{bottom:303.811067pt;}
.y27{bottom:303.874400pt;}
.yb2{bottom:303.896400pt;}
.y47{bottom:303.912267pt;}
.y6d{bottom:303.949733pt;}
.y99{bottom:303.950400pt;}
.yf2{bottom:316.754800pt;}
.ybd{bottom:321.144400pt;}
.y88{bottom:321.208400pt;}
.yb1{bottom:321.224400pt;}
.y46{bottom:321.240267pt;}
.y6c{bottom:321.277733pt;}
.y98{bottom:321.278400pt;}
.yf1{bottom:329.424800pt;}
.y1a{bottom:338.477733pt;}
.y87{bottom:338.536400pt;}
.yb0{bottom:338.552400pt;}
.y45{bottom:338.568267pt;}
.y6b{bottom:338.605733pt;}
.y97{bottom:338.606400pt;}
.yf0{bottom:342.094800pt;}
.yef{bottom:354.764800pt;}
.y86{bottom:355.864400pt;}
.yaf{bottom:355.880400pt;}
.y44{bottom:355.896267pt;}
.y6a{bottom:355.933733pt;}
.y96{bottom:355.934400pt;}
.yee{bottom:367.434800pt;}
.y85{bottom:373.192400pt;}
.yae{bottom:373.208400pt;}
.y43{bottom:373.224267pt;}
.y69{bottom:373.261733pt;}
.y95{bottom:373.262400pt;}
.yed{bottom:383.884800pt;}
.y19{bottom:390.493733pt;}
.y84{bottom:390.520400pt;}
.yad{bottom:390.536400pt;}
.y42{bottom:390.552267pt;}
.y68{bottom:390.589733pt;}
.y94{bottom:390.590400pt;}
.yec{bottom:396.554800pt;}
.ybc{bottom:407.816400pt;}
.y18{bottom:407.821733pt;}
.y83{bottom:407.848400pt;}
.yac{bottom:407.864400pt;}
.y41{bottom:407.880267pt;}
.y67{bottom:407.917733pt;}
.y93{bottom:407.918400pt;}
.yeb{bottom:409.224800pt;}
.ybb{bottom:425.144400pt;}
.y17{bottom:425.149733pt;}
.y82{bottom:425.176400pt;}
.yab{bottom:425.192400pt;}
.y40{bottom:425.208267pt;}
.y66{bottom:425.245733pt;}
.y92{bottom:425.246400pt;}
.yea{bottom:425.674800pt;}
.ye9{bottom:438.344800pt;}
.y16{bottom:442.477733pt;}
.y81{bottom:442.504400pt;}
.yaa{bottom:442.520400pt;}
.y3f{bottom:442.536267pt;}
.y65{bottom:442.573733pt;}
.y91{bottom:442.574400pt;}
.ye8{bottom:454.794800pt;}
.y15{bottom:459.811067pt;}
.y80{bottom:459.832400pt;}
.ya9{bottom:459.848400pt;}
.y3e{bottom:459.864267pt;}
.y64{bottom:459.901733pt;}
.y90{bottom:459.902400pt;}
.ye7{bottom:467.464800pt;}
.y7f{bottom:477.160400pt;}
.ya8{bottom:477.176400pt;}
.y3d{bottom:477.192267pt;}
.y63{bottom:477.229733pt;}
.y8f{bottom:477.230400pt;}
.ye6{bottom:480.134800pt;}
.y7e{bottom:494.488400pt;}
.y14{bottom:494.493733pt;}
.ya7{bottom:494.504400pt;}
.y3c{bottom:494.520267pt;}
.y62{bottom:494.557733pt;}
.y8e{bottom:494.558400pt;}
.ye5{bottom:496.584800pt;}
.ye4{bottom:509.254800pt;}
.y7d{bottom:511.816400pt;}
.y13{bottom:511.821733pt;}
.ya6{bottom:511.832400pt;}
.y3b{bottom:511.848267pt;}
.yba{bottom:511.849067pt;}
.y61{bottom:511.885733pt;}
.y8d{bottom:511.886400pt;}
.ye3{bottom:521.924800pt;}
.y7c{bottom:529.144400pt;}
.y12{bottom:529.149733pt;}
.ya5{bottom:529.160400pt;}
.y3a{bottom:529.176267pt;}
.yb9{bottom:529.177067pt;}
.y60{bottom:529.213733pt;}
.y8c{bottom:529.214400pt;}
.ye2{bottom:538.374800pt;}
.y11{bottom:546.477733pt;}
.ya4{bottom:546.488400pt;}
.y39{bottom:546.504267pt;}
.yb8{bottom:546.505067pt;}
.y5f{bottom:546.541733pt;}
.y8b{bottom:546.542400pt;}
.ye1{bottom:551.044800pt;}
.ye0{bottom:563.714800pt;}
.y10{bottom:563.811067pt;}
.ya3{bottom:563.816400pt;}
.y38{bottom:563.832267pt;}
.yb7{bottom:563.833067pt;}
.y5e{bottom:563.869733pt;}
.y8a{bottom:563.870400pt;}
.ydf{bottom:576.384800pt;}
.y7b{bottom:581.144400pt;}
.y37{bottom:581.160267pt;}
.yb6{bottom:581.161067pt;}
.y5d{bottom:581.197733pt;}
.y89{bottom:581.198400pt;}
.yde{bottom:589.054800pt;}
.y36{bottom:598.488267pt;}
.y5c{bottom:598.525733pt;}
.ydd{bottom:605.504800pt;}
.y35{bottom:615.816267pt;}
.y5b{bottom:615.853733pt;}
.ydc{bottom:618.174800pt;}
.y34{bottom:633.144267pt;}
.y5a{bottom:633.181733pt;}
.yc4{bottom:633.490000pt;}
.ydb{bottom:634.624800pt;}
.y7a{bottom:639.717600pt;}
.yda{bottom:647.294800pt;}
.yf{bottom:650.477733pt;}
.y59{bottom:650.509733pt;}
.y79{bottom:652.387600pt;}
.yd9{bottom:659.964800pt;}
.ye{bottom:667.811067pt;}
.y58{bottom:667.837733pt;}
.yd8{bottom:676.414800pt;}
.yd{bottom:685.144400pt;}
.y57{bottom:685.165733pt;}
.yd7{bottom:689.084800pt;}
.yd6{bottom:701.754800pt;}
.yc{bottom:702.477733pt;}
.y56{bottom:702.493733pt;}
.yd5{bottom:718.204800pt;}
.yb{bottom:719.811067pt;}
.y55{bottom:719.821733pt;}
.y77{bottom:720.977600pt;}
.yd4{bottom:730.874800pt;}
.y76{bottom:733.647600pt;}
.ya{bottom:737.144400pt;}
.y54{bottom:737.149733pt;}
.yd3{bottom:747.324800pt;}
.y53{bottom:754.477733pt;}
.yd2{bottom:759.994800pt;}
.y9{bottom:771.816400pt;}
.yd1{bottom:776.444800pt;}
.yd0{bottom:789.114800pt;}
.y8{bottom:789.144400pt;}
.ycf{bottom:801.784800pt;}
.yce{bottom:818.234800pt;}
.y100{bottom:825.787200pt;}
.ycd{bottom:830.904800pt;}
.yff{bottom:838.457200pt;}
.y52{bottom:841.171067pt;}
.ycc{bottom:843.574800pt;}
.yfe{bottom:851.127200pt;}
.y7{bottom:851.804400pt;}
.y51{bottom:858.499067pt;}
.ycb{bottom:860.014267pt;}
.yfd{bottom:863.797200pt;}
.yca{bottom:872.684267pt;}
.y6{bottom:875.804400pt;}
.y50{bottom:875.827067pt;}
.yfb{bottom:876.463867pt;}
.yfc{bottom:876.467200pt;}
.yc8{bottom:885.343867pt;}
.yc9{bottom:885.354267pt;}
.yf9{bottom:889.130533pt;}
.yfa{bottom:889.133867pt;}
.y4f{bottom:893.155067pt;}
.yc7{bottom:898.013867pt;}
.yf8{bottom:901.800533pt;}
.y4e{bottom:910.483067pt;}
.yc6{bottom:914.463867pt;}
.yf7{bottom:914.467200pt;}
.y5{bottom:921.144400pt;}
.yc5{bottom:927.133867pt;}
.y4d{bottom:927.811067pt;}
.y4{bottom:945.144400pt;}
.y4c{bottom:962.477733pt;}
.y3{bottom:1011.169333pt;}
.y78{bottom:1016.333733pt;}
.y33{bottom:1016.867067pt;}
.y2{bottom:1029.836000pt;}
.y32{bottom:1035.533733pt;}
.hc{height:27.029333pt;}
.h2{height:30.128000pt;}
.h4{height:34.432000pt;}
.h10{height:35.559467pt;}
.he{height:36.040000pt;}
.hd{height:36.320000pt;}
.ha{height:37.240000pt;}
.hb{height:38.741333pt;}
.h8{height:43.248000pt;}
.h7{height:43.584000pt;}
.hf{height:44.800000pt;}
.h9{height:46.005333pt;}
.h3{height:58.112000pt;}
.h6{height:64.560000pt;}
.h5{height:72.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:88.976400pt;}
.x3{left:90.708667pt;}
.x2{left:98.267733pt;}
.xd{left:102.044167pt;}
.xe{left:119.283600pt;}
.xb{left:137.078667pt;}
.x9{left:155.383467pt;}
.x4{left:168.223733pt;}
.x5{left:282.204800pt;}
.xc{left:284.100800pt;}
.x8{left:292.556533pt;}
.x6{left:406.302847pt;}
.xf{left:421.417333pt;}
.x10{left:467.888133pt;}
.x7{left:559.601867pt;}
.xa{left:565.818933pt;}
.x12{left:639.199733pt;}
.x11{left:655.292933pt;}
}




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