
    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_ab80e73cd4efc07f5605ed80.woff')format("woff");}.ff1{font-family:ff1;line-height:1.292000;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_6f3741b090a1bba9efd6be98.woff')format("woff");}.ff2{font-family:ff2;line-height:1.317000;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_e1cf8d82a10ab4e9f4bb71e9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102000;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_69654a76a8ec96918e7c4d2a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112000;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_f5ec697dcb26fc4c5934a118.woff')format("woff");}.ff5{font-family:ff5;line-height:1.079000;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_08699f417dcfc0b90e782b48.woff')format("woff");}.ff6{font-family:ff6;line-height:1.055000;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_1ab75df427c4f7e6990b4f93.woff')format("woff");}.ff7{font-family:ff7;line-height:1.098051;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_2440b8df5f4f62b6e2a984ca.woff')format("woff");}.ff8{font-family:ff8;line-height:0.713867;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_1100829e94a1d8619ef4c9fa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.122000;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_36044fe46abeda0646902354.woff')format("woff");}.ffa{font-family:ffa;line-height:1.027832;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_beac8d4f155e6ad92df94741.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bfcc31b2a0a929aa2d1a13ff.woff')format("woff");}.ffc{font-family:ffc;line-height:1.108887;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_704421440fc23827748bf85a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921875;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.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);}
.v2{vertical-align:-21.780000px;}
.v3{vertical-align:-18.810600px;}
.v7{vertical-align:-14.028000px;}
.v5{vertical-align:-1.390200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.390200px;}
.v6{vertical-align:6.000000px;}
.v8{vertical-align:19.818000px;}
.v1{vertical-align:21.780000px;}
.ls10{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.010200px;}
.lsf{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.048000px;}
.lsd{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.099600px;}
.lse{letter-spacing:0.174000px;}
.ls25{letter-spacing:0.186000px;}
.ls15{letter-spacing:0.222000px;}
.ls17{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.309000px;}
.ls21{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.372000px;}
.ls23{letter-spacing:0.384000px;}
.ls20{letter-spacing:0.414000px;}
.ls2{letter-spacing:0.519600px;}
.ls7{letter-spacing:0.543600px;}
.ls14{letter-spacing:0.636000px;}
.ls1{letter-spacing:0.713400px;}
.ls3{letter-spacing:0.901800px;}
.ls24{letter-spacing:1.050000px;}
.ls5{letter-spacing:1.056600px;}
.ls1e{letter-spacing:1.068000px;}
.ls29{letter-spacing:1.098000px;}
.ls13{letter-spacing:1.134000px;}
.ls26{letter-spacing:1.140000px;}
.ls12{letter-spacing:1.416000px;}
.ls22{letter-spacing:1.644000px;}
.ls27{letter-spacing:5.323800px;}
.ls1c{letter-spacing:6.132000px;}
.ls1a{letter-spacing:12.948000px;}
.ls8{letter-spacing:13.177500px;}
.ls1b{letter-spacing:16.674000px;}
.ls11{letter-spacing:16.968000px;}
.lsa{letter-spacing:24.554400px;}
.ls28{letter-spacing:39.000000px;}
.ls18{letter-spacing:40.140000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-60.000000px;}
.ws14{word-spacing:-45.000000px;}
.ws10{word-spacing:-44.352000px;}
.ws6{word-spacing:-42.768000px;}
.ws16{word-spacing:-41.803800px;}
.ws17{word-spacing:-36.480000px;}
.ws9{word-spacing:-31.680000px;}
.wsf{word-spacing:-29.248800px;}
.wse{word-spacing:-22.176000px;}
.ws3{word-spacing:-20.580000px;}
.ws8{word-spacing:-19.551000px;}
.ws1{word-spacing:-18.540000px;}
.ws0{word-spacing:-18.480000px;}
.ws5{word-spacing:-16.978500px;}
.ws4{word-spacing:-5.604000px;}
.wsb{word-spacing:-4.746000px;}
.ws2{word-spacing:-4.349400px;}
.wsc{word-spacing:-1.200000px;}
.wsa{word-spacing:-0.936000px;}
.wsd{word-spacing:0.000000px;}
.ws12{word-spacing:0.426000px;}
.ws15{word-spacing:0.830400px;}
.ws11{word-spacing:2.762100px;}
.ws7{word-spacing:2.764530px;}
._17{margin-left:-21.240000px;}
._15{margin-left:-19.350000px;}
._a{margin-left:-18.254802px;}
._1d{margin-left:-16.298700px;}
._10{margin-left:-14.649600px;}
._f{margin-left:-12.492000px;}
._11{margin-left:-10.836000px;}
._9{margin-left:-8.923470px;}
._5{margin-left:-7.689600px;}
._4{margin-left:-6.520800px;}
._2{margin-left:-5.257200px;}
._3{margin-left:-4.150200px;}
._6{margin-left:-3.040830px;}
._1{margin-left:-1.167000px;}
._7{width:1.163400px;}
._b{width:2.233200px;}
._e{width:3.816600px;}
._0{width:5.080200px;}
._c{width:6.861600px;}
._8{width:8.353200px;}
._14{width:9.379200px;}
._13{width:10.449600px;}
._12{width:12.633600px;}
._16{width:14.406000px;}
._d{width:15.809400px;}
._18{width:19.836000px;}
._1c{width:21.060000px;}
._1a{width:24.013200px;}
._1b{width:25.411800px;}
._19{width:28.212000px;}
._1e{width:30.537600px;}
._1f{width:43.030800px;}
.fc7{color:rgb(0,173,239);}
.fc5{color:rgb(13,146,213);}
.fc6{color:rgb(0,73,111);}
.fc2{color:rgb(239,47,44);}
.fc1{color:rgb(237,28,36);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,78,117);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:42.000000px;}
.fs8{font-size:42.750000px;}
.fs9{font-size:45.000000px;}
.fsd{font-size:48.000000px;}
.fs5{font-size:49.500000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:81.000000px;}
.fsc{font-size:84.000000px;}
.fs3{font-size:168.000000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y61{bottom:33.229950px;}
.y7d{bottom:37.522800px;}
.y12a{bottom:79.046100px;}
.yb8{bottom:79.785300px;}
.y7c{bottom:80.140200px;}
.y14c{bottom:80.199900px;}
.ycf{bottom:80.415300px;}
.y41{bottom:80.741850px;}
.y60{bottom:80.742787px;}
.ye5{bottom:81.036000px;}
.y129{bottom:95.546100px;}
.y14b{bottom:95.946150px;}
.yb7{bottom:96.285300px;}
.y7b{bottom:96.640200px;}
.yce{bottom:96.915300px;}
.y40{bottom:97.241850px;}
.ye4{bottom:97.536000px;}
.y5f{bottom:97.542825px;}
.y14a{bottom:111.692400px;}
.y128{bottom:112.046100px;}
.yb6{bottom:112.785300px;}
.y7a{bottom:113.140200px;}
.ycd{bottom:113.415300px;}
.y3f{bottom:113.741850px;}
.ye3{bottom:114.036000px;}
.y5e{bottom:114.342720px;}
.y149{bottom:127.438650px;}
.y127{bottom:128.546100px;}
.yb5{bottom:129.285300px;}
.y79{bottom:129.640200px;}
.ycc{bottom:129.915300px;}
.y3e{bottom:130.241850px;}
.ye2{bottom:130.536000px;}
.y5d{bottom:135.845400px;}
.y148{bottom:143.184900px;}
.y126{bottom:145.046100px;}
.yb4{bottom:145.785300px;}
.y78{bottom:146.140200px;}
.ycb{bottom:146.415300px;}
.y3d{bottom:146.741850px;}
.ye1{bottom:147.036000px;}
.y5c{bottom:147.942923px;}
.y147{bottom:158.931150px;}
.y125{bottom:161.546100px;}
.yb3{bottom:162.285300px;}
.y77{bottom:162.640200px;}
.yca{bottom:162.915300px;}
.y3c{bottom:163.241850px;}
.ye0{bottom:163.536000px;}
.y5b{bottom:164.742818px;}
.y146{bottom:174.677400px;}
.y124{bottom:178.046100px;}
.yb2{bottom:178.785300px;}
.y76{bottom:179.140200px;}
.yc9{bottom:179.415300px;}
.y3b{bottom:179.741850px;}
.ydf{bottom:180.036000px;}
.y5a{bottom:181.542855px;}
.y145{bottom:190.423650px;}
.y123{bottom:194.546100px;}
.y75{bottom:195.640200px;}
.yc8{bottom:195.915300px;}
.y3a{bottom:196.241850px;}
.yde{bottom:196.536000px;}
.y59{bottom:203.045400px;}
.y144{bottom:206.169900px;}
.y122{bottom:211.046100px;}
.yb1{bottom:211.783800px;}
.y74{bottom:212.140200px;}
.yc7{bottom:212.415300px;}
.y39{bottom:212.741850px;}
.ydd{bottom:213.036000px;}
.y121{bottom:227.546100px;}
.yb0{bottom:228.285300px;}
.y73{bottom:228.640200px;}
.yc6{bottom:228.915300px;}
.y38{bottom:229.241850px;}
.ydc{bottom:229.536000px;}
.y143{bottom:230.179650px;}
.y120{bottom:244.046100px;}
.y72{bottom:245.140200px;}
.yc5{bottom:245.415300px;}
.y24{bottom:245.444700px;}
.y37{bottom:245.741850px;}
.y142{bottom:245.925900px;}
.ydb{bottom:246.036000px;}
.y11f{bottom:260.546100px;}
.y71{bottom:261.640200px;}
.y141{bottom:261.672150px;}
.yc4{bottom:261.915300px;}
.y23{bottom:261.944700px;}
.y36{bottom:262.241850px;}
.yda{bottom:262.536000px;}
.y11e{bottom:277.046100px;}
.y140{bottom:277.418400px;}
.yaf{bottom:277.785600px;}
.y70{bottom:278.140200px;}
.yc3{bottom:278.415300px;}
.y22{bottom:278.444700px;}
.y35{bottom:278.741850px;}
.yd9{bottom:279.036000px;}
.y13f{bottom:293.164650px;}
.y11d{bottom:293.546100px;}
.yae{bottom:294.285600px;}
.y6f{bottom:294.640200px;}
.yc2{bottom:294.915300px;}
.y21{bottom:294.944700px;}
.y34{bottom:295.241850px;}
.yd8{bottom:295.536000px;}
.y13e{bottom:308.910900px;}
.y11c{bottom:310.046100px;}
.yad{bottom:310.785600px;}
.y6e{bottom:311.140200px;}
.yc1{bottom:311.415300px;}
.y20{bottom:311.444700px;}
.y33{bottom:311.741850px;}
.yd7{bottom:312.036000px;}
.y13d{bottom:324.657150px;}
.y11b{bottom:326.546100px;}
.yac{bottom:327.285600px;}
.y6d{bottom:327.640200px;}
.yc0{bottom:327.915300px;}
.y1f{bottom:327.944700px;}
.y32{bottom:328.241850px;}
.yd6{bottom:328.536000px;}
.y13c{bottom:340.403400px;}
.y11a{bottom:343.046100px;}
.yab{bottom:343.785600px;}
.y6c{bottom:344.140200px;}
.ybf{bottom:344.415300px;}
.y1e{bottom:344.444700px;}
.y31{bottom:344.741850px;}
.yd5{bottom:345.036000px;}
.y13b{bottom:356.149650px;}
.y119{bottom:359.546100px;}
.yaa{bottom:360.285600px;}
.y6b{bottom:360.640200px;}
.ybe{bottom:360.915300px;}
.y1d{bottom:360.944700px;}
.y30{bottom:361.241850px;}
.yd4{bottom:361.536000px;}
.y13a{bottom:371.895900px;}
.y118{bottom:376.046100px;}
.ya9{bottom:376.785600px;}
.y6a{bottom:377.140200px;}
.ybd{bottom:377.415300px;}
.y1c{bottom:377.444700px;}
.y2f{bottom:377.741850px;}
.yd3{bottom:378.036000px;}
.y139{bottom:387.642150px;}
.y117{bottom:392.546100px;}
.ya8{bottom:393.285600px;}
.y69{bottom:393.640200px;}
.ybc{bottom:393.915300px;}
.y1b{bottom:393.944700px;}
.y2e{bottom:394.241850px;}
.y138{bottom:403.388400px;}
.y116{bottom:409.046100px;}
.ya7{bottom:409.785600px;}
.y68{bottom:410.140200px;}
.ybb{bottom:410.415300px;}
.y1a{bottom:410.444700px;}
.y2d{bottom:410.741850px;}
.yd2{bottom:411.033000px;}
.y137{bottom:419.134650px;}
.y115{bottom:425.546100px;}
.ya6{bottom:426.285600px;}
.yba{bottom:426.915300px;}
.y19{bottom:426.944700px;}
.y2c{bottom:427.241850px;}
.yd1{bottom:427.534500px;}
.y136{bottom:434.880900px;}
.y114{bottom:442.046100px;}
.ya5{bottom:442.785600px;}
.y67{bottom:443.140192px;}
.yb9{bottom:443.415300px;}
.y18{bottom:443.444700px;}
.y2b{bottom:443.741850px;}
.yd0{bottom:444.036000px;}
.y135{bottom:450.627150px;}
.y113{bottom:458.546100px;}
.ya4{bottom:459.285600px;}
.y66{bottom:459.640267px;}
.y17{bottom:459.944700px;}
.y2a{bottom:460.241850px;}
.y134{bottom:466.373400px;}
.y12f{bottom:475.046100px;}
.ya3{bottom:475.785600px;}
.y65{bottom:476.140200px;}
.y16{bottom:476.444700px;}
.y29{bottom:476.741850px;}
.y112{bottom:491.543100px;}
.y12e{bottom:491.546100px;}
.ya2{bottom:492.285600px;}
.y15{bottom:492.944700px;}
.y28{bottom:493.241850px;}
.y111{bottom:508.044600px;}
.y12d{bottom:508.046100px;}
.y103{bottom:508.125000px;}
.ya1{bottom:508.785600px;}
.y14{bottom:509.444700px;}
.y27{bottom:509.741850px;}
.y110{bottom:524.546100px;}
.y102{bottom:524.760000px;}
.ya0{bottom:525.285600px;}
.y64{bottom:525.640350px;}
.y13{bottom:525.944700px;}
.y12c{bottom:541.046100px;}
.y101{bottom:541.125000px;}
.y9f{bottom:541.785600px;}
.y63{bottom:542.140350px;}
.y12{bottom:542.444700px;}
.y26{bottom:542.741917px;}
.y12b{bottom:557.546100px;}
.y100{bottom:557.760000px;}
.y9e{bottom:558.285600px;}
.y62{bottom:558.640350px;}
.y11{bottom:558.944700px;}
.y25{bottom:559.241850px;}
.y10f{bottom:574.046100px;}
.yff{bottom:574.125000px;}
.y9d{bottom:574.785600px;}
.y10{bottom:575.444700px;}
.y10e{bottom:590.546100px;}
.yfe{bottom:590.760000px;}
.y9c{bottom:591.285600px;}
.yf{bottom:591.944700px;}
.y51{bottom:600.169500px;}
.y10d{bottom:607.046100px;}
.yfd{bottom:607.125000px;}
.y9b{bottom:607.785600px;}
.ye{bottom:608.444700px;}
.y50{bottom:616.669500px;}
.y10c{bottom:623.546100px;}
.yfc{bottom:623.760000px;}
.y9a{bottom:624.285600px;}
.yd{bottom:624.944700px;}
.y4f{bottom:633.169500px;}
.y10b{bottom:640.046100px;}
.yfb{bottom:640.125000px;}
.y99{bottom:640.785600px;}
.yc{bottom:641.444700px;}
.y4e{bottom:649.669500px;}
.y10a{bottom:656.546100px;}
.yfa{bottom:656.625000px;}
.y98{bottom:657.285600px;}
.yb{bottom:657.944700px;}
.y4d{bottom:666.169500px;}
.y109{bottom:673.046100px;}
.yf9{bottom:673.260000px;}
.y97{bottom:673.785600px;}
.ya{bottom:674.444700px;}
.y4c{bottom:682.669500px;}
.yf8{bottom:689.760000px;}
.y96{bottom:690.285600px;}
.y9{bottom:690.944700px;}
.y4b{bottom:699.169500px;}
.yf7{bottom:706.125000px;}
.y95{bottom:706.785600px;}
.y8{bottom:707.444700px;}
.y4a{bottom:715.669500px;}
.yf6{bottom:722.760000px;}
.y94{bottom:723.285600px;}
.y15b{bottom:730.080000px;}
.yf5{bottom:739.125000px;}
.y93{bottom:739.785600px;}
.y7{bottom:740.444768px;}
.y15a{bottom:746.625000px;}
.y49{bottom:748.669500px;}
.yf4{bottom:755.760000px;}
.y92{bottom:756.285600px;}
.y6{bottom:756.944700px;}
.y159{bottom:763.080000px;}
.y48{bottom:765.169500px;}
.yf3{bottom:772.260000px;}
.y91{bottom:772.785600px;}
.y158{bottom:779.625000px;}
.y47{bottom:781.669500px;}
.yf2{bottom:788.625000px;}
.y90{bottom:789.285600px;}
.y157{bottom:796.080000px;}
.y46{bottom:798.169500px;}
.yf1{bottom:805.260000px;}
.y8f{bottom:805.785600px;}
.y5{bottom:806.444700px;}
.y156{bottom:812.625000px;}
.y45{bottom:814.669500px;}
.yf0{bottom:821.625000px;}
.y8e{bottom:822.285600px;}
.y4{bottom:822.944700px;}
.y155{bottom:829.125000px;}
.y44{bottom:831.169500px;}
.yef{bottom:838.125000px;}
.y8d{bottom:838.785600px;}
.y3{bottom:839.444700px;}
.y154{bottom:845.580000px;}
.y43{bottom:847.669650px;}
.yee{bottom:854.760000px;}
.y8c{bottom:855.285600px;}
.y2{bottom:855.944700px;}
.y153{bottom:862.125000px;}
.y42{bottom:864.169650px;}
.yed{bottom:871.260000px;}
.y8b{bottom:871.785600px;}
.y1{bottom:872.444700px;}
.y152{bottom:878.580000px;}
.yec{bottom:887.625000px;}
.y8a{bottom:888.285600px;}
.y151{bottom:895.125000px;}
.yeb{bottom:904.260000px;}
.y89{bottom:904.785600px;}
.y57{bottom:909.869250px;}
.y150{bottom:911.580000px;}
.y56{bottom:917.959650px;}
.yea{bottom:920.625000px;}
.y88{bottom:921.285600px;}
.y14f{bottom:928.125000px;}
.ye9{bottom:937.260000px;}
.y87{bottom:937.785600px;}
.y14e{bottom:944.580000px;}
.ye8{bottom:953.625000px;}
.y133{bottom:954.281100px;}
.y86{bottom:954.285600px;}
.y14d{bottom:961.125000px;}
.y54{bottom:967.382100px;}
.y132{bottom:970.781100px;}
.y85{bottom:970.785600px;}
.y131{bottom:987.281100px;}
.y84{bottom:987.285600px;}
.ye7{bottom:992.556450px;}
.y130{bottom:1003.781100px;}
.y83{bottom:1003.785600px;}
.ye6{bottom:1006.056450px;}
.y53{bottom:1009.382100px;}
.y105{bottom:1054.488150px;}
.y104{bottom:1061.717100px;}
.y55{bottom:1066.939800px;}
.y81{bottom:1091.554050px;}
.y107{bottom:1091.555400px;}
.y82{bottom:1105.388550px;}
.y108{bottom:1105.391100px;}
.y52{bottom:1106.870700px;}
.y80{bottom:1118.547300px;}
.y106{bottom:1118.548650px;}
.y58{bottom:1125.550050px;}
.y7f{bottom:1142.998050px;}
.y7e{bottom:1143.722550px;}
.hb{height:36.765000px;}
.he{height:38.598000px;}
.h15{height:39.159668px;}
.h10{height:41.280000px;}
.hc{height:49.020000px;}
.h14{height:50.097656px;}
.ha{height:50.695312px;}
.hd{height:55.140000px;}
.h8{height:58.176000px;}
.h3{height:60.477000px;}
.h16{height:61.455000px;}
.h18{height:61.500000px;}
.h17{height:61.560000px;}
.h2{height:61.680000px;}
.h11{height:62.220000px;}
.h12{height:62.243400px;}
.h4{height:63.660000px;}
.h13{height:66.078000px;}
.h7{height:74.299500px;}
.h9{height:74.439000px;}
.hf{height:77.196000px;}
.h6{height:137.592000px;}
.h5{height:168.120000px;}
.h0{height:1160.787000px;}
.h1{height:1161.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.778950px;}
.xe{left:68.281350px;}
.x3{left:72.250800px;}
.xb{left:77.629200px;}
.x6{left:84.757950px;}
.x1a{left:93.540000px;}
.x19{left:94.742100px;}
.x8{left:97.913700px;}
.x15{left:109.233600px;}
.x7{left:111.757883px;}
.x4{left:157.322250px;}
.x5{left:161.713500px;}
.xf{left:276.512250px;}
.xa{left:323.148900px;}
.x12{left:331.500000px;}
.x13{left:352.950000px;}
.x10{left:419.516400px;}
.x11{left:468.968400px;}
.x1{left:582.518850px;}
.x16{left:599.776800px;}
.x9{left:668.639250px;}
.x18{left:670.782300px;}
.x14{left:758.180400px;}
.xd{left:779.849700px;}
.xc{left:810.349800px;}
.x17{left:815.457300px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v3{vertical-align:-16.720533pt;}
.v7{vertical-align:-12.469333pt;}
.v5{vertical-align:-1.235733pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.235733pt;}
.v6{vertical-align:5.333333pt;}
.v8{vertical-align:17.616000pt;}
.v1{vertical-align:19.360000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.009067pt;}
.lsf{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.042667pt;}
.lsd{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.088533pt;}
.lse{letter-spacing:0.154667pt;}
.ls25{letter-spacing:0.165333pt;}
.ls15{letter-spacing:0.197333pt;}
.ls17{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.274667pt;}
.ls21{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.330667pt;}
.ls23{letter-spacing:0.341333pt;}
.ls20{letter-spacing:0.368000pt;}
.ls2{letter-spacing:0.461867pt;}
.ls7{letter-spacing:0.483200pt;}
.ls14{letter-spacing:0.565333pt;}
.ls1{letter-spacing:0.634133pt;}
.ls3{letter-spacing:0.801600pt;}
.ls24{letter-spacing:0.933333pt;}
.ls5{letter-spacing:0.939200pt;}
.ls1e{letter-spacing:0.949333pt;}
.ls29{letter-spacing:0.976000pt;}
.ls13{letter-spacing:1.008000pt;}
.ls26{letter-spacing:1.013333pt;}
.ls12{letter-spacing:1.258667pt;}
.ls22{letter-spacing:1.461333pt;}
.ls27{letter-spacing:4.732267pt;}
.ls1c{letter-spacing:5.450667pt;}
.ls1a{letter-spacing:11.509333pt;}
.ls8{letter-spacing:11.713333pt;}
.ls1b{letter-spacing:14.821333pt;}
.ls11{letter-spacing:15.082667pt;}
.lsa{letter-spacing:21.826133pt;}
.ls28{letter-spacing:34.666667pt;}
.ls18{letter-spacing:35.680000pt;}
.ws13{word-spacing:-53.333333pt;}
.ws14{word-spacing:-40.000000pt;}
.ws10{word-spacing:-39.424000pt;}
.ws6{word-spacing:-38.016000pt;}
.ws16{word-spacing:-37.158933pt;}
.ws17{word-spacing:-32.426667pt;}
.ws9{word-spacing:-28.160000pt;}
.wsf{word-spacing:-25.998933pt;}
.wse{word-spacing:-19.712000pt;}
.ws3{word-spacing:-18.293333pt;}
.ws8{word-spacing:-17.378667pt;}
.ws1{word-spacing:-16.480000pt;}
.ws0{word-spacing:-16.426667pt;}
.ws5{word-spacing:-15.092000pt;}
.ws4{word-spacing:-4.981333pt;}
.wsb{word-spacing:-4.218667pt;}
.ws2{word-spacing:-3.866133pt;}
.wsc{word-spacing:-1.066667pt;}
.wsa{word-spacing:-0.832000pt;}
.wsd{word-spacing:0.000000pt;}
.ws12{word-spacing:0.378667pt;}
.ws15{word-spacing:0.738133pt;}
.ws11{word-spacing:2.455200pt;}
.ws7{word-spacing:2.457360pt;}
._17{margin-left:-18.880000pt;}
._15{margin-left:-17.200000pt;}
._a{margin-left:-16.226491pt;}
._1d{margin-left:-14.487733pt;}
._10{margin-left:-13.021867pt;}
._f{margin-left:-11.104000pt;}
._11{margin-left:-9.632000pt;}
._9{margin-left:-7.931973pt;}
._5{margin-left:-6.835200pt;}
._4{margin-left:-5.796267pt;}
._2{margin-left:-4.673067pt;}
._3{margin-left:-3.689067pt;}
._6{margin-left:-2.702960pt;}
._1{margin-left:-1.037333pt;}
._7{width:1.034133pt;}
._b{width:1.985067pt;}
._e{width:3.392533pt;}
._0{width:4.515733pt;}
._c{width:6.099200pt;}
._8{width:7.425067pt;}
._14{width:8.337067pt;}
._13{width:9.288533pt;}
._12{width:11.229867pt;}
._16{width:12.805333pt;}
._d{width:14.052800pt;}
._18{width:17.632000pt;}
._1c{width:18.720000pt;}
._1a{width:21.345067pt;}
._1b{width:22.588267pt;}
._19{width:25.077333pt;}
._1e{width:27.144533pt;}
._1f{width:38.249600pt;}
.fsb{font-size:37.333333pt;}
.fs8{font-size:38.000000pt;}
.fs9{font-size:40.000000pt;}
.fsd{font-size:42.666667pt;}
.fs5{font-size:44.000000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:72.000000pt;}
.fsc{font-size:74.666667pt;}
.fs3{font-size:149.333333pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:29.537733pt;}
.y7d{bottom:33.353600pt;}
.y12a{bottom:70.263200pt;}
.yb8{bottom:70.920267pt;}
.y7c{bottom:71.235733pt;}
.y14c{bottom:71.288800pt;}
.ycf{bottom:71.480267pt;}
.y41{bottom:71.770533pt;}
.y60{bottom:71.771367pt;}
.ye5{bottom:72.032000pt;}
.y129{bottom:84.929867pt;}
.y14b{bottom:85.285467pt;}
.yb7{bottom:85.586933pt;}
.y7b{bottom:85.902400pt;}
.yce{bottom:86.146933pt;}
.y40{bottom:86.437200pt;}
.ye4{bottom:86.698667pt;}
.y5f{bottom:86.704733pt;}
.y14a{bottom:99.282133pt;}
.y128{bottom:99.596533pt;}
.yb6{bottom:100.253600pt;}
.y7a{bottom:100.569067pt;}
.ycd{bottom:100.813600pt;}
.y3f{bottom:101.103867pt;}
.ye3{bottom:101.365333pt;}
.y5e{bottom:101.637973pt;}
.y149{bottom:113.278800pt;}
.y127{bottom:114.263200pt;}
.yb5{bottom:114.920267pt;}
.y79{bottom:115.235733pt;}
.ycc{bottom:115.480267pt;}
.y3e{bottom:115.770533pt;}
.ye2{bottom:116.032000pt;}
.y5d{bottom:120.751467pt;}
.y148{bottom:127.275467pt;}
.y126{bottom:128.929867pt;}
.yb4{bottom:129.586933pt;}
.y78{bottom:129.902400pt;}
.ycb{bottom:130.146933pt;}
.y3d{bottom:130.437200pt;}
.ye1{bottom:130.698667pt;}
.y5c{bottom:131.504820pt;}
.y147{bottom:141.272133pt;}
.y125{bottom:143.596533pt;}
.yb3{bottom:144.253600pt;}
.y77{bottom:144.569067pt;}
.yca{bottom:144.813600pt;}
.y3c{bottom:145.103867pt;}
.ye0{bottom:145.365333pt;}
.y5b{bottom:146.438060pt;}
.y146{bottom:155.268800pt;}
.y124{bottom:158.263200pt;}
.yb2{bottom:158.920267pt;}
.y76{bottom:159.235733pt;}
.yc9{bottom:159.480267pt;}
.y3b{bottom:159.770533pt;}
.ydf{bottom:160.032000pt;}
.y5a{bottom:161.371427pt;}
.y145{bottom:169.265467pt;}
.y123{bottom:172.929867pt;}
.y75{bottom:173.902400pt;}
.yc8{bottom:174.146933pt;}
.y3a{bottom:174.437200pt;}
.yde{bottom:174.698667pt;}
.y59{bottom:180.484800pt;}
.y144{bottom:183.262133pt;}
.y122{bottom:187.596533pt;}
.yb1{bottom:188.252267pt;}
.y74{bottom:188.569067pt;}
.yc7{bottom:188.813600pt;}
.y39{bottom:189.103867pt;}
.ydd{bottom:189.365333pt;}
.y121{bottom:202.263200pt;}
.yb0{bottom:202.920267pt;}
.y73{bottom:203.235733pt;}
.yc6{bottom:203.480267pt;}
.y38{bottom:203.770533pt;}
.ydc{bottom:204.032000pt;}
.y143{bottom:204.604133pt;}
.y120{bottom:216.929867pt;}
.y72{bottom:217.902400pt;}
.yc5{bottom:218.146933pt;}
.y24{bottom:218.173067pt;}
.y37{bottom:218.437200pt;}
.y142{bottom:218.600800pt;}
.ydb{bottom:218.698667pt;}
.y11f{bottom:231.596533pt;}
.y71{bottom:232.569067pt;}
.y141{bottom:232.597467pt;}
.yc4{bottom:232.813600pt;}
.y23{bottom:232.839733pt;}
.y36{bottom:233.103867pt;}
.yda{bottom:233.365333pt;}
.y11e{bottom:246.263200pt;}
.y140{bottom:246.594133pt;}
.yaf{bottom:246.920533pt;}
.y70{bottom:247.235733pt;}
.yc3{bottom:247.480267pt;}
.y22{bottom:247.506400pt;}
.y35{bottom:247.770533pt;}
.yd9{bottom:248.032000pt;}
.y13f{bottom:260.590800pt;}
.y11d{bottom:260.929867pt;}
.yae{bottom:261.587200pt;}
.y6f{bottom:261.902400pt;}
.yc2{bottom:262.146933pt;}
.y21{bottom:262.173067pt;}
.y34{bottom:262.437200pt;}
.yd8{bottom:262.698667pt;}
.y13e{bottom:274.587467pt;}
.y11c{bottom:275.596533pt;}
.yad{bottom:276.253867pt;}
.y6e{bottom:276.569067pt;}
.yc1{bottom:276.813600pt;}
.y20{bottom:276.839733pt;}
.y33{bottom:277.103867pt;}
.yd7{bottom:277.365333pt;}
.y13d{bottom:288.584133pt;}
.y11b{bottom:290.263200pt;}
.yac{bottom:290.920533pt;}
.y6d{bottom:291.235733pt;}
.yc0{bottom:291.480267pt;}
.y1f{bottom:291.506400pt;}
.y32{bottom:291.770533pt;}
.yd6{bottom:292.032000pt;}
.y13c{bottom:302.580800pt;}
.y11a{bottom:304.929867pt;}
.yab{bottom:305.587200pt;}
.y6c{bottom:305.902400pt;}
.ybf{bottom:306.146933pt;}
.y1e{bottom:306.173067pt;}
.y31{bottom:306.437200pt;}
.yd5{bottom:306.698667pt;}
.y13b{bottom:316.577467pt;}
.y119{bottom:319.596533pt;}
.yaa{bottom:320.253867pt;}
.y6b{bottom:320.569067pt;}
.ybe{bottom:320.813600pt;}
.y1d{bottom:320.839733pt;}
.y30{bottom:321.103867pt;}
.yd4{bottom:321.365333pt;}
.y13a{bottom:330.574133pt;}
.y118{bottom:334.263200pt;}
.ya9{bottom:334.920533pt;}
.y6a{bottom:335.235733pt;}
.ybd{bottom:335.480267pt;}
.y1c{bottom:335.506400pt;}
.y2f{bottom:335.770533pt;}
.yd3{bottom:336.032000pt;}
.y139{bottom:344.570800pt;}
.y117{bottom:348.929867pt;}
.ya8{bottom:349.587200pt;}
.y69{bottom:349.902400pt;}
.ybc{bottom:350.146933pt;}
.y1b{bottom:350.173067pt;}
.y2e{bottom:350.437200pt;}
.y138{bottom:358.567467pt;}
.y116{bottom:363.596533pt;}
.ya7{bottom:364.253867pt;}
.y68{bottom:364.569067pt;}
.ybb{bottom:364.813600pt;}
.y1a{bottom:364.839733pt;}
.y2d{bottom:365.103867pt;}
.yd2{bottom:365.362667pt;}
.y137{bottom:372.564133pt;}
.y115{bottom:378.263200pt;}
.ya6{bottom:378.920533pt;}
.yba{bottom:379.480267pt;}
.y19{bottom:379.506400pt;}
.y2c{bottom:379.770533pt;}
.yd1{bottom:380.030667pt;}
.y136{bottom:386.560800pt;}
.y114{bottom:392.929867pt;}
.ya5{bottom:393.587200pt;}
.y67{bottom:393.902393pt;}
.yb9{bottom:394.146933pt;}
.y18{bottom:394.173067pt;}
.y2b{bottom:394.437200pt;}
.yd0{bottom:394.698667pt;}
.y135{bottom:400.557467pt;}
.y113{bottom:407.596533pt;}
.ya4{bottom:408.253867pt;}
.y66{bottom:408.569127pt;}
.y17{bottom:408.839733pt;}
.y2a{bottom:409.103867pt;}
.y134{bottom:414.554133pt;}
.y12f{bottom:422.263200pt;}
.ya3{bottom:422.920533pt;}
.y65{bottom:423.235733pt;}
.y16{bottom:423.506400pt;}
.y29{bottom:423.770533pt;}
.y112{bottom:436.927200pt;}
.y12e{bottom:436.929867pt;}
.ya2{bottom:437.587200pt;}
.y15{bottom:438.173067pt;}
.y28{bottom:438.437200pt;}
.y111{bottom:451.595200pt;}
.y12d{bottom:451.596533pt;}
.y103{bottom:451.666667pt;}
.ya1{bottom:452.253867pt;}
.y14{bottom:452.839733pt;}
.y27{bottom:453.103867pt;}
.y110{bottom:466.263200pt;}
.y102{bottom:466.453333pt;}
.ya0{bottom:466.920533pt;}
.y64{bottom:467.235867pt;}
.y13{bottom:467.506400pt;}
.y12c{bottom:480.929867pt;}
.y101{bottom:481.000000pt;}
.y9f{bottom:481.587200pt;}
.y63{bottom:481.902533pt;}
.y12{bottom:482.173067pt;}
.y26{bottom:482.437260pt;}
.y12b{bottom:495.596533pt;}
.y100{bottom:495.786667pt;}
.y9e{bottom:496.253867pt;}
.y62{bottom:496.569200pt;}
.y11{bottom:496.839733pt;}
.y25{bottom:497.103867pt;}
.y10f{bottom:510.263200pt;}
.yff{bottom:510.333333pt;}
.y9d{bottom:510.920533pt;}
.y10{bottom:511.506400pt;}
.y10e{bottom:524.929867pt;}
.yfe{bottom:525.120000pt;}
.y9c{bottom:525.587200pt;}
.yf{bottom:526.173067pt;}
.y51{bottom:533.484000pt;}
.y10d{bottom:539.596533pt;}
.yfd{bottom:539.666667pt;}
.y9b{bottom:540.253867pt;}
.ye{bottom:540.839733pt;}
.y50{bottom:548.150667pt;}
.y10c{bottom:554.263200pt;}
.yfc{bottom:554.453333pt;}
.y9a{bottom:554.920533pt;}
.yd{bottom:555.506400pt;}
.y4f{bottom:562.817333pt;}
.y10b{bottom:568.929867pt;}
.yfb{bottom:569.000000pt;}
.y99{bottom:569.587200pt;}
.yc{bottom:570.173067pt;}
.y4e{bottom:577.484000pt;}
.y10a{bottom:583.596533pt;}
.yfa{bottom:583.666667pt;}
.y98{bottom:584.253867pt;}
.yb{bottom:584.839733pt;}
.y4d{bottom:592.150667pt;}
.y109{bottom:598.263200pt;}
.yf9{bottom:598.453333pt;}
.y97{bottom:598.920533pt;}
.ya{bottom:599.506400pt;}
.y4c{bottom:606.817333pt;}
.yf8{bottom:613.120000pt;}
.y96{bottom:613.587200pt;}
.y9{bottom:614.173067pt;}
.y4b{bottom:621.484000pt;}
.yf7{bottom:627.666667pt;}
.y95{bottom:628.253867pt;}
.y8{bottom:628.839733pt;}
.y4a{bottom:636.150667pt;}
.yf6{bottom:642.453333pt;}
.y94{bottom:642.920533pt;}
.y15b{bottom:648.960000pt;}
.yf5{bottom:657.000000pt;}
.y93{bottom:657.587200pt;}
.y7{bottom:658.173127pt;}
.y15a{bottom:663.666667pt;}
.y49{bottom:665.484000pt;}
.yf4{bottom:671.786667pt;}
.y92{bottom:672.253867pt;}
.y6{bottom:672.839733pt;}
.y159{bottom:678.293333pt;}
.y48{bottom:680.150667pt;}
.yf3{bottom:686.453333pt;}
.y91{bottom:686.920533pt;}
.y158{bottom:693.000000pt;}
.y47{bottom:694.817333pt;}
.yf2{bottom:701.000000pt;}
.y90{bottom:701.587200pt;}
.y157{bottom:707.626667pt;}
.y46{bottom:709.484000pt;}
.yf1{bottom:715.786667pt;}
.y8f{bottom:716.253867pt;}
.y5{bottom:716.839733pt;}
.y156{bottom:722.333333pt;}
.y45{bottom:724.150667pt;}
.yf0{bottom:730.333333pt;}
.y8e{bottom:730.920533pt;}
.y4{bottom:731.506400pt;}
.y155{bottom:737.000000pt;}
.y44{bottom:738.817333pt;}
.yef{bottom:745.000000pt;}
.y8d{bottom:745.587200pt;}
.y3{bottom:746.173067pt;}
.y154{bottom:751.626667pt;}
.y43{bottom:753.484133pt;}
.yee{bottom:759.786667pt;}
.y8c{bottom:760.253867pt;}
.y2{bottom:760.839733pt;}
.y153{bottom:766.333333pt;}
.y42{bottom:768.150800pt;}
.yed{bottom:774.453333pt;}
.y8b{bottom:774.920533pt;}
.y1{bottom:775.506400pt;}
.y152{bottom:780.960000pt;}
.yec{bottom:789.000000pt;}
.y8a{bottom:789.587200pt;}
.y151{bottom:795.666667pt;}
.yeb{bottom:803.786667pt;}
.y89{bottom:804.253867pt;}
.y57{bottom:808.772667pt;}
.y150{bottom:810.293333pt;}
.y56{bottom:815.964133pt;}
.yea{bottom:818.333333pt;}
.y88{bottom:818.920533pt;}
.y14f{bottom:825.000000pt;}
.ye9{bottom:833.120000pt;}
.y87{bottom:833.587200pt;}
.y14e{bottom:839.626667pt;}
.ye8{bottom:847.666667pt;}
.y133{bottom:848.249867pt;}
.y86{bottom:848.253867pt;}
.y14d{bottom:854.333333pt;}
.y54{bottom:859.895200pt;}
.y132{bottom:862.916533pt;}
.y85{bottom:862.920533pt;}
.y131{bottom:877.583200pt;}
.y84{bottom:877.587200pt;}
.ye7{bottom:882.272400pt;}
.y130{bottom:892.249867pt;}
.y83{bottom:892.253867pt;}
.ye6{bottom:894.272400pt;}
.y53{bottom:897.228533pt;}
.y105{bottom:937.322800pt;}
.y104{bottom:943.748533pt;}
.y55{bottom:948.390933pt;}
.y81{bottom:970.270267pt;}
.y107{bottom:970.271467pt;}
.y82{bottom:982.567600pt;}
.y108{bottom:982.569867pt;}
.y52{bottom:983.885067pt;}
.y80{bottom:994.264267pt;}
.y106{bottom:994.265467pt;}
.y58{bottom:1000.488933pt;}
.y7f{bottom:1015.998267pt;}
.y7e{bottom:1016.642267pt;}
.hb{height:32.680000pt;}
.he{height:34.309333pt;}
.h15{height:34.808594pt;}
.h10{height:36.693333pt;}
.hc{height:43.573333pt;}
.h14{height:44.531250pt;}
.ha{height:45.062500pt;}
.hd{height:49.013333pt;}
.h8{height:51.712000pt;}
.h3{height:53.757333pt;}
.h16{height:54.626667pt;}
.h18{height:54.666667pt;}
.h17{height:54.720000pt;}
.h2{height:54.826667pt;}
.h11{height:55.306667pt;}
.h12{height:55.327467pt;}
.h4{height:56.586667pt;}
.h13{height:58.736000pt;}
.h7{height:66.044000pt;}
.h9{height:66.168000pt;}
.hf{height:68.618667pt;}
.h6{height:122.304000pt;}
.h5{height:149.440000pt;}
.h0{height:1031.810667pt;}
.h1{height:1032.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.692400pt;}
.xe{left:60.694533pt;}
.x3{left:64.222933pt;}
.xb{left:69.003733pt;}
.x6{left:75.340400pt;}
.x1a{left:83.146667pt;}
.x19{left:84.215200pt;}
.x8{left:87.034400pt;}
.x15{left:97.096533pt;}
.x7{left:99.340340pt;}
.x4{left:139.842000pt;}
.x5{left:143.745333pt;}
.xf{left:245.788667pt;}
.xa{left:287.243467pt;}
.x12{left:294.666667pt;}
.x13{left:313.733333pt;}
.x10{left:372.903467pt;}
.x11{left:416.860800pt;}
.x1{left:517.794533pt;}
.x16{left:533.134933pt;}
.x9{left:594.346000pt;}
.x18{left:596.250933pt;}
.x14{left:673.938133pt;}
.xd{left:693.199733pt;}
.xc{left:720.310933pt;}
.x17{left:724.850933pt;}
}




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