
    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_618dd382c88944c48621debe.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_f42530effbddb2cd359cc818.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_2de1e86c7ffac3a60265a842.woff')format("woff");}.ff3{font-family:ff3;line-height:1.292969;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_69933781cc3a4361179ad040.woff')format("woff");}.ff4{font-family:ff4;line-height:0.907715;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_7e4fd9803e0fbb97c21a0fb2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.025879;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_725169358326818b049713c5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.292969;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);}
.v4{vertical-align:-16.977000px;}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.296800px;}
.v1{vertical-align:81.000000px;}
.ls50{letter-spacing:-5.727000px;}
.ls56{letter-spacing:-5.451000px;}
.ls9{letter-spacing:-4.968000px;}
.ls54{letter-spacing:-4.200000px;}
.ls4d{letter-spacing:-4.140000px;}
.ls3f{letter-spacing:-4.050000px;}
.ls42{letter-spacing:-3.450000px;}
.ls7{letter-spacing:-3.024000px;}
.ls45{letter-spacing:-2.700000px;}
.ls1e{letter-spacing:-2.139000px;}
.ls4a{letter-spacing:-2.070000px;}
.ls2b{letter-spacing:-2.001000px;}
.ls2a{letter-spacing:-1.932000px;}
.ls23{letter-spacing:-1.794000px;}
.ls55{letter-spacing:-1.518000px;}
.ls32{letter-spacing:-1.449000px;}
.ls29{letter-spacing:-1.380000px;}
.ls14{letter-spacing:-1.311000px;}
.ls3a{letter-spacing:-1.242000px;}
.ls6{letter-spacing:-1.176000px;}
.ls13{letter-spacing:-1.173000px;}
.ls4e{letter-spacing:-1.104000px;}
.ls8{letter-spacing:-1.035000px;}
.ls3b{letter-spacing:-0.966000px;}
.ls59{letter-spacing:-0.925221px;}
.ls11{letter-spacing:-0.897000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls28{letter-spacing:-0.759000px;}
.ls12{letter-spacing:-0.690000px;}
.ls34{letter-spacing:-0.621000px;}
.ls5a{letter-spacing:-0.598158px;}
.ls2e{letter-spacing:-0.594000px;}
.ls49{letter-spacing:-0.552000px;}
.ls5f{letter-spacing:-0.483000px;}
.ls40{letter-spacing:-0.414000px;}
.ls5e{letter-spacing:-0.345000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls4c{letter-spacing:-0.276000px;}
.ls43{letter-spacing:-0.241362px;}
.lsc{letter-spacing:-0.225000px;}
.ls37{letter-spacing:-0.207000px;}
.lsf{letter-spacing:-0.138000px;}
.ls3c{letter-spacing:-0.069000px;}
.ls44{letter-spacing:-0.062964px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000300px;}
.ls5b{letter-spacing:0.054000px;}
.ls47{letter-spacing:0.138000px;}
.ls35{letter-spacing:0.345000px;}
.ls2{letter-spacing:0.414000px;}
.ls3{letter-spacing:0.545100px;}
.ls1d{letter-spacing:0.552000px;}
.ls1{letter-spacing:0.599623px;}
.ls10{letter-spacing:0.621000px;}
.ls1f{letter-spacing:0.759000px;}
.ls2c{letter-spacing:0.966000px;}
.ls22{letter-spacing:1.050000px;}
.ls30{letter-spacing:1.104000px;}
.ls27{letter-spacing:1.173000px;}
.ls1a{letter-spacing:1.182600px;}
.ls19{letter-spacing:1.214100px;}
.lse{letter-spacing:1.344000px;}
.ls2d{letter-spacing:1.350000px;}
.ls39{letter-spacing:1.587000px;}
.ls18{letter-spacing:1.635300px;}
.ls36{letter-spacing:1.725000px;}
.ls41{letter-spacing:1.794000px;}
.ls25{letter-spacing:2.035500px;}
.ls21{letter-spacing:2.049300px;}
.ls52{letter-spacing:2.070000px;}
.ls16{letter-spacing:2.345700px;}
.lsb{letter-spacing:2.400000px;}
.ls26{letter-spacing:2.691000px;}
.ls4b{letter-spacing:3.105000px;}
.ls58{letter-spacing:3.519000px;}
.ls51{letter-spacing:3.588000px;}
.ls5{letter-spacing:4.980000px;}
.ls60{letter-spacing:5.880000px;}
.lsd{letter-spacing:6.000000px;}
.ls4f{letter-spacing:6.831000px;}
.ls3e{letter-spacing:8.160156px;}
.ls57{letter-spacing:8.160756px;}
.ls5d{letter-spacing:12.282000px;}
.ls2f{letter-spacing:465.265800px;}
.ls33{letter-spacing:465.453600px;}
.ls20{letter-spacing:465.708600px;}
.lsa{letter-spacing:467.133600px;}
.ls48{letter-spacing:472.878600px;}
.ls3d{letter-spacing:474.505800px;}
.ls5c{letter-spacing:475.285800px;}
.ls53{letter-spacing:476.245800px;}
.ls38{letter-spacing:936.351000px;}
.ls15{letter-spacing:936.846000px;}
.ls24{letter-spacing:939.471000px;}
.ls31{letter-spacing:943.521000px;}
.ls46{letter-spacing:945.501000px;}
.ls0{letter-spacing:961.672800px;}
.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;}
}
.ws18{word-spacing:-22.125000px;}
.ws6{word-spacing:-20.850000px;}
.ws48{word-spacing:-19.389000px;}
.ws8{word-spacing:-19.251000px;}
.ws53{word-spacing:-18.699000px;}
.ws1b{word-spacing:-18.630000px;}
.ws49{word-spacing:-18.561000px;}
.ws4e{word-spacing:-18.354000px;}
.ws2d{word-spacing:-18.147000px;}
.ws11{word-spacing:-17.043000px;}
.ws31{word-spacing:-17.025000px;}
.ws47{word-spacing:-16.875000px;}
.ws3a{word-spacing:-16.767000px;}
.ws27{word-spacing:-16.146000px;}
.ws39{word-spacing:-16.008000px;}
.ws3b{word-spacing:-15.870000px;}
.ws9{word-spacing:-15.732000px;}
.ws1c{word-spacing:-15.663000px;}
.ws4a{word-spacing:-15.525000px;}
.ws1d{word-spacing:-15.042000px;}
.ws43{word-spacing:-13.662000px;}
.ws7{word-spacing:-13.146000px;}
.ws54{word-spacing:-12.282000px;}
.ws1a{word-spacing:-11.303787px;}
.ws32{word-spacing:-11.062425px;}
.ws33{word-spacing:-10.638000px;}
.ws4f{word-spacing:-10.378566px;}
.ws44{word-spacing:-6.831000px;}
.wsb{word-spacing:-6.000000px;}
.ws57{word-spacing:-5.880000px;}
.ws1{word-spacing:-4.980000px;}
.ws45{word-spacing:-3.588000px;}
.ws50{word-spacing:-3.519000px;}
.ws3f{word-spacing:-3.105000px;}
.wsa{word-spacing:-2.400000px;}
.ws46{word-spacing:-2.070000px;}
.ws35{word-spacing:-1.794000px;}
.ws2b{word-spacing:-1.725000px;}
.ws2e{word-spacing:-1.587000px;}
.ws23{word-spacing:-1.350000px;}
.ws1e{word-spacing:-1.173000px;}
.ws25{word-spacing:-1.104000px;}
.ws22{word-spacing:-0.966000px;}
.ws4c{word-spacing:-0.897000px;}
.ws16{word-spacing:-0.759000px;}
.wsd{word-spacing:-0.621000px;}
.ws14{word-spacing:-0.552000px;}
.ws26{word-spacing:-0.414000px;}
.ws2a{word-spacing:-0.345000px;}
.ws38{word-spacing:-0.138000px;}
.ws52{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws37{word-spacing:0.062964px;}
.ws30{word-spacing:0.069000px;}
.wsc{word-spacing:0.138000px;}
.ws2c{word-spacing:0.207000px;}
.ws12{word-spacing:0.300000px;}
.ws55{word-spacing:0.345000px;}
.ws34{word-spacing:0.414000px;}
.ws56{word-spacing:0.483000px;}
.ws3c{word-spacing:0.552000px;}
.ws24{word-spacing:0.594000px;}
.ws51{word-spacing:0.598158px;}
.ws29{word-spacing:0.621000px;}
.wsf{word-spacing:0.690000px;}
.ws1f{word-spacing:0.759000px;}
.ws13{word-spacing:0.828000px;}
.wse{word-spacing:0.897000px;}
.ws2f{word-spacing:0.966000px;}
.ws4{word-spacing:1.035000px;}
.ws42{word-spacing:1.104000px;}
.ws10{word-spacing:1.173000px;}
.ws2{word-spacing:1.176000px;}
.ws3d{word-spacing:1.242000px;}
.ws21{word-spacing:1.311000px;}
.ws40{word-spacing:1.380000px;}
.ws28{word-spacing:1.449000px;}
.ws19{word-spacing:1.794000px;}
.ws20{word-spacing:1.932000px;}
.ws4b{word-spacing:2.001000px;}
.ws3e{word-spacing:2.070000px;}
.ws15{word-spacing:2.139000px;}
.ws3{word-spacing:3.024000px;}
.ws36{word-spacing:3.450000px;}
.ws41{word-spacing:4.140000px;}
.ws5{word-spacing:4.968000px;}
.ws4d{word-spacing:5.451000px;}
.ws17{word-spacing:43.445160px;}
._1d{margin-left:-20.077200px;}
._1b{margin-left:-13.173900px;}
._1c{margin-left:-11.955900px;}
._1a{margin-left:-10.658700px;}
._17{margin-left:-7.487100px;}
._c{margin-left:-6.444600px;}
._6{margin-left:-5.006400px;}
._9{margin-left:-3.897000px;}
._4{margin-left:-2.772000px;}
._2{margin-left:-1.209000px;}
._3{width:1.033200px;}
._1{width:2.400000px;}
._7{width:3.435600px;}
._8{width:4.550400px;}
._5{width:5.751600px;}
._a{width:7.086600px;}
._b{width:8.246100px;}
._13{width:9.287400px;}
._d{width:10.306200px;}
._e{width:11.328900px;}
._10{width:12.382500px;}
._11{width:13.572000px;}
._12{width:14.864400px;}
._19{width:16.041600px;}
._18{width:17.070300px;}
._16{width:27.767124px;}
._14{width:29.890800px;}
._15{width:30.920100px;}
._f{width:43.445160px;}
._0{width:578.400000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs8{font-size:40.227000px;}
.fsc{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y49{bottom:106.165350px;}
.ye4{bottom:106.268850px;}
.y59{bottom:106.296300px;}
.y20{bottom:109.294800px;}
.y58{bottom:123.549300px;}
.y57{bottom:126.544800px;}
.y48{bottom:126.589350px;}
.ye3{bottom:127.227600px;}
.y56{bottom:145.048200px;}
.y47{bottom:147.013350px;}
.ya2{bottom:148.046700px;}
.ye2{bottom:148.186350px;}
.y1f{bottom:153.248700px;}
.ybe{bottom:153.324300px;}
.y7e{bottom:153.375750px;}
.y55{bottom:165.296700px;}
.ya1{bottom:166.547250px;}
.y46{bottom:167.437350px;}
.ye1{bottom:169.145100px;}
.y107{bottom:170.508900px;}
.ybd{bottom:173.575800px;}
.y7d{bottom:173.627250px;}
.y1e{bottom:173.793450px;}
.y10a{bottom:180.191550px;}
.ya0{bottom:183.800250px;}
.y54{bottom:186.798750px;}
.y45{bottom:187.861350px;}
.ye0{bottom:190.103850px;}
.y106{bottom:191.433150px;}
.ybc{bottom:193.827300px;}
.y7c{bottom:193.878750px;}
.y1d{bottom:194.338200px;}
.y109{bottom:200.441550px;}
.y9f{bottom:204.048750px;}
.y53{bottom:205.302150px;}
.y44{bottom:208.285350px;}
.ydf{bottom:211.062600px;}
.y105{bottom:212.357400px;}
.ybb{bottom:214.078800px;}
.y7b{bottom:214.130250px;}
.y1c{bottom:214.882950px;}
.y52{bottom:225.550650px;}
.y43{bottom:228.709350px;}
.yde{bottom:232.021350px;}
.y104{bottom:233.281650px;}
.y108{bottom:233.441550px;}
.yba{bottom:234.330300px;}
.y7a{bottom:234.381750px;}
.y1b{bottom:235.427700px;}
.y9e{bottom:248.065800px;}
.y42{bottom:249.133350px;}
.ydd{bottom:252.980100px;}
.y103{bottom:254.205900px;}
.y79{bottom:254.633250px;}
.yb9{bottom:254.653350px;}
.y1a{bottom:255.972450px;}
.y9d{bottom:268.506600px;}
.y41{bottom:269.557350px;}
.y51{bottom:269.568600px;}
.ydc{bottom:273.938850px;}
.y78{bottom:274.884750px;}
.yb8{bottom:274.904850px;}
.y102{bottom:275.130150px;}
.y19{bottom:276.517200px;}
.y9c{bottom:288.965100px;}
.y40{bottom:289.981350px;}
.y50{bottom:289.992150px;}
.ydb{bottom:294.897600px;}
.y77{bottom:295.136250px;}
.yb7{bottom:295.156350px;}
.y101{bottom:296.054400px;}
.y18{bottom:297.061950px;}
.y9b{bottom:309.423600px;}
.y3f{bottom:310.405350px;}
.y4f{bottom:310.414650px;}
.y76{bottom:315.387750px;}
.yb6{bottom:315.407850px;}
.yda{bottom:315.856350px;}
.y100{bottom:316.978650px;}
.y17{bottom:317.606700px;}
.y9a{bottom:329.882100px;}
.y3e{bottom:330.829350px;}
.y4e{bottom:330.838650px;}
.y75{bottom:335.639250px;}
.yb5{bottom:335.659350px;}
.yd9{bottom:336.815100px;}
.yff{bottom:337.902900px;}
.y16{bottom:338.071500px;}
.y99{bottom:350.340600px;}
.y3d{bottom:351.253350px;}
.y4d{bottom:351.262650px;}
.y74{bottom:355.890750px;}
.yb4{bottom:355.910850px;}
.yd8{bottom:357.773850px;}
.y15{bottom:358.616250px;}
.yfe{bottom:358.670850px;}
.y98{bottom:370.799100px;}
.y3c{bottom:371.677350px;}
.y4c{bottom:371.686650px;}
.y73{bottom:376.142250px;}
.yb3{bottom:376.162350px;}
.yd7{bottom:378.732600px;}
.y14{bottom:379.161000px;}
.yfd{bottom:379.595100px;}
.y97{bottom:391.257600px;}
.y3b{bottom:392.101350px;}
.y4b{bottom:392.109900px;}
.y72{bottom:396.393750px;}
.yb2{bottom:396.413850px;}
.yd6{bottom:399.691350px;}
.y13{bottom:399.705750px;}
.yfc{bottom:400.519350px;}
.y96{bottom:411.716100px;}
.y3a{bottom:412.525350px;}
.y4a{bottom:412.533900px;}
.y71{bottom:416.645250px;}
.yb1{bottom:416.665350px;}
.y12{bottom:420.250500px;}
.yd5{bottom:420.650100px;}
.yfb{bottom:421.443600px;}
.y95{bottom:432.174600px;}
.y39{bottom:432.949350px;}
.y70{bottom:436.896750px;}
.yb0{bottom:436.916850px;}
.y11{bottom:440.795250px;}
.yd4{bottom:441.608850px;}
.yfa{bottom:442.367850px;}
.y94{bottom:452.633100px;}
.y38{bottom:453.373350px;}
.y6f{bottom:457.148250px;}
.yaf{bottom:457.168350px;}
.y10{bottom:461.340000px;}
.yd3{bottom:462.567600px;}
.yf9{bottom:463.292100px;}
.y93{bottom:473.091600px;}
.y37{bottom:473.797350px;}
.y6e{bottom:477.399750px;}
.yae{bottom:477.419850px;}
.yf{bottom:481.884750px;}
.yd2{bottom:483.526350px;}
.yf8{bottom:484.216350px;}
.y92{bottom:493.550100px;}
.y36{bottom:494.221350px;}
.y6d{bottom:497.651250px;}
.yad{bottom:497.671350px;}
.ye{bottom:502.429500px;}
.yd1{bottom:504.485100px;}
.yf7{bottom:505.140600px;}
.y91{bottom:514.008600px;}
.y35{bottom:514.645350px;}
.y6c{bottom:517.902750px;}
.yac{bottom:517.922850px;}
.yd{bottom:522.974250px;}
.yd0{bottom:525.443850px;}
.yf6{bottom:526.064850px;}
.y90{bottom:534.467100px;}
.y34{bottom:535.069350px;}
.y6b{bottom:538.154250px;}
.yab{bottom:538.174350px;}
.yc{bottom:543.519000px;}
.ycf{bottom:546.402600px;}
.yf5{bottom:546.989100px;}
.y8f{bottom:554.925600px;}
.y33{bottom:555.493350px;}
.y6a{bottom:558.405750px;}
.yaa{bottom:558.425850px;}
.yb{bottom:564.063750px;}
.ya{bottom:564.065250px;}
.yce{bottom:567.361350px;}
.yf4{bottom:567.913350px;}
.y8e{bottom:575.372400px;}
.y32{bottom:575.917350px;}
.y69{bottom:578.657250px;}
.ya9{bottom:578.677350px;}
.ycd{bottom:588.320100px;}
.yf3{bottom:588.837600px;}
.y8d{bottom:595.830900px;}
.y31{bottom:596.341350px;}
.y68{bottom:598.908750px;}
.ya8{bottom:598.928850px;}
.ycc{bottom:609.278850px;}
.yf2{bottom:609.761850px;}
.y8c{bottom:616.289400px;}
.y30{bottom:616.765350px;}
.y67{bottom:619.160250px;}
.ya7{bottom:619.180350px;}
.ycb{bottom:630.237600px;}
.yf1{bottom:630.686100px;}
.y8b{bottom:636.747900px;}
.y2f{bottom:637.189350px;}
.y66{bottom:639.411750px;}
.ya6{bottom:639.431850px;}
.yca{bottom:651.196350px;}
.yf0{bottom:651.610350px;}
.y9{bottom:655.156800px;}
.y8a{bottom:657.206400px;}
.y2e{bottom:657.613350px;}
.y65{bottom:659.663250px;}
.ya5{bottom:659.683350px;}
.yc9{bottom:672.155100px;}
.yef{bottom:672.534600px;}
.y8{bottom:676.441800px;}
.y89{bottom:677.664900px;}
.y2d{bottom:678.037350px;}
.y64{bottom:679.914750px;}
.ya4{bottom:679.934850px;}
.yc8{bottom:693.113850px;}
.yee{bottom:693.458850px;}
.y88{bottom:698.123400px;}
.y2c{bottom:698.461350px;}
.y63{bottom:700.166250px;}
.ya3{bottom:700.186350px;}
.yc7{bottom:714.072600px;}
.yed{bottom:714.383100px;}
.y87{bottom:718.581900px;}
.y2b{bottom:718.885350px;}
.y62{bottom:720.437850px;}
.y7{bottom:727.501800px;}
.yc6{bottom:735.031350px;}
.yec{bottom:735.307350px;}
.y86{bottom:739.040400px;}
.y2a{bottom:739.309350px;}
.y61{bottom:740.689350px;}
.yc5{bottom:755.990100px;}
.yeb{bottom:756.231600px;}
.y6{bottom:759.280800px;}
.y85{bottom:759.498900px;}
.y29{bottom:759.733350px;}
.y60{bottom:760.940850px;}
.yc4{bottom:776.948850px;}
.yea{bottom:777.155850px;}
.y84{bottom:779.950350px;}
.y28{bottom:780.157350px;}
.y5f{bottom:781.192350px;}
.y5{bottom:791.068350px;}
.yc3{bottom:797.907600px;}
.ye9{bottom:798.080100px;}
.y83{bottom:800.408850px;}
.y27{bottom:800.581350px;}
.y5e{bottom:801.443850px;}
.yc2{bottom:818.866350px;}
.ye8{bottom:819.004350px;}
.y82{bottom:820.867350px;}
.y26{bottom:821.005350px;}
.y5d{bottom:821.695350px;}
.yc1{bottom:839.825100px;}
.ye7{bottom:839.928600px;}
.y81{bottom:841.325850px;}
.y25{bottom:841.429350px;}
.y5c{bottom:841.946850px;}
.y4{bottom:852.622350px;}
.yc0{bottom:860.783850px;}
.ye6{bottom:860.852850px;}
.y80{bottom:861.784350px;}
.y24{bottom:861.853350px;}
.y5b{bottom:862.198350px;}
.y3{bottom:873.907350px;}
.ybf{bottom:881.742600px;}
.ye5{bottom:881.777100px;}
.y7f{bottom:882.242850px;}
.y23{bottom:882.277350px;}
.y5a{bottom:882.449850px;}
.y22{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.h14{height:24.964242px;}
.hb{height:33.870539px;}
.hc{height:40.757812px;}
.h12{height:43.942805px;}
.h13{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h16{height:55.924805px;}
.h8{height:58.589355px;}
.h11{height:58.591155px;}
.hf{height:58.592355px;}
.h10{height:58.595355px;}
.h15{height:58.617555px;}
.he{height:58.623555px;}
.ha{height:58.909155px;}
.h17{height:59.214555px;}
.hd{height:62.138672px;}
.h2{height:63.684082px;}
.h5{height:71.326172px;}
.h9{height:71.459473px;}
.h6{height:91.705078px;}
.h7{height:157.967463px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.921400px;}
.x5{left:82.607550px;}
.x7{left:83.650650px;}
.x1{left:85.039350px;}
.xa{left:103.742550px;}
.x8{left:105.696150px;}
.x6{left:116.511900px;}
.x4{left:229.784700px;}
.x2{left:232.601400px;}
.x3{left:233.918250px;}
@media print{
.v4{vertical-align:-15.090667pt;}
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.374933pt;}
.v1{vertical-align:72.000000pt;}
.ls50{letter-spacing:-5.090667pt;}
.ls56{letter-spacing:-4.845333pt;}
.ls9{letter-spacing:-4.416000pt;}
.ls54{letter-spacing:-3.733333pt;}
.ls4d{letter-spacing:-3.680000pt;}
.ls3f{letter-spacing:-3.600000pt;}
.ls42{letter-spacing:-3.066667pt;}
.ls7{letter-spacing:-2.688000pt;}
.ls45{letter-spacing:-2.400000pt;}
.ls1e{letter-spacing:-1.901333pt;}
.ls4a{letter-spacing:-1.840000pt;}
.ls2b{letter-spacing:-1.778667pt;}
.ls2a{letter-spacing:-1.717333pt;}
.ls23{letter-spacing:-1.594667pt;}
.ls55{letter-spacing:-1.349333pt;}
.ls32{letter-spacing:-1.288000pt;}
.ls29{letter-spacing:-1.226667pt;}
.ls14{letter-spacing:-1.165333pt;}
.ls3a{letter-spacing:-1.104000pt;}
.ls6{letter-spacing:-1.045333pt;}
.ls13{letter-spacing:-1.042667pt;}
.ls4e{letter-spacing:-0.981333pt;}
.ls8{letter-spacing:-0.920000pt;}
.ls3b{letter-spacing:-0.858667pt;}
.ls59{letter-spacing:-0.822419pt;}
.ls11{letter-spacing:-0.797333pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls28{letter-spacing:-0.674667pt;}
.ls12{letter-spacing:-0.613333pt;}
.ls34{letter-spacing:-0.552000pt;}
.ls5a{letter-spacing:-0.531696pt;}
.ls2e{letter-spacing:-0.528000pt;}
.ls49{letter-spacing:-0.490667pt;}
.ls5f{letter-spacing:-0.429333pt;}
.ls40{letter-spacing:-0.368000pt;}
.ls5e{letter-spacing:-0.306667pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls4c{letter-spacing:-0.245333pt;}
.ls43{letter-spacing:-0.214544pt;}
.lsc{letter-spacing:-0.200000pt;}
.ls37{letter-spacing:-0.184000pt;}
.lsf{letter-spacing:-0.122667pt;}
.ls3c{letter-spacing:-0.061333pt;}
.ls44{letter-spacing:-0.055968pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000267pt;}
.ls5b{letter-spacing:0.048000pt;}
.ls47{letter-spacing:0.122667pt;}
.ls35{letter-spacing:0.306667pt;}
.ls2{letter-spacing:0.368000pt;}
.ls3{letter-spacing:0.484533pt;}
.ls1d{letter-spacing:0.490667pt;}
.ls1{letter-spacing:0.532998pt;}
.ls10{letter-spacing:0.552000pt;}
.ls1f{letter-spacing:0.674667pt;}
.ls2c{letter-spacing:0.858667pt;}
.ls22{letter-spacing:0.933333pt;}
.ls30{letter-spacing:0.981333pt;}
.ls27{letter-spacing:1.042667pt;}
.ls1a{letter-spacing:1.051200pt;}
.ls19{letter-spacing:1.079200pt;}
.lse{letter-spacing:1.194667pt;}
.ls2d{letter-spacing:1.200000pt;}
.ls39{letter-spacing:1.410667pt;}
.ls18{letter-spacing:1.453600pt;}
.ls36{letter-spacing:1.533333pt;}
.ls41{letter-spacing:1.594667pt;}
.ls25{letter-spacing:1.809333pt;}
.ls21{letter-spacing:1.821600pt;}
.ls52{letter-spacing:1.840000pt;}
.ls16{letter-spacing:2.085067pt;}
.lsb{letter-spacing:2.133333pt;}
.ls26{letter-spacing:2.392000pt;}
.ls4b{letter-spacing:2.760000pt;}
.ls58{letter-spacing:3.128000pt;}
.ls51{letter-spacing:3.189333pt;}
.ls5{letter-spacing:4.426667pt;}
.ls60{letter-spacing:5.226667pt;}
.lsd{letter-spacing:5.333333pt;}
.ls4f{letter-spacing:6.072000pt;}
.ls3e{letter-spacing:7.253472pt;}
.ls57{letter-spacing:7.254005pt;}
.ls5d{letter-spacing:10.917333pt;}
.ls2f{letter-spacing:413.569600pt;}
.ls33{letter-spacing:413.736533pt;}
.ls20{letter-spacing:413.963200pt;}
.lsa{letter-spacing:415.229867pt;}
.ls48{letter-spacing:420.336533pt;}
.ls3d{letter-spacing:421.782933pt;}
.ls5c{letter-spacing:422.476267pt;}
.ls53{letter-spacing:423.329600pt;}
.ls38{letter-spacing:832.312000pt;}
.ls15{letter-spacing:832.752000pt;}
.ls24{letter-spacing:835.085333pt;}
.ls31{letter-spacing:838.685333pt;}
.ls46{letter-spacing:840.445333pt;}
.ls0{letter-spacing:854.820267pt;}
.ws18{word-spacing:-19.666667pt;}
.ws6{word-spacing:-18.533333pt;}
.ws48{word-spacing:-17.234667pt;}
.ws8{word-spacing:-17.112000pt;}
.ws53{word-spacing:-16.621333pt;}
.ws1b{word-spacing:-16.560000pt;}
.ws49{word-spacing:-16.498667pt;}
.ws4e{word-spacing:-16.314667pt;}
.ws2d{word-spacing:-16.130667pt;}
.ws11{word-spacing:-15.149333pt;}
.ws31{word-spacing:-15.133333pt;}
.ws47{word-spacing:-15.000000pt;}
.ws3a{word-spacing:-14.904000pt;}
.ws27{word-spacing:-14.352000pt;}
.ws39{word-spacing:-14.229333pt;}
.ws3b{word-spacing:-14.106667pt;}
.ws9{word-spacing:-13.984000pt;}
.ws1c{word-spacing:-13.922667pt;}
.ws4a{word-spacing:-13.800000pt;}
.ws1d{word-spacing:-13.370667pt;}
.ws43{word-spacing:-12.144000pt;}
.ws7{word-spacing:-11.685333pt;}
.ws54{word-spacing:-10.917333pt;}
.ws1a{word-spacing:-10.047811pt;}
.ws32{word-spacing:-9.833267pt;}
.ws33{word-spacing:-9.456000pt;}
.ws4f{word-spacing:-9.225392pt;}
.ws44{word-spacing:-6.072000pt;}
.wsb{word-spacing:-5.333333pt;}
.ws57{word-spacing:-5.226667pt;}
.ws1{word-spacing:-4.426667pt;}
.ws45{word-spacing:-3.189333pt;}
.ws50{word-spacing:-3.128000pt;}
.ws3f{word-spacing:-2.760000pt;}
.wsa{word-spacing:-2.133333pt;}
.ws46{word-spacing:-1.840000pt;}
.ws35{word-spacing:-1.594667pt;}
.ws2b{word-spacing:-1.533333pt;}
.ws2e{word-spacing:-1.410667pt;}
.ws23{word-spacing:-1.200000pt;}
.ws1e{word-spacing:-1.042667pt;}
.ws25{word-spacing:-0.981333pt;}
.ws22{word-spacing:-0.858667pt;}
.ws4c{word-spacing:-0.797333pt;}
.ws16{word-spacing:-0.674667pt;}
.wsd{word-spacing:-0.552000pt;}
.ws14{word-spacing:-0.490667pt;}
.ws26{word-spacing:-0.368000pt;}
.ws2a{word-spacing:-0.306667pt;}
.ws38{word-spacing:-0.122667pt;}
.ws52{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws37{word-spacing:0.055968pt;}
.ws30{word-spacing:0.061333pt;}
.wsc{word-spacing:0.122667pt;}
.ws2c{word-spacing:0.184000pt;}
.ws12{word-spacing:0.266667pt;}
.ws55{word-spacing:0.306667pt;}
.ws34{word-spacing:0.368000pt;}
.ws56{word-spacing:0.429333pt;}
.ws3c{word-spacing:0.490667pt;}
.ws24{word-spacing:0.528000pt;}
.ws51{word-spacing:0.531696pt;}
.ws29{word-spacing:0.552000pt;}
.wsf{word-spacing:0.613333pt;}
.ws1f{word-spacing:0.674667pt;}
.ws13{word-spacing:0.736000pt;}
.wse{word-spacing:0.797333pt;}
.ws2f{word-spacing:0.858667pt;}
.ws4{word-spacing:0.920000pt;}
.ws42{word-spacing:0.981333pt;}
.ws10{word-spacing:1.042667pt;}
.ws2{word-spacing:1.045333pt;}
.ws3d{word-spacing:1.104000pt;}
.ws21{word-spacing:1.165333pt;}
.ws40{word-spacing:1.226667pt;}
.ws28{word-spacing:1.288000pt;}
.ws19{word-spacing:1.594667pt;}
.ws20{word-spacing:1.717333pt;}
.ws4b{word-spacing:1.778667pt;}
.ws3e{word-spacing:1.840000pt;}
.ws15{word-spacing:1.901333pt;}
.ws3{word-spacing:2.688000pt;}
.ws36{word-spacing:3.066667pt;}
.ws41{word-spacing:3.680000pt;}
.ws5{word-spacing:4.416000pt;}
.ws4d{word-spacing:4.845333pt;}
.ws17{word-spacing:38.617920pt;}
._1d{margin-left:-17.846400pt;}
._1b{margin-left:-11.710133pt;}
._1c{margin-left:-10.627467pt;}
._1a{margin-left:-9.474400pt;}
._17{margin-left:-6.655200pt;}
._c{margin-left:-5.728533pt;}
._6{margin-left:-4.450133pt;}
._9{margin-left:-3.464000pt;}
._4{margin-left:-2.464000pt;}
._2{margin-left:-1.074667pt;}
._3{width:0.918400pt;}
._1{width:2.133333pt;}
._7{width:3.053867pt;}
._8{width:4.044800pt;}
._5{width:5.112533pt;}
._a{width:6.299200pt;}
._b{width:7.329867pt;}
._13{width:8.255467pt;}
._d{width:9.161067pt;}
._e{width:10.070133pt;}
._10{width:11.006667pt;}
._11{width:12.064000pt;}
._12{width:13.212800pt;}
._19{width:14.259200pt;}
._18{width:15.173600pt;}
._16{width:24.681888pt;}
._14{width:26.569600pt;}
._15{width:27.484533pt;}
._f{width:38.617920pt;}
._0{width:514.133333pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:35.757333pt;}
.fsc{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y49{bottom:94.369200pt;}
.ye4{bottom:94.461200pt;}
.y59{bottom:94.485600pt;}
.y20{bottom:97.150933pt;}
.y58{bottom:109.821600pt;}
.y57{bottom:112.484267pt;}
.y48{bottom:112.523867pt;}
.ye3{bottom:113.091200pt;}
.y56{bottom:128.931733pt;}
.y47{bottom:130.678533pt;}
.ya2{bottom:131.597067pt;}
.ye2{bottom:131.721200pt;}
.y1f{bottom:136.221067pt;}
.ybe{bottom:136.288267pt;}
.y7e{bottom:136.334000pt;}
.y55{bottom:146.930400pt;}
.ya1{bottom:148.042000pt;}
.y46{bottom:148.833200pt;}
.ye1{bottom:150.351200pt;}
.y107{bottom:151.563467pt;}
.ybd{bottom:154.289600pt;}
.y7d{bottom:154.335333pt;}
.y1e{bottom:154.483067pt;}
.y10a{bottom:160.170267pt;}
.ya0{bottom:163.378000pt;}
.y54{bottom:166.043333pt;}
.y45{bottom:166.987867pt;}
.ye0{bottom:168.981200pt;}
.y106{bottom:170.162800pt;}
.ybc{bottom:172.290933pt;}
.y7c{bottom:172.336667pt;}
.y1d{bottom:172.745067pt;}
.y109{bottom:178.170267pt;}
.y9f{bottom:181.376667pt;}
.y53{bottom:182.490800pt;}
.y44{bottom:185.142533pt;}
.ydf{bottom:187.611200pt;}
.y105{bottom:188.762133pt;}
.ybb{bottom:190.292267pt;}
.y7b{bottom:190.338000pt;}
.y1c{bottom:191.007067pt;}
.y52{bottom:200.489467pt;}
.y43{bottom:203.297200pt;}
.yde{bottom:206.241200pt;}
.y104{bottom:207.361467pt;}
.y108{bottom:207.503600pt;}
.yba{bottom:208.293600pt;}
.y7a{bottom:208.339333pt;}
.y1b{bottom:209.269067pt;}
.y9e{bottom:220.502933pt;}
.y42{bottom:221.451867pt;}
.ydd{bottom:224.871200pt;}
.y103{bottom:225.960800pt;}
.y79{bottom:226.340667pt;}
.yb9{bottom:226.358533pt;}
.y1a{bottom:227.531067pt;}
.y9d{bottom:238.672533pt;}
.y41{bottom:239.606533pt;}
.y51{bottom:239.616533pt;}
.ydc{bottom:243.501200pt;}
.y78{bottom:244.342000pt;}
.yb8{bottom:244.359867pt;}
.y102{bottom:244.560133pt;}
.y19{bottom:245.793067pt;}
.y9c{bottom:256.857867pt;}
.y40{bottom:257.761200pt;}
.y50{bottom:257.770800pt;}
.ydb{bottom:262.131200pt;}
.y77{bottom:262.343333pt;}
.yb7{bottom:262.361200pt;}
.y101{bottom:263.159467pt;}
.y18{bottom:264.055067pt;}
.y9b{bottom:275.043200pt;}
.y3f{bottom:275.915867pt;}
.y4f{bottom:275.924133pt;}
.y76{bottom:280.344667pt;}
.yb6{bottom:280.362533pt;}
.yda{bottom:280.761200pt;}
.y100{bottom:281.758800pt;}
.y17{bottom:282.317067pt;}
.y9a{bottom:293.228533pt;}
.y3e{bottom:294.070533pt;}
.y4e{bottom:294.078800pt;}
.y75{bottom:298.346000pt;}
.yb5{bottom:298.363867pt;}
.yd9{bottom:299.391200pt;}
.yff{bottom:300.358133pt;}
.y16{bottom:300.508000pt;}
.y99{bottom:311.413867pt;}
.y3d{bottom:312.225200pt;}
.y4d{bottom:312.233467pt;}
.y74{bottom:316.347333pt;}
.yb4{bottom:316.365200pt;}
.yd8{bottom:318.021200pt;}
.y15{bottom:318.770000pt;}
.yfe{bottom:318.818533pt;}
.y98{bottom:329.599200pt;}
.y3c{bottom:330.379867pt;}
.y4c{bottom:330.388133pt;}
.y73{bottom:334.348667pt;}
.yb3{bottom:334.366533pt;}
.yd7{bottom:336.651200pt;}
.y14{bottom:337.032000pt;}
.yfd{bottom:337.417867pt;}
.y97{bottom:347.784533pt;}
.y3b{bottom:348.534533pt;}
.y4b{bottom:348.542133pt;}
.y72{bottom:352.350000pt;}
.yb2{bottom:352.367867pt;}
.yd6{bottom:355.281200pt;}
.y13{bottom:355.294000pt;}
.yfc{bottom:356.017200pt;}
.y96{bottom:365.969867pt;}
.y3a{bottom:366.689200pt;}
.y4a{bottom:366.696800pt;}
.y71{bottom:370.351333pt;}
.yb1{bottom:370.369200pt;}
.y12{bottom:373.556000pt;}
.yd5{bottom:373.911200pt;}
.yfb{bottom:374.616533pt;}
.y95{bottom:384.155200pt;}
.y39{bottom:384.843867pt;}
.y70{bottom:388.352667pt;}
.yb0{bottom:388.370533pt;}
.y11{bottom:391.818000pt;}
.yd4{bottom:392.541200pt;}
.yfa{bottom:393.215867pt;}
.y94{bottom:402.340533pt;}
.y38{bottom:402.998533pt;}
.y6f{bottom:406.354000pt;}
.yaf{bottom:406.371867pt;}
.y10{bottom:410.080000pt;}
.yd3{bottom:411.171200pt;}
.yf9{bottom:411.815200pt;}
.y93{bottom:420.525867pt;}
.y37{bottom:421.153200pt;}
.y6e{bottom:424.355333pt;}
.yae{bottom:424.373200pt;}
.yf{bottom:428.342000pt;}
.yd2{bottom:429.801200pt;}
.yf8{bottom:430.414533pt;}
.y92{bottom:438.711200pt;}
.y36{bottom:439.307867pt;}
.y6d{bottom:442.356667pt;}
.yad{bottom:442.374533pt;}
.ye{bottom:446.604000pt;}
.yd1{bottom:448.431200pt;}
.yf7{bottom:449.013867pt;}
.y91{bottom:456.896533pt;}
.y35{bottom:457.462533pt;}
.y6c{bottom:460.358000pt;}
.yac{bottom:460.375867pt;}
.yd{bottom:464.866000pt;}
.yd0{bottom:467.061200pt;}
.yf6{bottom:467.613200pt;}
.y90{bottom:475.081867pt;}
.y34{bottom:475.617200pt;}
.y6b{bottom:478.359333pt;}
.yab{bottom:478.377200pt;}
.yc{bottom:483.128000pt;}
.ycf{bottom:485.691200pt;}
.yf5{bottom:486.212533pt;}
.y8f{bottom:493.267200pt;}
.y33{bottom:493.771867pt;}
.y6a{bottom:496.360667pt;}
.yaa{bottom:496.378533pt;}
.yb{bottom:501.390000pt;}
.ya{bottom:501.391333pt;}
.yce{bottom:504.321200pt;}
.yf4{bottom:504.811867pt;}
.y8e{bottom:511.442133pt;}
.y32{bottom:511.926533pt;}
.y69{bottom:514.362000pt;}
.ya9{bottom:514.379867pt;}
.ycd{bottom:522.951200pt;}
.yf3{bottom:523.411200pt;}
.y8d{bottom:529.627467pt;}
.y31{bottom:530.081200pt;}
.y68{bottom:532.363333pt;}
.ya8{bottom:532.381200pt;}
.ycc{bottom:541.581200pt;}
.yf2{bottom:542.010533pt;}
.y8c{bottom:547.812800pt;}
.y30{bottom:548.235867pt;}
.y67{bottom:550.364667pt;}
.ya7{bottom:550.382533pt;}
.ycb{bottom:560.211200pt;}
.yf1{bottom:560.609867pt;}
.y8b{bottom:565.998133pt;}
.y2f{bottom:566.390533pt;}
.y66{bottom:568.366000pt;}
.ya6{bottom:568.383867pt;}
.yca{bottom:578.841200pt;}
.yf0{bottom:579.209200pt;}
.y9{bottom:582.361600pt;}
.y8a{bottom:584.183467pt;}
.y2e{bottom:584.545200pt;}
.y65{bottom:586.367333pt;}
.ya5{bottom:586.385200pt;}
.yc9{bottom:597.471200pt;}
.yef{bottom:597.808533pt;}
.y8{bottom:601.281600pt;}
.y89{bottom:602.368800pt;}
.y2d{bottom:602.699867pt;}
.y64{bottom:604.368667pt;}
.ya4{bottom:604.386533pt;}
.yc8{bottom:616.101200pt;}
.yee{bottom:616.407867pt;}
.y88{bottom:620.554133pt;}
.y2c{bottom:620.854533pt;}
.y63{bottom:622.370000pt;}
.ya3{bottom:622.387867pt;}
.yc7{bottom:634.731200pt;}
.yed{bottom:635.007200pt;}
.y87{bottom:638.739467pt;}
.y2b{bottom:639.009200pt;}
.y62{bottom:640.389200pt;}
.y7{bottom:646.668267pt;}
.yc6{bottom:653.361200pt;}
.yec{bottom:653.606533pt;}
.y86{bottom:656.924800pt;}
.y2a{bottom:657.163867pt;}
.y61{bottom:658.390533pt;}
.yc5{bottom:671.991200pt;}
.yeb{bottom:672.205867pt;}
.y6{bottom:674.916267pt;}
.y85{bottom:675.110133pt;}
.y29{bottom:675.318533pt;}
.y60{bottom:676.391867pt;}
.yc4{bottom:690.621200pt;}
.yea{bottom:690.805200pt;}
.y84{bottom:693.289200pt;}
.y28{bottom:693.473200pt;}
.y5f{bottom:694.393200pt;}
.y5{bottom:703.171867pt;}
.yc3{bottom:709.251200pt;}
.ye9{bottom:709.404533pt;}
.y83{bottom:711.474533pt;}
.y27{bottom:711.627867pt;}
.y5e{bottom:712.394533pt;}
.yc2{bottom:727.881200pt;}
.ye8{bottom:728.003867pt;}
.y82{bottom:729.659867pt;}
.y26{bottom:729.782533pt;}
.y5d{bottom:730.395867pt;}
.yc1{bottom:746.511200pt;}
.ye7{bottom:746.603200pt;}
.y81{bottom:747.845200pt;}
.y25{bottom:747.937200pt;}
.y5c{bottom:748.397200pt;}
.y4{bottom:757.886533pt;}
.yc0{bottom:765.141200pt;}
.ye6{bottom:765.202533pt;}
.y80{bottom:766.030533pt;}
.y24{bottom:766.091867pt;}
.y5b{bottom:766.398533pt;}
.y3{bottom:776.806533pt;}
.ybf{bottom:783.771200pt;}
.ye5{bottom:783.801867pt;}
.y7f{bottom:784.215867pt;}
.y23{bottom:784.246533pt;}
.y5a{bottom:784.399867pt;}
.y22{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.h14{height:22.190437pt;}
.hb{height:30.107146pt;}
.hc{height:36.229167pt;}
.h12{height:39.060271pt;}
.h13{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h16{height:49.710938pt;}
.h8{height:52.079427pt;}
.h11{height:52.081027pt;}
.hf{height:52.082094pt;}
.h10{height:52.084760pt;}
.h15{height:52.104494pt;}
.he{height:52.109827pt;}
.ha{height:52.363694pt;}
.h17{height:52.635160pt;}
.hd{height:55.234375pt;}
.h2{height:56.608073pt;}
.h5{height:63.401042pt;}
.h9{height:63.519531pt;}
.h6{height:81.515625pt;}
.h7{height:140.415523pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.930133pt;}
.x5{left:73.428933pt;}
.x7{left:74.356133pt;}
.x1{left:75.590533pt;}
.xa{left:92.215600pt;}
.x8{left:93.952133pt;}
.x6{left:103.566133pt;}
.x4{left:204.253067pt;}
.x2{left:206.756800pt;}
.x3{left:207.927333pt;}
}




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