
    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_f8c32124c10bcf8463675de6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;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_260540c8e5dce2b48fdcff65.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_2d1a779e1697007552b5e5ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084473;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_aabc5fa61581944cc8665044.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_95cd71cc48e088975cc09d78.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927246;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_709109621c23da948fbe886c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959961;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_14a3f93b0358a18980a267e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729980;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_d0fbd5726c422f920ad541a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060059;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_2336b76dbbb7c37f2f374af2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084473;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_883b498cdac0408bca87f681.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.120117;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_7c267401cd6d4b588a32ccc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.766602;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_bc854ef43e369264b6a21040.woff2')format("woff");}.fff{font-family:fff;line-height:0.923828;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_ee7f02540423bbd1eef6f44e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.923828;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_31139ad9fe76a3a2bbd55f8b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8403ee760cb9b782dcd10881.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.120117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_548f5e78c1e4ea3096ee8b11.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.064941;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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:-77.040000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1f{letter-spacing:-0.804000px;}
.ls28{letter-spacing:-0.696000px;}
.ls20{letter-spacing:-0.624000px;}
.ls6{letter-spacing:-0.618000px;}
.ls27{letter-spacing:-0.400200px;}
.ls1e{letter-spacing:-0.339600px;}
.ls24{letter-spacing:-0.158400px;}
.ls29{letter-spacing:-0.069000px;}
.ls23{letter-spacing:-0.054720px;}
.lsa{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010560px;}
.ls1d{letter-spacing:0.023040px;}
.ls2{letter-spacing:0.032160px;}
.lsf{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.063840px;}
.ls7{letter-spacing:0.100800px;}
.lsd{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.233400px;}
.ls21{letter-spacing:0.250800px;}
.ls1b{letter-spacing:0.262080px;}
.ls26{letter-spacing:0.265200px;}
.lsc{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.306600px;}
.ls13{letter-spacing:0.306720px;}
.ls25{letter-spacing:0.310800px;}
.ls10{letter-spacing:0.328320px;}
.ls3{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.380160px;}
.ls22{letter-spacing:0.403200px;}
.ls11{letter-spacing:0.460080px;}
.ls1{letter-spacing:0.632160px;}
.ls4{letter-spacing:0.663840px;}
.ls17{letter-spacing:3.980160px;}
.ls19{letter-spacing:10.460160px;}
.ls18{letter-spacing:13.340160px;}
.ls1c{letter-spacing:17.660160px;}
.ls1a{letter-spacing:26.300160px;}
.lse{letter-spacing:828.540000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.ws0{word-spacing:-25.472160px;}
.ws8{word-spacing:-17.619840px;}
.ws3{word-spacing:-16.202760px;}
.ws5{word-spacing:-15.896160px;}
.ws4{word-spacing:-15.842880px;}
.wsb{word-spacing:-14.976000px;}
.wse{word-spacing:-14.883600px;}
.wsf{word-spacing:-14.838000px;}
.wsa{word-spacing:-14.823600px;}
.ws11{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.518080px;}
.ws13{word-spacing:-14.503800px;}
.wsd{word-spacing:-14.414400px;}
.ws10{word-spacing:-14.172600px;}
.ws9{word-spacing:-13.948800px;}
.ws12{word-spacing:-13.876800px;}
.ws1{word-spacing:-9.187200px;}
.ws6{word-spacing:0.000000px;}
._21{margin-left:-5.182020px;}
._d{margin-left:-3.938940px;}
._8{margin-left:-2.285520px;}
._0{margin-left:-1.080000px;}
._2c{width:1.000800px;}
._1{width:2.004000px;}
._9{width:3.346560px;}
._5{width:5.231040px;}
._3{width:6.741120px;}
._4{width:7.977120px;}
._20{width:9.444000px;}
._f{width:11.161316px;}
._e{width:12.220437px;}
._10{width:13.249187px;}
._11{width:14.529360px;}
._a{width:15.657120px;}
._16{width:16.657920px;}
._b{width:18.053760px;}
._c{width:19.212000px;}
._7{width:20.597760px;}
._6{width:21.643200px;}
._1c{width:22.851092px;}
._19{width:24.266880px;}
._17{width:25.968960px;}
._18{width:26.987280px;}
._24{width:28.494720px;}
._23{width:29.605680px;}
._22{width:30.689280px;}
._27{width:31.791120px;}
._14{width:32.837760px;}
._15{width:33.882000px;}
._1b{width:35.189760px;}
._1a{width:36.770400px;}
._1d{width:37.995314px;}
._25{width:41.400000px;}
._26{width:42.559440px;}
._28{width:44.844480px;}
._29{width:46.036800px;}
._2a{width:48.156480px;}
._2b{width:61.913280px;}
._1e{width:81.871200px;}
._2f{width:84.277440px;}
._2e{width:85.449600px;}
._30{width:86.804160px;}
._13{width:88.787280px;}
._2{width:89.821920px;}
._31{width:122.014080px;}
._32{width:123.160320px;}
._2d{width:189.578880px;}
._12{width:843.088800px;}
._1f{width:849.583200px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc0{color:rgb(56,86,35);}
.fs5{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fsc{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.960000px;}
.ya{bottom:4.500000px;}
.y44{bottom:5.580000px;}
.y7e{bottom:5.760000px;}
.y1c{bottom:6.120000px;}
.y59{bottom:6.300000px;}
.y6a{bottom:6.480000px;}
.y2e{bottom:7.380000px;}
.yb{bottom:10.080000px;}
.y9{bottom:21.060000px;}
.y7{bottom:22.320000px;}
.y43{bottom:25.200000px;}
.y69{bottom:28.800000px;}
.y2d{bottom:30.600000px;}
.y42{bottom:44.640000px;}
.y7d{bottom:44.820000px;}
.y68{bottom:50.625000px;}
.y2c{bottom:52.740000px;}
.yc{bottom:53.460000px;}
.y6{bottom:54.720000px;}
.y49{bottom:58.320000px;}
.y41{bottom:64.260000px;}
.y2b{bottom:74.880000px;}
.y48{bottom:75.240000px;}
.y3e{bottom:79.020000px;}
.y47{bottom:80.820000px;}
.y78{bottom:81.045000px;}
.y5{bottom:81.360000px;}
.y40{bottom:83.700000px;}
.y7c{bottom:83.880000px;}
.y2a{bottom:97.245000px;}
.y3d{bottom:101.340000px;}
.y3f{bottom:103.320000px;}
.y77{bottom:111.285000px;}
.ye6{bottom:111.960000px;}
.y67{bottom:117.225000px;}
.y7a{bottom:120.780000px;}
.y7b{bottom:122.760000px;}
.ye5{bottom:131.220000px;}
.y66{bottom:137.925000px;}
.y3b{bottom:138.105000px;}
.y76{bottom:141.525000px;}
.yb2{bottom:144.180000px;}
.ye4{bottom:155.190000px;}
.y65{bottom:160.245000px;}
.yb1{bottom:162.930000px;}
.y29{bottom:164.385000px;}
.y3a{bottom:168.525000px;}
.y75{bottom:171.945000px;}
.ye3{bottom:174.450000px;}
.y45{bottom:177.150000px;}
.y80{bottom:179.310000px;}
.yb0{bottom:181.470000px;}
.y64{bottom:182.385000px;}
.y28{bottom:186.165000px;}
.y74{bottom:192.285000px;}
.ye2{bottom:193.710000px;}
.y39{bottom:197.865000px;}
.y3c{bottom:200.010000px;}
.yaf{bottom:200.190000px;}
.y7f{bottom:201.090000px;}
.y63{bottom:204.705000px;}
.y27{bottom:208.305000px;}
.ye1{bottom:213.150000px;}
.y73{bottom:213.525000px;}
.y79{bottom:215.310000px;}
.yae{bottom:218.910000px;}
.y62{bottom:226.845000px;}
.y38{bottom:228.105000px;}
.y26{bottom:230.625000px;}
.ye0{bottom:232.410000px;}
.y72{bottom:234.765000px;}
.yad{bottom:237.630000px;}
.y61{bottom:249.165000px;}
.y25{bottom:252.765000px;}
.y71{bottom:256.005000px;}
.yac{bottom:256.170000px;}
.ydf{bottom:256.350000px;}
.y37{bottom:257.445000px;}
.y60{bottom:271.485000px;}
.yab{bottom:274.890000px;}
.y24{bottom:275.085000px;}
.yde{bottom:275.610000px;}
.y70{bottom:277.245000px;}
.y36{bottom:277.605000px;}
.yaa{bottom:293.610000px;}
.y5f{bottom:293.625000px;}
.y23{bottom:297.405000px;}
.y35{bottom:297.765000px;}
.y6f{bottom:298.515000px;}
.ydd{bottom:299.550000px;}
.ya9{bottom:312.330000px;}
.y5e{bottom:315.975000px;}
.y1d{bottom:317.190000px;}
.y34{bottom:318.105000px;}
.y22{bottom:319.545000px;}
.y6e{bottom:319.755000px;}
.ydc{bottom:323.310000px;}
.ya8{bottom:335.370000px;}
.y5d{bottom:338.115000px;}
.y33{bottom:338.295000px;}
.y6d{bottom:340.815000px;}
.y21{bottom:341.895000px;}
.y5a{bottom:351.930000px;}
.ya7{bottom:354.090000px;}
.y32{bottom:358.635000px;}
.y5c{bottom:360.435000px;}
.y6c{bottom:362.055000px;}
.y20{bottom:364.035000px;}
.ya6{bottom:372.810000px;}
.y31{bottom:378.795000px;}
.ydb{bottom:381.450000px;}
.y5b{bottom:382.575000px;}
.y1f{bottom:386.355000px;}
.ya5{bottom:391.530000px;}
.y6b{bottom:392.295000px;}
.y30{bottom:398.955000px;}
.yda{bottom:400.170000px;}
.y1e{bottom:408.675000px;}
.ya4{bottom:410.115000px;}
.yd9{bottom:418.935000px;}
.y2f{bottom:419.295000px;}
.ya3{bottom:433.335000px;}
.yd8{bottom:437.655000px;}
.ya2{bottom:452.055000px;}
.yd7{bottom:456.195000px;}
.ya1{bottom:470.775000px;}
.yd6{bottom:474.915000px;}
.ya0{bottom:489.315000px;}
.yd5{bottom:493.635000px;}
.y9f{bottom:508.035000px;}
.yd4{bottom:512.355000px;}
.yd3{bottom:531.075000px;}
.y9e{bottom:531.255000px;}
.y9d{bottom:549.975000px;}
.yd2{bottom:559.155000px;}
.y9c{bottom:568.515000px;}
.y9b{bottom:587.235000px;}
.yd1{bottom:588.675000px;}
.y100{bottom:598.215000px;}
.y9a{bottom:605.955000px;}
.yd0{bottom:607.395000px;}
.yff{bottom:617.475000px;}
.y99{bottom:624.675000px;}
.ycf{bottom:626.115000px;}
.yfe{bottom:636.915000px;}
.yce{bottom:644.835000px;}
.y98{bottom:652.965000px;}
.yfd{bottom:656.205000px;}
.ycd{bottom:663.405000px;}
.yfc{bottom:680.145000px;}
.ycc{bottom:682.125000px;}
.y97{bottom:682.305000px;}
.yfb{bottom:699.405000px;}
.ycb{bottom:700.845000px;}
.y96{bottom:701.025000px;}
.yfa{bottom:718.665000px;}
.yca{bottom:719.565000px;}
.y95{bottom:719.745000px;}
.yf9{bottom:738.105000px;}
.yc9{bottom:738.285000px;}
.y94{bottom:738.465000px;}
.y1b{bottom:750.705000px;}
.yc8{bottom:756.825000px;}
.y93{bottom:757.185000px;}
.y58{bottom:759.345000px;}
.yf8{bottom:761.865000px;}
.yc7{bottom:775.545000px;}
.y92{bottom:775.725000px;}
.yf7{bottom:781.305000px;}
.y1a{bottom:781.845000px;}
.y57{bottom:790.665000px;}
.y91{bottom:794.445000px;}
.yc6{bottom:798.765000px;}
.yf6{bottom:800.565000px;}
.y19{bottom:811.185000px;}
.y90{bottom:813.165000px;}
.yc5{bottom:817.485000px;}
.y56{bottom:819.825000px;}
.yf5{bottom:824.505000px;}
.y8f{bottom:831.885000px;}
.yc4{bottom:836.025000px;}
.y18{bottom:842.325000px;}
.yf4{bottom:843.765000px;}
.y8e{bottom:850.425000px;}
.y55{bottom:851.145000px;}
.yc3{bottom:854.745000px;}
.yf3{bottom:863.205000px;}
.y17{bottom:868.425000px;}
.yc2{bottom:873.465000px;}
.y8d{bottom:873.645000px;}
.y54{bottom:877.245000px;}
.yf2{bottom:882.465000px;}
.y16{bottom:886.785000px;}
.yc1{bottom:892.185000px;}
.y8c{bottom:892.365000px;}
.y53{bottom:895.605000px;}
.yf1{bottom:906.450000px;}
.yc0{bottom:910.770000px;}
.y8b{bottom:911.130000px;}
.y15{bottom:912.930000px;}
.y52{bottom:921.750000px;}
.ybf{bottom:929.490000px;}
.y8a{bottom:929.670000px;}
.yf0{bottom:930.210000px;}
.y14{bottom:931.470000px;}
.y51{bottom:940.110000px;}
.ybe{bottom:948.210000px;}
.y89{bottom:948.390000px;}
.yef{bottom:949.650000px;}
.y13{bottom:957.390000px;}
.y50{bottom:966.210000px;}
.ybd{bottom:966.930000px;}
.yee{bottom:968.910000px;}
.y88{bottom:971.610000px;}
.y12{bottom:974.310000px;}
.y4f{bottom:982.950000px;}
.ybc{bottom:985.470000px;}
.yed{bottom:988.350000px;}
.y87{bottom:990.330000px;}
.y11{bottom:994.470000px;}
.y4e{bottom:1002.210000px;}
.ybb{bottom:1004.190000px;}
.y86{bottom:1008.870000px;}
.yec{bottom:1012.110000px;}
.yba{bottom:1022.910000px;}
.y10{bottom:1026.690000px;}
.y85{bottom:1027.590000px;}
.yeb{bottom:1031.370000px;}
.y4d{bottom:1033.710000px;}
.yb9{bottom:1045.950000px;}
.y84{bottom:1046.310000px;}
.yea{bottom:1050.810000px;}
.yf{bottom:1059.270000px;}
.yb8{bottom:1064.670000px;}
.y83{bottom:1065.030000px;}
.y4c{bottom:1065.930000px;}
.ye9{bottom:1070.070000px;}
.yb7{bottom:1083.390000px;}
.y82{bottom:1083.570000px;}
.ye{bottom:1092.030000px;}
.ye8{bottom:1094.010000px;}
.y4b{bottom:1098.330000px;}
.yb6{bottom:1102.110000px;}
.y81{bottom:1111.830000px;}
.ye7{bottom:1113.270000px;}
.yd{bottom:1117.590000px;}
.yb5{bottom:1120.830000px;}
.y4{bottom:1128.930000px;}
.y4a{bottom:1130.730000px;}
.yb4{bottom:1139.370000px;}
.y3{bottom:1150.920000px;}
.yb3{bottom:1158.120000px;}
.y2{bottom:1171.980000px;}
.y46{bottom:1192.680000px;}
.y1{bottom:1193.220000px;}
.h9{height:4.320000px;}
.h1f{height:4.876875px;}
.h1e{height:5.729063px;}
.h8{height:17.820000px;}
.h6{height:17.903320px;}
.h10{height:21.420000px;}
.h21{height:21.600000px;}
.h1d{height:24.328477px;}
.h5{height:26.640000px;}
.ha{height:34.366289px;}
.hd{height:42.257813px;}
.h18{height:44.820000px;}
.h13{height:47.189531px;}
.h19{height:47.243956px;}
.h11{height:49.680000px;}
.h15{height:50.229844px;}
.h23{height:50.597578px;}
.h16{height:51.764766px;}
.h2{height:54.000000px;}
.h1b{height:54.386719px;}
.h24{height:54.883125px;}
.h14{height:56.084062px;}
.he{height:57.377812px;}
.hf{height:59.706562px;}
.h26{height:60.960938px;}
.h3{height:62.211094px;}
.h7{height:62.367188px;}
.h4{height:65.884219px;}
.h20{height:67.860000px;}
.hb{height:68.219648px;}
.hc{height:71.820000px;}
.h1c{height:73.722656px;}
.h1a{height:81.078047px;}
.h17{height:117.180000px;}
.h25{height:136.620000px;}
.h22{height:407.415000px;}
.h12{height:433.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:149.040000px;}
.w7{width:159.660000px;}
.w4{width:240.690000px;}
.w3{width:240.870000px;}
.w8{width:569.130000px;}
.w6{width:578.310000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x1a{left:80.685000px;}
.x5{left:84.996000px;}
.xd{left:86.255987px;}
.x1{left:91.115987px;}
.xe{left:95.615987px;}
.x7{left:115.740000px;}
.x2{left:120.275987px;}
.x1c{left:127.475987px;}
.x14{left:132.875987px;}
.x16{left:144.035987px;}
.xa{left:163.109987px;}
.xb{left:226.469987px;}
.x15{left:232.409987px;}
.x10{left:234.030000px;}
.x9{left:241.995000px;}
.x18{left:244.650000px;}
.x12{left:264.135000px;}
.x3{left:295.814987px;}
.x6{left:325.875000px;}
.x17{left:337.934987px;}
.x1e{left:345.674987px;}
.x1d{left:357.734987px;}
.x1b{left:360.254987px;}
.x1f{left:400.574987px;}
.x13{left:441.794987px;}
.xc{left:446.504987px;}
.x19{left:461.100000px;}
.x11{left:514.560000px;}
.x8{left:566.565000px;}
.x4{left:808.019987px;}
@media print{
.v3{vertical-align:-68.480000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1f{letter-spacing:-0.714667pt;}
.ls28{letter-spacing:-0.618667pt;}
.ls20{letter-spacing:-0.554667pt;}
.ls6{letter-spacing:-0.549333pt;}
.ls27{letter-spacing:-0.355733pt;}
.ls1e{letter-spacing:-0.301867pt;}
.ls24{letter-spacing:-0.140800pt;}
.ls29{letter-spacing:-0.061333pt;}
.ls23{letter-spacing:-0.048640pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009387pt;}
.ls1d{letter-spacing:0.020480pt;}
.ls2{letter-spacing:0.028587pt;}
.lsf{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.056747pt;}
.ls7{letter-spacing:0.089600pt;}
.lsd{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.207467pt;}
.ls21{letter-spacing:0.222933pt;}
.ls1b{letter-spacing:0.232960pt;}
.ls26{letter-spacing:0.235733pt;}
.lsc{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.272533pt;}
.ls13{letter-spacing:0.272640pt;}
.ls25{letter-spacing:0.276267pt;}
.ls10{letter-spacing:0.291840pt;}
.ls3{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.337920pt;}
.ls22{letter-spacing:0.358400pt;}
.ls11{letter-spacing:0.408960pt;}
.ls1{letter-spacing:0.561920pt;}
.ls4{letter-spacing:0.590080pt;}
.ls17{letter-spacing:3.537920pt;}
.ls19{letter-spacing:9.297920pt;}
.ls18{letter-spacing:11.857920pt;}
.ls1c{letter-spacing:15.697920pt;}
.ls1a{letter-spacing:23.377920pt;}
.lse{letter-spacing:736.480000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws0{word-spacing:-22.641920pt;}
.ws8{word-spacing:-15.662080pt;}
.ws3{word-spacing:-14.402453pt;}
.ws5{word-spacing:-14.129920pt;}
.ws4{word-spacing:-14.082560pt;}
.wsb{word-spacing:-13.312000pt;}
.wse{word-spacing:-13.229867pt;}
.wsf{word-spacing:-13.189333pt;}
.wsa{word-spacing:-13.176533pt;}
.ws11{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.904960pt;}
.ws13{word-spacing:-12.892267pt;}
.wsd{word-spacing:-12.812800pt;}
.ws10{word-spacing:-12.597867pt;}
.ws9{word-spacing:-12.398933pt;}
.ws12{word-spacing:-12.334933pt;}
.ws1{word-spacing:-8.166400pt;}
.ws6{word-spacing:0.000000pt;}
._21{margin-left:-4.606240pt;}
._d{margin-left:-3.501280pt;}
._8{margin-left:-2.031573pt;}
._0{margin-left:-0.960000pt;}
._2c{width:0.889600pt;}
._1{width:1.781333pt;}
._9{width:2.974720pt;}
._5{width:4.649813pt;}
._3{width:5.992107pt;}
._4{width:7.090773pt;}
._20{width:8.394667pt;}
._f{width:9.921170pt;}
._e{width:10.862610pt;}
._10{width:11.777055pt;}
._11{width:12.914987pt;}
._a{width:13.917440pt;}
._16{width:14.807040pt;}
._b{width:16.047787pt;}
._c{width:17.077333pt;}
._7{width:18.309120pt;}
._6{width:19.238400pt;}
._1c{width:20.312082pt;}
._19{width:21.570560pt;}
._17{width:23.083520pt;}
._18{width:23.988693pt;}
._24{width:25.328640pt;}
._23{width:26.316160pt;}
._22{width:27.279360pt;}
._27{width:28.258773pt;}
._14{width:29.189120pt;}
._15{width:30.117333pt;}
._1b{width:31.279787pt;}
._1a{width:32.684800pt;}
._1d{width:33.773612pt;}
._25{width:36.800000pt;}
._26{width:37.830613pt;}
._28{width:39.861760pt;}
._29{width:40.921600pt;}
._2a{width:42.805760pt;}
._2b{width:55.034027pt;}
._1e{width:72.774400pt;}
._2f{width:74.913280pt;}
._2e{width:75.955200pt;}
._30{width:77.159253pt;}
._13{width:78.922027pt;}
._2{width:79.841707pt;}
._31{width:108.456960pt;}
._32{width:109.475840pt;}
._2d{width:168.514560pt;}
._12{width:749.412267pt;}
._1f{width:755.185067pt;}
.fs5{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fsc{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.520000pt;}
.ya{bottom:4.000000pt;}
.y44{bottom:4.960000pt;}
.y7e{bottom:5.120000pt;}
.y1c{bottom:5.440000pt;}
.y59{bottom:5.600000pt;}
.y6a{bottom:5.760000pt;}
.y2e{bottom:6.560000pt;}
.yb{bottom:8.960000pt;}
.y9{bottom:18.720000pt;}
.y7{bottom:19.840000pt;}
.y43{bottom:22.400000pt;}
.y69{bottom:25.600000pt;}
.y2d{bottom:27.200000pt;}
.y42{bottom:39.680000pt;}
.y7d{bottom:39.840000pt;}
.y68{bottom:45.000000pt;}
.y2c{bottom:46.880000pt;}
.yc{bottom:47.520000pt;}
.y6{bottom:48.640000pt;}
.y49{bottom:51.840000pt;}
.y41{bottom:57.120000pt;}
.y2b{bottom:66.560000pt;}
.y48{bottom:66.880000pt;}
.y3e{bottom:70.240000pt;}
.y47{bottom:71.840000pt;}
.y78{bottom:72.040000pt;}
.y5{bottom:72.320000pt;}
.y40{bottom:74.400000pt;}
.y7c{bottom:74.560000pt;}
.y2a{bottom:86.440000pt;}
.y3d{bottom:90.080000pt;}
.y3f{bottom:91.840000pt;}
.y77{bottom:98.920000pt;}
.ye6{bottom:99.520000pt;}
.y67{bottom:104.200000pt;}
.y7a{bottom:107.360000pt;}
.y7b{bottom:109.120000pt;}
.ye5{bottom:116.640000pt;}
.y66{bottom:122.600000pt;}
.y3b{bottom:122.760000pt;}
.y76{bottom:125.800000pt;}
.yb2{bottom:128.160000pt;}
.ye4{bottom:137.946667pt;}
.y65{bottom:142.440000pt;}
.yb1{bottom:144.826667pt;}
.y29{bottom:146.120000pt;}
.y3a{bottom:149.800000pt;}
.y75{bottom:152.840000pt;}
.ye3{bottom:155.066667pt;}
.y45{bottom:157.466667pt;}
.y80{bottom:159.386667pt;}
.yb0{bottom:161.306667pt;}
.y64{bottom:162.120000pt;}
.y28{bottom:165.480000pt;}
.y74{bottom:170.920000pt;}
.ye2{bottom:172.186667pt;}
.y39{bottom:175.880000pt;}
.y3c{bottom:177.786667pt;}
.yaf{bottom:177.946667pt;}
.y7f{bottom:178.746667pt;}
.y63{bottom:181.960000pt;}
.y27{bottom:185.160000pt;}
.ye1{bottom:189.466667pt;}
.y73{bottom:189.800000pt;}
.y79{bottom:191.386667pt;}
.yae{bottom:194.586667pt;}
.y62{bottom:201.640000pt;}
.y38{bottom:202.760000pt;}
.y26{bottom:205.000000pt;}
.ye0{bottom:206.586667pt;}
.y72{bottom:208.680000pt;}
.yad{bottom:211.226667pt;}
.y61{bottom:221.480000pt;}
.y25{bottom:224.680000pt;}
.y71{bottom:227.560000pt;}
.yac{bottom:227.706667pt;}
.ydf{bottom:227.866667pt;}
.y37{bottom:228.840000pt;}
.y60{bottom:241.320000pt;}
.yab{bottom:244.346667pt;}
.y24{bottom:244.520000pt;}
.yde{bottom:244.986667pt;}
.y70{bottom:246.440000pt;}
.y36{bottom:246.760000pt;}
.yaa{bottom:260.986667pt;}
.y5f{bottom:261.000000pt;}
.y23{bottom:264.360000pt;}
.y35{bottom:264.680000pt;}
.y6f{bottom:265.346667pt;}
.ydd{bottom:266.266667pt;}
.ya9{bottom:277.626667pt;}
.y5e{bottom:280.866667pt;}
.y1d{bottom:281.946667pt;}
.y34{bottom:282.760000pt;}
.y22{bottom:284.040000pt;}
.y6e{bottom:284.226667pt;}
.ydc{bottom:287.386667pt;}
.ya8{bottom:298.106667pt;}
.y5d{bottom:300.546667pt;}
.y33{bottom:300.706667pt;}
.y6d{bottom:302.946667pt;}
.y21{bottom:303.906667pt;}
.y5a{bottom:312.826667pt;}
.ya7{bottom:314.746667pt;}
.y32{bottom:318.786667pt;}
.y5c{bottom:320.386667pt;}
.y6c{bottom:321.826667pt;}
.y20{bottom:323.586667pt;}
.ya6{bottom:331.386667pt;}
.y31{bottom:336.706667pt;}
.ydb{bottom:339.066667pt;}
.y5b{bottom:340.066667pt;}
.y1f{bottom:343.426667pt;}
.ya5{bottom:348.026667pt;}
.y6b{bottom:348.706667pt;}
.y30{bottom:354.626667pt;}
.yda{bottom:355.706667pt;}
.y1e{bottom:363.266667pt;}
.ya4{bottom:364.546667pt;}
.yd9{bottom:372.386667pt;}
.y2f{bottom:372.706667pt;}
.ya3{bottom:385.186667pt;}
.yd8{bottom:389.026667pt;}
.ya2{bottom:401.826667pt;}
.yd7{bottom:405.506667pt;}
.ya1{bottom:418.466667pt;}
.yd6{bottom:422.146667pt;}
.ya0{bottom:434.946667pt;}
.yd5{bottom:438.786667pt;}
.y9f{bottom:451.586667pt;}
.yd4{bottom:455.426667pt;}
.yd3{bottom:472.066667pt;}
.y9e{bottom:472.226667pt;}
.y9d{bottom:488.866667pt;}
.yd2{bottom:497.026667pt;}
.y9c{bottom:505.346667pt;}
.y9b{bottom:521.986667pt;}
.yd1{bottom:523.266667pt;}
.y100{bottom:531.746667pt;}
.y9a{bottom:538.626667pt;}
.yd0{bottom:539.906667pt;}
.yff{bottom:548.866667pt;}
.y99{bottom:555.266667pt;}
.ycf{bottom:556.546667pt;}
.yfe{bottom:566.146667pt;}
.yce{bottom:573.186667pt;}
.y98{bottom:580.413333pt;}
.yfd{bottom:583.293333pt;}
.ycd{bottom:589.693333pt;}
.yfc{bottom:604.573333pt;}
.ycc{bottom:606.333333pt;}
.y97{bottom:606.493333pt;}
.yfb{bottom:621.693333pt;}
.ycb{bottom:622.973333pt;}
.y96{bottom:623.133333pt;}
.yfa{bottom:638.813333pt;}
.yca{bottom:639.613333pt;}
.y95{bottom:639.773333pt;}
.yf9{bottom:656.093333pt;}
.yc9{bottom:656.253333pt;}
.y94{bottom:656.413333pt;}
.y1b{bottom:667.293333pt;}
.yc8{bottom:672.733333pt;}
.y93{bottom:673.053333pt;}
.y58{bottom:674.973333pt;}
.yf8{bottom:677.213333pt;}
.yc7{bottom:689.373333pt;}
.y92{bottom:689.533333pt;}
.yf7{bottom:694.493333pt;}
.y1a{bottom:694.973333pt;}
.y57{bottom:702.813333pt;}
.y91{bottom:706.173333pt;}
.yc6{bottom:710.013333pt;}
.yf6{bottom:711.613333pt;}
.y19{bottom:721.053333pt;}
.y90{bottom:722.813333pt;}
.yc5{bottom:726.653333pt;}
.y56{bottom:728.733333pt;}
.yf5{bottom:732.893333pt;}
.y8f{bottom:739.453333pt;}
.yc4{bottom:743.133333pt;}
.y18{bottom:748.733333pt;}
.yf4{bottom:750.013333pt;}
.y8e{bottom:755.933333pt;}
.y55{bottom:756.573333pt;}
.yc3{bottom:759.773333pt;}
.yf3{bottom:767.293333pt;}
.y17{bottom:771.933333pt;}
.yc2{bottom:776.413333pt;}
.y8d{bottom:776.573333pt;}
.y54{bottom:779.773333pt;}
.yf2{bottom:784.413333pt;}
.y16{bottom:788.253333pt;}
.yc1{bottom:793.053333pt;}
.y8c{bottom:793.213333pt;}
.y53{bottom:796.093333pt;}
.yf1{bottom:805.733333pt;}
.yc0{bottom:809.573333pt;}
.y8b{bottom:809.893333pt;}
.y15{bottom:811.493333pt;}
.y52{bottom:819.333333pt;}
.ybf{bottom:826.213333pt;}
.y8a{bottom:826.373333pt;}
.yf0{bottom:826.853333pt;}
.y14{bottom:827.973333pt;}
.y51{bottom:835.653333pt;}
.ybe{bottom:842.853333pt;}
.y89{bottom:843.013333pt;}
.yef{bottom:844.133333pt;}
.y13{bottom:851.013333pt;}
.y50{bottom:858.853333pt;}
.ybd{bottom:859.493333pt;}
.yee{bottom:861.253333pt;}
.y88{bottom:863.653333pt;}
.y12{bottom:866.053333pt;}
.y4f{bottom:873.733333pt;}
.ybc{bottom:875.973333pt;}
.yed{bottom:878.533333pt;}
.y87{bottom:880.293333pt;}
.y11{bottom:883.973333pt;}
.y4e{bottom:890.853333pt;}
.ybb{bottom:892.613333pt;}
.y86{bottom:896.773333pt;}
.yec{bottom:899.653333pt;}
.yba{bottom:909.253333pt;}
.y10{bottom:912.613333pt;}
.y85{bottom:913.413333pt;}
.yeb{bottom:916.773333pt;}
.y4d{bottom:918.853333pt;}
.yb9{bottom:929.733333pt;}
.y84{bottom:930.053333pt;}
.yea{bottom:934.053333pt;}
.yf{bottom:941.573333pt;}
.yb8{bottom:946.373333pt;}
.y83{bottom:946.693333pt;}
.y4c{bottom:947.493333pt;}
.ye9{bottom:951.173333pt;}
.yb7{bottom:963.013333pt;}
.y82{bottom:963.173333pt;}
.ye{bottom:970.693333pt;}
.ye8{bottom:972.453333pt;}
.y4b{bottom:976.293333pt;}
.yb6{bottom:979.653333pt;}
.y81{bottom:988.293333pt;}
.ye7{bottom:989.573333pt;}
.yd{bottom:993.413333pt;}
.yb5{bottom:996.293333pt;}
.y4{bottom:1003.493333pt;}
.y4a{bottom:1005.093333pt;}
.yb4{bottom:1012.773333pt;}
.y3{bottom:1023.040000pt;}
.yb3{bottom:1029.440000pt;}
.y2{bottom:1041.760000pt;}
.y46{bottom:1060.160000pt;}
.y1{bottom:1060.640000pt;}
.h9{height:3.840000pt;}
.h1f{height:4.335000pt;}
.h1e{height:5.092500pt;}
.h8{height:15.840000pt;}
.h6{height:15.914062pt;}
.h10{height:19.040000pt;}
.h21{height:19.200000pt;}
.h1d{height:21.625312pt;}
.h5{height:23.680000pt;}
.ha{height:30.547812pt;}
.hd{height:37.562500pt;}
.h18{height:39.840000pt;}
.h13{height:41.946250pt;}
.h19{height:41.994627pt;}
.h11{height:44.160000pt;}
.h15{height:44.648750pt;}
.h23{height:44.975625pt;}
.h16{height:46.013125pt;}
.h2{height:48.000000pt;}
.h1b{height:48.343750pt;}
.h24{height:48.785000pt;}
.h14{height:49.852500pt;}
.he{height:51.002500pt;}
.hf{height:53.072500pt;}
.h26{height:54.187500pt;}
.h3{height:55.298750pt;}
.h7{height:55.437500pt;}
.h4{height:58.563750pt;}
.h20{height:60.320000pt;}
.hb{height:60.639687pt;}
.hc{height:63.840000pt;}
.h1c{height:65.531250pt;}
.h1a{height:72.069375pt;}
.h17{height:104.160000pt;}
.h25{height:121.440000pt;}
.h22{height:362.146667pt;}
.h12{height:385.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:132.480000pt;}
.w7{width:141.920000pt;}
.w4{width:213.946667pt;}
.w3{width:214.106667pt;}
.w8{width:505.893333pt;}
.w6{width:514.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x1a{left:71.720000pt;}
.x5{left:75.552000pt;}
.xd{left:76.671988pt;}
.x1{left:80.991988pt;}
.xe{left:84.991988pt;}
.x7{left:102.880000pt;}
.x2{left:106.911988pt;}
.x1c{left:113.311988pt;}
.x14{left:118.111988pt;}
.x16{left:128.031988pt;}
.xa{left:144.986655pt;}
.xb{left:201.306655pt;}
.x15{left:206.586655pt;}
.x10{left:208.026667pt;}
.x9{left:215.106667pt;}
.x18{left:217.466667pt;}
.x12{left:234.786667pt;}
.x3{left:262.946655pt;}
.x6{left:289.666667pt;}
.x17{left:300.386655pt;}
.x1e{left:307.266655pt;}
.x1d{left:317.986655pt;}
.x1b{left:320.226655pt;}
.x1f{left:356.066655pt;}
.x13{left:392.706655pt;}
.xc{left:396.893322pt;}
.x19{left:409.866667pt;}
.x11{left:457.386667pt;}
.x8{left:503.613333pt;}
.x4{left:718.239988pt;}
}




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