
    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_7e252efaeeb09ccd68e183df.woff2')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_490553d40b8cbe77fd4dc9b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_cd5004841267af7b14c8dbd4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_24c50bb4f702b9d1fc581b65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.687500;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_55afbd2099773d7c7a9a1758.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_03dae6cfab6214d2dd9f9291.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6c31cefddcff2f619333bd01.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_71aca4b9ed70337c549674a5.woff2')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_fe6bdba5ee18c7cca3d0a4ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689453;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_2d9756d5e428825f3157f345.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0c8ebf93b19fd76ead678bb6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6c91d17bd6f2d3a4f4df3643.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_773707c0b52fe0a5e162a80d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f5feeab1b621b04ccdd8afb7.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.720000px;}
.v1{vertical-align:24.480000px;}
.ls3e{letter-spacing:-0.629280px;}
.ls37{letter-spacing:-0.508896px;}
.ls3d{letter-spacing:-0.481536px;}
.ls25{letter-spacing:-0.448704px;}
.ls10{letter-spacing:-0.417312px;}
.ls3c{letter-spacing:-0.393984px;}
.ls19{letter-spacing:-0.381024px;}
.ls3b{letter-spacing:-0.361152px;}
.ls11{letter-spacing:-0.338688px;}
.ls38{letter-spacing:-0.328320px;}
.lsf{letter-spacing:-0.320544px;}
.ls18{letter-spacing:-0.302400px;}
.lse{letter-spacing:-0.260064px;}
.ls14{letter-spacing:-0.241920px;}
.ls3a{letter-spacing:-0.240768px;}
.ls13{letter-spacing:-0.223776px;}
.ls39{letter-spacing:-0.207936px;}
.lsd{letter-spacing:-0.181440px;}
.ls36{letter-spacing:-0.180576px;}
.ls16{letter-spacing:-0.175392px;}
.ls15{letter-spacing:-0.157248px;}
.ls12{letter-spacing:-0.145152px;}
.lsb{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.001440px;}
.ls1c{letter-spacing:0.001584px;}
.ls1b{letter-spacing:0.002304px;}
.ls7{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.108864px;}
.ls2{letter-spacing:0.116640px;}
.ls9{letter-spacing:0.118800px;}
.ls21{letter-spacing:0.119520px;}
.ls20{letter-spacing:0.119952px;}
.ls22{letter-spacing:0.120096px;}
.ls3f{letter-spacing:0.123552px;}
.ls1{letter-spacing:0.147744px;}
.ls35{letter-spacing:0.159840px;}
.ls23{letter-spacing:0.160128px;}
.ls1f{letter-spacing:0.160272px;}
.ls27{letter-spacing:0.161568px;}
.ls30{letter-spacing:0.194832px;}
.ls2e{letter-spacing:0.204336px;}
.ls33{letter-spacing:0.213840px;}
.ls34{letter-spacing:0.223344px;}
.lsa{letter-spacing:0.237600px;}
.ls6{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.239904px;}
.ls5{letter-spacing:0.240048px;}
.ls4{letter-spacing:0.240480px;}
.lsc{letter-spacing:0.242352px;}
.ls2a{letter-spacing:0.256608px;}
.ls2b{letter-spacing:0.266112px;}
.ls31{letter-spacing:0.270864px;}
.ls2c{letter-spacing:0.275616px;}
.ls26{letter-spacing:0.285120px;}
.ls28{letter-spacing:0.318384px;}
.ls29{letter-spacing:0.356400px;}
.ls2f{letter-spacing:0.365904px;}
.ls2d{letter-spacing:0.432432px;}
.ls1e{letter-spacing:1.572912px;}
.ls24{letter-spacing:2.099808px;}
.ls17{letter-spacing:3.690720px;}
.ls1a{letter-spacing:4.203360px;}
.ls32{letter-spacing:6.104160px;}
.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;}
}
.ws1{word-spacing:-18.014400px;}
.wsa{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws7{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.944608px;}
.ws14{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.wsc{word-spacing:-14.738976px;}
.ws17{word-spacing:-13.680000px;}
.ws1d{word-spacing:-13.472064px;}
.ws1a{word-spacing:-13.439232px;}
.ws15{word-spacing:-13.351680px;}
.ws16{word-spacing:-13.318848px;}
.ws1c{word-spacing:-13.198464px;}
.ws1b{word-spacing:-13.171104px;}
.ws11{word-spacing:-12.245904px;}
.ws10{word-spacing:-12.236400px;}
.wse{word-spacing:-12.198384px;}
.ws19{word-spacing:-12.165120px;}
.wsf{word-spacing:-12.136608px;}
.ws6{word-spacing:-12.122352px;}
.ws0{word-spacing:-12.120480px;}
.ws12{word-spacing:-12.119040px;}
.ws3{word-spacing:-12.117600px;}
.ws18{word-spacing:-12.103344px;}
.ws13{word-spacing:-12.074832px;}
.wsd{word-spacing:-12.041568px;}
.ws1e{word-spacing:-12.003552px;}
.ws2{word-spacing:-11.998800px;}
.ws4{word-spacing:-11.880000px;}
.ws9{word-spacing:0.000000px;}
._13{margin-left:-4.458240px;}
._10{margin-left:-3.274560px;}
._4{margin-left:-1.598400px;}
._0{width:1.616400px;}
._1{width:3.242736px;}
._c{width:4.536000px;}
._5{width:6.516000px;}
._11{width:7.531200px;}
._15{width:8.548992px;}
._d{width:9.572400px;}
._e{width:10.687824px;}
._6{width:11.988000px;}
._3{width:13.104000px;}
._17{width:14.368176px;}
._12{width:15.588000px;}
._9{width:16.939152px;}
._f{width:17.951328px;}
._b{width:19.118160px;}
._a{width:20.240208px;}
._16{width:21.434400px;}
._1c{width:23.176368px;}
._8{width:24.391296px;}
._7{width:25.759152px;}
._2{width:27.178992px;}
._26{width:28.206000px;}
._1d{width:29.504304px;}
._1a{width:30.846096px;}
._14{width:31.983408px;}
._1e{width:33.084000px;}
._20{width:36.842400px;}
._23{width:38.822400px;}
._24{width:40.212000px;}
._25{width:48.340800px;}
._22{width:51.399792px;}
._18{width:71.465904px;}
._19{width:98.704800px;}
._21{width:104.399424px;}
._1b{width:117.878400px;}
._1f{width:140.399424px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(16,16,16);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs2{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y3d{bottom:-13.860000px;}
.y0{bottom:0.000000px;}
.y130{bottom:3.120000px;}
.y11f{bottom:3.180000px;}
.y12c{bottom:3.300000px;}
.y11c{bottom:3.360000px;}
.yec{bottom:3.420000px;}
.y110{bottom:3.540000px;}
.yfa{bottom:3.660000px;}
.y113{bottom:3.720000px;}
.y121{bottom:3.840000px;}
.y167{bottom:3.900000px;}
.y12e{bottom:3.960000px;}
.y105{bottom:4.020000px;}
.y135{bottom:4.260000px;}
.y13f{bottom:4.320000px;}
.y10e{bottom:4.380000px;}
.y108{bottom:4.440000px;}
.y127{bottom:4.500000px;}
.y11a{bottom:4.560000px;}
.yf1{bottom:4.680000px;}
.y137{bottom:4.920000px;}
.y102{bottom:4.980000px;}
.y161{bottom:5.160000px;}
.yff{bottom:5.280000px;}
.yf5{bottom:5.880000px;}
.y3c{bottom:5.940000px;}
.yf3{bottom:6.240000px;}
.y163{bottom:6.720000px;}
.yf0{bottom:6.840000px;}
.y15f{bottom:6.960000px;}
.yfe{bottom:7.080000px;}
.y15d{bottom:9.480000px;}
.yd0{bottom:9.780000px;}
.yc0{bottom:9.900000px;}
.yd9{bottom:9.960000px;}
.yc2{bottom:10.020000px;}
.yd2{bottom:10.260000px;}
.yba{bottom:10.320000px;}
.yd4{bottom:10.380000px;}
.yc8{bottom:10.440000px;}
.yc4{bottom:10.500000px;}
.yb6{bottom:10.560000px;}
.yc6{bottom:10.620000px;}
.ybc{bottom:10.800000px;}
.yb2{bottom:10.860000px;}
.yb8{bottom:10.920000px;}
.yd7{bottom:10.980000px;}
.yca{bottom:11.040000px;}
.yce{bottom:11.160000px;}
.ycc{bottom:11.400000px;}
.yaf{bottom:12.000000px;}
.yb4{bottom:12.840000px;}
.yb7{bottom:13.080000px;}
.ydc{bottom:13.140000px;}
.ycb{bottom:13.560000px;}
.ybd{bottom:15.120000px;}
.yee{bottom:15.840000px;}
.y160{bottom:16.320000px;}
.yfc{bottom:16.440000px;}
.yf7{bottom:17.460000px;}
.y166{bottom:17.580000px;}
.y104{bottom:17.700000px;}
.y13a{bottom:18.660000px;}
.y132{bottom:18.780000px;}
.y10c{bottom:18.840000px;}
.yeb{bottom:18.900000px;}
.y15a{bottom:19.020000px;}
.yf9{bottom:19.140000px;}
.y112{bottom:19.200000px;}
.y125{bottom:19.320000px;}
.y123{bottom:19.500000px;}
.y119{bottom:20.040000px;}
.y13c{bottom:20.340000px;}
.y3b{bottom:22.860000px;}
.y15c{bottom:23.160000px;}
.yb1{bottom:31.740000px;}
.ydb{bottom:31.860000px;}
.y10b{bottom:34.320000px;}
.y116{bottom:34.680000px;}
.y3a{bottom:40.140000px;}
.y10a{bottom:49.800000px;}
.y39{bottom:57.420000px;}
.y38{bottom:74.700000px;}
.y37{bottom:91.980000px;}
.y36{bottom:109.260000px;}
.ye9{bottom:112.140000px;}
.ya0{bottom:112.860000px;}
.y5f{bottom:114.300000px;}
.y9d{bottom:117.540000px;}
.y92{bottom:118.260000px;}
.y14d{bottom:121.500000px;}
.y35{bottom:126.540000px;}
.y77{bottom:128.340000px;}
.y2f{bottom:140.580000px;}
.y14c{bottom:142.020000px;}
.ye8{bottom:143.100000px;}
.y34{bottom:143.820000px;}
.y9f{bottom:144.180000px;}
.y5e{bottom:145.260000px;}
.y9c{bottom:148.500000px;}
.y91{bottom:149.220000px;}
.y76{bottom:159.300000px;}
.y2e{bottom:161.100000px;}
.y14b{bottom:162.900000px;}
.ye7{bottom:174.420000px;}
.y9e{bottom:175.860000px;}
.y5d{bottom:176.220000px;}
.y33{bottom:178.380000px;}
.y9b{bottom:179.820000px;}
.y90{bottom:180.180000px;}
.y2d{bottom:181.980000px;}
.y14a{bottom:183.420000px;}
.y75{bottom:190.260000px;}
.y32{bottom:195.660000px;}
.y2c{bottom:202.500000px;}
.y149{bottom:204.300000px;}
.ye6{bottom:205.380000px;}
.y5c{bottom:207.180000px;}
.y9a{bottom:210.780000px;}
.y8f{bottom:211.500000px;}
.y31{bottom:212.580000px;}
.y74{bottom:221.220000px;}
.y2b{bottom:223.380000px;}
.y148{bottom:224.820000px;}
.ye5{bottom:236.340000px;}
.y5b{bottom:238.500000px;}
.y99{bottom:241.740000px;}
.y8e{bottom:242.460000px;}
.y2a{bottom:243.900000px;}
.y147{bottom:245.340000px;}
.y73{bottom:252.540000px;}
.yad{bottom:259.380000px;}
.y146{bottom:266.220000px;}
.ye4{bottom:267.300000px;}
.y5a{bottom:269.460000px;}
.y29{bottom:270.900000px;}
.y98{bottom:272.700000px;}
.y8d{bottom:273.420000px;}
.y72{bottom:283.500000px;}
.y28{bottom:285.300000px;}
.y145{bottom:286.740000px;}
.yac{bottom:290.340000px;}
.ye3{bottom:298.260000px;}
.y59{bottom:300.420000px;}
.y97{bottom:304.020000px;}
.y8c{bottom:304.380000px;}
.y144{bottom:307.620000px;}
.y27{bottom:312.300000px;}
.y71{bottom:314.460000px;}
.yab{bottom:321.660000px;}
.y143{bottom:328.140000px;}
.ye2{bottom:329.580000px;}
.y58{bottom:331.380000px;}
.y26{bottom:332.820000px;}
.y96{bottom:334.980000px;}
.y8b{bottom:335.700000px;}
.y103{bottom:345.000000px;}
.y70{bottom:345.420000px;}
.y142{bottom:349.020000px;}
.yaa{bottom:352.620000px;}
.y25{bottom:353.700000px;}
.y57{bottom:362.700000px;}
.y95{bottom:365.940000px;}
.y8a{bottom:366.660000px;}
.y24{bottom:368.100000px;}
.y141{bottom:369.540000px;}
.y101{bottom:375.000000px;}
.y6f{bottom:376.740000px;}
.ya9{bottom:383.580000px;}
.y94{bottom:385.380000px;}
.y140{bottom:390.420000px;}
.y100{bottom:391.500000px;}
.y56{bottom:393.660000px;}
.y23{bottom:395.100000px;}
.y89{bottom:397.620000px;}
.y93{bottom:399.420000px;}
.y13e{bottom:400.500000px;}
.y6e{bottom:407.700000px;}
.yfb{bottom:412.500000px;}
.ya8{bottom:414.540000px;}
.y22{bottom:415.620000px;}
.y13d{bottom:417.000000px;}
.y55{bottom:424.620000px;}
.y88{bottom:428.580000px;}
.yfd{bottom:430.500000px;}
.y13b{bottom:432.000000px;}
.y21{bottom:436.500000px;}
.y6d{bottom:438.660000px;}
.ya7{bottom:445.860000px;}
.yf8{bottom:453.000000px;}
.y54{bottom:455.580000px;}
.y20{bottom:457.020000px;}
.y87{bottom:459.900000px;}
.y139{bottom:465.000000px;}
.y6c{bottom:469.620000px;}
.ya6{bottom:476.820000px;}
.y1f{bottom:477.900000px;}
.y53{bottom:486.540000px;}
.y86{bottom:490.860000px;}
.y1e{bottom:492.300000px;}
.y138{bottom:495.000000px;}
.ye1{bottom:496.980000px;}
.y6b{bottom:500.940000px;}
.ya5{bottom:507.780000px;}
.y136{bottom:511.500000px;}
.yf6{bottom:513.000000px;}
.y52{bottom:517.860000px;}
.y1d{bottom:519.300000px;}
.y85{bottom:521.820000px;}
.y134{bottom:528.000000px;}
.y6a{bottom:531.900000px;}
.ya4{bottom:538.740000px;}
.y1c{bottom:539.820000px;}
.yf4{bottom:541.500000px;}
.y133{bottom:544.500000px;}
.y51{bottom:548.820000px;}
.y84{bottom:552.780000px;}
.yf2{bottom:559.500000px;}
.y1b{bottom:560.700000px;}
.y131{bottom:561.000000px;}
.y69{bottom:562.860000px;}
.ya3{bottom:570.060000px;}
.y50{bottom:579.780000px;}
.yed{bottom:580.500000px;}
.y1a{bottom:581.220000px;}
.y83{bottom:584.100000px;}
.y12f{bottom:592.500000px;}
.y68{bottom:593.820000px;}
.yef{bottom:598.500000px;}
.ya2{bottom:601.020000px;}
.y19{bottom:602.100000px;}
.y12d{bottom:607.500000px;}
.y4f{bottom:610.740000px;}
.y82{bottom:615.060000px;}
.y18{bottom:616.500000px;}
.yea{bottom:621.000000px;}
.y12b{bottom:624.000000px;}
.y67{bottom:625.140000px;}
.ya1{bottom:631.980000px;}
.y12a{bottom:639.000000px;}
.y4e{bottom:642.060000px;}
.y17{bottom:643.500000px;}
.y81{bottom:646.020000px;}
.yda{bottom:648.000000px;}
.y129{bottom:655.500000px;}
.y66{bottom:656.100000px;}
.y16{bottom:664.020000px;}
.ye0{bottom:666.900000px;}
.y4d{bottom:673.020000px;}
.y80{bottom:676.980000px;}
.y15{bottom:678.780000px;}
.y128{bottom:687.000000px;}
.y65{bottom:687.060000px;}
.yd8{bottom:691.500000px;}
.ydf{bottom:692.820000px;}
.y14{bottom:699.300000px;}
.y126{bottom:702.000000px;}
.y4c{bottom:703.980000px;}
.y7f{bottom:708.300000px;}
.yd6{bottom:711.000000px;}
.y64{bottom:718.020000px;}
.y124{bottom:718.500000px;}
.yde{bottom:718.740000px;}
.y13{bottom:726.300000px;}
.yd5{bottom:732.000000px;}
.ydd{bottom:732.780000px;}
.y4b{bottom:734.940000px;}
.y7e{bottom:739.260000px;}
.y12{bottom:740.700000px;}
.y63{bottom:749.340000px;}
.y122{bottom:750.000000px;}
.yd3{bottom:753.000000px;}
.y11{bottom:761.580000px;}
.y4a{bottom:766.260000px;}
.y7d{bottom:770.220000px;}
.yd1{bottom:774.000000px;}
.y62{bottom:780.300000px;}
.y120{bottom:781.500000px;}
.y10{bottom:782.100000px;}
.y7c{bottom:790.380000px;}
.ycf{bottom:795.000000px;}
.y49{bottom:797.220000px;}
.y11e{bottom:798.000000px;}
.yf{bottom:802.980000px;}
.y7b{bottom:807.660000px;}
.y61{bottom:809.100000px;}
.y11d{bottom:813.000000px;}
.ycd{bottom:814.500000px;}
.ye{bottom:823.500000px;}
.y7a{bottom:824.940000px;}
.y48{bottom:828.180000px;}
.y11b{bottom:829.500000px;}
.y60{bottom:831.780000px;}
.y158{bottom:835.020000px;}
.yc9{bottom:835.500000px;}
.y79{bottom:842.220000px;}
.yd{bottom:844.380000px;}
.y118{bottom:844.500000px;}
.y157{bottom:848.700000px;}
.y78{bottom:856.260000px;}
.y47{bottom:859.140000px;}
.yc7{bottom:859.500000px;}
.y156{bottom:862.380000px;}
.yc{bottom:867.420000px;}
.y117{bottom:876.000000px;}
.y155{bottom:876.420000px;}
.yc5{bottom:882.000000px;}
.y154{bottom:890.100000px;}
.y46{bottom:890.460000px;}
.yb{bottom:891.900000px;}
.y115{bottom:892.500000px;}
.yc3{bottom:903.000000px;}
.y153{bottom:903.780000px;}
.ya{bottom:914.580000px;}
.y152{bottom:917.820000px;}
.y45{bottom:921.420000px;}
.yc1{bottom:924.000000px;}
.y151{bottom:931.500000px;}
.y114{bottom:939.000000px;}
.y9{bottom:939.420000px;}
.ybf{bottom:945.000000px;}
.y150{bottom:945.180000px;}
.y44{bottom:952.380000px;}
.y111{bottom:955.500000px;}
.y14f{bottom:959.220000px;}
.y8{bottom:963.900000px;}
.ybe{bottom:964.500000px;}
.y165{bottom:969.000000px;}
.y30{bottom:972.000000px;}
.y43{bottom:983.340000px;}
.ybb{bottom:985.500000px;}
.y10f{bottom:987.000000px;}
.y7{bottom:988.740000px;}
.y164{bottom:999.000000px;}
.y10d{bottom:1002.000000px;}
.yb9{bottom:1006.500000px;}
.y6{bottom:1013.580000px;}
.y42{bottom:1014.660000px;}
.y162{bottom:1015.500000px;}
.y109{bottom:1018.500000px;}
.yb5{bottom:1027.500000px;}
.y15b{bottom:1036.500000px;}
.y5{bottom:1038.420000px;}
.y41{bottom:1045.620000px;}
.yb3{bottom:1051.500000px;}
.y15e{bottom:1054.500000px;}
.y4{bottom:1062.900000px;}
.yb0{bottom:1074.000000px;}
.y40{bottom:1076.580000px;}
.y159{bottom:1077.000000px;}
.y107{bottom:1081.500000px;}
.y3{bottom:1087.740000px;}
.y3f{bottom:1107.540000px;}
.y106{bottom:1110.420000px;}
.y2{bottom:1112.580000px;}
.y14e{bottom:1113.300000px;}
.yae{bottom:1117.500000px;}
.y1{bottom:1137.420000px;}
.y3e{bottom:1138.860000px;}
.h1d{height:16.500000px;}
.h16{height:18.000000px;}
.h17{height:19.500000px;}
.h12{height:20.155078px;}
.h13{height:21.000000px;}
.hf{height:22.500000px;}
.he{height:24.000000px;}
.ha{height:25.500000px;}
.h18{height:28.500000px;}
.h1a{height:30.000000px;}
.h14{height:31.500000px;}
.h10{height:31.672266px;}
.h4{height:32.113125px;}
.hd{height:32.994844px;}
.h19{height:33.000000px;}
.h1c{height:37.085625px;}
.hb{height:38.020781px;}
.h11{height:38.875078px;}
.h15{height:40.500000px;}
.h8{height:42.022969px;}
.hc{height:43.500000px;}
.h1e{height:48.000000px;}
.h9{height:48.796875px;}
.h5{height:49.992188px;}
.h2{height:52.700625px;}
.h6{height:56.593125px;}
.h1b{height:63.000000px;}
.h3{height:63.175781px;}
.h7{height:226.500000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w8{width:55.500000px;}
.w11{width:61.500000px;}
.wf{width:72.000000px;}
.w12{width:73.500000px;}
.wd{width:85.500000px;}
.w10{width:87.000000px;}
.w16{width:91.500000px;}
.w15{width:94.500000px;}
.w7{width:96.000000px;}
.w6{width:97.500000px;}
.wb{width:99.000000px;}
.w17{width:102.000000px;}
.w5{width:108.000000px;}
.w18{width:112.500000px;}
.w19{width:115.500000px;}
.w14{width:153.000000px;}
.w4{width:168.000000px;}
.wc{width:217.500000px;}
.we{width:231.000000px;}
.w13{width:433.500000px;}
.w9{width:561.000000px;}
.wa{width:628.500000px;}
.w2{width:646.500000px;}
.w3{width:711.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xa{left:7.860144px;}
.x13{left:9.240480px;}
.x5{left:11.399928px;}
.x21{left:12.562560px;}
.x1a{left:14.062680px;}
.x2f{left:16.710000px;}
.x20{left:17.849640px;}
.x19{left:18.901440px;}
.x31{left:20.028240px;}
.x18{left:21.104640px;}
.xc{left:22.640052px;}
.x12{left:24.562440px;}
.x17{left:26.504292px;}
.x29{left:27.507708px;}
.x15{left:28.513800px;}
.x1e{left:29.692200px;}
.x14{left:30.913464px;}
.x1f{left:32.692080px;}
.x1d{left:34.297248px;}
.x39{left:35.467680px;}
.x16{left:37.380000px;}
.x3d{left:38.470980px;}
.x3e{left:39.970596px;}
.x2d{left:40.992360px;}
.x26{left:42.652800px;}
.x3c{left:43.905000px;}
.x3a{left:45.360240px;}
.x36{left:46.898580px;}
.x1c{left:48.397680px;}
.x3b{left:49.470000px;}
.x38{left:50.655000px;}
.x1b{left:53.797260px;}
.x37{left:56.220000px;}
.x28{left:57.711480px;}
.x24{left:59.028228px;}
.x9{left:91.500000px;}
.x2{left:128.160072px;}
.x3{left:184.498668px;}
.x23{left:225.000000px;}
.xb{left:258.000000px;}
.x30{left:279.000000px;}
.x2a{left:295.500000px;}
.x4{left:299.637216px;}
.xd{left:364.500000px;}
.x32{left:372.000000px;}
.x2b{left:381.000000px;}
.x25{left:441.000000px;}
.x8{left:446.834880px;}
.x1{left:450.209880px;}
.xe{left:460.500000px;}
.x33{left:469.500000px;}
.x27{left:525.000000px;}
.xf{left:555.000000px;}
.x34{left:559.500000px;}
.x2c{left:597.000000px;}
.x6{left:637.274880px;}
.x10{left:651.000000px;}
.x7{left:656.354880px;}
.x35{left:660.000000px;}
.x2e{left:694.500000px;}
.x11{left:747.000000px;}
.x22{left:831.960000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.640000pt;}
.v1{vertical-align:21.760000pt;}
.ls3e{letter-spacing:-0.559360pt;}
.ls37{letter-spacing:-0.452352pt;}
.ls3d{letter-spacing:-0.428032pt;}
.ls25{letter-spacing:-0.398848pt;}
.ls10{letter-spacing:-0.370944pt;}
.ls3c{letter-spacing:-0.350208pt;}
.ls19{letter-spacing:-0.338688pt;}
.ls3b{letter-spacing:-0.321024pt;}
.ls11{letter-spacing:-0.301056pt;}
.ls38{letter-spacing:-0.291840pt;}
.lsf{letter-spacing:-0.284928pt;}
.ls18{letter-spacing:-0.268800pt;}
.lse{letter-spacing:-0.231168pt;}
.ls14{letter-spacing:-0.215040pt;}
.ls3a{letter-spacing:-0.214016pt;}
.ls13{letter-spacing:-0.198912pt;}
.ls39{letter-spacing:-0.184832pt;}
.lsd{letter-spacing:-0.161280pt;}
.ls36{letter-spacing:-0.160512pt;}
.ls16{letter-spacing:-0.155904pt;}
.ls15{letter-spacing:-0.139776pt;}
.ls12{letter-spacing:-0.129024pt;}
.lsb{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.001280pt;}
.ls1c{letter-spacing:0.001408pt;}
.ls1b{letter-spacing:0.002048pt;}
.ls7{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.096768pt;}
.ls2{letter-spacing:0.103680pt;}
.ls9{letter-spacing:0.105600pt;}
.ls21{letter-spacing:0.106240pt;}
.ls20{letter-spacing:0.106624pt;}
.ls22{letter-spacing:0.106752pt;}
.ls3f{letter-spacing:0.109824pt;}
.ls1{letter-spacing:0.131328pt;}
.ls35{letter-spacing:0.142080pt;}
.ls23{letter-spacing:0.142336pt;}
.ls1f{letter-spacing:0.142464pt;}
.ls27{letter-spacing:0.143616pt;}
.ls30{letter-spacing:0.173184pt;}
.ls2e{letter-spacing:0.181632pt;}
.ls33{letter-spacing:0.190080pt;}
.ls34{letter-spacing:0.198528pt;}
.lsa{letter-spacing:0.211200pt;}
.ls6{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.213248pt;}
.ls5{letter-spacing:0.213376pt;}
.ls4{letter-spacing:0.213760pt;}
.lsc{letter-spacing:0.215424pt;}
.ls2a{letter-spacing:0.228096pt;}
.ls2b{letter-spacing:0.236544pt;}
.ls31{letter-spacing:0.240768pt;}
.ls2c{letter-spacing:0.244992pt;}
.ls26{letter-spacing:0.253440pt;}
.ls28{letter-spacing:0.283008pt;}
.ls29{letter-spacing:0.316800pt;}
.ls2f{letter-spacing:0.325248pt;}
.ls2d{letter-spacing:0.384384pt;}
.ls1e{letter-spacing:1.398144pt;}
.ls24{letter-spacing:1.866496pt;}
.ls17{letter-spacing:3.280640pt;}
.ls1a{letter-spacing:3.736320pt;}
.ls32{letter-spacing:5.425920pt;}
.ws1{word-spacing:-16.012800pt;}
.wsa{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws7{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.284096pt;}
.ws14{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.wsc{word-spacing:-13.101312pt;}
.ws17{word-spacing:-12.160000pt;}
.ws1d{word-spacing:-11.975168pt;}
.ws1a{word-spacing:-11.945984pt;}
.ws15{word-spacing:-11.868160pt;}
.ws16{word-spacing:-11.838976pt;}
.ws1c{word-spacing:-11.731968pt;}
.ws1b{word-spacing:-11.707648pt;}
.ws11{word-spacing:-10.885248pt;}
.ws10{word-spacing:-10.876800pt;}
.wse{word-spacing:-10.843008pt;}
.ws19{word-spacing:-10.813440pt;}
.wsf{word-spacing:-10.788096pt;}
.ws6{word-spacing:-10.775424pt;}
.ws0{word-spacing:-10.773760pt;}
.ws12{word-spacing:-10.772480pt;}
.ws3{word-spacing:-10.771200pt;}
.ws18{word-spacing:-10.758528pt;}
.ws13{word-spacing:-10.733184pt;}
.wsd{word-spacing:-10.703616pt;}
.ws1e{word-spacing:-10.669824pt;}
.ws2{word-spacing:-10.665600pt;}
.ws4{word-spacing:-10.560000pt;}
.ws9{word-spacing:0.000000pt;}
._13{margin-left:-3.962880pt;}
._10{margin-left:-2.910720pt;}
._4{margin-left:-1.420800pt;}
._0{width:1.436800pt;}
._1{width:2.882432pt;}
._c{width:4.032000pt;}
._5{width:5.792000pt;}
._11{width:6.694400pt;}
._15{width:7.599104pt;}
._d{width:8.508800pt;}
._e{width:9.500288pt;}
._6{width:10.656000pt;}
._3{width:11.648000pt;}
._17{width:12.771712pt;}
._12{width:13.856000pt;}
._9{width:15.057024pt;}
._f{width:15.956736pt;}
._b{width:16.993920pt;}
._a{width:17.991296pt;}
._16{width:19.052800pt;}
._1c{width:20.601216pt;}
._8{width:21.681152pt;}
._7{width:22.897024pt;}
._2{width:24.159104pt;}
._26{width:25.072000pt;}
._1d{width:26.226048pt;}
._1a{width:27.418752pt;}
._14{width:28.429696pt;}
._1e{width:29.408000pt;}
._20{width:32.748800pt;}
._23{width:34.508800pt;}
._24{width:35.744000pt;}
._25{width:42.969600pt;}
._22{width:45.688704pt;}
._18{width:63.525248pt;}
._19{width:87.737600pt;}
._21{width:92.799488pt;}
._1b{width:104.780800pt;}
._1f{width:124.799488pt;}
.fs5{font-size:26.880000pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y3d{bottom:-12.320000pt;}
.y0{bottom:0.000000pt;}
.y130{bottom:2.773333pt;}
.y11f{bottom:2.826667pt;}
.y12c{bottom:2.933333pt;}
.y11c{bottom:2.986667pt;}
.yec{bottom:3.040000pt;}
.y110{bottom:3.146667pt;}
.yfa{bottom:3.253333pt;}
.y113{bottom:3.306667pt;}
.y121{bottom:3.413333pt;}
.y167{bottom:3.466667pt;}
.y12e{bottom:3.520000pt;}
.y105{bottom:3.573333pt;}
.y135{bottom:3.786667pt;}
.y13f{bottom:3.840000pt;}
.y10e{bottom:3.893333pt;}
.y108{bottom:3.946667pt;}
.y127{bottom:4.000000pt;}
.y11a{bottom:4.053333pt;}
.yf1{bottom:4.160000pt;}
.y137{bottom:4.373333pt;}
.y102{bottom:4.426667pt;}
.y161{bottom:4.586667pt;}
.yff{bottom:4.693333pt;}
.yf5{bottom:5.226667pt;}
.y3c{bottom:5.280000pt;}
.yf3{bottom:5.546667pt;}
.y163{bottom:5.973333pt;}
.yf0{bottom:6.080000pt;}
.y15f{bottom:6.186667pt;}
.yfe{bottom:6.293333pt;}
.y15d{bottom:8.426667pt;}
.yd0{bottom:8.693333pt;}
.yc0{bottom:8.800000pt;}
.yd9{bottom:8.853333pt;}
.yc2{bottom:8.906667pt;}
.yd2{bottom:9.120000pt;}
.yba{bottom:9.173333pt;}
.yd4{bottom:9.226667pt;}
.yc8{bottom:9.280000pt;}
.yc4{bottom:9.333333pt;}
.yb6{bottom:9.386667pt;}
.yc6{bottom:9.440000pt;}
.ybc{bottom:9.600000pt;}
.yb2{bottom:9.653333pt;}
.yb8{bottom:9.706667pt;}
.yd7{bottom:9.760000pt;}
.yca{bottom:9.813333pt;}
.yce{bottom:9.920000pt;}
.ycc{bottom:10.133333pt;}
.yaf{bottom:10.666667pt;}
.yb4{bottom:11.413333pt;}
.yb7{bottom:11.626667pt;}
.ydc{bottom:11.680000pt;}
.ycb{bottom:12.053333pt;}
.ybd{bottom:13.440000pt;}
.yee{bottom:14.080000pt;}
.y160{bottom:14.506667pt;}
.yfc{bottom:14.613333pt;}
.yf7{bottom:15.520000pt;}
.y166{bottom:15.626667pt;}
.y104{bottom:15.733333pt;}
.y13a{bottom:16.586667pt;}
.y132{bottom:16.693333pt;}
.y10c{bottom:16.746667pt;}
.yeb{bottom:16.800000pt;}
.y15a{bottom:16.906667pt;}
.yf9{bottom:17.013333pt;}
.y112{bottom:17.066667pt;}
.y125{bottom:17.173333pt;}
.y123{bottom:17.333333pt;}
.y119{bottom:17.813333pt;}
.y13c{bottom:18.080000pt;}
.y3b{bottom:20.320000pt;}
.y15c{bottom:20.586667pt;}
.yb1{bottom:28.213333pt;}
.ydb{bottom:28.320000pt;}
.y10b{bottom:30.506667pt;}
.y116{bottom:30.826667pt;}
.y3a{bottom:35.680000pt;}
.y10a{bottom:44.266667pt;}
.y39{bottom:51.040000pt;}
.y38{bottom:66.400000pt;}
.y37{bottom:81.760000pt;}
.y36{bottom:97.120000pt;}
.ye9{bottom:99.680000pt;}
.ya0{bottom:100.320000pt;}
.y5f{bottom:101.600000pt;}
.y9d{bottom:104.480000pt;}
.y92{bottom:105.120000pt;}
.y14d{bottom:108.000000pt;}
.y35{bottom:112.480000pt;}
.y77{bottom:114.080000pt;}
.y2f{bottom:124.960000pt;}
.y14c{bottom:126.240000pt;}
.ye8{bottom:127.200000pt;}
.y34{bottom:127.840000pt;}
.y9f{bottom:128.160000pt;}
.y5e{bottom:129.120000pt;}
.y9c{bottom:132.000000pt;}
.y91{bottom:132.640000pt;}
.y76{bottom:141.600000pt;}
.y2e{bottom:143.200000pt;}
.y14b{bottom:144.800000pt;}
.ye7{bottom:155.040000pt;}
.y9e{bottom:156.320000pt;}
.y5d{bottom:156.640000pt;}
.y33{bottom:158.560000pt;}
.y9b{bottom:159.840000pt;}
.y90{bottom:160.160000pt;}
.y2d{bottom:161.760000pt;}
.y14a{bottom:163.040000pt;}
.y75{bottom:169.120000pt;}
.y32{bottom:173.920000pt;}
.y2c{bottom:180.000000pt;}
.y149{bottom:181.600000pt;}
.ye6{bottom:182.560000pt;}
.y5c{bottom:184.160000pt;}
.y9a{bottom:187.360000pt;}
.y8f{bottom:188.000000pt;}
.y31{bottom:188.960000pt;}
.y74{bottom:196.640000pt;}
.y2b{bottom:198.560000pt;}
.y148{bottom:199.840000pt;}
.ye5{bottom:210.080000pt;}
.y5b{bottom:212.000000pt;}
.y99{bottom:214.880000pt;}
.y8e{bottom:215.520000pt;}
.y2a{bottom:216.800000pt;}
.y147{bottom:218.080000pt;}
.y73{bottom:224.480000pt;}
.yad{bottom:230.560000pt;}
.y146{bottom:236.640000pt;}
.ye4{bottom:237.600000pt;}
.y5a{bottom:239.520000pt;}
.y29{bottom:240.800000pt;}
.y98{bottom:242.400000pt;}
.y8d{bottom:243.040000pt;}
.y72{bottom:252.000000pt;}
.y28{bottom:253.600000pt;}
.y145{bottom:254.880000pt;}
.yac{bottom:258.080000pt;}
.ye3{bottom:265.120000pt;}
.y59{bottom:267.040000pt;}
.y97{bottom:270.240000pt;}
.y8c{bottom:270.560000pt;}
.y144{bottom:273.440000pt;}
.y27{bottom:277.600000pt;}
.y71{bottom:279.520000pt;}
.yab{bottom:285.920000pt;}
.y143{bottom:291.680000pt;}
.ye2{bottom:292.960000pt;}
.y58{bottom:294.560000pt;}
.y26{bottom:295.840000pt;}
.y96{bottom:297.760000pt;}
.y8b{bottom:298.400000pt;}
.y103{bottom:306.666667pt;}
.y70{bottom:307.040000pt;}
.y142{bottom:310.240000pt;}
.yaa{bottom:313.440000pt;}
.y25{bottom:314.400000pt;}
.y57{bottom:322.400000pt;}
.y95{bottom:325.280000pt;}
.y8a{bottom:325.920000pt;}
.y24{bottom:327.200000pt;}
.y141{bottom:328.480000pt;}
.y101{bottom:333.333333pt;}
.y6f{bottom:334.880000pt;}
.ya9{bottom:340.960000pt;}
.y94{bottom:342.560000pt;}
.y140{bottom:347.040000pt;}
.y100{bottom:348.000000pt;}
.y56{bottom:349.920000pt;}
.y23{bottom:351.200000pt;}
.y89{bottom:353.440000pt;}
.y93{bottom:355.040000pt;}
.y13e{bottom:356.000000pt;}
.y6e{bottom:362.400000pt;}
.yfb{bottom:366.666667pt;}
.ya8{bottom:368.480000pt;}
.y22{bottom:369.440000pt;}
.y13d{bottom:370.666667pt;}
.y55{bottom:377.440000pt;}
.y88{bottom:380.960000pt;}
.yfd{bottom:382.666667pt;}
.y13b{bottom:384.000000pt;}
.y21{bottom:388.000000pt;}
.y6d{bottom:389.920000pt;}
.ya7{bottom:396.320000pt;}
.yf8{bottom:402.666667pt;}
.y54{bottom:404.960000pt;}
.y20{bottom:406.240000pt;}
.y87{bottom:408.800000pt;}
.y139{bottom:413.333333pt;}
.y6c{bottom:417.440000pt;}
.ya6{bottom:423.840000pt;}
.y1f{bottom:424.800000pt;}
.y53{bottom:432.480000pt;}
.y86{bottom:436.320000pt;}
.y1e{bottom:437.600000pt;}
.y138{bottom:440.000000pt;}
.ye1{bottom:441.760000pt;}
.y6b{bottom:445.280000pt;}
.ya5{bottom:451.360000pt;}
.y136{bottom:454.666667pt;}
.yf6{bottom:456.000000pt;}
.y52{bottom:460.320000pt;}
.y1d{bottom:461.600000pt;}
.y85{bottom:463.840000pt;}
.y134{bottom:469.333333pt;}
.y6a{bottom:472.800000pt;}
.ya4{bottom:478.880000pt;}
.y1c{bottom:479.840000pt;}
.yf4{bottom:481.333333pt;}
.y133{bottom:484.000000pt;}
.y51{bottom:487.840000pt;}
.y84{bottom:491.360000pt;}
.yf2{bottom:497.333333pt;}
.y1b{bottom:498.400000pt;}
.y131{bottom:498.666667pt;}
.y69{bottom:500.320000pt;}
.ya3{bottom:506.720000pt;}
.y50{bottom:515.360000pt;}
.yed{bottom:516.000000pt;}
.y1a{bottom:516.640000pt;}
.y83{bottom:519.200000pt;}
.y12f{bottom:526.666667pt;}
.y68{bottom:527.840000pt;}
.yef{bottom:532.000000pt;}
.ya2{bottom:534.240000pt;}
.y19{bottom:535.200000pt;}
.y12d{bottom:540.000000pt;}
.y4f{bottom:542.880000pt;}
.y82{bottom:546.720000pt;}
.y18{bottom:548.000000pt;}
.yea{bottom:552.000000pt;}
.y12b{bottom:554.666667pt;}
.y67{bottom:555.680000pt;}
.ya1{bottom:561.760000pt;}
.y12a{bottom:568.000000pt;}
.y4e{bottom:570.720000pt;}
.y17{bottom:572.000000pt;}
.y81{bottom:574.240000pt;}
.yda{bottom:576.000000pt;}
.y129{bottom:582.666667pt;}
.y66{bottom:583.200000pt;}
.y16{bottom:590.240000pt;}
.ye0{bottom:592.800000pt;}
.y4d{bottom:598.240000pt;}
.y80{bottom:601.760000pt;}
.y15{bottom:603.360000pt;}
.y128{bottom:610.666667pt;}
.y65{bottom:610.720000pt;}
.yd8{bottom:614.666667pt;}
.ydf{bottom:615.840000pt;}
.y14{bottom:621.600000pt;}
.y126{bottom:624.000000pt;}
.y4c{bottom:625.760000pt;}
.y7f{bottom:629.600000pt;}
.yd6{bottom:632.000000pt;}
.y64{bottom:638.240000pt;}
.y124{bottom:638.666667pt;}
.yde{bottom:638.880000pt;}
.y13{bottom:645.600000pt;}
.yd5{bottom:650.666667pt;}
.ydd{bottom:651.360000pt;}
.y4b{bottom:653.280000pt;}
.y7e{bottom:657.120000pt;}
.y12{bottom:658.400000pt;}
.y63{bottom:666.080000pt;}
.y122{bottom:666.666667pt;}
.yd3{bottom:669.333333pt;}
.y11{bottom:676.960000pt;}
.y4a{bottom:681.120000pt;}
.y7d{bottom:684.640000pt;}
.yd1{bottom:688.000000pt;}
.y62{bottom:693.600000pt;}
.y120{bottom:694.666667pt;}
.y10{bottom:695.200000pt;}
.y7c{bottom:702.560000pt;}
.ycf{bottom:706.666667pt;}
.y49{bottom:708.640000pt;}
.y11e{bottom:709.333333pt;}
.yf{bottom:713.760000pt;}
.y7b{bottom:717.920000pt;}
.y61{bottom:719.200000pt;}
.y11d{bottom:722.666667pt;}
.ycd{bottom:724.000000pt;}
.ye{bottom:732.000000pt;}
.y7a{bottom:733.280000pt;}
.y48{bottom:736.160000pt;}
.y11b{bottom:737.333333pt;}
.y60{bottom:739.360000pt;}
.y158{bottom:742.240000pt;}
.yc9{bottom:742.666667pt;}
.y79{bottom:748.640000pt;}
.yd{bottom:750.560000pt;}
.y118{bottom:750.666667pt;}
.y157{bottom:754.400000pt;}
.y78{bottom:761.120000pt;}
.y47{bottom:763.680000pt;}
.yc7{bottom:764.000000pt;}
.y156{bottom:766.560000pt;}
.yc{bottom:771.040000pt;}
.y117{bottom:778.666667pt;}
.y155{bottom:779.040000pt;}
.yc5{bottom:784.000000pt;}
.y154{bottom:791.200000pt;}
.y46{bottom:791.520000pt;}
.yb{bottom:792.800000pt;}
.y115{bottom:793.333333pt;}
.yc3{bottom:802.666667pt;}
.y153{bottom:803.360000pt;}
.ya{bottom:812.960000pt;}
.y152{bottom:815.840000pt;}
.y45{bottom:819.040000pt;}
.yc1{bottom:821.333333pt;}
.y151{bottom:828.000000pt;}
.y114{bottom:834.666667pt;}
.y9{bottom:835.040000pt;}
.ybf{bottom:840.000000pt;}
.y150{bottom:840.160000pt;}
.y44{bottom:846.560000pt;}
.y111{bottom:849.333333pt;}
.y14f{bottom:852.640000pt;}
.y8{bottom:856.800000pt;}
.ybe{bottom:857.333333pt;}
.y165{bottom:861.333333pt;}
.y30{bottom:864.000000pt;}
.y43{bottom:874.080000pt;}
.ybb{bottom:876.000000pt;}
.y10f{bottom:877.333333pt;}
.y7{bottom:878.880000pt;}
.y164{bottom:888.000000pt;}
.y10d{bottom:890.666667pt;}
.yb9{bottom:894.666667pt;}
.y6{bottom:900.960000pt;}
.y42{bottom:901.920000pt;}
.y162{bottom:902.666667pt;}
.y109{bottom:905.333333pt;}
.yb5{bottom:913.333333pt;}
.y15b{bottom:921.333333pt;}
.y5{bottom:923.040000pt;}
.y41{bottom:929.440000pt;}
.yb3{bottom:934.666667pt;}
.y15e{bottom:937.333333pt;}
.y4{bottom:944.800000pt;}
.yb0{bottom:954.666667pt;}
.y40{bottom:956.960000pt;}
.y159{bottom:957.333333pt;}
.y107{bottom:961.333333pt;}
.y3{bottom:966.880000pt;}
.y3f{bottom:984.480000pt;}
.y106{bottom:987.040000pt;}
.y2{bottom:988.960000pt;}
.y14e{bottom:989.600000pt;}
.yae{bottom:993.333333pt;}
.y1{bottom:1011.040000pt;}
.y3e{bottom:1012.320000pt;}
.h1d{height:14.666667pt;}
.h16{height:16.000000pt;}
.h17{height:17.333333pt;}
.h12{height:17.915625pt;}
.h13{height:18.666667pt;}
.hf{height:20.000000pt;}
.he{height:21.333333pt;}
.ha{height:22.666667pt;}
.h18{height:25.333333pt;}
.h1a{height:26.666667pt;}
.h14{height:28.000000pt;}
.h10{height:28.153125pt;}
.h4{height:28.545000pt;}
.hd{height:29.328750pt;}
.h19{height:29.333333pt;}
.h1c{height:32.965000pt;}
.hb{height:33.796250pt;}
.h11{height:34.555625pt;}
.h15{height:36.000000pt;}
.h8{height:37.353750pt;}
.hc{height:38.666667pt;}
.h1e{height:42.666667pt;}
.h9{height:43.375000pt;}
.h5{height:44.437500pt;}
.h2{height:46.845000pt;}
.h6{height:50.305000pt;}
.h1b{height:56.000000pt;}
.h3{height:56.156250pt;}
.h7{height:201.333333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w8{width:49.333333pt;}
.w11{width:54.666667pt;}
.wf{width:64.000000pt;}
.w12{width:65.333333pt;}
.wd{width:76.000000pt;}
.w10{width:77.333333pt;}
.w16{width:81.333333pt;}
.w15{width:84.000000pt;}
.w7{width:85.333333pt;}
.w6{width:86.666667pt;}
.wb{width:88.000000pt;}
.w17{width:90.666667pt;}
.w5{width:96.000000pt;}
.w18{width:100.000000pt;}
.w19{width:102.666667pt;}
.w14{width:136.000000pt;}
.w4{width:149.333333pt;}
.wc{width:193.333333pt;}
.we{width:205.333333pt;}
.w13{width:385.333333pt;}
.w9{width:498.666667pt;}
.wa{width:558.666667pt;}
.w2{width:574.666667pt;}
.w3{width:632.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xa{left:6.986795pt;}
.x13{left:8.213760pt;}
.x5{left:10.133269pt;}
.x21{left:11.166720pt;}
.x1a{left:12.500160pt;}
.x2f{left:14.853333pt;}
.x20{left:15.866347pt;}
.x19{left:16.801280pt;}
.x31{left:17.802880pt;}
.x18{left:18.759680pt;}
.xc{left:20.124491pt;}
.x12{left:21.833280pt;}
.x17{left:23.559371pt;}
.x29{left:24.451296pt;}
.x15{left:25.345600pt;}
.x1e{left:26.393067pt;}
.x14{left:27.478635pt;}
.x1f{left:29.059627pt;}
.x1d{left:30.486443pt;}
.x39{left:31.526827pt;}
.x16{left:33.226667pt;}
.x3d{left:34.196427pt;}
.x3e{left:35.529419pt;}
.x2d{left:36.437653pt;}
.x26{left:37.913600pt;}
.x3c{left:39.026667pt;}
.x3a{left:40.320213pt;}
.x36{left:41.687627pt;}
.x1c{left:43.020160pt;}
.x3b{left:43.973333pt;}
.x38{left:45.026667pt;}
.x1b{left:47.819787pt;}
.x37{left:49.973333pt;}
.x28{left:51.299093pt;}
.x24{left:52.469536pt;}
.x9{left:81.333333pt;}
.x2{left:113.920064pt;}
.x3{left:163.998816pt;}
.x23{left:200.000000pt;}
.xb{left:229.333333pt;}
.x30{left:248.000000pt;}
.x2a{left:262.666667pt;}
.x4{left:266.344192pt;}
.xd{left:324.000000pt;}
.x32{left:330.666667pt;}
.x2b{left:338.666667pt;}
.x25{left:392.000000pt;}
.x8{left:397.186560pt;}
.x1{left:400.186560pt;}
.xe{left:409.333333pt;}
.x33{left:417.333333pt;}
.x27{left:466.666667pt;}
.xf{left:493.333333pt;}
.x34{left:497.333333pt;}
.x2c{left:530.666667pt;}
.x6{left:566.466560pt;}
.x10{left:578.666667pt;}
.x7{left:583.426560pt;}
.x35{left:586.666667pt;}
.x2e{left:617.333333pt;}
.x11{left:664.000000pt;}
.x22{left:739.520000pt;}
}




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