
    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_c7aa6e37da274e65dd92d9df.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_3096d60c1faf7bc1f81409e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_af8867ab0bc1590eb11c949a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_6dec0d05c790cf87b7456ef6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_3c0f8e7f4719bf4d616eb20b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_a24875073e0bc2f66156ba68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.869629;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_c7aa6e37da274e65dd92d9df.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113281;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_6dec0d05c790cf87b7456ef6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.113281;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_07d63e08c9e884ab9b166c46.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.113281;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_83ec7a261d850f71d7731111.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_717ccfdf518bd481fd553786.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.869629;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_9d6de0fa88392510f83616b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;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_f91bc07053bd0f01eb6d6702.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d5e07b215aa078a2b27fad9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e3e4f9638d85dbeb36f7e820.woff2')format("woff");}.fff{font-family:fff;line-height:0.874023;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b7207e6d5ed4302adb0c8739.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_04d1fcbe03dbf80fec2490bc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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;}
.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);}
.m0{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.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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v1{vertical-align:17.982600px;}
.v5{vertical-align:20.169000px;}
.v4{vertical-align:22.951200px;}
.v2{vertical-align:30.000000px;}
.ls4{letter-spacing:-6.090000px;}
.ls6{letter-spacing:-5.460000px;}
.ls9{letter-spacing:-2.700000px;}
.ls8{letter-spacing:-2.430000px;}
.ls7{letter-spacing:-2.329668px;}
.ls21{letter-spacing:-0.703831px;}
.ls1d{letter-spacing:-0.575861px;}
.ls19{letter-spacing:-0.447892px;}
.ls22{letter-spacing:-0.383908px;}
.ls27{letter-spacing:-0.346352px;}
.ls20{letter-spacing:-0.319923px;}
.ls28{letter-spacing:-0.288627px;}
.ls1f{letter-spacing:-0.255938px;}
.ls1a{letter-spacing:-0.191954px;}
.ls1e{letter-spacing:-0.161352px;}
.ls24{letter-spacing:-0.057725px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.002400px;}
.lsa{letter-spacing:0.003696px;}
.ls1{letter-spacing:0.004608px;}
.ls2{letter-spacing:0.005208px;}
.ls25{letter-spacing:0.057725px;}
.ls18{letter-spacing:0.063985px;}
.ls23{letter-spacing:0.115451px;}
.lsb{letter-spacing:0.127969px;}
.ls17{letter-spacing:0.173176px;}
.lsd{letter-spacing:0.191954px;}
.ls1c{letter-spacing:0.201690px;}
.ls1b{letter-spacing:0.255938px;}
.ls26{letter-spacing:0.346352px;}
.ls14{letter-spacing:0.567281px;}
.ls13{letter-spacing:0.695400px;}
.ls15{letter-spacing:1.535630px;}
.ls5{letter-spacing:1.680000px;}
.ls11{letter-spacing:2.239461px;}
.ls10{letter-spacing:2.943292px;}
.ls12{letter-spacing:3.071261px;}
.lsf{letter-spacing:4.158999px;}
.lsc{letter-spacing:4.286968px;}
.lse{letter-spacing:5.694629px;}
.ls16{letter-spacing:22.224279px;}
.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;}
}
.ws7{word-spacing:-15.012000px;}
.ws20{word-spacing:-14.777702px;}
.ws1f{word-spacing:-14.716458px;}
.ws1b{word-spacing:-14.588489px;}
.ws16{word-spacing:-14.524504px;}
.ws15{word-spacing:-14.460520px;}
.ws1a{word-spacing:-14.204581px;}
.ws1c{word-spacing:-14.140597px;}
.ws1e{word-spacing:-14.012627px;}
.ws1{word-spacing:-13.344000px;}
.ws22{word-spacing:-13.045940px;}
.ws1d{word-spacing:-12.988215px;}
.ws21{word-spacing:-12.699588px;}
.wsb{word-spacing:-11.676000px;}
.ws18{word-spacing:-9.318078px;}
.ws17{word-spacing:-9.116388px;}
.ws19{word-spacing:-8.955036px;}
.ws0{word-spacing:-8.751996px;}
.wsa{word-spacing:-6.422328px;}
.ws9{word-spacing:-1.998000px;}
.ws4{word-spacing:-1.680000px;}
.ws5{word-spacing:-1.392000px;}
.ws40{word-spacing:-1.215707px;}
.ws28{word-spacing:-0.767815px;}
.ws48{word-spacing:-0.692705px;}
.ws46{word-spacing:-0.634979px;}
.ws23{word-spacing:-0.575861px;}
.ws45{word-spacing:-0.519529px;}
.ws27{word-spacing:-0.255938px;}
.ws3b{word-spacing:-0.191954px;}
.ws3e{word-spacing:-0.115451px;}
.ws3f{word-spacing:-0.057725px;}
.ws2{word-spacing:0.000000px;}
.ws3a{word-spacing:0.191954px;}
.ws35{word-spacing:0.255938px;}
.ws47{word-spacing:0.288627px;}
.ws3c{word-spacing:0.319923px;}
.ws3d{word-spacing:0.383908px;}
.ws24{word-spacing:0.447892px;}
.ws33{word-spacing:0.639846px;}
.ws34{word-spacing:0.767815px;}
.ws49{word-spacing:0.808156px;}
.ws42{word-spacing:1.343677px;}
.ws41{word-spacing:1.471646px;}
.ws44{word-spacing:1.500860px;}
.ws2d{word-spacing:1.535630px;}
.ws2e{word-spacing:1.663600px;}
.ws2c{word-spacing:1.983523px;}
.ws2b{word-spacing:2.111492px;}
.wsc{word-spacing:2.430000px;}
.ws39{word-spacing:2.431415px;}
.wsd{word-spacing:2.700000px;}
.ws37{word-spacing:2.751338px;}
.ws36{word-spacing:2.879307px;}
.ws38{word-spacing:3.007276px;}
.ws31{word-spacing:3.455168px;}
.ws32{word-spacing:3.583138px;}
.ws6{word-spacing:3.984000px;}
.ws25{word-spacing:4.222984px;}
.ws26{word-spacing:4.414937px;}
.ws2f{word-spacing:4.926814px;}
.ws8{word-spacing:5.460000px;}
.ws30{word-spacing:5.502676px;}
.ws2a{word-spacing:5.630645px;}
.ws3{word-spacing:6.090000px;}
.ws29{word-spacing:6.334475px;}
.ws43{word-spacing:8.427908px;}
.ws10{word-spacing:87.408000px;}
.ws12{word-spacing:114.096000px;}
.wse{word-spacing:122.112000px;}
.wsf{word-spacing:317.904000px;}
.ws11{word-spacing:320.544000px;}
.ws13{word-spacing:363.216000px;}
.ws14{word-spacing:405.888000px;}
._22{margin-left:-2748.192000px;}
._10{margin-left:-12.411120px;}
._f{margin-left:-11.308440px;}
._2{margin-left:-6.258000px;}
._3{margin-left:-5.250000px;}
._c{margin-left:-4.215780px;}
._5{margin-left:-3.124800px;}
._4{margin-left:-1.579200px;}
._7{width:1.132800px;}
._8{width:2.371200px;}
._1{width:3.502800px;}
._9{width:4.984800px;}
._0{width:6.098400px;}
._6{width:7.951200px;}
._b{width:9.072600px;}
._d{width:10.621200px;}
._13{width:13.599600px;}
._11{width:14.994000px;}
._12{width:18.118800px;}
._e{width:38.346000px;}
._a{width:70.038000px;}
._19{width:102.768000px;}
._21{width:103.876800px;}
._1a{width:106.752000px;}
._1b{width:108.000000px;}
._17{width:110.112000px;}
._1d{width:114.768000px;}
._1e{width:120.480000px;}
._16{width:122.784000px;}
._1c{width:130.128000px;}
._18{width:136.656000px;}
._20{width:151.152000px;}
._1f{width:177.840000px;}
._14{width:263.184000px;}
._15{width:361.824000px;}
.fc7{color:rgb(253,221,4);}
.fc6{color:rgb(16,15,13);}
.fc5{color:rgb(55,58,62);}
.fc8{color:rgb(59,84,174);}
.fc4{color:transparent;}
.fc3{color:rgb(37,74,165);}
.fc1{color:rgb(145,143,143);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:27.984000px;}
.fs4{font-size:31.482000px;}
.fs5{font-size:36.000000px;}
.fsa{font-size:37.556400px;}
.fs8{font-size:40.338000px;}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:57.725400px;}
.fs7{font-size:63.984600px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y134{bottom:3.650700px;}
.y135{bottom:3.824550px;}
.y13e{bottom:3.825750px;}
.y138{bottom:3.998250px;}
.y140{bottom:3.998550px;}
.y13a{bottom:3.999000px;}
.y13c{bottom:3.999300px;}
.y142{bottom:3.999600px;}
.y146{bottom:4.331250px;}
.y137{bottom:21.733050px;}
.y3{bottom:45.676500px;}
.y3e{bottom:46.480200px;}
.y3f{bottom:46.780950px;}
.y2{bottom:47.572200px;}
.y11b{bottom:84.772650px;}
.y101{bottom:85.045350px;}
.y3c{bottom:85.684350px;}
.yb0{bottom:87.018900px;}
.y77{bottom:87.759900px;}
.y4{bottom:90.322500px;}
.y11a{bottom:96.769650px;}
.y100{bottom:97.042350px;}
.ye6{bottom:97.860750px;}
.y3b{bottom:99.184350px;}
.y150{bottom:102.300471px;}
.yaf{bottom:105.014400px;}
.y76{bottom:105.755400px;}
.y119{bottom:108.769650px;}
.yff{bottom:109.039350px;}
.ye5{bottom:111.363750px;}
.y3a{bottom:112.684350px;}
.y14f{bottom:120.036600px;}
.yae{bottom:123.009900px;}
.y75{bottom:123.750900px;}
.y118{bottom:123.769650px;}
.ye4{bottom:124.866750px;}
.y39{bottom:126.184350px;}
.yfe{bottom:127.277850px;}
.ye3{bottom:138.369750px;}
.y117{bottom:138.769650px;}
.y38{bottom:139.684350px;}
.yad{bottom:141.005400px;}
.y74{bottom:141.746400px;}
.yfd{bottom:148.541850px;}
.ye2{bottom:151.872750px;}
.y14e{bottom:152.059765px;}
.y37{bottom:153.184350px;}
.y116{bottom:153.769650px;}
.yac{bottom:159.000900px;}
.y73{bottom:159.741900px;}
.ye1{bottom:165.375750px;}
.y36{bottom:166.684350px;}
.yfc{bottom:169.805850px;}
.y14d{bottom:169.969071px;}
.yab{bottom:176.996400px;}
.y72{bottom:177.737400px;}
.ye0{bottom:178.878750px;}
.y35{bottom:180.184350px;}
.y107{bottom:184.559100px;}
.y14c{bottom:187.705200px;}
.yfb{bottom:191.069850px;}
.ydf{bottom:192.381750px;}
.y34{bottom:193.684350px;}
.yaa{bottom:194.991900px;}
.y71{bottom:195.732900px;}
.y106{bottom:199.559100px;}
.yde{bottom:205.884750px;}
.y33{bottom:207.184350px;}
.yfa{bottom:212.333850px;}
.ya9{bottom:212.987400px;}
.y70{bottom:213.728400px;}
.y105{bottom:214.559100px;}
.ydd{bottom:219.387750px;}
.y14b{bottom:219.532571px;}
.y104{bottom:229.559100px;}
.ya8{bottom:230.982900px;}
.y6f{bottom:231.723900px;}
.ydc{bottom:232.890750px;}
.yf9{bottom:233.597850px;}
.y32{bottom:239.520000px;}
.y103{bottom:244.559100px;}
.ydb{bottom:246.393750px;}
.ya7{bottom:248.978400px;}
.y6e{bottom:249.719400px;}
.yf8{bottom:254.861850px;}
.y31{bottom:257.533500px;}
.y14a{bottom:257.603408px;}
.y102{bottom:259.559100px;}
.yda{bottom:259.896750px;}
.ya6{bottom:266.973900px;}
.y6d{bottom:267.714900px;}
.yd9{bottom:273.399750px;}
.y30{bottom:275.529000px;}
.yf7{bottom:276.125850px;}
.y149{bottom:278.638345px;}
.ya5{bottom:284.969400px;}
.y6c{bottom:285.710400px;}
.yd8{bottom:286.902750px;}
.y2f{bottom:293.524500px;}
.y148{bottom:299.497325px;}
.yd7{bottom:300.405750px;}
.yf6{bottom:300.509850px;}
.ya4{bottom:302.964900px;}
.y6b{bottom:303.705900px;}
.y2e{bottom:311.520000px;}
.yd6{bottom:313.908750px;}
.yf5{bottom:315.509850px;}
.ya3{bottom:320.960400px;}
.y6a{bottom:321.701400px;}
.yd5{bottom:327.411750px;}
.y2d{bottom:329.520000px;}
.y147{bottom:337.408200px;}
.ya2{bottom:338.955900px;}
.yf4{bottom:339.637800px;}
.y69{bottom:339.696900px;}
.yd4{bottom:341.001750px;}
.y2c{bottom:347.524500px;}
.y145{bottom:351.855000px;}
.ya1{bottom:356.951400px;}
.y68{bottom:357.692400px;}
.y2b{bottom:365.520000px;}
.y144{bottom:374.785284px;}
.ya0{bottom:374.946900px;}
.y67{bottom:375.687900px;}
.yd3{bottom:377.006250px;}
.y10f{bottom:382.559100px;}
.y2a{bottom:383.515500px;}
.y143{bottom:391.525650px;}
.y9f{bottom:392.942400px;}
.y66{bottom:393.692400px;}
.yd2{bottom:395.001750px;}
.y10e{bottom:397.559100px;}
.y9e{bottom:410.937900px;}
.y65{bottom:411.687900px;}
.y10d{bottom:412.559100px;}
.y141{bottom:415.171500px;}
.y29{bottom:419.515500px;}
.y10c{bottom:427.559100px;}
.y9d{bottom:428.942400px;}
.yd1{bottom:431.006250px;}
.y13f{bottom:432.907500px;}
.y28{bottom:434.515500px;}
.y10b{bottom:442.559100px;}
.y9c{bottom:446.937900px;}
.y64{bottom:447.692400px;}
.yd0{bottom:449.001750px;}
.y27{bottom:449.515500px;}
.y13d{bottom:453.597000px;}
.y26{bottom:464.515500px;}
.y9b{bottom:464.991900px;}
.y63{bottom:465.687900px;}
.y13b{bottom:474.114000px;}
.y25{bottom:479.515500px;}
.y9a{bottom:482.987400px;}
.y62{bottom:483.701400px;}
.ycf{bottom:485.006250px;}
.y24{bottom:494.515500px;}
.y139{bottom:494.805000px;}
.y99{bottom:500.982900px;}
.y61{bottom:501.696900px;}
.yce{bottom:503.001750px;}
.y23{bottom:509.515500px;}
.y136{bottom:516.192000px;}
.y98{bottom:518.978400px;}
.y60{bottom:519.692400px;}
.y10a{bottom:521.878050px;}
.y22{bottom:524.515500px;}
.y97{bottom:536.973900px;}
.y5f{bottom:537.687900px;}
.ycd{bottom:539.006250px;}
.y21{bottom:539.515500px;}
.y133{bottom:552.357000px;}
.y20{bottom:554.515500px;}
.y96{bottom:554.969400px;}
.y5e{bottom:555.687900px;}
.ycc{bottom:557.001750px;}
.y40{bottom:567.090900px;}
.y1f{bottom:569.515500px;}
.y95{bottom:572.964900px;}
.y5d{bottom:573.687900px;}
.ycb{bottom:574.997250px;}
.y1e{bottom:584.515500px;}
.y94{bottom:590.960400px;}
.y5c{bottom:591.728400px;}
.y132{bottom:593.397973px;}
.y1d{bottom:599.515500px;}
.y11e{bottom:600.289350px;}
.y93{bottom:608.955900px;}
.y5b{bottom:609.723900px;}
.yca{bottom:611.001750px;}
.y131{bottom:614.464903px;}
.y1c{bottom:614.515500px;}
.y11d{bottom:615.289350px;}
.y92{bottom:626.951400px;}
.y5a{bottom:627.719400px;}
.yc9{bottom:628.997250px;}
.y1b{bottom:629.515500px;}
.y91{bottom:644.946900px;}
.y59{bottom:645.714900px;}
.yc8{bottom:646.992750px;}
.y1a{bottom:659.515500px;}
.y115{bottom:660.922650px;}
.y90{bottom:662.942400px;}
.y58{bottom:663.710400px;}
.yc7{bottom:664.988250px;}
.y130{bottom:670.275470px;}
.y114{bottom:672.919650px;}
.y19{bottom:674.515500px;}
.y8f{bottom:680.937900px;}
.y57{bottom:681.705900px;}
.y113{bottom:684.919650px;}
.y18{bottom:689.515500px;}
.y12f{bottom:691.144123px;}
.y8e{bottom:699.018900px;}
.y56{bottom:699.701400px;}
.y112{bottom:699.919650px;}
.yc6{bottom:700.992750px;}
.y17{bottom:704.515500px;}
.y12e{bottom:712.179060px;}
.y111{bottom:714.919650px;}
.y8d{bottom:717.014400px;}
.y55{bottom:717.696900px;}
.yc5{bottom:718.988250px;}
.y16{bottom:719.515500px;}
.y110{bottom:729.919650px;}
.y15{bottom:734.515500px;}
.y8c{bottom:735.009900px;}
.y54{bottom:735.692400px;}
.yc4{bottom:736.983750px;}
.y14{bottom:749.515500px;}
.y12d{bottom:750.601813px;}
.y8b{bottom:753.005400px;}
.y53{bottom:753.687900px;}
.yc3{bottom:754.979250px;}
.y13{bottom:764.515500px;}
.y8a{bottom:771.000900px;}
.y12c{bottom:771.636750px;}
.y52{bottom:771.683400px;}
.yc2{bottom:772.974750px;}
.y12{bottom:779.515500px;}
.y89{bottom:788.996400px;}
.y51{bottom:789.687900px;}
.yc1{bottom:790.970250px;}
.y11{bottom:794.515500px;}
.y109{bottom:802.528050px;}
.y88{bottom:806.991900px;}
.y50{bottom:807.687900px;}
.yc0{bottom:808.965750px;}
.y10{bottom:809.515500px;}
.y12b{bottom:809.890837px;}
.yf{bottom:824.515500px;}
.y87{bottom:824.987400px;}
.y4f{bottom:825.687900px;}
.ybf{bottom:826.961250px;}
.y12a{bottom:830.925774px;}
.ye{bottom:839.515500px;}
.y86{bottom:842.982900px;}
.y4e{bottom:843.732900px;}
.ybe{bottom:844.956750px;}
.y129{bottom:852.023944px;}
.yd{bottom:854.515500px;}
.y85{bottom:860.978400px;}
.y4d{bottom:861.728400px;}
.yc{bottom:869.515500px;}
.y128{bottom:873.058881px;}
.y84{bottom:878.973900px;}
.y4c{bottom:879.723900px;}
.ybd{bottom:880.961250px;}
.y127{bottom:893.917860px;}
.yb{bottom:897.418050px;}
.y4b{bottom:897.719400px;}
.ybc{bottom:898.956750px;}
.y11c{bottom:905.665050px;}
.ya{bottom:910.919550px;}
.y126{bottom:914.952798px;}
.y83{bottom:914.978400px;}
.ybb{bottom:916.952250px;}
.y9{bottom:925.918050px;}
.y82{bottom:932.973900px;}
.y4a{bottom:933.723900px;}
.yba{bottom:934.947750px;}
.y81{bottom:950.969400px;}
.y49{bottom:951.719400px;}
.yb9{bottom:952.943250px;}
.y125{bottom:953.380970px;}
.yf2{bottom:961.561950px;}
.y8{bottom:966.326550px;}
.y80{bottom:968.964900px;}
.y48{bottom:969.714900px;}
.yb8{bottom:970.938750px;}
.y124{bottom:974.239950px;}
.yf1{bottom:975.064950px;}
.y1{bottom:985.996050px;}
.y7f{bottom:986.960400px;}
.y47{bottom:987.710400px;}
.yf0{bottom:988.567950px;}
.yb7{bottom:988.934250px;}
.y7{bottom:996.326550px;}
.yef{bottom:1002.070950px;}
.y7e{bottom:1004.955900px;}
.y46{bottom:1005.705900px;}
.yb6{bottom:1006.929750px;}
.y11f{bottom:1007.587200px;}
.y123{bottom:1012.839450px;}
.yee{bottom:1015.573950px;}
.y7d{bottom:1022.951400px;}
.y45{bottom:1023.701400px;}
.yb5{bottom:1024.925250px;}
.yed{bottom:1029.076950px;}
.y122{bottom:1033.711716px;}
.y7c{bottom:1040.946900px;}
.y44{bottom:1041.696900px;}
.yec{bottom:1042.579950px;}
.yb4{bottom:1042.920750px;}
.yeb{bottom:1056.082950px;}
.y6{bottom:1056.326550px;}
.y7b{bottom:1058.942400px;}
.y43{bottom:1059.692400px;}
.yb3{bottom:1060.916250px;}
.y121{bottom:1066.391850px;}
.yea{bottom:1069.585950px;}
.y7a{bottom:1076.937900px;}
.y42{bottom:1077.687900px;}
.yb2{bottom:1078.916250px;}
.y108{bottom:1082.738100px;}
.ye9{bottom:1083.088950px;}
.y3d{bottom:1083.389700px;}
.y120{bottom:1085.894250px;}
.y5{bottom:1086.326550px;}
.y79{bottom:1094.933400px;}
.y41{bottom:1095.683400px;}
.ye8{bottom:1096.591950px;}
.yb1{bottom:1096.911750px;}
.ye7{bottom:1137.854250px;}
.yf3{bottom:1137.877950px;}
.y78{bottom:1137.906900px;}
.h13{height:17.545500px;}
.h1a{height:17.719500px;}
.h19{height:20.502000px;}
.h17{height:20.676000px;}
.h9{height:32.273438px;}
.hd{height:32.501953px;}
.ha{height:34.945312px;}
.h16{height:35.455500px;}
.h3{height:37.652344px;}
.h2{height:37.918945px;}
.h14{height:40.080820px;}
.h15{height:40.165378px;}
.h18{height:41.433759px;}
.h7{height:43.031250px;}
.h1e{height:43.333320px;}
.h4{height:43.335938px;}
.h1d{height:44.426807px;}
.he{height:45.926446px;}
.h1b{height:46.245758px;}
.hb{height:48.392156px;}
.h6{height:48.410156px;}
.h8{height:48.752930px;}
.h11{height:51.843771px;}
.h12{height:51.866052px;}
.h10{height:51.882463px;}
.hf{height:51.904745px;}
.h1c{height:61.918500px;}
.hc{height:73.335938px;}
.h5{height:86.671875px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:118.744500px;}
.w4{width:133.219500px;}
.w5{width:133.345500px;}
.w3{width:133.378500px;}
.w6{width:385.362000px;}
.w7{width:518.721000px;}
.w1{width:850.500000px;}
.w0{width:850.692000px;}
.x0{left:0.000000px;}
.x1e{left:5.033700px;}
.x6{left:6.897450px;}
.x26{left:10.765350px;}
.x24{left:23.631150px;}
.x25{left:30.774900px;}
.x2b{left:33.933000px;}
.x2c{left:37.555800px;}
.x29{left:39.322950px;}
.x4{left:42.921300px;}
.x27{left:45.060750px;}
.x20{left:47.842650px;}
.x18{left:49.092900px;}
.x2a{left:51.972900px;}
.x5{left:57.406650px;}
.x28{left:59.449350px;}
.x2d{left:63.100650px;}
.xe{left:64.360950px;}
.x22{left:66.592350px;}
.x1a{left:82.260000px;}
.x9{left:85.039350px;}
.x1c{left:90.883950px;}
.x1d{left:95.914244px;}
.x19{left:104.128200px;}
.xc{left:106.301850px;}
.x2e{left:111.405330px;}
.xf{left:136.779450px;}
.xb{left:138.172800px;}
.xd{left:178.814850px;}
.xa{left:180.214200px;}
.x1b{left:194.512050px;}
.x2{left:197.512050px;}
.x11{left:204.864900px;}
.x1f{left:209.647500px;}
.x10{left:222.024900px;}
.x8{left:237.140400px;}
.x13{left:328.620900px;}
.x21{left:343.035000px;}
.x12{left:345.780900px;}
.x3{left:399.598200px;}
.x7{left:441.851250px;}
.x15{left:446.052900px;}
.x14{left:463.212900px;}
.x23{left:476.263500px;}
.x17{left:557.076900px;}
.x16{left:574.236900px;}
.x1{left:845.128650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v1{vertical-align:15.984533pt;}
.v5{vertical-align:17.928000pt;}
.v4{vertical-align:20.401067pt;}
.v2{vertical-align:26.666667pt;}
.ls4{letter-spacing:-5.413333pt;}
.ls6{letter-spacing:-4.853333pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls8{letter-spacing:-2.160000pt;}
.ls7{letter-spacing:-2.070816pt;}
.ls21{letter-spacing:-0.625627pt;}
.ls1d{letter-spacing:-0.511877pt;}
.ls19{letter-spacing:-0.398126pt;}
.ls22{letter-spacing:-0.341251pt;}
.ls27{letter-spacing:-0.307869pt;}
.ls20{letter-spacing:-0.284376pt;}
.ls28{letter-spacing:-0.256557pt;}
.ls1f{letter-spacing:-0.227501pt;}
.ls1a{letter-spacing:-0.170626pt;}
.ls1e{letter-spacing:-0.143424pt;}
.ls24{letter-spacing:-0.051311pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002133pt;}
.lsa{letter-spacing:0.003285pt;}
.ls1{letter-spacing:0.004096pt;}
.ls2{letter-spacing:0.004629pt;}
.ls25{letter-spacing:0.051311pt;}
.ls18{letter-spacing:0.056875pt;}
.ls23{letter-spacing:0.102623pt;}
.lsb{letter-spacing:0.113750pt;}
.ls17{letter-spacing:0.153934pt;}
.lsd{letter-spacing:0.170626pt;}
.ls1c{letter-spacing:0.179280pt;}
.ls1b{letter-spacing:0.227501pt;}
.ls26{letter-spacing:0.307869pt;}
.ls14{letter-spacing:0.504250pt;}
.ls13{letter-spacing:0.618133pt;}
.ls15{letter-spacing:1.365005pt;}
.ls5{letter-spacing:1.493333pt;}
.ls11{letter-spacing:1.990632pt;}
.ls10{letter-spacing:2.616259pt;}
.ls12{letter-spacing:2.730010pt;}
.lsf{letter-spacing:3.696888pt;}
.lsc{letter-spacing:3.810638pt;}
.lse{letter-spacing:5.061893pt;}
.ls16{letter-spacing:19.754915pt;}
.ws7{word-spacing:-13.344000pt;}
.ws20{word-spacing:-13.135735pt;}
.ws1f{word-spacing:-13.081296pt;}
.ws1b{word-spacing:-12.967546pt;}
.ws16{word-spacing:-12.910670pt;}
.ws15{word-spacing:-12.853795pt;}
.ws1a{word-spacing:-12.626294pt;}
.ws1c{word-spacing:-12.569419pt;}
.ws1e{word-spacing:-12.455669pt;}
.ws1{word-spacing:-11.861333pt;}
.ws22{word-spacing:-11.596391pt;}
.ws1d{word-spacing:-11.545080pt;}
.ws21{word-spacing:-11.288523pt;}
.wsb{word-spacing:-10.378667pt;}
.ws18{word-spacing:-8.282736pt;}
.ws17{word-spacing:-8.103456pt;}
.ws19{word-spacing:-7.960032pt;}
.ws0{word-spacing:-7.779552pt;}
.wsa{word-spacing:-5.708736pt;}
.ws9{word-spacing:-1.776000pt;}
.ws4{word-spacing:-1.493333pt;}
.ws5{word-spacing:-1.237333pt;}
.ws40{word-spacing:-1.080629pt;}
.ws28{word-spacing:-0.682502pt;}
.ws48{word-spacing:-0.615738pt;}
.ws46{word-spacing:-0.564426pt;}
.ws23{word-spacing:-0.511877pt;}
.ws45{word-spacing:-0.461803pt;}
.ws27{word-spacing:-0.227501pt;}
.ws3b{word-spacing:-0.170626pt;}
.ws3e{word-spacing:-0.102623pt;}
.ws3f{word-spacing:-0.051311pt;}
.ws2{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.170626pt;}
.ws35{word-spacing:0.227501pt;}
.ws47{word-spacing:0.256557pt;}
.ws3c{word-spacing:0.284376pt;}
.ws3d{word-spacing:0.341251pt;}
.ws24{word-spacing:0.398126pt;}
.ws33{word-spacing:0.568752pt;}
.ws34{word-spacing:0.682502pt;}
.ws49{word-spacing:0.718361pt;}
.ws42{word-spacing:1.194379pt;}
.ws41{word-spacing:1.308130pt;}
.ws44{word-spacing:1.334098pt;}
.ws2d{word-spacing:1.365005pt;}
.ws2e{word-spacing:1.478755pt;}
.ws2c{word-spacing:1.763131pt;}
.ws2b{word-spacing:1.876882pt;}
.wsc{word-spacing:2.160000pt;}
.ws39{word-spacing:2.161258pt;}
.wsd{word-spacing:2.400000pt;}
.ws37{word-spacing:2.445634pt;}
.ws36{word-spacing:2.559384pt;}
.ws38{word-spacing:2.673134pt;}
.ws31{word-spacing:3.071261pt;}
.ws32{word-spacing:3.185011pt;}
.ws6{word-spacing:3.541333pt;}
.ws25{word-spacing:3.753763pt;}
.ws26{word-spacing:3.924389pt;}
.ws2f{word-spacing:4.379390pt;}
.ws8{word-spacing:4.853333pt;}
.ws30{word-spacing:4.891267pt;}
.ws2a{word-spacing:5.005018pt;}
.ws3{word-spacing:5.413333pt;}
.ws29{word-spacing:5.630645pt;}
.ws43{word-spacing:7.491474pt;}
.ws10{word-spacing:77.696000pt;}
.ws12{word-spacing:101.418667pt;}
.wse{word-spacing:108.544000pt;}
.wsf{word-spacing:282.581333pt;}
.ws11{word-spacing:284.928000pt;}
.ws13{word-spacing:322.858667pt;}
.ws14{word-spacing:360.789333pt;}
._22{margin-left:-2442.837333pt;}
._10{margin-left:-11.032107pt;}
._f{margin-left:-10.051947pt;}
._2{margin-left:-5.562667pt;}
._3{margin-left:-4.666667pt;}
._c{margin-left:-3.747360pt;}
._5{margin-left:-2.777600pt;}
._4{margin-left:-1.403733pt;}
._7{width:1.006933pt;}
._8{width:2.107733pt;}
._1{width:3.113600pt;}
._9{width:4.430933pt;}
._0{width:5.420800pt;}
._6{width:7.067733pt;}
._b{width:8.064533pt;}
._d{width:9.441067pt;}
._13{width:12.088533pt;}
._11{width:13.328000pt;}
._12{width:16.105600pt;}
._e{width:34.085333pt;}
._a{width:62.256000pt;}
._19{width:91.349333pt;}
._21{width:92.334933pt;}
._1a{width:94.890667pt;}
._1b{width:96.000000pt;}
._17{width:97.877333pt;}
._1d{width:102.016000pt;}
._1e{width:107.093333pt;}
._16{width:109.141333pt;}
._1c{width:115.669333pt;}
._18{width:121.472000pt;}
._20{width:134.357333pt;}
._1f{width:158.080000pt;}
._14{width:233.941333pt;}
._15{width:321.621333pt;}
.fs6{font-size:24.874667pt;}
.fs4{font-size:27.984000pt;}
.fs5{font-size:32.000000pt;}
.fsa{font-size:33.383467pt;}
.fs8{font-size:35.856000pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:51.311467pt;}
.fs7{font-size:56.875200pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:3.245067pt;}
.y135{bottom:3.399600pt;}
.y13e{bottom:3.400667pt;}
.y138{bottom:3.554000pt;}
.y140{bottom:3.554267pt;}
.y13a{bottom:3.554667pt;}
.y13c{bottom:3.554933pt;}
.y142{bottom:3.555200pt;}
.y146{bottom:3.850000pt;}
.y137{bottom:19.318267pt;}
.y3{bottom:40.601333pt;}
.y3e{bottom:41.315733pt;}
.y3f{bottom:41.583067pt;}
.y2{bottom:42.286400pt;}
.y11b{bottom:75.353467pt;}
.y101{bottom:75.595867pt;}
.y3c{bottom:76.163867pt;}
.yb0{bottom:77.350133pt;}
.y77{bottom:78.008800pt;}
.y4{bottom:80.286667pt;}
.y11a{bottom:86.017467pt;}
.y100{bottom:86.259867pt;}
.ye6{bottom:86.987333pt;}
.y3b{bottom:88.163867pt;}
.y150{bottom:90.933752pt;}
.yaf{bottom:93.346133pt;}
.y76{bottom:94.004800pt;}
.y119{bottom:96.684133pt;}
.yff{bottom:96.923867pt;}
.ye5{bottom:98.990000pt;}
.y3a{bottom:100.163867pt;}
.y14f{bottom:106.699200pt;}
.yae{bottom:109.342133pt;}
.y75{bottom:110.000800pt;}
.y118{bottom:110.017467pt;}
.ye4{bottom:110.992667pt;}
.y39{bottom:112.163867pt;}
.yfe{bottom:113.135867pt;}
.ye3{bottom:122.995333pt;}
.y117{bottom:123.350800pt;}
.y38{bottom:124.163867pt;}
.yad{bottom:125.338133pt;}
.y74{bottom:125.996800pt;}
.yfd{bottom:132.037200pt;}
.ye2{bottom:134.998000pt;}
.y14e{bottom:135.164236pt;}
.y37{bottom:136.163867pt;}
.y116{bottom:136.684133pt;}
.yac{bottom:141.334133pt;}
.y73{bottom:141.992800pt;}
.ye1{bottom:147.000667pt;}
.y36{bottom:148.163867pt;}
.yfc{bottom:150.938533pt;}
.y14d{bottom:151.083619pt;}
.yab{bottom:157.330133pt;}
.y72{bottom:157.988800pt;}
.ye0{bottom:159.003333pt;}
.y35{bottom:160.163867pt;}
.y107{bottom:164.052533pt;}
.y14c{bottom:166.849067pt;}
.yfb{bottom:169.839867pt;}
.ydf{bottom:171.006000pt;}
.y34{bottom:172.163867pt;}
.yaa{bottom:173.326133pt;}
.y71{bottom:173.984800pt;}
.y106{bottom:177.385867pt;}
.yde{bottom:183.008667pt;}
.y33{bottom:184.163867pt;}
.yfa{bottom:188.741200pt;}
.ya9{bottom:189.322133pt;}
.y70{bottom:189.980800pt;}
.y105{bottom:190.719200pt;}
.ydd{bottom:195.011333pt;}
.y14b{bottom:195.140063pt;}
.y104{bottom:204.052533pt;}
.ya8{bottom:205.318133pt;}
.y6f{bottom:205.976800pt;}
.ydc{bottom:207.014000pt;}
.yf9{bottom:207.642533pt;}
.y32{bottom:212.906667pt;}
.y103{bottom:217.385867pt;}
.ydb{bottom:219.016667pt;}
.ya7{bottom:221.314133pt;}
.y6e{bottom:221.972800pt;}
.yf8{bottom:226.543867pt;}
.y31{bottom:228.918667pt;}
.y14a{bottom:228.980807pt;}
.y102{bottom:230.719200pt;}
.yda{bottom:231.019333pt;}
.ya6{bottom:237.310133pt;}
.y6d{bottom:237.968800pt;}
.yd9{bottom:243.022000pt;}
.y30{bottom:244.914667pt;}
.yf7{bottom:245.445200pt;}
.y149{bottom:247.678529pt;}
.ya5{bottom:253.306133pt;}
.y6c{bottom:253.964800pt;}
.yd8{bottom:255.024667pt;}
.y2f{bottom:260.910667pt;}
.y148{bottom:266.219844pt;}
.yd7{bottom:267.027333pt;}
.yf6{bottom:267.119867pt;}
.ya4{bottom:269.302133pt;}
.y6b{bottom:269.960800pt;}
.y2e{bottom:276.906667pt;}
.yd6{bottom:279.030000pt;}
.yf5{bottom:280.453200pt;}
.ya3{bottom:285.298133pt;}
.y6a{bottom:285.956800pt;}
.yd5{bottom:291.032667pt;}
.y2d{bottom:292.906667pt;}
.y147{bottom:299.918400pt;}
.ya2{bottom:301.294133pt;}
.yf4{bottom:301.900267pt;}
.y69{bottom:301.952800pt;}
.yd4{bottom:303.112667pt;}
.y2c{bottom:308.910667pt;}
.y145{bottom:312.760000pt;}
.ya1{bottom:317.290133pt;}
.y68{bottom:317.948800pt;}
.y2b{bottom:324.906667pt;}
.y144{bottom:333.142475pt;}
.ya0{bottom:333.286133pt;}
.y67{bottom:333.944800pt;}
.yd3{bottom:335.116667pt;}
.y10f{bottom:340.052533pt;}
.y2a{bottom:340.902667pt;}
.y143{bottom:348.022800pt;}
.y9f{bottom:349.282133pt;}
.y66{bottom:349.948800pt;}
.yd2{bottom:351.112667pt;}
.y10e{bottom:353.385867pt;}
.y9e{bottom:365.278133pt;}
.y65{bottom:365.944800pt;}
.y10d{bottom:366.719200pt;}
.y141{bottom:369.041333pt;}
.y29{bottom:372.902667pt;}
.y10c{bottom:380.052533pt;}
.y9d{bottom:381.282133pt;}
.yd1{bottom:383.116667pt;}
.y13f{bottom:384.806667pt;}
.y28{bottom:386.236000pt;}
.y10b{bottom:393.385867pt;}
.y9c{bottom:397.278133pt;}
.y64{bottom:397.948800pt;}
.yd0{bottom:399.112667pt;}
.y27{bottom:399.569333pt;}
.y13d{bottom:403.197333pt;}
.y26{bottom:412.902667pt;}
.y9b{bottom:413.326133pt;}
.y63{bottom:413.944800pt;}
.y13b{bottom:421.434667pt;}
.y25{bottom:426.236000pt;}
.y9a{bottom:429.322133pt;}
.y62{bottom:429.956800pt;}
.ycf{bottom:431.116667pt;}
.y24{bottom:439.569333pt;}
.y139{bottom:439.826667pt;}
.y99{bottom:445.318133pt;}
.y61{bottom:445.952800pt;}
.yce{bottom:447.112667pt;}
.y23{bottom:452.902667pt;}
.y136{bottom:458.837333pt;}
.y98{bottom:461.314133pt;}
.y60{bottom:461.948800pt;}
.y10a{bottom:463.891600pt;}
.y22{bottom:466.236000pt;}
.y97{bottom:477.310133pt;}
.y5f{bottom:477.944800pt;}
.ycd{bottom:479.116667pt;}
.y21{bottom:479.569333pt;}
.y133{bottom:490.984000pt;}
.y20{bottom:492.902667pt;}
.y96{bottom:493.306133pt;}
.y5e{bottom:493.944800pt;}
.ycc{bottom:495.112667pt;}
.y40{bottom:504.080800pt;}
.y1f{bottom:506.236000pt;}
.y95{bottom:509.302133pt;}
.y5d{bottom:509.944800pt;}
.ycb{bottom:511.108667pt;}
.y1e{bottom:519.569333pt;}
.y94{bottom:525.298133pt;}
.y5c{bottom:525.980800pt;}
.y132{bottom:527.464865pt;}
.y1d{bottom:532.902667pt;}
.y11e{bottom:533.590533pt;}
.y93{bottom:541.294133pt;}
.y5b{bottom:541.976800pt;}
.yca{bottom:543.112667pt;}
.y131{bottom:546.191025pt;}
.y1c{bottom:546.236000pt;}
.y11d{bottom:546.923867pt;}
.y92{bottom:557.290133pt;}
.y5a{bottom:557.972800pt;}
.yc9{bottom:559.108667pt;}
.y1b{bottom:559.569333pt;}
.y91{bottom:573.286133pt;}
.y59{bottom:573.968800pt;}
.yc8{bottom:575.104667pt;}
.y1a{bottom:586.236000pt;}
.y115{bottom:587.486800pt;}
.y90{bottom:589.282133pt;}
.y58{bottom:589.964800pt;}
.yc7{bottom:591.100667pt;}
.y130{bottom:595.800418pt;}
.y114{bottom:598.150800pt;}
.y19{bottom:599.569333pt;}
.y8f{bottom:605.278133pt;}
.y57{bottom:605.960800pt;}
.y113{bottom:608.817467pt;}
.y18{bottom:612.902667pt;}
.y12f{bottom:614.350332pt;}
.y8e{bottom:621.350133pt;}
.y56{bottom:621.956800pt;}
.y112{bottom:622.150800pt;}
.yc6{bottom:623.104667pt;}
.y17{bottom:626.236000pt;}
.y12e{bottom:633.048054pt;}
.y111{bottom:635.484133pt;}
.y8d{bottom:637.346133pt;}
.y55{bottom:637.952800pt;}
.yc5{bottom:639.100667pt;}
.y16{bottom:639.569333pt;}
.y110{bottom:648.817467pt;}
.y15{bottom:652.902667pt;}
.y8c{bottom:653.342133pt;}
.y54{bottom:653.948800pt;}
.yc4{bottom:655.096667pt;}
.y14{bottom:666.236000pt;}
.y12d{bottom:667.201611pt;}
.y8b{bottom:669.338133pt;}
.y53{bottom:669.944800pt;}
.yc3{bottom:671.092667pt;}
.y13{bottom:679.569333pt;}
.y8a{bottom:685.334133pt;}
.y12c{bottom:685.899333pt;}
.y52{bottom:685.940800pt;}
.yc2{bottom:687.088667pt;}
.y12{bottom:692.902667pt;}
.y89{bottom:701.330133pt;}
.y51{bottom:701.944800pt;}
.yc1{bottom:703.084667pt;}
.y11{bottom:706.236000pt;}
.y109{bottom:713.358267pt;}
.y88{bottom:717.326133pt;}
.y50{bottom:717.944800pt;}
.yc0{bottom:719.080667pt;}
.y10{bottom:719.569333pt;}
.y12b{bottom:719.902966pt;}
.yf{bottom:732.902667pt;}
.y87{bottom:733.322133pt;}
.y4f{bottom:733.944800pt;}
.ybf{bottom:735.076667pt;}
.y12a{bottom:738.600688pt;}
.ye{bottom:746.236000pt;}
.y86{bottom:749.318133pt;}
.y4e{bottom:749.984800pt;}
.ybe{bottom:751.072667pt;}
.y129{bottom:757.354617pt;}
.yd{bottom:759.569333pt;}
.y85{bottom:765.314133pt;}
.y4d{bottom:765.980800pt;}
.yc{bottom:772.902667pt;}
.y128{bottom:776.052339pt;}
.y84{bottom:781.310133pt;}
.y4c{bottom:781.976800pt;}
.ybd{bottom:783.076667pt;}
.y127{bottom:794.593654pt;}
.yb{bottom:797.704933pt;}
.y4b{bottom:797.972800pt;}
.ybc{bottom:799.072667pt;}
.y11c{bottom:805.035600pt;}
.ya{bottom:809.706267pt;}
.y126{bottom:813.291376pt;}
.y83{bottom:813.314133pt;}
.ybb{bottom:815.068667pt;}
.y9{bottom:823.038267pt;}
.y82{bottom:829.310133pt;}
.y4a{bottom:829.976800pt;}
.yba{bottom:831.064667pt;}
.y81{bottom:845.306133pt;}
.y49{bottom:845.972800pt;}
.yb9{bottom:847.060667pt;}
.y125{bottom:847.449751pt;}
.yf2{bottom:854.721733pt;}
.y8{bottom:858.956933pt;}
.y80{bottom:861.302133pt;}
.y48{bottom:861.968800pt;}
.yb8{bottom:863.056667pt;}
.y124{bottom:865.991067pt;}
.yf1{bottom:866.724400pt;}
.y1{bottom:876.440933pt;}
.y7f{bottom:877.298133pt;}
.y47{bottom:877.964800pt;}
.yf0{bottom:878.727067pt;}
.yb7{bottom:879.052667pt;}
.y7{bottom:885.623600pt;}
.yef{bottom:890.729733pt;}
.y7e{bottom:893.294133pt;}
.y46{bottom:893.960800pt;}
.yb6{bottom:895.048667pt;}
.y11f{bottom:895.633067pt;}
.y123{bottom:900.301733pt;}
.yee{bottom:902.732400pt;}
.y7d{bottom:909.290133pt;}
.y45{bottom:909.956800pt;}
.yb5{bottom:911.044667pt;}
.yed{bottom:914.735067pt;}
.y122{bottom:918.854858pt;}
.y7c{bottom:925.286133pt;}
.y44{bottom:925.952800pt;}
.yec{bottom:926.737733pt;}
.yb4{bottom:927.040667pt;}
.yeb{bottom:938.740400pt;}
.y6{bottom:938.956933pt;}
.y7b{bottom:941.282133pt;}
.y43{bottom:941.948800pt;}
.yb3{bottom:943.036667pt;}
.y121{bottom:947.903867pt;}
.yea{bottom:950.743067pt;}
.y7a{bottom:957.278133pt;}
.y42{bottom:957.944800pt;}
.yb2{bottom:959.036667pt;}
.y108{bottom:962.433867pt;}
.ye9{bottom:962.745733pt;}
.y3d{bottom:963.013067pt;}
.y120{bottom:965.239333pt;}
.y5{bottom:965.623600pt;}
.y79{bottom:973.274133pt;}
.y41{bottom:973.940800pt;}
.ye8{bottom:974.748400pt;}
.yb1{bottom:975.032667pt;}
.ye7{bottom:1011.426000pt;}
.yf3{bottom:1011.447067pt;}
.y78{bottom:1011.472800pt;}
.h13{height:15.596000pt;}
.h1a{height:15.750667pt;}
.h19{height:18.224000pt;}
.h17{height:18.378667pt;}
.h9{height:28.687500pt;}
.hd{height:28.890625pt;}
.ha{height:31.062500pt;}
.h16{height:31.516000pt;}
.h3{height:33.468750pt;}
.h2{height:33.705729pt;}
.h14{height:35.627395pt;}
.h15{height:35.702559pt;}
.h18{height:36.830008pt;}
.h7{height:38.250000pt;}
.h1e{height:38.518507pt;}
.h4{height:38.520833pt;}
.h1d{height:39.490495pt;}
.he{height:40.823508pt;}
.h1b{height:41.107341pt;}
.hb{height:43.015250pt;}
.h6{height:43.031250pt;}
.h8{height:43.335938pt;}
.h11{height:46.083352pt;}
.h12{height:46.103157pt;}
.h10{height:46.117745pt;}
.hf{height:46.137551pt;}
.h1c{height:55.038667pt;}
.hc{height:65.187500pt;}
.h5{height:77.041667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:105.550667pt;}
.w4{width:118.417333pt;}
.w5{width:118.529333pt;}
.w3{width:118.558667pt;}
.w6{width:342.544000pt;}
.w7{width:461.085333pt;}
.w1{width:756.000000pt;}
.w0{width:756.170667pt;}
.x0{left:0.000000pt;}
.x1e{left:4.474400pt;}
.x6{left:6.131067pt;}
.x26{left:9.569200pt;}
.x24{left:21.005467pt;}
.x25{left:27.355467pt;}
.x2b{left:30.162667pt;}
.x2c{left:33.382933pt;}
.x29{left:34.953733pt;}
.x4{left:38.152267pt;}
.x27{left:40.054000pt;}
.x20{left:42.526800pt;}
.x18{left:43.638133pt;}
.x2a{left:46.198133pt;}
.x5{left:51.028133pt;}
.x28{left:52.843867pt;}
.x2d{left:56.089467pt;}
.xe{left:57.209733pt;}
.x22{left:59.193200pt;}
.x1a{left:73.120000pt;}
.x9{left:75.590533pt;}
.x1c{left:80.785733pt;}
.x1d{left:85.257106pt;}
.x19{left:92.558400pt;}
.xc{left:94.490533pt;}
.x2e{left:99.026960pt;}
.xf{left:121.581733pt;}
.xb{left:122.820267pt;}
.xd{left:158.946533pt;}
.xa{left:160.190400pt;}
.x1b{left:172.899600pt;}
.x2{left:175.566267pt;}
.x11{left:182.102133pt;}
.x1f{left:186.353333pt;}
.x10{left:197.355467pt;}
.x8{left:210.791467pt;}
.x13{left:292.107467pt;}
.x21{left:304.920000pt;}
.x12{left:307.360800pt;}
.x3{left:355.198400pt;}
.x7{left:392.756667pt;}
.x15{left:396.491467pt;}
.x14{left:411.744800pt;}
.x23{left:423.345333pt;}
.x17{left:495.179467pt;}
.x16{left:510.432800pt;}
.x1{left:751.225467pt;}
}




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