
    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_8548a761b8cce594525daf33.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_141f6b74eaa30c8559b1db4e.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_9e764843aa40f1d10461f6e1.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_1b2d35407a10092ea0753117.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_78ec740167e73ad8fb6b7142.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_e103a2a9a36080594f52394d.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_c902ebbec0e64c200b52e7e9.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_f895d376c65506d986f80d5a.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_d1961393b3dde4416d50f5f1.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);}
.v3{vertical-align:-36.000000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls2c{letter-spacing:-0.937440px;}
.ls31{letter-spacing:-0.840672px;}
.ls32{letter-spacing:-0.822528px;}
.ls33{letter-spacing:-0.780192px;}
.ls30{letter-spacing:-0.762048px;}
.ls34{letter-spacing:-0.743904px;}
.ls1b{letter-spacing:-0.477792px;}
.ls19{letter-spacing:-0.459648px;}
.ls2a{letter-spacing:-0.417312px;}
.ls16{letter-spacing:-0.381024px;}
.ls29{letter-spacing:-0.361152px;}
.ls15{letter-spacing:-0.338688px;}
.lse{letter-spacing:-0.320544px;}
.ls18{letter-spacing:-0.302400px;}
.ls28{letter-spacing:-0.273600px;}
.ls2b{letter-spacing:-0.272160px;}
.ls1a{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;}
.ls1c{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;}
.ls5{letter-spacing:0.059904px;}
.ls4{letter-spacing:0.060048px;}
.ls1f{letter-spacing:0.123552px;}
.ls0{letter-spacing:0.160416px;}
.ls20{letter-spacing:0.161568px;}
.ls1{letter-spacing:0.233856px;}
.ls6{letter-spacing:0.237600px;}
.ls2{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.240480px;}
.ls21{letter-spacing:0.242352px;}
.ls1e{letter-spacing:0.285120px;}
.ls14{letter-spacing:0.359136px;}
.ls7{letter-spacing:2.770128px;}
.ls2d{letter-spacing:3.870288px;}
.ls2e{letter-spacing:4.455360px;}
.ls35{letter-spacing:4.845744px;}
.ls36{letter-spacing:7.043040px;}
.ls23{letter-spacing:8.710560px;}
.ls8{letter-spacing:9.264960px;}
.ls38{letter-spacing:13.394592px;}
.ls3a{letter-spacing:17.546400px;}
.ls26{letter-spacing:20.393280px;}
.ls37{letter-spacing:30.349440px;}
.ls2f{letter-spacing:43.139520px;}
.ls3b{letter-spacing:46.186560px;}
.ls22{letter-spacing:54.817488px;}
.ls25{letter-spacing:63.587520px;}
.ls24{letter-spacing:63.588960px;}
.ls39{letter-spacing:186.219792px;}
.ls27{letter-spacing:1445.040000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.480512px;}
.ws2{word-spacing:-16.440768px;}
.ws7{word-spacing:-15.120000px;}
.ws13{word-spacing:-14.999040px;}
.ws18{word-spacing:-14.974848px;}
.ws15{word-spacing:-14.962752px;}
.ws10{word-spacing:-14.944608px;}
.wse{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws11{word-spacing:-14.859936px;}
.ws5{word-spacing:-14.837760px;}
.ws3{word-spacing:-14.817888px;}
.ws12{word-spacing:-14.817600px;}
.ws4{word-spacing:-14.799456px;}
.wsa{word-spacing:-14.781312px;}
.ws6{word-spacing:-14.738976px;}
.ws14{word-spacing:-14.702688px;}
.ws9{word-spacing:-14.660352px;}
.ws17{word-spacing:-14.279328px;}
.ws16{word-spacing:-14.182560px;}
.wsc{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.318848px;}
.wsf{word-spacing:-0.060480px;}
.wsb{word-spacing:0.000000px;}
._19{margin-left:-3.968064px;}
._9{margin-left:-2.261376px;}
._0{margin-left:-1.017504px;}
._1{width:1.023408px;}
._2{width:2.968272px;}
._4{width:4.298832px;}
._3{width:5.709024px;}
._7{width:7.620480px;}
._5{width:9.444384px;}
._23{width:10.584000px;}
._6{width:11.616912px;}
._16{width:13.608000px;}
._10{width:16.148160px;}
._a{width:17.660160px;}
._14{width:18.930240px;}
._e{width:20.200320px;}
._b{width:22.196160px;}
._8{width:23.405760px;}
._f{width:24.620112px;}
._1c{width:26.062128px;}
._24{width:27.346464px;}
._27{width:29.393280px;}
._11{width:30.965760px;}
._17{width:32.719680px;}
._1f{width:34.070400px;}
._1e{width:35.320320px;}
._2a{width:37.013760px;}
._1d{width:38.949120px;}
._22{width:40.340160px;}
._15{width:41.428800px;}
._c{width:42.698880px;}
._26{width:43.862976px;}
._28{width:44.906688px;}
._21{width:46.630080px;}
._2c{width:48.615264px;}
._20{width:49.775040px;}
._25{width:52.073280px;}
._1a{width:54.129600px;}
._13{width:56.064960px;}
._12{width:57.456000px;}
._d{width:63.685440px;}
._1b{width:74.269440px;}
._2b{width:76.870080px;}
._29{width:101.886624px;}
._18{width:104.267520px;}
.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;}
.y40{bottom:-15.540000px;}
.y0{bottom:0.000000px;}
.yca{bottom:0.240000px;}
.yc7{bottom:0.780000px;}
.ycf{bottom:1.200000px;}
.ycd{bottom:1.440000px;}
.y3f{bottom:1.740000px;}
.ycc{bottom:2.520000px;}
.y96{bottom:3.660000px;}
.yaa{bottom:3.780000px;}
.ya2{bottom:3.840000px;}
.ye1{bottom:4.740000px;}
.yc8{bottom:6.900000px;}
.yd0{bottom:11.640000px;}
.ya8{bottom:12.420000px;}
.ya5{bottom:12.840000px;}
.yb4{bottom:13.140000px;}
.ya9{bottom:21.060000px;}
.yb6{bottom:21.780000px;}
.yad{bottom:22.140000px;}
.yb3{bottom:30.420000px;}
.yaf{bottom:30.780000px;}
.ye4{bottom:31.740000px;}
.yac{bottom:39.420000px;}
.y42{bottom:53.640000px;}
.y99{bottom:57.660000px;}
.y6{bottom:58.320000px;}
.y3e{bottom:64.500000px;}
.yb9{bottom:66.780000px;}
.yd6{bottom:75.660000px;}
.y5{bottom:86.400000px;}
.y140{bottom:113.400000px;}
.y107{bottom:118.440000px;}
.y3d{bottom:118.800000px;}
.y105{bottom:119.160000px;}
.yc9{bottom:120.000000px;}
.y167{bottom:121.680000px;}
.ya0{bottom:128.880000px;}
.y13f{bottom:130.680000px;}
.y3c{bottom:136.080000px;}
.y104{bottom:136.440000px;}
.y166{bottom:138.960000px;}
.y106{bottom:144.720000px;}
.y9f{bottom:146.160000px;}
.y13e{bottom:147.960000px;}
.y3b{bottom:153.360000px;}
.y103{bottom:153.720000px;}
.y165{bottom:156.240000px;}
.y98{bottom:160.500000px;}
.y13d{bottom:165.240000px;}
.y3a{bottom:170.640000px;}
.y102{bottom:171.000000px;}
.y164{bottom:173.520000px;}
.ye7{bottom:174.240000px;}
.y9e{bottom:178.500000px;}
.y13c{bottom:182.520000px;}
.ye3{bottom:187.500000px;}
.y39{bottom:187.920000px;}
.y101{bottom:188.280000px;}
.y163{bottom:190.800000px;}
.y9d{bottom:196.500000px;}
.y13b{bottom:199.800000px;}
.y38{bottom:205.200000px;}
.ye6{bottom:205.500000px;}
.y100{bottom:205.560000px;}
.y162{bottom:208.080000px;}
.y9c{bottom:214.500000px;}
.y13a{bottom:217.080000px;}
.y37{bottom:222.480000px;}
.yff{bottom:222.840000px;}
.ye5{bottom:223.500000px;}
.y161{bottom:225.360000px;}
.y9b{bottom:232.500000px;}
.y139{bottom:234.360000px;}
.y36{bottom:239.760000px;}
.yfe{bottom:240.120000px;}
.ye2{bottom:241.500000px;}
.y160{bottom:242.280000px;}
.y9a{bottom:250.500000px;}
.y138{bottom:251.280000px;}
.y35{bottom:257.040000px;}
.yfd{bottom:257.400000px;}
.ye0{bottom:259.500000px;}
.y15f{bottom:259.560000px;}
.y97{bottom:268.500000px;}
.y137{bottom:268.560000px;}
.y34{bottom:274.320000px;}
.yfc{bottom:274.680000px;}
.y15e{bottom:276.840000px;}
.ydf{bottom:282.240000px;}
.y136{bottom:285.840000px;}
.y95{bottom:286.500000px;}
.y33{bottom:291.600000px;}
.y15d{bottom:294.120000px;}
.yde{bottom:299.160000px;}
.y135{bottom:303.120000px;}
.y94{bottom:308.160000px;}
.y32{bottom:308.520000px;}
.yfb{bottom:308.880000px;}
.y15c{bottom:311.400000px;}
.yd5{bottom:313.500000px;}
.y134{bottom:320.400000px;}
.yfa{bottom:326.160000px;}
.y15b{bottom:328.680000px;}
.ydd{bottom:331.500000px;}
.y93{bottom:334.440000px;}
.y31{bottom:334.800000px;}
.y133{bottom:337.680000px;}
.yf9{bottom:343.440000px;}
.y15a{bottom:345.960000px;}
.ydc{bottom:349.500000px;}
.y6b{bottom:351.720000px;}
.y132{bottom:354.960000px;}
.yf8{bottom:360.720000px;}
.y30{bottom:362.520000px;}
.y159{bottom:363.240000px;}
.ydb{bottom:367.500000px;}
.y6a{bottom:369.000000px;}
.y131{bottom:372.240000px;}
.y2f{bottom:376.560000px;}
.yf7{bottom:378.000000px;}
.y158{bottom:380.520000px;}
.yda{bottom:385.500000px;}
.y69{bottom:386.280000px;}
.y130{bottom:389.520000px;}
.y92{bottom:390.240000px;}
.y2e{bottom:390.600000px;}
.yc6{bottom:394.500000px;}
.yf6{bottom:395.280000px;}
.y157{bottom:397.800000px;}
.yd9{bottom:403.500000px;}
.y2d{bottom:404.280000px;}
.y12f{bottom:406.800000px;}
.y91{bottom:407.520000px;}
.yf5{bottom:412.560000px;}
.y68{bottom:413.280000px;}
.y156{bottom:415.080000px;}
.y2c{bottom:419.400000px;}
.yd8{bottom:421.500000px;}
.y12e{bottom:424.080000px;}
.y90{bottom:424.440000px;}
.yf4{bottom:429.840000px;}
.y155{bottom:432.000000px;}
.y2b{bottom:436.680000px;}
.yd7{bottom:439.500000px;}
.y67{bottom:439.560000px;}
.y12d{bottom:441.000000px;}
.y8f{bottom:441.720000px;}
.yf3{bottom:447.120000px;}
.y154{bottom:449.280000px;}
.y2a{bottom:453.960000px;}
.yd4{bottom:457.500000px;}
.y12c{bottom:458.280000px;}
.y8e{bottom:459.000000px;}
.yf2{bottom:464.400000px;}
.y66{bottom:465.840000px;}
.y153{bottom:466.560000px;}
.y29{bottom:471.240000px;}
.yd3{bottom:475.500000px;}
.y12b{bottom:475.560000px;}
.y8d{bottom:476.280000px;}
.yf1{bottom:481.320000px;}
.y152{bottom:483.840000px;}
.y28{bottom:488.520000px;}
.y65{bottom:492.120000px;}
.y12a{bottom:492.840000px;}
.y8c{bottom:493.560000px;}
.yd2{bottom:497.160000px;}
.yf0{bottom:498.600000px;}
.y27{bottom:505.800000px;}
.y129{bottom:510.120000px;}
.yd1{bottom:514.440000px;}
.yef{bottom:515.880000px;}
.y64{bottom:518.400000px;}
.y8b{bottom:519.840000px;}
.y26{bottom:522.720000px;}
.y128{bottom:527.400000px;}
.yce{bottom:528.000000px;}
.yee{bottom:533.160000px;}
.y63{bottom:535.680000px;}
.y151{bottom:536.400000px;}
.y8a{bottom:537.120000px;}
.y25{bottom:540.000000px;}
.y127{bottom:544.680000px;}
.yed{bottom:550.440000px;}
.y150{bottom:553.680000px;}
.y89{bottom:554.400000px;}
.y24{bottom:557.280000px;}
.y62{bottom:561.960000px;}
.yec{bottom:567.720000px;}
.y14f{bottom:570.960000px;}
.y88{bottom:571.680000px;}
.y23{bottom:574.560000px;}
.y126{bottom:579.240000px;}
.yeb{bottom:585.000000px;}
.y61{bottom:588.240000px;}
.y87{bottom:588.960000px;}
.y22{bottom:591.840000px;}
.y125{bottom:596.520000px;}
.yea{bottom:602.280000px;}
.y14e{bottom:605.520000px;}
.y21{bottom:609.120000px;}
.y124{bottom:613.800000px;}
.y60{bottom:614.520000px;}
.y86{bottom:615.240000px;}
.ye9{bottom:616.320000px;}
.y14d{bottom:622.800000px;}
.y20{bottom:626.400000px;}
.y123{bottom:631.080000px;}
.y5f{bottom:631.800000px;}
.y14c{bottom:640.080000px;}
.y85{bottom:641.160000px;}
.y1f{bottom:643.680000px;}
.y122{bottom:648.000000px;}
.y5e{bottom:649.080000px;}
.yc5{bottom:656.280000px;}
.y14b{bottom:657.000000px;}
.y84{bottom:659.520000px;}
.y1e{bottom:660.960000px;}
.y121{bottom:665.280000px;}
.y5d{bottom:666.000000px;}
.yc1{bottom:670.500000px;}
.y14a{bottom:674.280000px;}
.y83{bottom:677.880000px;}
.y1d{bottom:678.240000px;}
.y120{bottom:682.560000px;}
.y5c{bottom:683.280000px;}
.yc4{bottom:688.500000px;}
.y149{bottom:691.560000px;}
.y1c{bottom:695.520000px;}
.y82{bottom:696.240000px;}
.y11f{bottom:699.840000px;}
.y5b{bottom:700.560000px;}
.yc3{bottom:706.500000px;}
.y148{bottom:708.840000px;}
.y1b{bottom:712.440000px;}
.y81{bottom:714.600000px;}
.y11e{bottom:717.120000px;}
.y5a{bottom:717.840000px;}
.yc2{bottom:724.500000px;}
.y147{bottom:726.120000px;}
.y1a{bottom:729.720000px;}
.y11d{bottom:734.400000px;}
.y59{bottom:735.120000px;}
.y80{bottom:741.960000px;}
.yb8{bottom:742.500000px;}
.y146{bottom:743.400000px;}
.y19{bottom:747.000000px;}
.y11c{bottom:751.680000px;}
.y58{bottom:752.400000px;}
.yc0{bottom:760.500000px;}
.y145{bottom:760.680000px;}
.y18{bottom:764.280000px;}
.y7f{bottom:768.240000px;}
.y11b{bottom:768.960000px;}
.y57{bottom:769.680000px;}
.y144{bottom:777.960000px;}
.ybf{bottom:778.500000px;}
.y17{bottom:781.560000px;}
.y7e{bottom:785.520000px;}
.y11a{bottom:786.240000px;}
.y56{bottom:786.960000px;}
.y143{bottom:795.240000px;}
.ybe{bottom:796.500000px;}
.y16{bottom:798.840000px;}
.y119{bottom:803.520000px;}
.y7d{bottom:803.880000px;}
.y55{bottom:804.240000px;}
.y142{bottom:812.520000px;}
.ybd{bottom:814.500000px;}
.y15{bottom:816.120000px;}
.y7c{bottom:821.160000px;}
.y54{bottom:821.520000px;}
.y118{bottom:829.800000px;}
.ybc{bottom:832.500000px;}
.y14{bottom:833.400000px;}
.y53{bottom:838.800000px;}
.y7b{bottom:839.520000px;}
.y117{bottom:846.720000px;}
.ybb{bottom:850.500000px;}
.y13{bottom:852.840000px;}
.ycb{bottom:855.000000px;}
.y52{bottom:855.720000px;}
.y7a{bottom:856.440000px;}
.y116{bottom:864.000000px;}
.yba{bottom:868.500000px;}
.y12{bottom:870.120000px;}
.y79{bottom:874.800000px;}
.y115{bottom:881.280000px;}
.y51{bottom:882.000000px;}
.ye8{bottom:885.240000px;}
.yb2{bottom:886.500000px;}
.y11{bottom:887.400000px;}
.y78{bottom:892.080000px;}
.y114{bottom:898.560000px;}
.y50{bottom:899.280000px;}
.yb7{bottom:904.500000px;}
.y10{bottom:906.840000px;}
.y141{bottom:907.560000px;}
.y77{bottom:910.440000px;}
.y113{bottom:915.840000px;}
.y4f{bottom:916.560000px;}
.yb5{bottom:922.500000px;}
.y76{bottom:927.720000px;}
.yf{bottom:929.520000px;}
.y112{bottom:933.120000px;}
.y4e{bottom:933.840000px;}
.yab{bottom:940.500000px;}
.ye{bottom:941.400000px;}
.y111{bottom:950.400000px;}
.y4d{bottom:951.120000px;}
.y75{bottom:955.080000px;}
.yb1{bottom:958.500000px;}
.yd{bottom:964.080000px;}
.y4c{bottom:968.400000px;}
.yc{bottom:975.960000px;}
.yb0{bottom:976.500000px;}
.y110{bottom:976.680000px;}
.y74{bottom:981.360000px;}
.y4b{bottom:985.680000px;}
.y10f{bottom:993.960000px;}
.yae{bottom:994.500000px;}
.yb{bottom:998.640000px;}
.y4a{bottom:1002.960000px;}
.y10e{bottom:1011.240000px;}
.ya7{bottom:1012.500000px;}
.y73{bottom:1015.920000px;}
.ya{bottom:1020.240000px;}
.y10d{bottom:1028.520000px;}
.y72{bottom:1034.280000px;}
.y49{bottom:1037.520000px;}
.y10c{bottom:1045.800000px;}
.y9{bottom:1050.480000px;}
.y71{bottom:1051.560000px;}
.y48{bottom:1054.800000px;}
.y10b{bottom:1062.720000px;}
.ya6{bottom:1068.840000px;}
.y70{bottom:1069.560000px;}
.y47{bottom:1071.720000px;}
.y8{bottom:1074.600000px;}
.y10a{bottom:1080.000000px;}
.ya4{bottom:1083.000000px;}
.y6f{bottom:1086.840000px;}
.y46{bottom:1089.000000px;}
.y109{bottom:1097.280000px;}
.ya3{bottom:1101.000000px;}
.y6e{bottom:1105.200000px;}
.y45{bottom:1106.280000px;}
.y7{bottom:1106.640000px;}
.y108{bottom:1114.560000px;}
.ya1{bottom:1119.000000px;}
.y6d{bottom:1122.480000px;}
.y44{bottom:1123.560000px;}
.y4{bottom:1134.720000px;}
.y6c{bottom:1139.760000px;}
.y43{bottom:1140.840000px;}
.y3{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y1{bottom:1193.400000px;}
.y41{bottom:1197.360000px;}
.h4{height:3.839063px;}
.hc{height:4.500000px;}
.he{height:18.000000px;}
.h19{height:19.500000px;}
.h9{height:26.274375px;}
.hb{height:32.994844px;}
.h10{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;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h11{height:72.000000px;}
.h1a{height:73.500000px;}
.hf{height:126.000000px;}
.h13{height:144.000000px;}
.h18{height:162.000000px;}
.h14{height:258.000000px;}
.h15{height:274.500000px;}
.h16{height:300.000000px;}
.h17{height:328.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w6{width:72.000000px;}
.wf{width:93.000000px;}
.w7{width:94.500000px;}
.w19{width:108.000000px;}
.w3{width:112.500000px;}
.we{width:114.000000px;}
.wd{width:115.500000px;}
.wc{width:145.500000px;}
.w5{width:148.500000px;}
.wa{width:153.000000px;}
.w15{width:163.500000px;}
.w18{width:169.500000px;}
.w14{width:177.000000px;}
.w4{width:178.500000px;}
.w16{width:189.000000px;}
.w9{width:196.500000px;}
.w17{width:211.500000px;}
.w10{width:222.000000px;}
.w13{width:225.000000px;}
.w8{width:237.000000px;}
.wb{width:313.500000px;}
.w12{width:334.500000px;}
.w11{width:342.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x12{left:1.560048px;}
.x1e{left:9.682560px;}
.x38{left:14.438952px;}
.x43{left:16.530012px;}
.x22{left:18.434880px;}
.x18{left:20.324688px;}
.x35{left:22.370280px;}
.x1c{left:24.928200px;}
.x1a{left:26.167236px;}
.x44{left:28.199880px;}
.x3c{left:30.075120px;}
.x2d{left:31.704696px;}
.x54{left:33.558360px;}
.x4a{left:34.641960px;}
.x26{left:35.864856px;}
.x1f{left:37.199688px;}
.x4b{left:38.392080px;}
.x3b{left:40.266960px;}
.x5b{left:42.742296px;}
.x3e{left:44.017080px;}
.x36{left:45.269520px;}
.x2a{left:48.342960px;}
.x47{left:49.423440px;}
.x2c{left:51.127320px;}
.x2f{left:53.775120px;}
.x28{left:55.792248px;}
.x42{left:57.117540px;}
.x24{left:60.945120px;}
.x3a{left:62.119992px;}
.x21{left:64.695240px;}
.x41{left:67.528920px;}
.x46{left:68.872200px;}
.x58{left:71.227440px;}
.x57{left:73.537344px;}
.x40{left:76.076292px;}
.x3f{left:78.991320px;}
.x23{left:81.157560px;}
.x3d{left:82.323840px;}
.x20{left:84.907320px;}
.x49{left:86.081160px;}
.x45{left:88.161240px;}
.x48{left:91.079976px;}
.x59{left:92.294676px;}
.x5e{left:97.732440px;}
.x5f{left:101.482560px;}
.x31{left:103.500000px;}
.x5{left:108.000000px;}
.x13{left:109.746108px;}
.x2e{left:110.782464px;}
.xb{left:115.304436px;}
.x8{left:116.622072px;}
.x4{left:121.562640px;}
.xd{left:129.908952px;}
.x14{left:135.000000px;}
.x32{left:157.305168px;}
.x11{left:160.500000px;}
.x17{left:192.000000px;}
.x9{left:193.034196px;}
.x39{left:195.000000px;}
.x27{left:201.000000px;}
.x30{left:226.880100px;}
.xa{left:260.190648px;}
.x25{left:265.844988px;}
.x63{left:269.997804px;}
.x4e{left:279.794880px;}
.x4c{left:292.844880px;}
.x50{left:297.434880px;}
.x2{left:298.937628px;}
.x19{left:304.500000px;}
.x51{left:306.704880px;}
.xe{left:317.715084px;}
.x61{left:320.785740px;}
.x5a{left:323.693496px;}
.x52{left:326.895984px;}
.x4f{left:329.564880px;}
.x53{left:331.500000px;}
.x16{left:335.428704px;}
.xf{left:369.804960px;}
.xc{left:395.641080px;}
.x33{left:417.000000px;}
.x29{left:436.500000px;}
.x3{left:446.474880px;}
.x4d{left:450.000000px;}
.x10{left:473.040000px;}
.x1b{left:481.500000px;}
.x15{left:500.040000px;}
.x5c{left:507.000000px;}
.x55{left:508.500000px;}
.x1{left:514.061640px;}
.x34{left:561.000000px;}
.x7{left:603.506520px;}
.x1d{left:630.000000px;}
.x2b{left:631.500000px;}
.x56{left:670.500000px;}
.x37{left:675.000000px;}
.x5d{left:676.500000px;}
.x60{left:714.134880px;}
.x62{left:743.474880px;}
.x6{left:759.861720px;}
@media print{
.v3{vertical-align:-32.000000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls2c{letter-spacing:-0.833280pt;}
.ls31{letter-spacing:-0.747264pt;}
.ls32{letter-spacing:-0.731136pt;}
.ls33{letter-spacing:-0.693504pt;}
.ls30{letter-spacing:-0.677376pt;}
.ls34{letter-spacing:-0.661248pt;}
.ls1b{letter-spacing:-0.424704pt;}
.ls19{letter-spacing:-0.408576pt;}
.ls2a{letter-spacing:-0.370944pt;}
.ls16{letter-spacing:-0.338688pt;}
.ls29{letter-spacing:-0.321024pt;}
.ls15{letter-spacing:-0.301056pt;}
.lse{letter-spacing:-0.284928pt;}
.ls18{letter-spacing:-0.268800pt;}
.ls28{letter-spacing:-0.243200pt;}
.ls2b{letter-spacing:-0.241920pt;}
.ls1a{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;}
.ls1c{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;}
.ls5{letter-spacing:0.053248pt;}
.ls4{letter-spacing:0.053376pt;}
.ls1f{letter-spacing:0.109824pt;}
.ls0{letter-spacing:0.142592pt;}
.ls20{letter-spacing:0.143616pt;}
.ls1{letter-spacing:0.207872pt;}
.ls6{letter-spacing:0.211200pt;}
.ls2{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.213760pt;}
.ls21{letter-spacing:0.215424pt;}
.ls1e{letter-spacing:0.253440pt;}
.ls14{letter-spacing:0.319232pt;}
.ls7{letter-spacing:2.462336pt;}
.ls2d{letter-spacing:3.440256pt;}
.ls2e{letter-spacing:3.960320pt;}
.ls35{letter-spacing:4.307328pt;}
.ls36{letter-spacing:6.260480pt;}
.ls23{letter-spacing:7.742720pt;}
.ls8{letter-spacing:8.235520pt;}
.ls38{letter-spacing:11.906304pt;}
.ls3a{letter-spacing:15.596800pt;}
.ls26{letter-spacing:18.127360pt;}
.ls37{letter-spacing:26.977280pt;}
.ls2f{letter-spacing:38.346240pt;}
.ls3b{letter-spacing:41.054720pt;}
.ls22{letter-spacing:48.726656pt;}
.ls25{letter-spacing:56.522240pt;}
.ls24{letter-spacing:56.523520pt;}
.ls39{letter-spacing:165.528704pt;}
.ls27{letter-spacing:1284.480000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.649344pt;}
.ws2{word-spacing:-14.614016pt;}
.ws7{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.332480pt;}
.ws18{word-spacing:-13.310976pt;}
.ws15{word-spacing:-13.300224pt;}
.ws10{word-spacing:-13.284096pt;}
.wse{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws11{word-spacing:-13.208832pt;}
.ws5{word-spacing:-13.189120pt;}
.ws3{word-spacing:-13.171456pt;}
.ws12{word-spacing:-13.171200pt;}
.ws4{word-spacing:-13.155072pt;}
.wsa{word-spacing:-13.138944pt;}
.ws6{word-spacing:-13.101312pt;}
.ws14{word-spacing:-13.069056pt;}
.ws9{word-spacing:-13.031424pt;}
.ws17{word-spacing:-12.692736pt;}
.ws16{word-spacing:-12.606720pt;}
.wsc{word-spacing:-12.160000pt;}
.wsd{word-spacing:-11.838976pt;}
.wsf{word-spacing:-0.053760pt;}
.wsb{word-spacing:0.000000pt;}
._19{margin-left:-3.527168pt;}
._9{margin-left:-2.010112pt;}
._0{margin-left:-0.904448pt;}
._1{width:0.909696pt;}
._2{width:2.638464pt;}
._4{width:3.821184pt;}
._3{width:5.074688pt;}
._7{width:6.773760pt;}
._5{width:8.395008pt;}
._23{width:9.408000pt;}
._6{width:10.326144pt;}
._16{width:12.096000pt;}
._10{width:14.353920pt;}
._a{width:15.697920pt;}
._14{width:16.826880pt;}
._e{width:17.955840pt;}
._b{width:19.729920pt;}
._8{width:20.805120pt;}
._f{width:21.884544pt;}
._1c{width:23.166336pt;}
._24{width:24.307968pt;}
._27{width:26.127360pt;}
._11{width:27.525120pt;}
._17{width:29.084160pt;}
._1f{width:30.284800pt;}
._1e{width:31.395840pt;}
._2a{width:32.901120pt;}
._1d{width:34.621440pt;}
._22{width:35.857920pt;}
._15{width:36.825600pt;}
._c{width:37.954560pt;}
._26{width:38.989312pt;}
._28{width:39.917056pt;}
._21{width:41.448960pt;}
._2c{width:43.213568pt;}
._20{width:44.244480pt;}
._25{width:46.287360pt;}
._1a{width:48.115200pt;}
._13{width:49.835520pt;}
._12{width:51.072000pt;}
._d{width:56.609280pt;}
._1b{width:66.017280pt;}
._2b{width:68.328960pt;}
._29{width:90.565888pt;}
._18{width:92.682240pt;}
.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;}
.y40{bottom:-13.813333pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:0.213333pt;}
.yc7{bottom:0.693333pt;}
.ycf{bottom:1.066667pt;}
.ycd{bottom:1.280000pt;}
.y3f{bottom:1.546667pt;}
.ycc{bottom:2.240000pt;}
.y96{bottom:3.253333pt;}
.yaa{bottom:3.360000pt;}
.ya2{bottom:3.413333pt;}
.ye1{bottom:4.213333pt;}
.yc8{bottom:6.133333pt;}
.yd0{bottom:10.346667pt;}
.ya8{bottom:11.040000pt;}
.ya5{bottom:11.413333pt;}
.yb4{bottom:11.680000pt;}
.ya9{bottom:18.720000pt;}
.yb6{bottom:19.360000pt;}
.yad{bottom:19.680000pt;}
.yb3{bottom:27.040000pt;}
.yaf{bottom:27.360000pt;}
.ye4{bottom:28.213333pt;}
.yac{bottom:35.040000pt;}
.y42{bottom:47.680000pt;}
.y99{bottom:51.253333pt;}
.y6{bottom:51.840000pt;}
.y3e{bottom:57.333333pt;}
.yb9{bottom:59.360000pt;}
.yd6{bottom:67.253333pt;}
.y5{bottom:76.800000pt;}
.y140{bottom:100.800000pt;}
.y107{bottom:105.280000pt;}
.y3d{bottom:105.600000pt;}
.y105{bottom:105.920000pt;}
.yc9{bottom:106.666667pt;}
.y167{bottom:108.160000pt;}
.ya0{bottom:114.560000pt;}
.y13f{bottom:116.160000pt;}
.y3c{bottom:120.960000pt;}
.y104{bottom:121.280000pt;}
.y166{bottom:123.520000pt;}
.y106{bottom:128.640000pt;}
.y9f{bottom:129.920000pt;}
.y13e{bottom:131.520000pt;}
.y3b{bottom:136.320000pt;}
.y103{bottom:136.640000pt;}
.y165{bottom:138.880000pt;}
.y98{bottom:142.666667pt;}
.y13d{bottom:146.880000pt;}
.y3a{bottom:151.680000pt;}
.y102{bottom:152.000000pt;}
.y164{bottom:154.240000pt;}
.ye7{bottom:154.880000pt;}
.y9e{bottom:158.666667pt;}
.y13c{bottom:162.240000pt;}
.ye3{bottom:166.666667pt;}
.y39{bottom:167.040000pt;}
.y101{bottom:167.360000pt;}
.y163{bottom:169.600000pt;}
.y9d{bottom:174.666667pt;}
.y13b{bottom:177.600000pt;}
.y38{bottom:182.400000pt;}
.ye6{bottom:182.666667pt;}
.y100{bottom:182.720000pt;}
.y162{bottom:184.960000pt;}
.y9c{bottom:190.666667pt;}
.y13a{bottom:192.960000pt;}
.y37{bottom:197.760000pt;}
.yff{bottom:198.080000pt;}
.ye5{bottom:198.666667pt;}
.y161{bottom:200.320000pt;}
.y9b{bottom:206.666667pt;}
.y139{bottom:208.320000pt;}
.y36{bottom:213.120000pt;}
.yfe{bottom:213.440000pt;}
.ye2{bottom:214.666667pt;}
.y160{bottom:215.360000pt;}
.y9a{bottom:222.666667pt;}
.y138{bottom:223.360000pt;}
.y35{bottom:228.480000pt;}
.yfd{bottom:228.800000pt;}
.ye0{bottom:230.666667pt;}
.y15f{bottom:230.720000pt;}
.y97{bottom:238.666667pt;}
.y137{bottom:238.720000pt;}
.y34{bottom:243.840000pt;}
.yfc{bottom:244.160000pt;}
.y15e{bottom:246.080000pt;}
.ydf{bottom:250.880000pt;}
.y136{bottom:254.080000pt;}
.y95{bottom:254.666667pt;}
.y33{bottom:259.200000pt;}
.y15d{bottom:261.440000pt;}
.yde{bottom:265.920000pt;}
.y135{bottom:269.440000pt;}
.y94{bottom:273.920000pt;}
.y32{bottom:274.240000pt;}
.yfb{bottom:274.560000pt;}
.y15c{bottom:276.800000pt;}
.yd5{bottom:278.666667pt;}
.y134{bottom:284.800000pt;}
.yfa{bottom:289.920000pt;}
.y15b{bottom:292.160000pt;}
.ydd{bottom:294.666667pt;}
.y93{bottom:297.280000pt;}
.y31{bottom:297.600000pt;}
.y133{bottom:300.160000pt;}
.yf9{bottom:305.280000pt;}
.y15a{bottom:307.520000pt;}
.ydc{bottom:310.666667pt;}
.y6b{bottom:312.640000pt;}
.y132{bottom:315.520000pt;}
.yf8{bottom:320.640000pt;}
.y30{bottom:322.240000pt;}
.y159{bottom:322.880000pt;}
.ydb{bottom:326.666667pt;}
.y6a{bottom:328.000000pt;}
.y131{bottom:330.880000pt;}
.y2f{bottom:334.720000pt;}
.yf7{bottom:336.000000pt;}
.y158{bottom:338.240000pt;}
.yda{bottom:342.666667pt;}
.y69{bottom:343.360000pt;}
.y130{bottom:346.240000pt;}
.y92{bottom:346.880000pt;}
.y2e{bottom:347.200000pt;}
.yc6{bottom:350.666667pt;}
.yf6{bottom:351.360000pt;}
.y157{bottom:353.600000pt;}
.yd9{bottom:358.666667pt;}
.y2d{bottom:359.360000pt;}
.y12f{bottom:361.600000pt;}
.y91{bottom:362.240000pt;}
.yf5{bottom:366.720000pt;}
.y68{bottom:367.360000pt;}
.y156{bottom:368.960000pt;}
.y2c{bottom:372.800000pt;}
.yd8{bottom:374.666667pt;}
.y12e{bottom:376.960000pt;}
.y90{bottom:377.280000pt;}
.yf4{bottom:382.080000pt;}
.y155{bottom:384.000000pt;}
.y2b{bottom:388.160000pt;}
.yd7{bottom:390.666667pt;}
.y67{bottom:390.720000pt;}
.y12d{bottom:392.000000pt;}
.y8f{bottom:392.640000pt;}
.yf3{bottom:397.440000pt;}
.y154{bottom:399.360000pt;}
.y2a{bottom:403.520000pt;}
.yd4{bottom:406.666667pt;}
.y12c{bottom:407.360000pt;}
.y8e{bottom:408.000000pt;}
.yf2{bottom:412.800000pt;}
.y66{bottom:414.080000pt;}
.y153{bottom:414.720000pt;}
.y29{bottom:418.880000pt;}
.yd3{bottom:422.666667pt;}
.y12b{bottom:422.720000pt;}
.y8d{bottom:423.360000pt;}
.yf1{bottom:427.840000pt;}
.y152{bottom:430.080000pt;}
.y28{bottom:434.240000pt;}
.y65{bottom:437.440000pt;}
.y12a{bottom:438.080000pt;}
.y8c{bottom:438.720000pt;}
.yd2{bottom:441.920000pt;}
.yf0{bottom:443.200000pt;}
.y27{bottom:449.600000pt;}
.y129{bottom:453.440000pt;}
.yd1{bottom:457.280000pt;}
.yef{bottom:458.560000pt;}
.y64{bottom:460.800000pt;}
.y8b{bottom:462.080000pt;}
.y26{bottom:464.640000pt;}
.y128{bottom:468.800000pt;}
.yce{bottom:469.333333pt;}
.yee{bottom:473.920000pt;}
.y63{bottom:476.160000pt;}
.y151{bottom:476.800000pt;}
.y8a{bottom:477.440000pt;}
.y25{bottom:480.000000pt;}
.y127{bottom:484.160000pt;}
.yed{bottom:489.280000pt;}
.y150{bottom:492.160000pt;}
.y89{bottom:492.800000pt;}
.y24{bottom:495.360000pt;}
.y62{bottom:499.520000pt;}
.yec{bottom:504.640000pt;}
.y14f{bottom:507.520000pt;}
.y88{bottom:508.160000pt;}
.y23{bottom:510.720000pt;}
.y126{bottom:514.880000pt;}
.yeb{bottom:520.000000pt;}
.y61{bottom:522.880000pt;}
.y87{bottom:523.520000pt;}
.y22{bottom:526.080000pt;}
.y125{bottom:530.240000pt;}
.yea{bottom:535.360000pt;}
.y14e{bottom:538.240000pt;}
.y21{bottom:541.440000pt;}
.y124{bottom:545.600000pt;}
.y60{bottom:546.240000pt;}
.y86{bottom:546.880000pt;}
.ye9{bottom:547.840000pt;}
.y14d{bottom:553.600000pt;}
.y20{bottom:556.800000pt;}
.y123{bottom:560.960000pt;}
.y5f{bottom:561.600000pt;}
.y14c{bottom:568.960000pt;}
.y85{bottom:569.920000pt;}
.y1f{bottom:572.160000pt;}
.y122{bottom:576.000000pt;}
.y5e{bottom:576.960000pt;}
.yc5{bottom:583.360000pt;}
.y14b{bottom:584.000000pt;}
.y84{bottom:586.240000pt;}
.y1e{bottom:587.520000pt;}
.y121{bottom:591.360000pt;}
.y5d{bottom:592.000000pt;}
.yc1{bottom:596.000000pt;}
.y14a{bottom:599.360000pt;}
.y83{bottom:602.560000pt;}
.y1d{bottom:602.880000pt;}
.y120{bottom:606.720000pt;}
.y5c{bottom:607.360000pt;}
.yc4{bottom:612.000000pt;}
.y149{bottom:614.720000pt;}
.y1c{bottom:618.240000pt;}
.y82{bottom:618.880000pt;}
.y11f{bottom:622.080000pt;}
.y5b{bottom:622.720000pt;}
.yc3{bottom:628.000000pt;}
.y148{bottom:630.080000pt;}
.y1b{bottom:633.280000pt;}
.y81{bottom:635.200000pt;}
.y11e{bottom:637.440000pt;}
.y5a{bottom:638.080000pt;}
.yc2{bottom:644.000000pt;}
.y147{bottom:645.440000pt;}
.y1a{bottom:648.640000pt;}
.y11d{bottom:652.800000pt;}
.y59{bottom:653.440000pt;}
.y80{bottom:659.520000pt;}
.yb8{bottom:660.000000pt;}
.y146{bottom:660.800000pt;}
.y19{bottom:664.000000pt;}
.y11c{bottom:668.160000pt;}
.y58{bottom:668.800000pt;}
.yc0{bottom:676.000000pt;}
.y145{bottom:676.160000pt;}
.y18{bottom:679.360000pt;}
.y7f{bottom:682.880000pt;}
.y11b{bottom:683.520000pt;}
.y57{bottom:684.160000pt;}
.y144{bottom:691.520000pt;}
.ybf{bottom:692.000000pt;}
.y17{bottom:694.720000pt;}
.y7e{bottom:698.240000pt;}
.y11a{bottom:698.880000pt;}
.y56{bottom:699.520000pt;}
.y143{bottom:706.880000pt;}
.ybe{bottom:708.000000pt;}
.y16{bottom:710.080000pt;}
.y119{bottom:714.240000pt;}
.y7d{bottom:714.560000pt;}
.y55{bottom:714.880000pt;}
.y142{bottom:722.240000pt;}
.ybd{bottom:724.000000pt;}
.y15{bottom:725.440000pt;}
.y7c{bottom:729.920000pt;}
.y54{bottom:730.240000pt;}
.y118{bottom:737.600000pt;}
.ybc{bottom:740.000000pt;}
.y14{bottom:740.800000pt;}
.y53{bottom:745.600000pt;}
.y7b{bottom:746.240000pt;}
.y117{bottom:752.640000pt;}
.ybb{bottom:756.000000pt;}
.y13{bottom:758.080000pt;}
.ycb{bottom:760.000000pt;}
.y52{bottom:760.640000pt;}
.y7a{bottom:761.280000pt;}
.y116{bottom:768.000000pt;}
.yba{bottom:772.000000pt;}
.y12{bottom:773.440000pt;}
.y79{bottom:777.600000pt;}
.y115{bottom:783.360000pt;}
.y51{bottom:784.000000pt;}
.ye8{bottom:786.880000pt;}
.yb2{bottom:788.000000pt;}
.y11{bottom:788.800000pt;}
.y78{bottom:792.960000pt;}
.y114{bottom:798.720000pt;}
.y50{bottom:799.360000pt;}
.yb7{bottom:804.000000pt;}
.y10{bottom:806.080000pt;}
.y141{bottom:806.720000pt;}
.y77{bottom:809.280000pt;}
.y113{bottom:814.080000pt;}
.y4f{bottom:814.720000pt;}
.yb5{bottom:820.000000pt;}
.y76{bottom:824.640000pt;}
.yf{bottom:826.240000pt;}
.y112{bottom:829.440000pt;}
.y4e{bottom:830.080000pt;}
.yab{bottom:836.000000pt;}
.ye{bottom:836.800000pt;}
.y111{bottom:844.800000pt;}
.y4d{bottom:845.440000pt;}
.y75{bottom:848.960000pt;}
.yb1{bottom:852.000000pt;}
.yd{bottom:856.960000pt;}
.y4c{bottom:860.800000pt;}
.yc{bottom:867.520000pt;}
.yb0{bottom:868.000000pt;}
.y110{bottom:868.160000pt;}
.y74{bottom:872.320000pt;}
.y4b{bottom:876.160000pt;}
.y10f{bottom:883.520000pt;}
.yae{bottom:884.000000pt;}
.yb{bottom:887.680000pt;}
.y4a{bottom:891.520000pt;}
.y10e{bottom:898.880000pt;}
.ya7{bottom:900.000000pt;}
.y73{bottom:903.040000pt;}
.ya{bottom:906.880000pt;}
.y10d{bottom:914.240000pt;}
.y72{bottom:919.360000pt;}
.y49{bottom:922.240000pt;}
.y10c{bottom:929.600000pt;}
.y9{bottom:933.760000pt;}
.y71{bottom:934.720000pt;}
.y48{bottom:937.600000pt;}
.y10b{bottom:944.640000pt;}
.ya6{bottom:950.080000pt;}
.y70{bottom:950.720000pt;}
.y47{bottom:952.640000pt;}
.y8{bottom:955.200000pt;}
.y10a{bottom:960.000000pt;}
.ya4{bottom:962.666667pt;}
.y6f{bottom:966.080000pt;}
.y46{bottom:968.000000pt;}
.y109{bottom:975.360000pt;}
.ya3{bottom:978.666667pt;}
.y6e{bottom:982.400000pt;}
.y45{bottom:983.360000pt;}
.y7{bottom:983.680000pt;}
.y108{bottom:990.720000pt;}
.ya1{bottom:994.666667pt;}
.y6d{bottom:997.760000pt;}
.y44{bottom:998.720000pt;}
.y4{bottom:1008.640000pt;}
.y6c{bottom:1013.120000pt;}
.y43{bottom:1014.080000pt;}
.y3{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y1{bottom:1060.800000pt;}
.y41{bottom:1064.320000pt;}
.h4{height:3.412500pt;}
.hc{height:4.000000pt;}
.he{height:16.000000pt;}
.h19{height:17.333333pt;}
.h9{height:23.355000pt;}
.hb{height:29.328750pt;}
.h10{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;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h11{height:64.000000pt;}
.h1a{height:65.333333pt;}
.hf{height:112.000000pt;}
.h13{height:128.000000pt;}
.h18{height:144.000000pt;}
.h14{height:229.333333pt;}
.h15{height:244.000000pt;}
.h16{height:266.666667pt;}
.h17{height:292.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w6{width:64.000000pt;}
.wf{width:82.666667pt;}
.w7{width:84.000000pt;}
.w19{width:96.000000pt;}
.w3{width:100.000000pt;}
.we{width:101.333333pt;}
.wd{width:102.666667pt;}
.wc{width:129.333333pt;}
.w5{width:132.000000pt;}
.wa{width:136.000000pt;}
.w15{width:145.333333pt;}
.w18{width:150.666667pt;}
.w14{width:157.333333pt;}
.w4{width:158.666667pt;}
.w16{width:168.000000pt;}
.w9{width:174.666667pt;}
.w17{width:188.000000pt;}
.w10{width:197.333333pt;}
.w13{width:200.000000pt;}
.w8{width:210.666667pt;}
.wb{width:278.666667pt;}
.w12{width:297.333333pt;}
.w11{width:304.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x12{left:1.386709pt;}
.x1e{left:8.606720pt;}
.x38{left:12.834624pt;}
.x43{left:14.693344pt;}
.x22{left:16.386560pt;}
.x18{left:18.066389pt;}
.x35{left:19.884693pt;}
.x1c{left:22.158400pt;}
.x1a{left:23.259765pt;}
.x44{left:25.066560pt;}
.x3c{left:26.733440pt;}
.x2d{left:28.181952pt;}
.x54{left:29.829653pt;}
.x4a{left:30.792853pt;}
.x26{left:31.879872pt;}
.x1f{left:33.066389pt;}
.x4b{left:34.126293pt;}
.x3b{left:35.792853pt;}
.x5b{left:37.993152pt;}
.x3e{left:39.126293pt;}
.x36{left:40.239573pt;}
.x2a{left:42.971520pt;}
.x47{left:43.931947pt;}
.x2c{left:45.446507pt;}
.x2f{left:47.800107pt;}
.x28{left:49.593109pt;}
.x42{left:50.771147pt;}
.x24{left:54.173440pt;}
.x3a{left:55.217771pt;}
.x21{left:57.506880pt;}
.x41{left:60.025707pt;}
.x46{left:61.219733pt;}
.x58{left:63.313280pt;}
.x57{left:65.366528pt;}
.x40{left:67.623371pt;}
.x3f{left:70.214507pt;}
.x23{left:72.140053pt;}
.x3d{left:73.176747pt;}
.x20{left:75.473173pt;}
.x49{left:76.516587pt;}
.x45{left:78.365547pt;}
.x48{left:80.959979pt;}
.x59{left:82.039712pt;}
.x5e{left:86.873280pt;}
.x5f{left:90.206720pt;}
.x31{left:92.000000pt;}
.x5{left:96.000000pt;}
.x13{left:97.552096pt;}
.x2e{left:98.473301pt;}
.xb{left:102.492832pt;}
.x8{left:103.664064pt;}
.x4{left:108.055680pt;}
.xd{left:115.474624pt;}
.x14{left:120.000000pt;}
.x32{left:139.826816pt;}
.x11{left:142.666667pt;}
.x17{left:170.666667pt;}
.x9{left:171.585952pt;}
.x39{left:173.333333pt;}
.x27{left:178.666667pt;}
.x30{left:201.671200pt;}
.xa{left:231.280576pt;}
.x25{left:236.306656pt;}
.x63{left:239.998048pt;}
.x4e{left:248.706560pt;}
.x4c{left:260.306560pt;}
.x50{left:264.386560pt;}
.x2{left:265.722336pt;}
.x19{left:270.666667pt;}
.x51{left:272.626560pt;}
.xe{left:282.413408pt;}
.x61{left:285.142880pt;}
.x5a{left:287.727552pt;}
.x52{left:290.574208pt;}
.x4f{left:292.946560pt;}
.x53{left:294.666667pt;}
.x16{left:298.158848pt;}
.xf{left:328.715520pt;}
.xc{left:351.680960pt;}
.x33{left:370.666667pt;}
.x29{left:388.000000pt;}
.x3{left:396.866560pt;}
.x4d{left:400.000000pt;}
.x10{left:420.480000pt;}
.x1b{left:428.000000pt;}
.x15{left:444.480000pt;}
.x5c{left:450.666667pt;}
.x55{left:452.000000pt;}
.x1{left:456.943680pt;}
.x34{left:498.666667pt;}
.x7{left:536.450240pt;}
.x1d{left:560.000000pt;}
.x2b{left:561.333333pt;}
.x56{left:596.000000pt;}
.x37{left:600.000000pt;}
.x5d{left:601.333333pt;}
.x60{left:634.786560pt;}
.x62{left:660.866560pt;}
.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; }
  