
    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_1595b8f7eb0d9bfc03edd725.woff')format("woff");}.ff1{font-family:ff1;line-height:0.862305;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_e63dd9fd321c966453bf7192.woff')format("woff");}.ff2{font-family:ff2;line-height:0.857910;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_2a705b22111c57c206e0923a.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_92f15818f1633d9153826f93.woff')format("woff");}.ff4{font-family:ff4;line-height:0.715000;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_dba4d2cf185b237f5cd4559a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_ecc014a0ca114d9930bf112c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.947754;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_31fbc0724dcd3828dc364d44.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6756ee82a08914aea4e1250e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_2dedd0ecea86bf4f6e3f6972.woff')format("woff");}.ff9{font-family:ff9;line-height:0.895508;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_6ac0ee1853078fb48e17546e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.873535;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_1d222b319970b58e0a0dcaa2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_96c43066aac764b2f13f028a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_1059a875a4f1b3774ad59bb4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.861816;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_c3023f62991b0274a2cf17b6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_a4a288480da3ab9283c6a138.woff')format("woff");}.fff{font-family:fff;line-height:0.862305;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_0364fb6e6e26f2cd361391fe.woff')format("woff");}.ff10{font-family:ff10;line-height:0.857910;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_1c23db6cb2c15ad71a8d4864.woff')format("woff");}.ff11{font-family:ff11;line-height:0.861816;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:ff12;src:url('chunks/assets/font_929f12e0e28442b08261612e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.947754;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:ff13;src:url('chunks/assets/font_70f6aed80d437d527aa148c4.woff')format("woff");}.ff13{font-family:ff13;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;}
@font-face{font-family:ff14;src:url('chunks/assets/font_af4b7a03eb43318ff48a75bd.woff')format("woff");}.ff14{font-family:ff14;line-height:0.950195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls9{letter-spacing:-0.660000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003600px;}
.ls0{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.004800px;}
.lsf{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.307824px;}
.ls6{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.726000px;}
.lsd{letter-spacing:3.595200px;}
.lsc{letter-spacing:3.595800px;}
.ls10{letter-spacing:8.075400px;}
.ls11{letter-spacing:10.929000px;}
.lse{letter-spacing:17.818800px;}
.ls4{letter-spacing:42.543894px;}
.ls3{letter-spacing:42.544494px;}
.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;}
}
.ws12{word-spacing:-66.000000px;}
.ws5{word-spacing:-15.642000px;}
.ws13{word-spacing:-15.444000px;}
.ws4{word-spacing:-14.916000px;}
.ws25{word-spacing:-14.256000px;}
.ws23{word-spacing:-14.058000px;}
.ws3{word-spacing:-14.040000px;}
.ws0{word-spacing:-13.560000px;}
.ws26{word-spacing:-12.276000px;}
.ws1{word-spacing:-12.204000px;}
.ws24{word-spacing:-11.220000px;}
.ws20{word-spacing:-11.088000px;}
.ws1c{word-spacing:-11.022000px;}
.ws15{word-spacing:-9.003852px;}
.ws2{word-spacing:-8.696028px;}
.ws19{word-spacing:-7.392000px;}
.ws1e{word-spacing:-3.630000px;}
.ws22{word-spacing:-2.772000px;}
.ws2d{word-spacing:-2.160000px;}
.ws2e{word-spacing:-1.026000px;}
.ws1d{word-spacing:-0.990000px;}
.ws6{word-spacing:-0.792000px;}
.wsa{word-spacing:-0.726000px;}
.ws8{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.528000px;}
.ws9{word-spacing:-0.480000px;}
.ws18{word-spacing:-0.324000px;}
.ws28{word-spacing:-0.270000px;}
.ws16{word-spacing:-0.066000px;}
.wsb{word-spacing:-0.060000px;}
.ws17{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws1b{word-spacing:0.132000px;}
.ws21{word-spacing:0.462000px;}
.ws2a{word-spacing:3.348000px;}
.ws27{word-spacing:3.456000px;}
.ws1f{word-spacing:3.564000px;}
.ws1a{word-spacing:7.194000px;}
.ws2b{word-spacing:8.100000px;}
.ws2c{word-spacing:10.908000px;}
.ws2f{word-spacing:14.364000px;}
.ws29{word-spacing:15.552000px;}
.wsf{word-spacing:16.136400px;}
.ws10{word-spacing:57.269400px;}
.wsd{word-spacing:64.531200px;}
.wse{word-spacing:114.486000px;}
.ws11{word-spacing:392.280600px;}
.wsc{word-spacing:741.942000px;}
._3{margin-left:-13.197600px;}
._4{margin-left:-12.154800px;}
._d{margin-left:-6.602418px;}
._5{margin-left:-5.344800px;}
._12{margin-left:-4.338600px;}
._2{margin-left:-3.147000px;}
._6{margin-left:-2.138400px;}
._0{margin-left:-1.042200px;}
._7{width:1.186818px;}
._b{width:2.624400px;}
._c{width:3.906000px;}
._11{width:5.464800px;}
._10{width:6.903600px;}
._9{width:8.130000px;}
._8{width:9.345000px;}
._13{width:11.253600px;}
._f{width:12.521400px;}
._e{width:13.878600px;}
._a{width:15.366000px;}
._23{width:16.577400px;}
._27{width:17.716800px;}
._2a{width:18.949800px;}
._28{width:20.849400px;}
._14{width:24.420000px;}
._29{width:26.497236px;}
._24{width:29.154000px;}
._2b{width:30.324000px;}
._22{width:32.755800px;}
._26{width:34.339800px;}
._25{width:35.871000px;}
._20{width:84.469782px;}
._15{width:97.875000px;}
._1b{width:127.798800px;}
._21{width:169.296600px;}
._1f{width:184.489782px;}
._18{width:222.756600px;}
._1a{width:231.042600px;}
._17{width:234.336600px;}
._1d{width:248.916600px;}
._1e{width:253.896600px;}
._19{width:259.618800px;}
._1c{width:273.889782px;}
._16{width:405.882600px;}
._1{width:670.851000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(229,0,125);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.482000px;}
.fs4{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:39.773550px;}
.y2{bottom:40.118700px;}
.y7a{bottom:79.045200px;}
.y77{bottom:79.045350px;}
.y55{bottom:79.104300px;}
.y4c{bottom:80.890200px;}
.y21{bottom:80.926200px;}
.yd5{bottom:81.744750px;}
.ya1{bottom:82.172250px;}
.y6f{bottom:82.783500px;}
.y79{bottom:96.295200px;}
.y76{bottom:96.295350px;}
.y20{bottom:97.426200px;}
.yd4{bottom:97.944600px;}
.y4b{bottom:99.640200px;}
.y6e{bottom:100.033500px;}
.ya0{bottom:100.922250px;}
.y78{bottom:113.545200px;}
.y75{bottom:113.545350px;}
.y1f{bottom:113.926200px;}
.yd3{bottom:114.144600px;}
.y6d{bottom:117.283500px;}
.y4a{bottom:118.390200px;}
.yd2{bottom:130.344750px;}
.y49{bottom:137.140200px;}
.y9f{bottom:138.422250px;}
.y1e{bottom:146.926200px;}
.yd1{bottom:150.796650px;}
.y48{bottom:155.890200px;}
.y9e{bottom:157.172250px;}
.y1d{bottom:163.426200px;}
.yd0{bottom:166.996650px;}
.y47{bottom:174.640200px;}
.y1c{bottom:179.926200px;}
.ycf{bottom:183.196650px;}
.y46{bottom:193.390200px;}
.y9d{bottom:194.672250px;}
.y1b{bottom:196.426200px;}
.yce{bottom:199.396650px;}
.y45{bottom:212.140200px;}
.y1a{bottom:212.926200px;}
.ycd{bottom:219.848550px;}
.y19{bottom:229.426200px;}
.y44{bottom:230.890200px;}
.y9c{bottom:232.172250px;}
.ycc{bottom:236.048550px;}
.y18{bottom:245.926200px;}
.y43{bottom:249.640200px;}
.y9b{bottom:250.922250px;}
.ycb{bottom:252.248700px;}
.y17{bottom:262.426200px;}
.y42{bottom:268.390200px;}
.yca{bottom:268.448700px;}
.y9a{bottom:269.672250px;}
.y16{bottom:278.926200px;}
.y41{bottom:287.140200px;}
.y99{bottom:288.422250px;}
.yc9{bottom:288.900600px;}
.y15{bottom:295.426200px;}
.yc8{bottom:305.100600px;}
.y40{bottom:305.890200px;}
.y98{bottom:307.172250px;}
.y14{bottom:311.926200px;}
.yc7{bottom:321.300600px;}
.y3f{bottom:324.640200px;}
.y97{bottom:325.922250px;}
.yc6{bottom:337.500600px;}
.y3e{bottom:343.390200px;}
.y96{bottom:344.672250px;}
.y13{bottom:344.926200px;}
.yc5{bottom:353.700600px;}
.y12{bottom:361.426200px;}
.y3d{bottom:362.140200px;}
.y95{bottom:363.422250px;}
.yc4{bottom:369.900600px;}
.y11{bottom:377.926200px;}
.y3c{bottom:380.890200px;}
.y94{bottom:382.172250px;}
.yc3{bottom:386.100600px;}
.y3b{bottom:399.640200px;}
.y93{bottom:400.922250px;}
.yc2{bottom:402.300600px;}
.y10{bottom:410.926200px;}
.y3a{bottom:418.390200px;}
.y92{bottom:419.672250px;}
.yc1{bottom:422.752650px;}
.yf{bottom:427.426200px;}
.y39{bottom:437.140200px;}
.y91{bottom:438.422250px;}
.yc0{bottom:438.952500px;}
.ye{bottom:443.926200px;}
.y100{bottom:449.002650px;}
.ybf{bottom:455.152500px;}
.y38{bottom:455.890200px;}
.y90{bottom:457.172250px;}
.yd{bottom:460.426200px;}
.yff{bottom:465.202500px;}
.ybe{bottom:471.352500px;}
.y37{bottom:474.640200px;}
.y8f{bottom:475.922250px;}
.yc{bottom:476.926200px;}
.yfe{bottom:481.402500px;}
.ybd{bottom:487.552500px;}
.y36{bottom:493.390200px;}
.yb{bottom:493.426200px;}
.y8e{bottom:494.672250px;}
.yfd{bottom:497.602500px;}
.ya{bottom:509.926200px;}
.y35{bottom:512.140200px;}
.yfc{bottom:518.054550px;}
.ybc{bottom:522.502650px;}
.y9{bottom:526.426200px;}
.y8d{bottom:532.172250px;}
.yfb{bottom:534.254550px;}
.y8{bottom:542.926200px;}
.y34{bottom:549.640200px;}
.yfa{bottom:550.454550px;}
.y8c{bottom:569.672250px;}
.yf9{bottom:570.906450px;}
.y7{bottom:572.182050px;}
.ybb{bottom:577.702500px;}
.yf8{bottom:587.106450px;}
.y8b{bottom:588.422250px;}
.yba{bottom:593.902500px;}
.yf7{bottom:603.306450px;}
.y8a{bottom:607.172250px;}
.yb9{bottom:610.102500px;}
.yf6{bottom:619.506450px;}
.y33{bottom:619.892100px;}
.y89{bottom:625.922250px;}
.yb8{bottom:626.302500px;}
.yf5{bottom:635.706450px;}
.y32{bottom:637.142100px;}
.yb7{bottom:642.502650px;}
.y88{bottom:644.672250px;}
.yf4{bottom:651.906450px;}
.y31{bottom:658.644150px;}
.y87{bottom:663.422250px;}
.yf3{bottom:672.358500px;}
.y30{bottom:675.894150px;}
.yb6{bottom:677.452500px;}
.y86{bottom:682.172250px;}
.yf2{bottom:688.558500px;}
.y2f{bottom:693.144150px;}
.y85{bottom:700.922250px;}
.yf1{bottom:704.758500px;}
.y2e{bottom:710.394150px;}
.y6c{bottom:713.740050px;}
.y84{bottom:719.672250px;}
.yf0{bottom:725.210400px;}
.y2d{bottom:727.644150px;}
.yb5{bottom:733.402500px;}
.y6b{bottom:733.494000px;}
.y83{bottom:738.422250px;}
.yef{bottom:741.410400px;}
.y2c{bottom:744.894150px;}
.yb4{bottom:752.152500px;}
.y6a{bottom:753.247950px;}
.y82{bottom:757.172250px;}
.yee{bottom:757.610400px;}
.y2b{bottom:762.144150px;}
.yb3{bottom:770.902650px;}
.y69{bottom:773.001900px;}
.yed{bottom:773.810550px;}
.y81{bottom:775.922250px;}
.yb2{bottom:789.652650px;}
.yec{bottom:790.010400px;}
.y68{bottom:790.251900px;}
.y80{bottom:794.672250px;}
.y67{bottom:810.005850px;}
.yeb{bottom:810.462450px;}
.y7f{bottom:813.422250px;}
.yb1{bottom:816.906450px;}
.yea{bottom:826.662450px;}
.y66{bottom:829.759800px;}
.y2a{bottom:830.896050px;}
.y7e{bottom:832.172250px;}
.yb0{bottom:835.656450px;}
.ye9{bottom:842.862450px;}
.y65{bottom:849.513750px;}
.y7d{bottom:850.922250px;}
.yaf{bottom:854.406450px;}
.y29{bottom:855.843600px;}
.ye8{bottom:859.062450px;}
.y64{bottom:869.267700px;}
.y28{bottom:871.800000px;}
.yae{bottom:873.156450px;}
.ye7{bottom:879.514350px;}
.y27{bottom:888.000000px;}
.y7c{bottom:888.422250px;}
.y63{bottom:889.021650px;}
.yad{bottom:891.906450px;}
.ye6{bottom:895.714350px;}
.y26{bottom:908.695500px;}
.y62{bottom:908.775450px;}
.yac{bottom:910.656450px;}
.ye5{bottom:911.914350px;}
.y7b{bottom:925.922250px;}
.ye4{bottom:928.114350px;}
.y61{bottom:928.529550px;}
.yab{bottom:937.910400px;}
.ye3{bottom:944.314350px;}
.y74{bottom:944.672250px;}
.y60{bottom:948.283350px;}
.yaa{bottom:956.660400px;}
.y25{bottom:957.900000px;}
.y73{bottom:963.422250px;}
.ye2{bottom:964.766400px;}
.y5f{bottom:969.785400px;}
.ye1{bottom:980.966250px;}
.y72{bottom:982.172250px;}
.ya9{bottom:983.914350px;}
.y5e{bottom:989.539350px;}
.ye0{bottom:997.166400px;}
.y71{bottom:1000.922250px;}
.ya8{bottom:1002.664350px;}
.ydf{bottom:1013.366400px;}
.y24{bottom:1015.200000px;}
.y5d{bottom:1017.797250px;}
.y70{bottom:1019.672250px;}
.ya7{bottom:1021.414350px;}
.yde{bottom:1033.818300px;}
.y5c{bottom:1035.047250px;}
.y53{bottom:1038.422250px;}
.ya6{bottom:1040.164350px;}
.y23{bottom:1047.600000px;}
.ydd{bottom:1050.018300px;}
.y52{bottom:1057.172250px;}
.ya5{bottom:1058.914350px;}
.ydc{bottom:1066.218300px;}
.y51{bottom:1075.922250px;}
.ya4{bottom:1077.664350px;}
.y22{bottom:1080.000000px;}
.y5b{bottom:1084.547250px;}
.ydb{bottom:1086.670200px;}
.y50{bottom:1094.672250px;}
.y5a{bottom:1101.797250px;}
.yda{bottom:1102.870200px;}
.ya3{bottom:1104.918300px;}
.y4f{bottom:1113.422250px;}
.y59{bottom:1119.047250px;}
.yd9{bottom:1119.070350px;}
.ya2{bottom:1123.668300px;}
.y4e{bottom:1132.172250px;}
.y58{bottom:1136.297250px;}
.yd8{bottom:1139.522250px;}
.y54{bottom:1150.922250px;}
.y57{bottom:1153.547250px;}
.yd7{bottom:1155.722250px;}
.y4d{bottom:1169.672250px;}
.y56{bottom:1170.797250px;}
.yd6{bottom:1171.922250px;}
.y6{bottom:1174.659450px;}
.y5{bottom:1192.659450px;}
.y4{bottom:1210.659450px;}
.y1{bottom:1211.784450px;}
.hc{height:26.552180px;}
.h2{height:36.966797px;}
.h14{height:37.415039px;}
.h7{height:37.546875px;}
.h8{height:38.759766px;}
.h11{height:40.781250px;}
.h5{height:41.572266px;}
.h10{height:41.718750px;}
.h3{height:42.000000px;}
.h6{height:43.066406px;}
.h4{height:43.974609px;}
.h9{height:44.534180px;}
.h13{height:45.117188px;}
.h12{height:45.729492px;}
.he{height:45.890625px;}
.hf{height:47.373047px;}
.hd{height:49.482422px;}
.hb{height:54.430664px;}
.ha{height:75.093750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.031450px;}
.xb{left:70.699650px;}
.x18{left:72.479400px;}
.x14{left:77.324400px;}
.xa{left:80.864250px;}
.x2e{left:85.039350px;}
.x9{left:86.131050px;}
.x11{left:98.714850px;}
.x13{left:99.835350px;}
.x19{left:102.656700px;}
.xd{left:113.052000px;}
.xc{left:115.141500px;}
.xe{left:118.094700px;}
.x5{left:125.550000px;}
.x15{left:128.410800px;}
.x6{left:134.692800px;}
.x12{left:140.131050px;}
.x1a{left:149.385900px;}
.x8{left:152.905950px;}
.x7{left:155.951400px;}
.x16{left:165.021750px;}
.x1b{left:166.254300px;}
.x3{left:169.128300px;}
.x4{left:179.945550px;}
.xf{left:211.691550px;}
.x10{left:217.149600px;}
.x17{left:225.277350px;}
.x25{left:280.629900px;}
.x1e{left:294.640800px;}
.x26{left:297.637800px;}
.x28{left:304.578300px;}
.x20{left:310.916550px;}
.x2b{left:316.828050px;}
.x1c{left:322.543950px;}
.x23{left:338.501850px;}
.x21{left:349.079250px;}
.x29{left:350.161350px;}
.x1f{left:378.947550px;}
.x24{left:394.236300px;}
.x1d{left:404.512950px;}
.x27{left:457.086600px;}
.x22{left:463.835850px;}
.x2a{left:469.216500px;}
.x2d{left:474.094500px;}
.x2c{left:681.165300px;}
.x2{left:810.482100px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003200pt;}
.ls0{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004267pt;}
.lsf{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.273621pt;}
.ls6{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.645333pt;}
.lsd{letter-spacing:3.195733pt;}
.lsc{letter-spacing:3.196267pt;}
.ls10{letter-spacing:7.178133pt;}
.ls11{letter-spacing:9.714667pt;}
.lse{letter-spacing:15.838933pt;}
.ls4{letter-spacing:37.816795pt;}
.ls3{letter-spacing:37.817328pt;}
.ws12{word-spacing:-58.666667pt;}
.ws5{word-spacing:-13.904000pt;}
.ws13{word-spacing:-13.728000pt;}
.ws4{word-spacing:-13.258667pt;}
.ws25{word-spacing:-12.672000pt;}
.ws23{word-spacing:-12.496000pt;}
.ws3{word-spacing:-12.480000pt;}
.ws0{word-spacing:-12.053333pt;}
.ws26{word-spacing:-10.912000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws24{word-spacing:-9.973333pt;}
.ws20{word-spacing:-9.856000pt;}
.ws1c{word-spacing:-9.797333pt;}
.ws15{word-spacing:-8.003424pt;}
.ws2{word-spacing:-7.729803pt;}
.ws19{word-spacing:-6.570667pt;}
.ws1e{word-spacing:-3.226667pt;}
.ws22{word-spacing:-2.464000pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws2e{word-spacing:-0.912000pt;}
.ws1d{word-spacing:-0.880000pt;}
.ws6{word-spacing:-0.704000pt;}
.wsa{word-spacing:-0.645333pt;}
.ws8{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.469333pt;}
.ws9{word-spacing:-0.426667pt;}
.ws18{word-spacing:-0.288000pt;}
.ws28{word-spacing:-0.240000pt;}
.ws16{word-spacing:-0.058667pt;}
.wsb{word-spacing:-0.053333pt;}
.ws17{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.117333pt;}
.ws21{word-spacing:0.410667pt;}
.ws2a{word-spacing:2.976000pt;}
.ws27{word-spacing:3.072000pt;}
.ws1f{word-spacing:3.168000pt;}
.ws1a{word-spacing:6.394667pt;}
.ws2b{word-spacing:7.200000pt;}
.ws2c{word-spacing:9.696000pt;}
.ws2f{word-spacing:12.768000pt;}
.ws29{word-spacing:13.824000pt;}
.wsf{word-spacing:14.343467pt;}
.ws10{word-spacing:50.906133pt;}
.wsd{word-spacing:57.361067pt;}
.wse{word-spacing:101.765333pt;}
.ws11{word-spacing:348.693867pt;}
.wsc{word-spacing:659.504000pt;}
._3{margin-left:-11.731200pt;}
._4{margin-left:-10.804267pt;}
._d{margin-left:-5.868816pt;}
._5{margin-left:-4.750933pt;}
._12{margin-left:-3.856533pt;}
._2{margin-left:-2.797333pt;}
._6{margin-left:-1.900800pt;}
._0{margin-left:-0.926400pt;}
._7{width:1.054949pt;}
._b{width:2.332800pt;}
._c{width:3.472000pt;}
._11{width:4.857600pt;}
._10{width:6.136533pt;}
._9{width:7.226667pt;}
._8{width:8.306667pt;}
._13{width:10.003200pt;}
._f{width:11.130133pt;}
._e{width:12.336533pt;}
._a{width:13.658667pt;}
._23{width:14.735467pt;}
._27{width:15.748267pt;}
._2a{width:16.844267pt;}
._28{width:18.532800pt;}
._14{width:21.706667pt;}
._29{width:23.553099pt;}
._24{width:25.914667pt;}
._2b{width:26.954667pt;}
._22{width:29.116267pt;}
._26{width:30.524267pt;}
._25{width:31.885333pt;}
._20{width:75.084251pt;}
._15{width:87.000000pt;}
._1b{width:113.598933pt;}
._21{width:150.485867pt;}
._1f{width:163.990917pt;}
._18{width:198.005867pt;}
._1a{width:205.371200pt;}
._17{width:208.299200pt;}
._1d{width:221.259200pt;}
._1e{width:225.685867pt;}
._19{width:230.772267pt;}
._1c{width:243.457584pt;}
._16{width:360.784533pt;}
._1{width:596.312000pt;}
.fs5{font-size:27.984000pt;}
.fs4{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:35.354267pt;}
.y2{bottom:35.661067pt;}
.y7a{bottom:70.262400pt;}
.y77{bottom:70.262533pt;}
.y55{bottom:70.314933pt;}
.y4c{bottom:71.902400pt;}
.y21{bottom:71.934400pt;}
.yd5{bottom:72.662000pt;}
.ya1{bottom:73.042000pt;}
.y6f{bottom:73.585333pt;}
.y79{bottom:85.595733pt;}
.y76{bottom:85.595867pt;}
.y20{bottom:86.601067pt;}
.yd4{bottom:87.061867pt;}
.y4b{bottom:88.569067pt;}
.y6e{bottom:88.918667pt;}
.ya0{bottom:89.708667pt;}
.y78{bottom:100.929067pt;}
.y75{bottom:100.929200pt;}
.y1f{bottom:101.267733pt;}
.yd3{bottom:101.461867pt;}
.y6d{bottom:104.252000pt;}
.y4a{bottom:105.235733pt;}
.yd2{bottom:115.862000pt;}
.y49{bottom:121.902400pt;}
.y9f{bottom:123.042000pt;}
.y1e{bottom:130.601067pt;}
.yd1{bottom:134.041467pt;}
.y48{bottom:138.569067pt;}
.y9e{bottom:139.708667pt;}
.y1d{bottom:145.267733pt;}
.yd0{bottom:148.441467pt;}
.y47{bottom:155.235733pt;}
.y1c{bottom:159.934400pt;}
.ycf{bottom:162.841467pt;}
.y46{bottom:171.902400pt;}
.y9d{bottom:173.042000pt;}
.y1b{bottom:174.601067pt;}
.yce{bottom:177.241467pt;}
.y45{bottom:188.569067pt;}
.y1a{bottom:189.267733pt;}
.ycd{bottom:195.420933pt;}
.y19{bottom:203.934400pt;}
.y44{bottom:205.235733pt;}
.y9c{bottom:206.375333pt;}
.ycc{bottom:209.820933pt;}
.y18{bottom:218.601067pt;}
.y43{bottom:221.902400pt;}
.y9b{bottom:223.042000pt;}
.ycb{bottom:224.221067pt;}
.y17{bottom:233.267733pt;}
.y42{bottom:238.569067pt;}
.yca{bottom:238.621067pt;}
.y9a{bottom:239.708667pt;}
.y16{bottom:247.934400pt;}
.y41{bottom:255.235733pt;}
.y99{bottom:256.375333pt;}
.yc9{bottom:256.800533pt;}
.y15{bottom:262.601067pt;}
.yc8{bottom:271.200533pt;}
.y40{bottom:271.902400pt;}
.y98{bottom:273.042000pt;}
.y14{bottom:277.267733pt;}
.yc7{bottom:285.600533pt;}
.y3f{bottom:288.569067pt;}
.y97{bottom:289.708667pt;}
.yc6{bottom:300.000533pt;}
.y3e{bottom:305.235733pt;}
.y96{bottom:306.375333pt;}
.y13{bottom:306.601067pt;}
.yc5{bottom:314.400533pt;}
.y12{bottom:321.267733pt;}
.y3d{bottom:321.902400pt;}
.y95{bottom:323.042000pt;}
.yc4{bottom:328.800533pt;}
.y11{bottom:335.934400pt;}
.y3c{bottom:338.569067pt;}
.y94{bottom:339.708667pt;}
.yc3{bottom:343.200533pt;}
.y3b{bottom:355.235733pt;}
.y93{bottom:356.375333pt;}
.yc2{bottom:357.600533pt;}
.y10{bottom:365.267733pt;}
.y3a{bottom:371.902400pt;}
.y92{bottom:373.042000pt;}
.yc1{bottom:375.780133pt;}
.yf{bottom:379.934400pt;}
.y39{bottom:388.569067pt;}
.y91{bottom:389.708667pt;}
.yc0{bottom:390.180000pt;}
.ye{bottom:394.601067pt;}
.y100{bottom:399.113467pt;}
.ybf{bottom:404.580000pt;}
.y38{bottom:405.235733pt;}
.y90{bottom:406.375333pt;}
.yd{bottom:409.267733pt;}
.yff{bottom:413.513333pt;}
.ybe{bottom:418.980000pt;}
.y37{bottom:421.902400pt;}
.y8f{bottom:423.042000pt;}
.yc{bottom:423.934400pt;}
.yfe{bottom:427.913333pt;}
.ybd{bottom:433.380000pt;}
.y36{bottom:438.569067pt;}
.yb{bottom:438.601067pt;}
.y8e{bottom:439.708667pt;}
.yfd{bottom:442.313333pt;}
.ya{bottom:453.267733pt;}
.y35{bottom:455.235733pt;}
.yfc{bottom:460.492933pt;}
.ybc{bottom:464.446800pt;}
.y9{bottom:467.934400pt;}
.y8d{bottom:473.042000pt;}
.yfb{bottom:474.892933pt;}
.y8{bottom:482.601067pt;}
.y34{bottom:488.569067pt;}
.yfa{bottom:489.292933pt;}
.y8c{bottom:506.375333pt;}
.yf9{bottom:507.472400pt;}
.y7{bottom:508.606267pt;}
.ybb{bottom:513.513333pt;}
.yf8{bottom:521.872400pt;}
.y8b{bottom:523.042000pt;}
.yba{bottom:527.913333pt;}
.yf7{bottom:536.272400pt;}
.y8a{bottom:539.708667pt;}
.yb9{bottom:542.313333pt;}
.yf6{bottom:550.672400pt;}
.y33{bottom:551.015200pt;}
.y89{bottom:556.375333pt;}
.yb8{bottom:556.713333pt;}
.yf5{bottom:565.072400pt;}
.y32{bottom:566.348533pt;}
.yb7{bottom:571.113467pt;}
.y88{bottom:573.042000pt;}
.yf4{bottom:579.472400pt;}
.y31{bottom:585.461467pt;}
.y87{bottom:589.708667pt;}
.yf3{bottom:597.652000pt;}
.y30{bottom:600.794800pt;}
.yb6{bottom:602.180000pt;}
.y86{bottom:606.375333pt;}
.yf2{bottom:612.052000pt;}
.y2f{bottom:616.128133pt;}
.y85{bottom:623.042000pt;}
.yf1{bottom:626.452000pt;}
.y2e{bottom:631.461467pt;}
.y6c{bottom:634.435600pt;}
.y84{bottom:639.708667pt;}
.yf0{bottom:644.631467pt;}
.y2d{bottom:646.794800pt;}
.yb5{bottom:651.913333pt;}
.y6b{bottom:651.994667pt;}
.y83{bottom:656.375333pt;}
.yef{bottom:659.031467pt;}
.y2c{bottom:662.128133pt;}
.yb4{bottom:668.580000pt;}
.y6a{bottom:669.553733pt;}
.y82{bottom:673.042000pt;}
.yee{bottom:673.431467pt;}
.y2b{bottom:677.461467pt;}
.yb3{bottom:685.246800pt;}
.y69{bottom:687.112800pt;}
.yed{bottom:687.831600pt;}
.y81{bottom:689.708667pt;}
.yb2{bottom:701.913467pt;}
.yec{bottom:702.231467pt;}
.y68{bottom:702.446133pt;}
.y80{bottom:706.375333pt;}
.y67{bottom:720.005200pt;}
.yeb{bottom:720.411067pt;}
.y7f{bottom:723.042000pt;}
.yb1{bottom:726.139067pt;}
.yea{bottom:734.811067pt;}
.y66{bottom:737.564267pt;}
.y2a{bottom:738.574267pt;}
.y7e{bottom:739.708667pt;}
.yb0{bottom:742.805733pt;}
.ye9{bottom:749.211067pt;}
.y65{bottom:755.123333pt;}
.y7d{bottom:756.375333pt;}
.yaf{bottom:759.472400pt;}
.y29{bottom:760.749867pt;}
.ye8{bottom:763.611067pt;}
.y64{bottom:772.682400pt;}
.y28{bottom:774.933333pt;}
.yae{bottom:776.139067pt;}
.ye7{bottom:781.790533pt;}
.y27{bottom:789.333333pt;}
.y7c{bottom:789.708667pt;}
.y63{bottom:790.241467pt;}
.yad{bottom:792.805733pt;}
.ye6{bottom:796.190533pt;}
.y26{bottom:807.729333pt;}
.y62{bottom:807.800400pt;}
.yac{bottom:809.472400pt;}
.ye5{bottom:810.590533pt;}
.y7b{bottom:823.042000pt;}
.ye4{bottom:824.990533pt;}
.y61{bottom:825.359600pt;}
.yab{bottom:833.698133pt;}
.ye3{bottom:839.390533pt;}
.y74{bottom:839.708667pt;}
.y60{bottom:842.918533pt;}
.yaa{bottom:850.364800pt;}
.y25{bottom:851.466667pt;}
.y73{bottom:856.375333pt;}
.ye2{bottom:857.570133pt;}
.y5f{bottom:862.031467pt;}
.ye1{bottom:871.970000pt;}
.y72{bottom:873.042000pt;}
.ya9{bottom:874.590533pt;}
.y5e{bottom:879.590533pt;}
.ye0{bottom:886.370133pt;}
.y71{bottom:889.708667pt;}
.ya8{bottom:891.257200pt;}
.ydf{bottom:900.770133pt;}
.y24{bottom:902.400000pt;}
.y5d{bottom:904.708667pt;}
.y70{bottom:906.375333pt;}
.ya7{bottom:907.923867pt;}
.yde{bottom:918.949600pt;}
.y5c{bottom:920.042000pt;}
.y53{bottom:923.042000pt;}
.ya6{bottom:924.590533pt;}
.y23{bottom:931.200000pt;}
.ydd{bottom:933.349600pt;}
.y52{bottom:939.708667pt;}
.ya5{bottom:941.257200pt;}
.ydc{bottom:947.749600pt;}
.y51{bottom:956.375333pt;}
.ya4{bottom:957.923867pt;}
.y22{bottom:960.000000pt;}
.y5b{bottom:964.042000pt;}
.ydb{bottom:965.929067pt;}
.y50{bottom:973.042000pt;}
.y5a{bottom:979.375333pt;}
.yda{bottom:980.329067pt;}
.ya3{bottom:982.149600pt;}
.y4f{bottom:989.708667pt;}
.y59{bottom:994.708667pt;}
.yd9{bottom:994.729200pt;}
.ya2{bottom:998.816267pt;}
.y4e{bottom:1006.375333pt;}
.y58{bottom:1010.042000pt;}
.yd8{bottom:1012.908667pt;}
.y54{bottom:1023.042000pt;}
.y57{bottom:1025.375333pt;}
.yd7{bottom:1027.308667pt;}
.y4d{bottom:1039.708667pt;}
.y56{bottom:1040.708667pt;}
.yd6{bottom:1041.708667pt;}
.y6{bottom:1044.141733pt;}
.y5{bottom:1060.141733pt;}
.y4{bottom:1076.141733pt;}
.y1{bottom:1077.141733pt;}
.hc{height:23.601937pt;}
.h2{height:32.859375pt;}
.h14{height:33.257812pt;}
.h7{height:33.375000pt;}
.h8{height:34.453125pt;}
.h11{height:36.250000pt;}
.h5{height:36.953125pt;}
.h10{height:37.083333pt;}
.h3{height:37.333333pt;}
.h6{height:38.281250pt;}
.h4{height:39.088542pt;}
.h9{height:39.585938pt;}
.h13{height:40.104167pt;}
.h12{height:40.648438pt;}
.he{height:40.791667pt;}
.hf{height:42.109375pt;}
.hd{height:43.984375pt;}
.hb{height:48.382812pt;}
.ha{height:66.750000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.472400pt;}
.xb{left:62.844133pt;}
.x18{left:64.426133pt;}
.x14{left:68.732800pt;}
.xa{left:71.879333pt;}
.x2e{left:75.590533pt;}
.x9{left:76.560933pt;}
.x11{left:87.746533pt;}
.x13{left:88.742533pt;}
.x19{left:91.250400pt;}
.xd{left:100.490667pt;}
.xc{left:102.348000pt;}
.xe{left:104.973067pt;}
.x5{left:111.600000pt;}
.x15{left:114.142933pt;}
.x6{left:119.726933pt;}
.x12{left:124.560933pt;}
.x1a{left:132.787467pt;}
.x8{left:135.916400pt;}
.x7{left:138.623467pt;}
.x16{left:146.686000pt;}
.x1b{left:147.781600pt;}
.x3{left:150.336267pt;}
.x4{left:159.951600pt;}
.xf{left:188.170267pt;}
.x10{left:193.021867pt;}
.x17{left:200.246533pt;}
.x25{left:249.448800pt;}
.x1e{left:261.902933pt;}
.x26{left:264.566933pt;}
.x28{left:270.736267pt;}
.x20{left:276.370267pt;}
.x2b{left:281.624933pt;}
.x1c{left:286.705733pt;}
.x23{left:300.890533pt;}
.x21{left:310.292667pt;}
.x29{left:311.254533pt;}
.x1f{left:336.842267pt;}
.x24{left:350.432267pt;}
.x1d{left:359.567067pt;}
.x27{left:406.299200pt;}
.x22{left:412.298533pt;}
.x2a{left:417.081333pt;}
.x2d{left:421.417333pt;}
.x2c{left:605.480267pt;}
.x2{left:720.428533pt;}
}




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