
    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_dab109b290c45085d384a908.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_013777a8dd95086531bde096.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_c50f8a74d58b00c8c5b2eb64.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_ed3e534f1a43541d6e038684.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_75e740571b66ac518dd780de.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0238f78ceb206b737c7853ff.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1d809ea17bdcb1e9249e48e7.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_b85281151e7076f4ada116b6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_e8fe9d52118956beb7878388.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_9d931bcd510b5c0f572847e8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689941;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_58f5a0a308e82d0386878044.woff')format("woff");}.ffb{font-family:ffb;line-height:0.689941;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_d36d8fc64e5c1491d09c3a9f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_a01d2f6db25ee1033442b72b.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ebeda0bf8ac3815260c0d361.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2b3a62ba712e2a975b4c0048.woff')format("woff");}.fff{font-family:fff;line-height:0.891602;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_f78a149eea6a145d10c8ff2e.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_21045bf4cbedfb1f542589de.woff')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;}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls30{letter-spacing:-2.038176px;}
.ls2b{letter-spacing:-1.838592px;}
.ls2e{letter-spacing:-1.759968px;}
.ls2c{letter-spacing:-1.741824px;}
.ls2d{letter-spacing:-1.663200px;}
.ls2f{letter-spacing:-1.064448px;}
.ls28{letter-spacing:-0.937440px;}
.ls2a{letter-spacing:-0.919296px;}
.ls29{letter-spacing:-0.901152px;}
.ls32{letter-spacing:-0.870912px;}
.ls27{letter-spacing:-0.858816px;}
.ls31{letter-spacing:-0.840672px;}
.ls18{letter-spacing:-0.459648px;}
.ls1c{letter-spacing:-0.417312px;}
.ls1e{letter-spacing:-0.381024px;}
.ls25{letter-spacing:-0.361152px;}
.ls19{letter-spacing:-0.338688px;}
.lse{letter-spacing:-0.320544px;}
.ls1a{letter-spacing:-0.302400px;}
.ls24{letter-spacing:-0.273600px;}
.ls26{letter-spacing:-0.272160px;}
.ls16{letter-spacing:-0.260064px;}
.ls17{letter-spacing:-0.241920px;}
.lsf{letter-spacing:-0.223776px;}
.ls13{letter-spacing:-0.198720px;}
.ls11{letter-spacing:-0.175392px;}
.ls1d{letter-spacing:-0.157248px;}
.lsd{letter-spacing:-0.152352px;}
.lsc{letter-spacing:-0.145728px;}
.ls1b{letter-spacing:-0.145152px;}
.ls12{letter-spacing:-0.132480px;}
.ls10{letter-spacing:-0.120960px;}
.lsb{letter-spacing:-0.119232px;}
.lsa{letter-spacing:-0.079488px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.059904px;}
.ls4{letter-spacing:0.060048px;}
.ls20{letter-spacing:0.123552px;}
.ls15{letter-spacing:0.158688px;}
.ls21{letter-spacing:0.161568px;}
.ls8{letter-spacing:0.194832px;}
.ls1{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.240048px;}
.ls2{letter-spacing:0.240480px;}
.ls22{letter-spacing:0.242352px;}
.ls1f{letter-spacing:0.285120px;}
.ls14{letter-spacing:0.359136px;}
.ls5{letter-spacing:1.278864px;}
.ls6{letter-spacing:1.445904px;}
.ls36{letter-spacing:2.476800px;}
.ls33{letter-spacing:11.469600px;}
.ls35{letter-spacing:14.117760px;}
.ls38{letter-spacing:16.185600px;}
.ls7{letter-spacing:17.690976px;}
.ls37{letter-spacing:46.186560px;}
.ls34{letter-spacing:62.305920px;}
.ls23{letter-spacing:63.587520px;}
.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:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws5{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.974848px;}
.ws13{word-spacing:-14.944608px;}
.wsf{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws11{word-spacing:-14.859936px;}
.ws14{word-spacing:-14.847840px;}
.ws6{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws12{word-spacing:-14.817600px;}
.ws4{word-spacing:-14.799456px;}
.ws9{word-spacing:-14.781312px;}
.wsa{word-spacing:-14.738976px;}
.ws15{word-spacing:-14.702688px;}
.ws1c{word-spacing:-14.660352px;}
.ws21{word-spacing:-14.279328px;}
.ws16{word-spacing:-14.261184px;}
.ws22{word-spacing:-14.249088px;}
.ws18{word-spacing:-14.218848px;}
.ws19{word-spacing:-14.200704px;}
.ws17{word-spacing:-14.182560px;}
.ws1f{word-spacing:-14.055552px;}
.wsd{word-spacing:-13.680000px;}
.ws1d{word-spacing:-13.456800px;}
.ws1b{word-spacing:-13.378176px;}
.ws1e{word-spacing:-13.360032px;}
.wse{word-spacing:-13.318848px;}
.ws1a{word-spacing:-13.281408px;}
.ws20{word-spacing:-13.081824px;}
.ws10{word-spacing:-0.060480px;}
.wsc{word-spacing:0.000000px;}
._22{margin-left:-2.057760px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._2{width:2.700000px;}
._3{width:3.734208px;}
._8{width:4.742496px;}
._b{width:6.048000px;}
._4{width:7.867152px;}
._a{width:9.419472px;}
._9{width:10.478448px;}
._c{width:12.073248px;}
._5{width:13.081824px;}
._6{width:16.801344px;}
._7{width:18.696096px;}
._e{width:19.814112px;}
._17{width:20.954160px;}
._18{width:21.954240px;}
._1c{width:23.466240px;}
._15{width:24.857280px;}
._1d{width:26.732160px;}
._11{width:28.728000px;}
._14{width:30.421440px;}
._1a{width:32.296320px;}
._1f{width:33.399936px;}
._19{width:34.473600px;}
._1b{width:36.288000px;}
._d{width:38.046672px;}
._24{width:39.307248px;}
._25{width:40.526352px;}
._28{width:41.731200px;}
._32{width:43.427520px;}
._20{width:45.480960px;}
._27{width:47.597760px;}
._21{width:49.583520px;}
._13{width:50.742720px;}
._1e{width:54.794880px;}
._30{width:56.488320px;}
._34{width:58.302720px;}
._26{width:59.754240px;}
._16{width:62.359632px;}
._29{width:63.404496px;}
._2e{width:65.160288px;}
._2d{width:66.954240px;}
._f{width:71.305920px;}
._10{width:72.334080px;}
._23{width:73.362240px;}
._12{width:77.172480px;}
._2f{width:80.266464px;}
._2a{width:86.909760px;}
._31{width:94.832640px;}
._2b{width:100.215360px;}
._33{width:133.237440px;}
._2c{width:134.389440px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y3f{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:0.540000px;}
.y3e{bottom:1.740000px;}
.yb3{bottom:3.780000px;}
.y9f{bottom:3.840000px;}
.y8a{bottom:4.020000px;}
.ya7{bottom:4.560000px;}
.y96{bottom:4.740000px;}
.yb8{bottom:18.540000px;}
.yb6{bottom:21.780000px;}
.y9a{bottom:37.500000px;}
.ya2{bottom:39.840000px;}
.y99{bottom:40.740000px;}
.y41{bottom:53.640000px;}
.y6{bottom:58.320000px;}
.y3d{bottom:64.500000px;}
.y5{bottom:86.400000px;}
.y8e{bottom:90.780000px;}
.y8d{bottom:94.020000px;}
.yaa{bottom:112.560000px;}
.ye6{bottom:114.840000px;}
.y9d{bottom:120.960000px;}
.y148{bottom:121.680000px;}
.y3c{bottom:126.000000px;}
.ye5{bottom:132.120000px;}
.yc6{bottom:133.560000px;}
.y9c{bottom:138.240000px;}
.y147{bottom:138.960000px;}
.y3b{bottom:143.280000px;}
.yc5{bottom:147.600000px;}
.ye4{bottom:149.400000px;}
.y98{bottom:151.500000px;}
.y119{bottom:155.520000px;}
.y146{bottom:156.240000px;}
.y3a{bottom:160.200000px;}
.ye3{bottom:166.680000px;}
.y9b{bottom:169.500000px;}
.y118{bottom:172.800000px;}
.y145{bottom:173.520000px;}
.y39{bottom:177.480000px;}
.ye2{bottom:183.960000px;}
.y97{bottom:187.500000px;}
.y117{bottom:190.080000px;}
.y144{bottom:190.800000px;}
.y38{bottom:194.760000px;}
.ye1{bottom:201.240000px;}
.y95{bottom:205.500000px;}
.y116{bottom:207.360000px;}
.y143{bottom:208.080000px;}
.y37{bottom:212.040000px;}
.ye0{bottom:218.520000px;}
.y115{bottom:224.280000px;}
.y142{bottom:225.360000px;}
.y94{bottom:228.240000px;}
.y36{bottom:229.320000px;}
.ydf{bottom:235.800000px;}
.y114{bottom:241.560000px;}
.y141{bottom:242.280000px;}
.y93{bottom:245.520000px;}
.y35{bottom:246.600000px;}
.yde{bottom:253.080000px;}
.y113{bottom:258.840000px;}
.y8c{bottom:259.500000px;}
.y140{bottom:259.560000px;}
.y34{bottom:263.880000px;}
.ydd{bottom:270.000000px;}
.y112{bottom:276.120000px;}
.y13f{bottom:276.840000px;}
.y92{bottom:277.500000px;}
.y33{bottom:281.160000px;}
.ydc{bottom:287.280000px;}
.y111{bottom:293.400000px;}
.y13e{bottom:294.120000px;}
.y91{bottom:295.500000px;}
.ydb{bottom:304.560000px;}
.y32{bottom:307.440000px;}
.y110{bottom:310.680000px;}
.y13d{bottom:311.400000px;}
.y90{bottom:313.500000px;}
.yda{bottom:321.840000px;}
.y10f{bottom:327.960000px;}
.y13c{bottom:328.680000px;}
.y8f{bottom:331.500000px;}
.y31{bottom:334.800000px;}
.yd9{bottom:339.120000px;}
.y10e{bottom:345.240000px;}
.y13b{bottom:345.960000px;}
.y30{bottom:349.200000px;}
.y8b{bottom:349.500000px;}
.yd8{bottom:356.400000px;}
.y10d{bottom:362.520000px;}
.y2f{bottom:362.880000px;}
.y13a{bottom:363.240000px;}
.yc4{bottom:366.120000px;}
.y89{bottom:367.500000px;}
.yd7{bottom:373.680000px;}
.y2e{bottom:376.560000px;}
.y10c{bottom:379.800000px;}
.y139{bottom:380.520000px;}
.yc3{bottom:383.400000px;}
.y88{bottom:389.520000px;}
.yd6{bottom:390.960000px;}
.y2d{bottom:391.680000px;}
.y10b{bottom:397.080000px;}
.yc2{bottom:397.440000px;}
.y138{bottom:397.800000px;}
.y87{bottom:406.800000px;}
.yd5{bottom:408.240000px;}
.y2c{bottom:408.960000px;}
.y10a{bottom:414.000000px;}
.y137{bottom:415.080000px;}
.y6a{bottom:424.080000px;}
.yd4{bottom:425.520000px;}
.y2b{bottom:426.240000px;}
.y136{bottom:432.000000px;}
.y86{bottom:433.080000px;}
.y109{bottom:440.280000px;}
.y69{bottom:441.000000px;}
.yd3{bottom:442.800000px;}
.y2a{bottom:443.520000px;}
.y108{bottom:457.560000px;}
.y135{bottom:458.280000px;}
.y85{bottom:459.360000px;}
.yd2{bottom:459.720000px;}
.y29{bottom:460.800000px;}
.y68{bottom:467.280000px;}
.y107{bottom:474.840000px;}
.y84{bottom:476.640000px;}
.yd1{bottom:477.000000px;}
.y28{bottom:478.080000px;}
.y134{bottom:484.560000px;}
.y106{bottom:492.120000px;}
.y67{bottom:493.560000px;}
.y83{bottom:493.920000px;}
.yd0{bottom:494.280000px;}
.y27{bottom:495.360000px;}
.y133{bottom:501.840000px;}
.y105{bottom:509.400000px;}
.y82{bottom:511.200000px;}
.ycf{bottom:511.560000px;}
.y26{bottom:512.640000px;}
.y132{bottom:519.120000px;}
.y66{bottom:519.840000px;}
.y104{bottom:526.680000px;}
.y81{bottom:528.480000px;}
.yce{bottom:528.840000px;}
.y25{bottom:529.920000px;}
.y131{bottom:536.400000px;}
.y65{bottom:537.120000px;}
.y103{bottom:543.960000px;}
.y80{bottom:545.760000px;}
.ycd{bottom:546.120000px;}
.y24{bottom:547.200000px;}
.y130{bottom:553.680000px;}
.y64{bottom:554.400000px;}
.y102{bottom:561.240000px;}
.y7f{bottom:563.040000px;}
.ycc{bottom:563.400000px;}
.y23{bottom:564.120000px;}
.y12f{bottom:570.960000px;}
.y63{bottom:571.680000px;}
.y101{bottom:578.520000px;}
.ycb{bottom:580.680000px;}
.y22{bottom:581.400000px;}
.y12e{bottom:588.240000px;}
.y62{bottom:588.960000px;}
.y7e{bottom:589.320000px;}
.y100{bottom:595.800000px;}
.yca{bottom:597.960000px;}
.y21{bottom:598.680000px;}
.y12d{bottom:605.520000px;}
.y61{bottom:606.240000px;}
.yc9{bottom:612.000000px;}
.y20{bottom:615.960000px;}
.yff{bottom:622.080000px;}
.y12c{bottom:622.800000px;}
.y60{bottom:623.520000px;}
.y1f{bottom:633.240000px;}
.yc1{bottom:638.280000px;}
.yfe{bottom:639.000000px;}
.y12b{bottom:640.080000px;}
.y5f{bottom:640.800000px;}
.y1e{bottom:650.520000px;}
.ybf{bottom:652.500000px;}
.yfd{bottom:656.280000px;}
.y12a{bottom:657.000000px;}
.y5e{bottom:658.080000px;}
.y1d{bottom:667.800000px;}
.yc0{bottom:670.500000px;}
.yfc{bottom:673.560000px;}
.y129{bottom:674.280000px;}
.y5d{bottom:675.000000px;}
.y7d{bottom:684.360000px;}
.y1c{bottom:685.080000px;}
.ybd{bottom:688.500000px;}
.yfb{bottom:690.840000px;}
.y128{bottom:691.560000px;}
.y5c{bottom:692.280000px;}
.y1b{bottom:702.360000px;}
.y7c{bottom:702.720000px;}
.ybe{bottom:706.500000px;}
.y127{bottom:708.840000px;}
.y5b{bottom:709.560000px;}
.yfa{bottom:717.120000px;}
.y1a{bottom:719.640000px;}
.y7b{bottom:721.080000px;}
.ybb{bottom:724.500000px;}
.y126{bottom:726.120000px;}
.y5a{bottom:726.840000px;}
.yf9{bottom:734.400000px;}
.y19{bottom:736.920000px;}
.y7a{bottom:739.440000px;}
.ybc{bottom:742.500000px;}
.y125{bottom:743.400000px;}
.y59{bottom:744.120000px;}
.yf8{bottom:751.680000px;}
.y18{bottom:753.840000px;}
.y79{bottom:757.800000px;}
.yb9{bottom:760.500000px;}
.y124{bottom:760.680000px;}
.y58{bottom:761.400000px;}
.yf7{bottom:768.960000px;}
.y17{bottom:773.640000px;}
.y78{bottom:776.160000px;}
.y123{bottom:777.960000px;}
.yba{bottom:778.500000px;}
.y57{bottom:778.680000px;}
.yf6{bottom:786.240000px;}
.y16{bottom:790.920000px;}
.y77{bottom:794.520000px;}
.y122{bottom:795.240000px;}
.y56{bottom:795.960000px;}
.yb5{bottom:796.500000px;}
.yf5{bottom:803.520000px;}
.y15{bottom:807.840000px;}
.y121{bottom:812.520000px;}
.y55{bottom:813.240000px;}
.yb7{bottom:814.500000px;}
.yf4{bottom:820.800000px;}
.y76{bottom:821.520000px;}
.y14{bottom:827.640000px;}
.y120{bottom:829.800000px;}
.y54{bottom:830.520000px;}
.yb2{bottom:832.500000px;}
.yf3{bottom:837.720000px;}
.y11f{bottom:846.720000px;}
.y53{bottom:847.800000px;}
.y13{bottom:850.320000px;}
.yb1{bottom:854.280000px;}
.yf2{bottom:855.000000px;}
.y12{bottom:861.840000px;}
.y11e{bottom:864.000000px;}
.y52{bottom:864.720000px;}
.yc8{bottom:865.080000px;}
.y75{bottom:866.160000px;}
.yb0{bottom:871.560000px;}
.yf1{bottom:872.280000px;}
.y11d{bottom:881.280000px;}
.y51{bottom:882.000000px;}
.yc7{bottom:882.360000px;}
.y11{bottom:884.520000px;}
.ya9{bottom:885.000000px;}
.yf0{bottom:889.560000px;}
.y10{bottom:896.400000px;}
.y11c{bottom:898.560000px;}
.y50{bottom:899.280000px;}
.y74{bottom:901.800000px;}
.yaf{bottom:903.000000px;}
.yef{bottom:906.840000px;}
.y11b{bottom:915.840000px;}
.y4f{bottom:916.560000px;}
.yf{bottom:919.080000px;}
.y73{bottom:920.160000px;}
.yae{bottom:921.000000px;}
.ye{bottom:930.960000px;}
.yee{bottom:933.120000px;}
.y4e{bottom:933.840000px;}
.y72{bottom:937.440000px;}
.yad{bottom:939.000000px;}
.yed{bottom:950.400000px;}
.y4d{bottom:951.120000px;}
.yd{bottom:953.640000px;}
.y71{bottom:955.800000px;}
.yac{bottom:957.000000px;}
.yec{bottom:967.680000px;}
.y4c{bottom:968.400000px;}
.y70{bottom:974.160000px;}
.yab{bottom:975.000000px;}
.yc{bottom:975.240000px;}
.yeb{bottom:984.960000px;}
.y4b{bottom:985.680000px;}
.ya8{bottom:993.000000px;}
.y11a{bottom:993.960000px;}
.yb{bottom:996.120000px;}
.y6f{bottom:1001.520000px;}
.yea{bottom:1002.240000px;}
.y4a{bottom:1002.960000px;}
.ya6{bottom:1011.000000px;}
.ye9{bottom:1019.520000px;}
.y49{bottom:1020.240000px;}
.ya{bottom:1026.360000px;}
.y6e{bottom:1027.800000px;}
.ya5{bottom:1033.560000px;}
.ye8{bottom:1036.800000px;}
.y48{bottom:1037.520000px;}
.y6d{bottom:1044.720000px;}
.y9{bottom:1050.480000px;}
.ya4{bottom:1050.840000px;}
.y47{bottom:1054.800000px;}
.ye7{bottom:1062.720000px;}
.ya1{bottom:1065.000000px;}
.y6c{bottom:1071.000000px;}
.y46{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.ya3{bottom:1083.000000px;}
.y45{bottom:1089.000000px;}
.y6b{bottom:1097.280000px;}
.ya0{bottom:1101.000000px;}
.y44{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y9e{bottom:1119.000000px;}
.y43{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y42{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y40{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.he{height:18.000000px;}
.h10{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.h14{height:36.000000px;}
.hd{height:37.085625px;}
.h5{height:40.989375px;}
.ha{height:42.022969px;}
.h6{height:44.149219px;}
.h2{height:44.893125px;}
.h3{height:48.095156px;}
.h12{height:54.000000px;}
.h11{height:55.500000px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.hf{height:108.000000px;}
.h13{height:127.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w18{width:69.000000px;}
.w12{width:70.500000px;}
.w14{width:72.000000px;}
.w13{width:78.000000px;}
.w15{width:81.000000px;}
.w16{width:82.500000px;}
.w17{width:103.500000px;}
.w10{width:106.500000px;}
.w8{width:114.000000px;}
.w7{width:118.500000px;}
.wc{width:129.000000px;}
.w5{width:130.500000px;}
.w4{width:132.000000px;}
.wf{width:136.500000px;}
.w6{width:138.000000px;}
.w9{width:141.000000px;}
.wd{width:145.500000px;}
.wa{width:148.500000px;}
.wb{width:156.000000px;}
.w11{width:172.500000px;}
.w3{width:177.000000px;}
.we{width:190.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:1.560048px;}
.x1a{left:7.500000px;}
.x1c{left:8.760144px;}
.x19{left:100.500000px;}
.x5{left:108.000000px;}
.x16{left:109.746108px;}
.xd{left:110.979504px;}
.xb{left:112.481676px;}
.x13{left:115.874280px;}
.xf{left:119.109384px;}
.x4{left:121.562640px;}
.x11{left:128.477052px;}
.x9{left:131.479992px;}
.x3c{left:135.000000px;}
.x8{left:146.973636px;}
.x10{left:161.284428px;}
.xe{left:174.815928px;}
.x12{left:182.938464px;}
.x34{left:204.000000px;}
.x20{left:214.500000px;}
.x24{left:228.000000px;}
.x3b{left:235.870596px;}
.x36{left:238.558608px;}
.x28{left:241.466292px;}
.x18{left:245.853540px;}
.x23{left:259.179912px;}
.x3a{left:267.734628px;}
.x38{left:268.979724px;}
.x2d{left:271.500000px;}
.x1b{left:276.000000px;}
.x29{left:289.500000px;}
.x2{left:298.937628px;}
.xa{left:309.990240px;}
.x2e{left:340.500000px;}
.x21{left:354.000000px;}
.x25{left:366.000000px;}
.x1d{left:408.000000px;}
.x2f{left:418.500000px;}
.x2a{left:420.000000px;}
.xc{left:421.471440px;}
.x3{left:446.474880px;}
.x14{left:473.040000px;}
.x30{left:489.000000px;}
.x17{left:500.040000px;}
.x26{left:504.000000px;}
.x1{left:514.061640px;}
.x1e{left:538.500000px;}
.x2b{left:550.500000px;}
.x31{left:568.500000px;}
.x7{left:603.506520px;}
.x27{left:648.000000px;}
.x32{left:651.000000px;}
.x22{left:655.500000px;}
.x35{left:672.554880px;}
.x1f{left:675.000000px;}
.x39{left:681.914880px;}
.x2c{left:687.000000px;}
.x37{left:692.714880px;}
.x33{left:721.500000px;}
.x6{left:759.861720px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls30{letter-spacing:-1.811712pt;}
.ls2b{letter-spacing:-1.634304pt;}
.ls2e{letter-spacing:-1.564416pt;}
.ls2c{letter-spacing:-1.548288pt;}
.ls2d{letter-spacing:-1.478400pt;}
.ls2f{letter-spacing:-0.946176pt;}
.ls28{letter-spacing:-0.833280pt;}
.ls2a{letter-spacing:-0.817152pt;}
.ls29{letter-spacing:-0.801024pt;}
.ls32{letter-spacing:-0.774144pt;}
.ls27{letter-spacing:-0.763392pt;}
.ls31{letter-spacing:-0.747264pt;}
.ls18{letter-spacing:-0.408576pt;}
.ls1c{letter-spacing:-0.370944pt;}
.ls1e{letter-spacing:-0.338688pt;}
.ls25{letter-spacing:-0.321024pt;}
.ls19{letter-spacing:-0.301056pt;}
.lse{letter-spacing:-0.284928pt;}
.ls1a{letter-spacing:-0.268800pt;}
.ls24{letter-spacing:-0.243200pt;}
.ls26{letter-spacing:-0.241920pt;}
.ls16{letter-spacing:-0.231168pt;}
.ls17{letter-spacing:-0.215040pt;}
.lsf{letter-spacing:-0.198912pt;}
.ls13{letter-spacing:-0.176640pt;}
.ls11{letter-spacing:-0.155904pt;}
.ls1d{letter-spacing:-0.139776pt;}
.lsd{letter-spacing:-0.135424pt;}
.lsc{letter-spacing:-0.129536pt;}
.ls1b{letter-spacing:-0.129024pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:-0.107520pt;}
.lsb{letter-spacing:-0.105984pt;}
.lsa{letter-spacing:-0.070656pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053248pt;}
.ls4{letter-spacing:0.053376pt;}
.ls20{letter-spacing:0.109824pt;}
.ls15{letter-spacing:0.141056pt;}
.ls21{letter-spacing:0.143616pt;}
.ls8{letter-spacing:0.173184pt;}
.ls1{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.213376pt;}
.ls2{letter-spacing:0.213760pt;}
.ls22{letter-spacing:0.215424pt;}
.ls1f{letter-spacing:0.253440pt;}
.ls14{letter-spacing:0.319232pt;}
.ls5{letter-spacing:1.136768pt;}
.ls6{letter-spacing:1.285248pt;}
.ls36{letter-spacing:2.201600pt;}
.ls33{letter-spacing:10.195200pt;}
.ls35{letter-spacing:12.549120pt;}
.ls38{letter-spacing:14.387200pt;}
.ls7{letter-spacing:15.725312pt;}
.ls37{letter-spacing:41.054720pt;}
.ls34{letter-spacing:55.383040pt;}
.ls23{letter-spacing:56.522240pt;}
.ws7{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws5{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.310976pt;}
.ws13{word-spacing:-13.284096pt;}
.wsf{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws11{word-spacing:-13.208832pt;}
.ws14{word-spacing:-13.198080pt;}
.ws6{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws12{word-spacing:-13.171200pt;}
.ws4{word-spacing:-13.155072pt;}
.ws9{word-spacing:-13.138944pt;}
.wsa{word-spacing:-13.101312pt;}
.ws15{word-spacing:-13.069056pt;}
.ws1c{word-spacing:-13.031424pt;}
.ws21{word-spacing:-12.692736pt;}
.ws16{word-spacing:-12.676608pt;}
.ws22{word-spacing:-12.665856pt;}
.ws18{word-spacing:-12.638976pt;}
.ws19{word-spacing:-12.622848pt;}
.ws17{word-spacing:-12.606720pt;}
.ws1f{word-spacing:-12.493824pt;}
.wsd{word-spacing:-12.160000pt;}
.ws1d{word-spacing:-11.961600pt;}
.ws1b{word-spacing:-11.891712pt;}
.ws1e{word-spacing:-11.875584pt;}
.wse{word-spacing:-11.838976pt;}
.ws1a{word-spacing:-11.805696pt;}
.ws20{word-spacing:-11.628288pt;}
.ws10{word-spacing:-0.053760pt;}
.wsc{word-spacing:0.000000pt;}
._22{margin-left:-1.829120pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._2{width:2.400000pt;}
._3{width:3.319296pt;}
._8{width:4.215552pt;}
._b{width:5.376000pt;}
._4{width:6.993024pt;}
._a{width:8.372864pt;}
._9{width:9.314176pt;}
._c{width:10.731776pt;}
._5{width:11.628288pt;}
._6{width:14.934528pt;}
._7{width:16.618752pt;}
._e{width:17.612544pt;}
._17{width:18.625920pt;}
._18{width:19.514880pt;}
._1c{width:20.858880pt;}
._15{width:22.095360pt;}
._1d{width:23.761920pt;}
._11{width:25.536000pt;}
._14{width:27.041280pt;}
._1a{width:28.707840pt;}
._1f{width:29.688832pt;}
._19{width:30.643200pt;}
._1b{width:32.256000pt;}
._d{width:33.819264pt;}
._24{width:34.939776pt;}
._25{width:36.023424pt;}
._28{width:37.094400pt;}
._32{width:38.602240pt;}
._20{width:40.427520pt;}
._27{width:42.309120pt;}
._21{width:44.074240pt;}
._13{width:45.104640pt;}
._1e{width:48.706560pt;}
._30{width:50.211840pt;}
._34{width:51.824640pt;}
._26{width:53.114880pt;}
._16{width:55.430784pt;}
._29{width:56.359552pt;}
._2e{width:57.920256pt;}
._2d{width:59.514880pt;}
._f{width:63.383040pt;}
._10{width:64.296960pt;}
._23{width:65.210880pt;}
._12{width:68.597760pt;}
._2f{width:71.347968pt;}
._2a{width:77.253120pt;}
._31{width:84.295680pt;}
._2b{width:89.080320pt;}
._33{width:118.433280pt;}
._2c{width:119.457280pt;}
.fs1{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y3f{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:0.480000pt;}
.y3e{bottom:1.546667pt;}
.yb3{bottom:3.360000pt;}
.y9f{bottom:3.413333pt;}
.y8a{bottom:3.573333pt;}
.ya7{bottom:4.053333pt;}
.y96{bottom:4.213333pt;}
.yb8{bottom:16.480000pt;}
.yb6{bottom:19.360000pt;}
.y9a{bottom:33.333333pt;}
.ya2{bottom:35.413333pt;}
.y99{bottom:36.213333pt;}
.y41{bottom:47.680000pt;}
.y6{bottom:51.840000pt;}
.y3d{bottom:57.333333pt;}
.y5{bottom:76.800000pt;}
.y8e{bottom:80.693333pt;}
.y8d{bottom:83.573333pt;}
.yaa{bottom:100.053333pt;}
.ye6{bottom:102.080000pt;}
.y9d{bottom:107.520000pt;}
.y148{bottom:108.160000pt;}
.y3c{bottom:112.000000pt;}
.ye5{bottom:117.440000pt;}
.yc6{bottom:118.720000pt;}
.y9c{bottom:122.880000pt;}
.y147{bottom:123.520000pt;}
.y3b{bottom:127.360000pt;}
.yc5{bottom:131.200000pt;}
.ye4{bottom:132.800000pt;}
.y98{bottom:134.666667pt;}
.y119{bottom:138.240000pt;}
.y146{bottom:138.880000pt;}
.y3a{bottom:142.400000pt;}
.ye3{bottom:148.160000pt;}
.y9b{bottom:150.666667pt;}
.y118{bottom:153.600000pt;}
.y145{bottom:154.240000pt;}
.y39{bottom:157.760000pt;}
.ye2{bottom:163.520000pt;}
.y97{bottom:166.666667pt;}
.y117{bottom:168.960000pt;}
.y144{bottom:169.600000pt;}
.y38{bottom:173.120000pt;}
.ye1{bottom:178.880000pt;}
.y95{bottom:182.666667pt;}
.y116{bottom:184.320000pt;}
.y143{bottom:184.960000pt;}
.y37{bottom:188.480000pt;}
.ye0{bottom:194.240000pt;}
.y115{bottom:199.360000pt;}
.y142{bottom:200.320000pt;}
.y94{bottom:202.880000pt;}
.y36{bottom:203.840000pt;}
.ydf{bottom:209.600000pt;}
.y114{bottom:214.720000pt;}
.y141{bottom:215.360000pt;}
.y93{bottom:218.240000pt;}
.y35{bottom:219.200000pt;}
.yde{bottom:224.960000pt;}
.y113{bottom:230.080000pt;}
.y8c{bottom:230.666667pt;}
.y140{bottom:230.720000pt;}
.y34{bottom:234.560000pt;}
.ydd{bottom:240.000000pt;}
.y112{bottom:245.440000pt;}
.y13f{bottom:246.080000pt;}
.y92{bottom:246.666667pt;}
.y33{bottom:249.920000pt;}
.ydc{bottom:255.360000pt;}
.y111{bottom:260.800000pt;}
.y13e{bottom:261.440000pt;}
.y91{bottom:262.666667pt;}
.ydb{bottom:270.720000pt;}
.y32{bottom:273.280000pt;}
.y110{bottom:276.160000pt;}
.y13d{bottom:276.800000pt;}
.y90{bottom:278.666667pt;}
.yda{bottom:286.080000pt;}
.y10f{bottom:291.520000pt;}
.y13c{bottom:292.160000pt;}
.y8f{bottom:294.666667pt;}
.y31{bottom:297.600000pt;}
.yd9{bottom:301.440000pt;}
.y10e{bottom:306.880000pt;}
.y13b{bottom:307.520000pt;}
.y30{bottom:310.400000pt;}
.y8b{bottom:310.666667pt;}
.yd8{bottom:316.800000pt;}
.y10d{bottom:322.240000pt;}
.y2f{bottom:322.560000pt;}
.y13a{bottom:322.880000pt;}
.yc4{bottom:325.440000pt;}
.y89{bottom:326.666667pt;}
.yd7{bottom:332.160000pt;}
.y2e{bottom:334.720000pt;}
.y10c{bottom:337.600000pt;}
.y139{bottom:338.240000pt;}
.yc3{bottom:340.800000pt;}
.y88{bottom:346.240000pt;}
.yd6{bottom:347.520000pt;}
.y2d{bottom:348.160000pt;}
.y10b{bottom:352.960000pt;}
.yc2{bottom:353.280000pt;}
.y138{bottom:353.600000pt;}
.y87{bottom:361.600000pt;}
.yd5{bottom:362.880000pt;}
.y2c{bottom:363.520000pt;}
.y10a{bottom:368.000000pt;}
.y137{bottom:368.960000pt;}
.y6a{bottom:376.960000pt;}
.yd4{bottom:378.240000pt;}
.y2b{bottom:378.880000pt;}
.y136{bottom:384.000000pt;}
.y86{bottom:384.960000pt;}
.y109{bottom:391.360000pt;}
.y69{bottom:392.000000pt;}
.yd3{bottom:393.600000pt;}
.y2a{bottom:394.240000pt;}
.y108{bottom:406.720000pt;}
.y135{bottom:407.360000pt;}
.y85{bottom:408.320000pt;}
.yd2{bottom:408.640000pt;}
.y29{bottom:409.600000pt;}
.y68{bottom:415.360000pt;}
.y107{bottom:422.080000pt;}
.y84{bottom:423.680000pt;}
.yd1{bottom:424.000000pt;}
.y28{bottom:424.960000pt;}
.y134{bottom:430.720000pt;}
.y106{bottom:437.440000pt;}
.y67{bottom:438.720000pt;}
.y83{bottom:439.040000pt;}
.yd0{bottom:439.360000pt;}
.y27{bottom:440.320000pt;}
.y133{bottom:446.080000pt;}
.y105{bottom:452.800000pt;}
.y82{bottom:454.400000pt;}
.ycf{bottom:454.720000pt;}
.y26{bottom:455.680000pt;}
.y132{bottom:461.440000pt;}
.y66{bottom:462.080000pt;}
.y104{bottom:468.160000pt;}
.y81{bottom:469.760000pt;}
.yce{bottom:470.080000pt;}
.y25{bottom:471.040000pt;}
.y131{bottom:476.800000pt;}
.y65{bottom:477.440000pt;}
.y103{bottom:483.520000pt;}
.y80{bottom:485.120000pt;}
.ycd{bottom:485.440000pt;}
.y24{bottom:486.400000pt;}
.y130{bottom:492.160000pt;}
.y64{bottom:492.800000pt;}
.y102{bottom:498.880000pt;}
.y7f{bottom:500.480000pt;}
.ycc{bottom:500.800000pt;}
.y23{bottom:501.440000pt;}
.y12f{bottom:507.520000pt;}
.y63{bottom:508.160000pt;}
.y101{bottom:514.240000pt;}
.ycb{bottom:516.160000pt;}
.y22{bottom:516.800000pt;}
.y12e{bottom:522.880000pt;}
.y62{bottom:523.520000pt;}
.y7e{bottom:523.840000pt;}
.y100{bottom:529.600000pt;}
.yca{bottom:531.520000pt;}
.y21{bottom:532.160000pt;}
.y12d{bottom:538.240000pt;}
.y61{bottom:538.880000pt;}
.yc9{bottom:544.000000pt;}
.y20{bottom:547.520000pt;}
.yff{bottom:552.960000pt;}
.y12c{bottom:553.600000pt;}
.y60{bottom:554.240000pt;}
.y1f{bottom:562.880000pt;}
.yc1{bottom:567.360000pt;}
.yfe{bottom:568.000000pt;}
.y12b{bottom:568.960000pt;}
.y5f{bottom:569.600000pt;}
.y1e{bottom:578.240000pt;}
.ybf{bottom:580.000000pt;}
.yfd{bottom:583.360000pt;}
.y12a{bottom:584.000000pt;}
.y5e{bottom:584.960000pt;}
.y1d{bottom:593.600000pt;}
.yc0{bottom:596.000000pt;}
.yfc{bottom:598.720000pt;}
.y129{bottom:599.360000pt;}
.y5d{bottom:600.000000pt;}
.y7d{bottom:608.320000pt;}
.y1c{bottom:608.960000pt;}
.ybd{bottom:612.000000pt;}
.yfb{bottom:614.080000pt;}
.y128{bottom:614.720000pt;}
.y5c{bottom:615.360000pt;}
.y1b{bottom:624.320000pt;}
.y7c{bottom:624.640000pt;}
.ybe{bottom:628.000000pt;}
.y127{bottom:630.080000pt;}
.y5b{bottom:630.720000pt;}
.yfa{bottom:637.440000pt;}
.y1a{bottom:639.680000pt;}
.y7b{bottom:640.960000pt;}
.ybb{bottom:644.000000pt;}
.y126{bottom:645.440000pt;}
.y5a{bottom:646.080000pt;}
.yf9{bottom:652.800000pt;}
.y19{bottom:655.040000pt;}
.y7a{bottom:657.280000pt;}
.ybc{bottom:660.000000pt;}
.y125{bottom:660.800000pt;}
.y59{bottom:661.440000pt;}
.yf8{bottom:668.160000pt;}
.y18{bottom:670.080000pt;}
.y79{bottom:673.600000pt;}
.yb9{bottom:676.000000pt;}
.y124{bottom:676.160000pt;}
.y58{bottom:676.800000pt;}
.yf7{bottom:683.520000pt;}
.y17{bottom:687.680000pt;}
.y78{bottom:689.920000pt;}
.y123{bottom:691.520000pt;}
.yba{bottom:692.000000pt;}
.y57{bottom:692.160000pt;}
.yf6{bottom:698.880000pt;}
.y16{bottom:703.040000pt;}
.y77{bottom:706.240000pt;}
.y122{bottom:706.880000pt;}
.y56{bottom:707.520000pt;}
.yb5{bottom:708.000000pt;}
.yf5{bottom:714.240000pt;}
.y15{bottom:718.080000pt;}
.y121{bottom:722.240000pt;}
.y55{bottom:722.880000pt;}
.yb7{bottom:724.000000pt;}
.yf4{bottom:729.600000pt;}
.y76{bottom:730.240000pt;}
.y14{bottom:735.680000pt;}
.y120{bottom:737.600000pt;}
.y54{bottom:738.240000pt;}
.yb2{bottom:740.000000pt;}
.yf3{bottom:744.640000pt;}
.y11f{bottom:752.640000pt;}
.y53{bottom:753.600000pt;}
.y13{bottom:755.840000pt;}
.yb1{bottom:759.360000pt;}
.yf2{bottom:760.000000pt;}
.y12{bottom:766.080000pt;}
.y11e{bottom:768.000000pt;}
.y52{bottom:768.640000pt;}
.yc8{bottom:768.960000pt;}
.y75{bottom:769.920000pt;}
.yb0{bottom:774.720000pt;}
.yf1{bottom:775.360000pt;}
.y11d{bottom:783.360000pt;}
.y51{bottom:784.000000pt;}
.yc7{bottom:784.320000pt;}
.y11{bottom:786.240000pt;}
.ya9{bottom:786.666667pt;}
.yf0{bottom:790.720000pt;}
.y10{bottom:796.800000pt;}
.y11c{bottom:798.720000pt;}
.y50{bottom:799.360000pt;}
.y74{bottom:801.600000pt;}
.yaf{bottom:802.666667pt;}
.yef{bottom:806.080000pt;}
.y11b{bottom:814.080000pt;}
.y4f{bottom:814.720000pt;}
.yf{bottom:816.960000pt;}
.y73{bottom:817.920000pt;}
.yae{bottom:818.666667pt;}
.ye{bottom:827.520000pt;}
.yee{bottom:829.440000pt;}
.y4e{bottom:830.080000pt;}
.y72{bottom:833.280000pt;}
.yad{bottom:834.666667pt;}
.yed{bottom:844.800000pt;}
.y4d{bottom:845.440000pt;}
.yd{bottom:847.680000pt;}
.y71{bottom:849.600000pt;}
.yac{bottom:850.666667pt;}
.yec{bottom:860.160000pt;}
.y4c{bottom:860.800000pt;}
.y70{bottom:865.920000pt;}
.yab{bottom:866.666667pt;}
.yc{bottom:866.880000pt;}
.yeb{bottom:875.520000pt;}
.y4b{bottom:876.160000pt;}
.ya8{bottom:882.666667pt;}
.y11a{bottom:883.520000pt;}
.yb{bottom:885.440000pt;}
.y6f{bottom:890.240000pt;}
.yea{bottom:890.880000pt;}
.y4a{bottom:891.520000pt;}
.ya6{bottom:898.666667pt;}
.ye9{bottom:906.240000pt;}
.y49{bottom:906.880000pt;}
.ya{bottom:912.320000pt;}
.y6e{bottom:913.600000pt;}
.ya5{bottom:918.720000pt;}
.ye8{bottom:921.600000pt;}
.y48{bottom:922.240000pt;}
.y6d{bottom:928.640000pt;}
.y9{bottom:933.760000pt;}
.ya4{bottom:934.080000pt;}
.y47{bottom:937.600000pt;}
.ye7{bottom:944.640000pt;}
.ya1{bottom:946.666667pt;}
.y6c{bottom:952.000000pt;}
.y46{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.ya3{bottom:962.666667pt;}
.y45{bottom:968.000000pt;}
.y6b{bottom:975.360000pt;}
.ya0{bottom:978.666667pt;}
.y44{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y9e{bottom:994.666667pt;}
.y43{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y42{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y40{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.he{height:16.000000pt;}
.h10{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.h14{height:32.000000pt;}
.hd{height:32.965000pt;}
.h5{height:36.435000pt;}
.ha{height:37.353750pt;}
.h6{height:39.243750pt;}
.h2{height:39.905000pt;}
.h3{height:42.751250pt;}
.h12{height:48.000000pt;}
.h11{height:49.333333pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.hf{height:96.000000pt;}
.h13{height:113.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w18{width:61.333333pt;}
.w12{width:62.666667pt;}
.w14{width:64.000000pt;}
.w13{width:69.333333pt;}
.w15{width:72.000000pt;}
.w16{width:73.333333pt;}
.w17{width:92.000000pt;}
.w10{width:94.666667pt;}
.w8{width:101.333333pt;}
.w7{width:105.333333pt;}
.wc{width:114.666667pt;}
.w5{width:116.000000pt;}
.w4{width:117.333333pt;}
.wf{width:121.333333pt;}
.w6{width:122.666667pt;}
.w9{width:125.333333pt;}
.wd{width:129.333333pt;}
.wa{width:132.000000pt;}
.wb{width:138.666667pt;}
.w11{width:153.333333pt;}
.w3{width:157.333333pt;}
.we{width:169.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:1.386709pt;}
.x1a{left:6.666667pt;}
.x1c{left:7.786795pt;}
.x19{left:89.333333pt;}
.x5{left:96.000000pt;}
.x16{left:97.552096pt;}
.xd{left:98.648448pt;}
.xb{left:99.983712pt;}
.x13{left:102.999360pt;}
.xf{left:105.875008pt;}
.x4{left:108.055680pt;}
.x11{left:114.201824pt;}
.x9{left:116.871104pt;}
.x3c{left:120.000000pt;}
.x8{left:130.643232pt;}
.x10{left:143.363936pt;}
.xe{left:155.391936pt;}
.x12{left:162.611968pt;}
.x34{left:181.333333pt;}
.x20{left:190.666667pt;}
.x24{left:202.666667pt;}
.x3b{left:209.662752pt;}
.x36{left:212.052096pt;}
.x28{left:214.636704pt;}
.x18{left:218.536480pt;}
.x23{left:230.382144pt;}
.x3a{left:237.986336pt;}
.x38{left:239.093088pt;}
.x2d{left:241.333333pt;}
.x1b{left:245.333333pt;}
.x29{left:257.333333pt;}
.x2{left:265.722336pt;}
.xa{left:275.546880pt;}
.x2e{left:302.666667pt;}
.x21{left:314.666667pt;}
.x25{left:325.333333pt;}
.x1d{left:362.666667pt;}
.x2f{left:372.000000pt;}
.x2a{left:373.333333pt;}
.xc{left:374.641280pt;}
.x3{left:396.866560pt;}
.x14{left:420.480000pt;}
.x30{left:434.666667pt;}
.x17{left:444.480000pt;}
.x26{left:448.000000pt;}
.x1{left:456.943680pt;}
.x1e{left:478.666667pt;}
.x2b{left:489.333333pt;}
.x31{left:505.333333pt;}
.x7{left:536.450240pt;}
.x27{left:576.000000pt;}
.x32{left:578.666667pt;}
.x22{left:582.666667pt;}
.x35{left:597.826560pt;}
.x1f{left:600.000000pt;}
.x39{left:606.146560pt;}
.x2c{left:610.666667pt;}
.x37{left:615.746560pt;}
.x33{left:641.333333pt;}
.x6{left:675.432640pt;}
}




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